summaryrefslogtreecommitdiff
path: root/git-arr
blob: 8e8ae1f990dc2596073f9c8b3e4ac0ddd6c9369a (plain) (blame)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
#!/usr/bin/env python
"""
git-arr: A git web html generator.
"""

from __future__ import print_function

import os
import math
import optparse

try:
    import configparser
except ImportError:
    import ConfigParser as configparser

import bottle

import git
import utils


# The list of repositories is a global variable for convenience. It will be
# populated by load_config().
repos = {}


def load_config(path):
    """Load the configuration from the given file.

    The "repos" global variable will be filled with the repositories
    as configured.
    """
    defaults = {
        'tree': 'yes',
        'desc': '',
        'recursive': 'no',
        'commits_in_summary': '10',
        'commits_per_page': '50',
        'max_pages': '5',
        'web_url': '',
        'web_url_file': 'web_url',
        'git_url': '',
        'git_url_file': 'git_url',
    }

    config = configparser.SafeConfigParser(defaults)
    config.read(path)

    # Do a first pass for general sanity checking and recursive expansion.
    for s in config.sections():
        if not config.has_option(s, 'path'):
            raise configparser.NoOptionError(
                    '%s is missing the mandatory path' % s)

        if config.getboolean(s, 'recursive'):
            for path in os.listdir(config.get(s, 'path')):
                fullpath = config.get(s, 'path') + '/' + path
                if not os.path.exists(fullpath + '/HEAD'):
                    continue

                if os.path.exists(fullpath + '/disable_gitweb'):
                    continue

                if config.has_section(path):
                    continue

                config.add_section(path)
                for opt, value in config.items(s, raw = True):
                    config.set(path, opt, value)

                config.set(path, 'path', fullpath)
                config.set(path, 'recursive', 'no')

            # This recursive section is no longer useful.
            config.remove_section(s)

    for s in config.sections():
        fullpath = config.get(s, 'path')
        config.set(s, 'name', s)

        desc = config.get(s, 'desc')
        if not desc and os.path.exists(fullpath + '/description'):
            desc = open(fullpath + '/description').read().strip()

        r = git.Repo(fullpath, name = s)
        r.info.desc = desc
        r.info.commits_in_summary = config.getint(s, 'commits_in_summary')
        r.info.commits_per_page = config.getint(s, 'commits_per_page')
        r.info.max_pages = config.getint(s, 'max_pages')
        r.info.generate_tree = config.getboolean(s, 'tree')

        r.info.web_url = config.get(s, 'web_url')
        web_url_file = fullpath + '/' + config.get(s, 'web_url_file')
        if not r.info.web_url and os.path.isfile(web_url_file):
            r.info.web_url = open(web_url_file).read()

        r.info.git_url = config.get(s, 'git_url')
        git_url_file = fullpath + '/' + config.get(s, 'git_url_file')
        if not r.info.git_url and os.path.isfile(git_url_file):
            r.info.git_url = open(git_url_file).read()

        repos[r.name] = r


def repo_filter(unused_conf):
    """Bottle route filter for repos."""
    # TODO: consider allowing /, which is tricky.
    regexp = r'[\w\.~-]+'

    def to_python(s):
        """Return the corresponding Python object."""
        if s in repos:
            return repos[s]
        bottle.abort(404, "Unknown repository")

    def to_url(r):
        """Return the corresponding URL string."""
        return r.name

    return regexp, to_python, to_url

app = bottle.Bottle()
app.router.add_filter('repo', repo_filter)
bottle.app.push(app)


def with_utils(f):
    """Decorator to add the utilities to the return value.
    
    Used to wrap functions that return dictionaries which are then passed to
    templates.
    """
    utilities = {
        'shorten': utils.shorten,
        'has_colorizer': utils.has_colorizer,
        'colorize_diff': utils.colorize_diff,
        'colorize_blob': utils.colorize_blob,
        'abort': bottle.abort,
        'smstr': git.smstr,
    }

    def wrapped(*args, **kwargs):
        """Wrapped function we will return."""
        d = f(*args, **kwargs)
        d.update(utilities)
        return d

    wrapped.__name__ = f.__name__
    wrapped.__doc__ = f.__doc__

    return wrapped

