mirror of
https://github.com/varunsridharan/github-gitea-mirror.git
synced 2024-11-23 09:19:03 +03:00
Merge pull request #4 from varunsridharan/revert-3-add-blacklist
Revert "Add a blacklist for repositories"
This commit is contained in:
commit
8e64c87f48
23
README.md
23
README.md
@ -35,32 +35,31 @@ Or you can download the source code and install it where ever you need
|
||||
| --- | --- |
|
||||
| `github.username` | Your Github Username |
|
||||
| `github.accesstoken` | Your Github Account's Personal Access Token |
|
||||
| - | - |
|
||||
| - | - |
|
||||
| `gitea.host` | Selfhosted Gitea URL without `/` at the end |
|
||||
| `gitea.accesstoken` | Your Personal Access Token |
|
||||
| `gitea.username` | Account User Name |
|
||||
| `gitea.gist.prefix` | Custom Prefix For Repository When Mirroring Gists |
|
||||
| `gitea.gist.surfix` | Custom Prefix For Repository When Mirroring Gists |
|
||||
| - | - |
|
||||
| `repomap` | Remap A Repository To Diff User |
|
||||
| `blacklist` | A list of glob-expression on github full repository names to skip |
|
||||
| `gistsSource` | set to true to mirror all Gists Created By You|
|
||||
| `gistsStared` | set to true to mirror all Gists Stared By You|
|
||||
| `repositoryStared` | set to true to mirror all Repository Stared By You |
|
||||
| `repositorySource` | set to true to mirror all Repository Created By You |
|
||||
| `repositoryForked` | set to true to mirror all Repository Forked By You |
|
||||
| - | - |
|
||||
| `repomap` | Remap A Repository To Diff User |
|
||||
| `gistsSource` | set to true to mirror all Gists Created By You|
|
||||
| `gistsStared` | set to true to mirror all Gists Stared By You|
|
||||
| `repositoryStared` | set to true to mirror all Repository Stared By You |
|
||||
| `repositorySource` | set to true to mirror all Repository Created By You |
|
||||
| `repositoryForked` | set to true to mirror all Repository Forked By You |
|
||||
| - | - |
|
||||
| `local_cache.enabled` | Set to **true** to store all repostiory slugs from gitea as json |
|
||||
| `local_cache.file_path` | Custom Path to store json file |
|
||||
|
||||
> Local Cache can come handly when running this script via cron
|
||||
> Local Cache can come handly when running this script via cron
|
||||
> which reduces api request your selfhosted gitea instance
|
||||
|
||||
### Run cmd & Wait
|
||||
|
||||
$ python3 mirror.py
|
||||
|
||||
|
||||
|
||||
|
||||
## Cron Setup
|
||||
1. Run `crontab -e`
|
||||
2. `mkdir $HOME/mirrorLogs -p`
|
||||
|
@ -14,7 +14,6 @@
|
||||
}
|
||||
},
|
||||
"repomap" : { },
|
||||
"blacklist" : [ ],
|
||||
"gistsSource" : true,
|
||||
"gistsStared" : true,
|
||||
"repositoryStared" : true,
|
||||
|
@ -5,7 +5,6 @@ import requests
|
||||
import json
|
||||
import sys
|
||||
import os
|
||||
import fnmatch
|
||||
from datetime import datetime
|
||||
|
||||
giteaGetUserCache = dict()
|
||||
@ -79,9 +78,9 @@ def giteaCreateRepo(data,isPrivate,isRepository):
|
||||
data["service"] = 'github'
|
||||
data["wiki"] = True
|
||||
data["auth_token"] = "{0}".format(config['github']['accesstoken'])
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
jsonstring = json.dumps(data)
|
||||
r = session.post(giteaHost('repos/migrate'), data=jsonstring)
|
||||
|
||||
@ -202,10 +201,3 @@ def giteaGetAllUsersOrgs(type):
|
||||
loopCount += 1
|
||||
|
||||
return results
|
||||
|
||||
|
||||
def isBlacklistedRepository(full_name):
|
||||
for pattern in config['blacklist']:
|
||||
if fnmatch.fnmatch(full_name, pattern):
|
||||
return True
|
||||
return False
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
# https://github.com/PyGithub/PyGithub
|
||||
from helper import isBlacklistedRepository, log,getConfig,giteaCreateUserOrOrg,giteaSetRepoTopics,giteaSession,giteaCreateRepo,ghApi,giteaCreateOrg,giteaGetUser,config
|
||||
from helper import log,getConfig,giteaCreateUserOrOrg,giteaSetRepoTopics,giteaSession,giteaCreateRepo,ghApi,giteaCreateOrg,giteaGetUser,config
|
||||
from github import GithubException
|
||||
from localCacheHelper import giteaExistsRepos,saveLocalCache
|
||||
import time
|
||||
@ -21,10 +21,6 @@ def repositoryForked():
|
||||
|
||||
log('Forked Repository : {0}'.format(repo.full_name))
|
||||
|
||||
if isBlacklistedRepository(repo.full_name):
|
||||
print(" ---> Warning : Repository Matches Blacklist")
|
||||
continue
|
||||
|
||||
if real_repo in repo_map:
|
||||
gitea_dest_user = repo_map[real_repo]
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
# https://github.com/PyGithub/PyGithub
|
||||
from helper import isBlacklistedRepository, log,getConfig,giteaCreateUserOrOrg,giteaSetRepoTopics,giteaSession,giteaCreateRepo,ghApi,giteaCreateOrg,giteaGetUser,config
|
||||
from helper import log,getConfig,giteaCreateUserOrOrg,giteaSetRepoTopics,giteaSession,giteaCreateRepo,ghApi,giteaCreateOrg,giteaGetUser,config
|
||||
from github import GithubException
|
||||
from localCacheHelper import giteaExistsRepos,saveLocalCache
|
||||
import time
|
||||
@ -21,10 +21,6 @@ def repositorySource():
|
||||
|
||||
log('Source Repository : {0}'.format(repo.full_name))
|
||||
|
||||
if isBlacklistedRepository(repo.full_name):
|
||||
print(" ---> Warning : Repository Matches Blacklist")
|
||||
continue
|
||||
|
||||
if real_repo in repo_map:
|
||||
gitea_dest_user = repo_map[real_repo]
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
# https://github.com/PyGithub/PyGithub
|
||||
from helper import isBlacklistedRepository, log,getConfig,giteaSetRepoTopics,giteaSession,giteaSetRepoStar,giteaCreateRepo,ghApi,giteaCreateUserOrOrg,giteaGetUser,config
|
||||
from helper import log,getConfig,giteaSetRepoTopics,giteaSession,giteaSetRepoStar,giteaCreateRepo,ghApi,giteaCreateUserOrOrg,giteaGetUser,config
|
||||
from github import GithubException
|
||||
from localCacheHelper import giteaExistsRepos,saveLocalCache
|
||||
import time
|
||||
@ -20,10 +20,6 @@ def repositoryStared():
|
||||
|
||||
log('⭐ Star\'ed Repository : {0}'.format(repo.full_name))
|
||||
|
||||
if isBlacklistedRepository(repo.full_name):
|
||||
print(" ---> Warning : Repository Matches Blacklist")
|
||||
continue
|
||||
|
||||
if real_repo in repo_map:
|
||||
gitea_dest_user = repo_map[real_repo]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user