summaryrefslogtreecommitdiffstats
path: root/scripts/git-integration/init-repos.py
blob: 62c51b1baa606afe8b67ebcb159791f083620c63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/python3

import configparser
import mysql.connector
import os
import pygit2
import re
import shlex
import sys

config = configparser.RawConfigParser()
config.read(os.path.dirname(os.path.realpath(__file__)) + "/../../conf/config")

aur_db_host = config.get('database', 'host')
aur_db_name = config.get('database', 'name')
aur_db_user = config.get('database', 'user')
aur_db_pass = config.get('database', 'password')
aur_db_socket = config.get('database', 'socket')

repo_base_path = config.get('serve', 'repo-base')
repo_regex = config.get('serve', 'repo-regex')
git_update_hook = config.get('serve', 'git-update-hook')

def die(msg):
    sys.stderr.write("%s\n" % (msg))
    exit(1)

db = mysql.connector.connect(host=aur_db_host, user=aur_db_user,
                             passwd=aur_db_pass, db=aur_db_name,
                             unix_socket=aur_db_socket)
cur = db.cursor()

cur.execute("SELECT Name FROM PackageBases")
repos = [row[0] for row in cur]
db.close()

for repo in repos:
    if not re.match(repo_regex, repo):
        die('invalid repository name: %s' % (repo))

i = 1
n = len(repos)

for repo in repos:
    print("[%s/%d] %s" % (str(i).rjust(len(str(n))), n, repo))

    repo_path = repo_base_path + '/' + repo + '.git/'
    pygit2.init_repository(repo_path, True)
    os.symlink(git_update_hook, repo_path + 'hooks/update')

    i += 1