@bottle.route('/')
@bottle.view('index')
@with_utils
def index():
    return dict(repos = repos)

@bottle.route('/r/<repo:repo>/')
@bottle.view('summary')
@with_utils
def summary(repo):
    return dict(repo = repo)

@bottle.route('/r/<repo:repo>/b/<bname>/')
@bottle.route('/r/<repo:repo>/b/<bname>/<offset:int>.html')
@bottle.view('branch')
@with_utils
def branch(repo, bname, offset = 0):
    return dict(repo = repo.new_in_branch(bname), offset = offset)

@bottle.route('/r/<repo:repo>/c/<cid:re:[0-9a-z]{5,40}>/')
@bottle.view('commit')
@with_utils
def commit(repo, cid):
    c = repo.commit(cid)
    if not c:
        bottle.abort(404, 'Commit not found')

    return dict(repo = repo, c=c)

@bottle.route('/r/<repo:repo>/b/<bname>/t/')
@bottle.route('/r/<repo:repo>/b/<bname>/t/<dirname:path>/')
@bottle.view('tree')
@with_utils
def tree(repo, bname, dirname = ''):
    if dirname and not dirname.endswith('/'):
        dirname = dirname + '/'

    dirname = git.smstr.from_url(dirname)

    r = repo.new_in_branch(bname)
    return dict(repo = r, tree = r.tree(), dirname = dirname)

@bottle.route('/r/<repo:repo>/b/<bname>/t/f=<fname:path>.html')
@bottle.route('/r/<repo:repo>/b/<bname>/t/<dirname:path>/f=<fname:path>.html')
@bottle.view('blob')
@with_utils
def blob(repo, bname, fname, dirname = ''):
    r = repo.new_in_branch(bname)

    if dirname and not dirname.endswith('/'):
        dirname = dirname + '/'

    dirname = git.smstr.from_url(dirname)
    fname = git.smstr.from_url(fname)
    path = dirname.raw + fname.raw

    content = r.blob(path)
    if content is None:
        bottle.abort(404, "File %r not found in branch %s" % (path, bname))

    return dict(repo = r, dirname = dirname, fname = fname, blob = content)

@bottle.route('/static/<path:path>')
def static(path):
    return bottle.static_file(path, root = './static/')


#
# Static HTML generation
#

def generate(output):
    """Generate static html to the output directory."""
    def write_to(path, func_or_str, args = (), mtime = None):
        path = output + '/' + path
        dirname = os.path.dirname(path)

        if not os.path.exists(dirname):
            os.makedirs(dirname)

        if mtime:
            path_mtime = 0
            if os.path.exists(path):
                path_mtime = os.stat(path).st_mtime

            # Make sure they're both float or int, to avoid failing
            # comparisons later on because of this.
            if isinstance(path_mtime, int):
                mtime = int(mtime)

            # If we were given mtime, we compare against it to see if we
            # should write the file or not. Compare with almost-equality
            # because otherwise floating point equality gets in the way, and
            # we rather write a bit more, than generate the wrong output.
            if abs(path_mtime - mtime) < 0.000001:
                return
            print(path)
            s = func_or_str(*args)
        else:
            # Otherwise, be lazy if we were given a function to run, or write
            # always if they gave us a string.
            if isinstance(func_or_str, (str, unicode)):
                print(path)
                s = func_or_str
            else:
                if os.path.exists(path):
                    return
                print(path)
                s = func_or_str(*args)

        open(path, 'w').write(s.encode('utf8', errors = 'xmlcharrefreplace'))
        if mtime:
            os.utime(path, (mtime, mtime))

    def link(from_path, to_path):
        from_path = output + '/' + from_path

        if os.path.lexists(from_path):
            return
        print(from_path, '->', to_path)
        os.symlink(to_path, from_path)

    def write_tree(r, bn, mtime):
        t = r.tree(bn)

        write_to('r/%s/b/%s/t/index.html' % (r.name, bn),
                tree, (r, bn), mtime)

        for otype, oname, _ in t.ls('', recursive = True):
            # FIXME: bottle cannot route paths with '\n' so those are sadly
            # expected to fail for now; we skip them.
            if '\n' in oname.raw:
                print('skipping file with \\n: %r' % (oname.raw))
                continue

            if otype == 'blob':
                dirname = git.smstr(os.path.dirname(oname.raw))
                fname = git.smstr(os.path.basename(oname.raw))
                write_to(
                    'r/%s/b/%s/t/%s/f=%s.html' %
                        (str(r.name), str(bn), dirname.raw, fname.raw),
                    blob, (r, bn, fname.url, dirname.url), mtime)
            else:
                write_to('r/%s/b/%s/t/%s/index.html' %
                            (str(r.name), str(bn), oname.raw),
                        tree, (r, bn, oname.url), mtime)

    write_to('index.html', index())

    # We can't call static() because it relies on HTTP headers.
    read_f = lambda f: open(f).read()
    write_to('static/git-arr.css', read_f, ['static/git-arr.css'],
            os.stat('static/git-arr.css').st_mtime)
    write_to('static/syntax.css', read_f, ['static/syntax.css'],
            os.stat('static/syntax.css').st_mtime)

    for r in sorted(repos.values(), key = lambda r: r.name):
        write_to('r/%s/index.html' % r.name, summary(r))
        for bn in r.branch_names():
            commit_count = 0
            commit_ids = r.commit_ids('refs/heads/' + bn,
                    limit = r.info.commits_per_page * r.info.max_pages)
            for cid in commit_ids:
                write_to('r/%s/c/%s/index.html' % (r.name, cid),
                        commit, (r, cid))
                commit_count += 1

            # To avoid regenerating files that have not changed, we will
            # instruct write_to() to set their mtime to the branch's committer
            # date, and then compare against it to decide wether or not to
            # write.
            branch_mtime = r.commit(bn).committer_date.epoch

            nr_pages = int(math.ceil(
                            float(commit_count) / r.info.commits_per_page))
            nr_pages = min(nr_pages, r.info.max_pages)

            for page in range(nr_pages):
                write_to('r/%s/b/%s/%d.html' % (r.name, bn, page),
                            branch, (r, bn, page), branch_mtime)

            link(from_path = 'r/%s/b/%s/index.html' % (r.name, bn),
                    to_path = '0.html')

            if r.info.generate_tree:
                write_tree(r, bn, branch_mtime)

        for tag_name, obj_id in r.tags():
            try:
                write_to('r/%s/c/%s/index.html' % (r.name, obj_id),
                        commit, (r, obj_id))
            except bottle.HTTPError as e:
                # Some repos can have tags pointing to non-commits. This
                # happens in the Linux Kernel's v2.6.11, which points directly
                # to a tree. Ignore them.
                if e.status == 404:
                    print('404 in tag %s (%s)' % (tag_name, obj_id))
                else:
                    raise


def main():
    parser = optparse.OptionParser('usage: %prog [options] serve|generate')
    parser.add_option('-c', '--config', metavar = 'FILE',
            help = 'configuration file')
    parser.add_option('-o', '--output', metavar = 'DIR',
            help = 'output directory (for generate)')
    parser.add_option('', '--only', metavar = 'REPO', action = 'append',
            help = 'generate/serve only this repository')
    opts, args = parser.parse_args()

    if not opts.config:
        parser.error('--config is mandatory')

    try:
        load_config(opts.config)
    except configparser.NoOptionError as e:
        print('Error parsing config:', e)

    if not args:
        parser.error('Must specify an action (serve|generate)')

    if opts.only:
        global repos
        repos = [ r for r in repos if r.name in opts.only ]

    if args[0] == 'serve':
        bottle.run(host = 'localhost', port = 8008, reloader = True)
    elif args[0] == 'generate':
        if not opts.output:
            parser.error('Must specify --output')
        generate(output = opts.output)
    else:
        parser.error('Unknown action %s' % args[0])

if __name__ == '__main__':
    main()