home » zplus/clif.git
ID: 2574bf230b542a07c8ae5fbee0cb9c14bdc277c6
943 lines — 30K — View raw


  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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
import bottle
from bottle import jinja2_template as template, request, response

import datetime
import email
import email.policy
import functools
import glob
import hashlib
import itertools
import magic
import os
import pathlib
import pygit2
import pytz
import re
import stat
import subprocess
import timeago

from pygments import highlight
from pygments.lexers import guess_lexer, guess_lexer_for_filename, DiffLexer
from pygments.formatters import HtmlFormatter




###############################################################################
# SETTINGS
###############################################################################

# The root folder where Gitolite stores the repositories. This is used to find the
# actual repositories.
GITOLITE_REPOSITORIES_ROOT = os.environ.get('GITOLITE_REPOSITORIES_ROOT')

# These are only used when anonymous cloning over HTTPS
GITOLITE_SHELL = os.environ.get('GITOLITE_SHELL')
GITOLITE_HTTP_HOME = os.environ.get('GITOLITE_HTTP_HOME')

# The domain of this instance. This is only really used when displaying list addresses,
# or when the domain needs to be displayed on some pages.
INSTANCE_DOMAIN = os.environ.get('INSTANCE_DOMAIN')

# How many commits to show in the log page
LOG_PAGINATION = int(os.environ.get('LOG_PAGINATION'))

# Enable +/- file stats in the log page. Can be disabled for performance, since
# computing diffstat on many commits for big repos could take too long.
LOG_STATS = True

# Default options for showing diffs in "commit" page
DIFF_VIEW = 'udiff' # "udiff", "udiff_raw" "ssdiff"
DIFF_CONTEXT_LINES = 3
DIFF_INTERHUNK_LINES = 0
DIFF_SIDE = 'normal' # "normal", "reverse"
DIFF_WHITESPACE = 'include' # "include", "ignore_all", "ignore_change", "ignore_eol"
DIFF_EXPAND = True # Show expanded diff files by default
DIFF_EXPAND_DIFFSTAT = False
DIFF_EXPAND_DIFFOPTIONS = False




###############################################################################
# UTILITY FUNCTIONS
# This is code that is reused several times within the Bottle controllers
# below, so it's been grouped into functions.
###############################################################################

def list_repositories():
    """
    Scan GITOLITE_REPOSITORIES_ROOT for Git repositories, and return a list of them.
    """

    repositories = []

    # When topdown is True, the caller can modify the dirnames list in-place and
    # walk() will only recurse into the subdirectories whose names remain in dirnames;
    # this can be used to prune the search.
    # https://docs.python.org/3.12/library/os.html#os.walk
    for path, dirs, files in os.walk(GITOLITE_REPOSITORIES_ROOT, topdown=True):
        # Remove all files, we only want to recurse into directories
        files.clear()

        # This path is a git repo. Remove all sub-dirs because we don't need to
        # recurse any further
        if path.endswith('.git'):
            dirs.clear()

            repository = os.path.relpath(path, GITOLITE_REPOSITORIES_ROOT)

            # DO NOT LIST gitolite-admin repository!
            # This is the administration repository of this instance!
            if repository.lower() == 'gitolite-admin.git':
                continue

            try:
                with open(os.path.join(path, 'description')) as f:
                    description = f.read()
            except:
                description = ''

            repositories.append({
                'path': repository,
                'description': description
            })

    repositories.sort(key = lambda d: d['path'])
    return repositories

def parse_thread_tags(data):
    """
    Parse "tags" file of a mailing list thread.
    """

    tags = {}

    for line in data.splitlines():
        k, v = line.split('=', 1)
        k = k.strip()
        v = v.strip()
        tags[k] = tags.get(k, []) + [ v ]

    return tags




###############################################################################
# WEB APP
# Here below are all the Bottle routes and controllers.
###############################################################################

if not os.path.isdir(GITOLITE_REPOSITORIES_ROOT):
    print('Invalid repositories path: {}'.format(GITOLITE_REPOSITORIES_ROOT))
    exit(4)

# This only exists for exporting the bottle app object for a WSGI server such as Gunicorn
application = bottle.app()

# Directories to search for HTML templates
bottle.TEMPLATE_PATH = [ './templates' ]

def human_size(bytes, B=False):
    """
    Convert a file size in bytes to a human friendly form.
    This is only used in templates when showing file sizes.
    """

    for unit in [ 'B' if B else '', 'K', 'M', 'G', 'T', 'P' ]:
        if bytes < 1024: break
        bytes = bytes / 1024

    return '{}{}'.format(round(bytes), unit).rjust(5)

def humanct(commit_time, commit_time_offset = 0):
    """
    The following will add custom functions to the jinja2 template engine.
    These will be available to use within templates.
    """

    delta = datetime.timedelta(minutes=commit_time_offset)
    tz = datetime.timezone(delta)

    dt = datetime.datetime.fromtimestamp(commit_time, tz)

    return dt.astimezone(pytz.utc).strftime('%Y-%m-%d %H:%M:%S')

template = functools.partial(template, template_settings = {
    'filters': {
        'ago': timeago.format,
        'datetime': lambda date: dateutil.parser.parse(date).strftime('%b %-d, %Y - %H:%M%z%Z'),
        # Convert a file's mode to a string of the form '-rwxrwxrwx'
        'filemode': stat.filemode,
        # Human-friendly file size:
        'human_size': human_size,
        'highlight_udiff': lambda string: highlight(string, DiffLexer(), HtmlFormatter())
    },
    'globals': {
        'commit_time': humanct,
        'instance_domain': INSTANCE_DOMAIN,
        'now': lambda: datetime.datetime.now(datetime.timezone.utc),
        'request': request,
        'url': application.get_url,
        'zip_longest': itertools.zip_longest,
        'defaults': {
            'DIFF_EXPAND': DIFF_EXPAND,
            'DIFF_EXPAND_DIFFSTAT': DIFF_EXPAND_DIFFSTAT,
            'DIFF_EXPAND_DIFFOPTIONS': DIFF_EXPAND_DIFFOPTIONS,
            'LOG_STATS': LOG_STATS
        }
    },
    'autoescape': True
})

@bottle.error(404)
def error404(error):
    """
    Custom 404 page.

    :param error: bottle.HTTPError given by Bottle when calling abort(404).
    """

    return '[404] {}'.format(error.body)

@bottle.get('/static/<filename:path>', name='static')
def static(filename):
    """
    Path for serving static files.
    """

    return bottle.static_file(filename, root='./static/')

@bottle.get('/', name='explore')
def explore():
    """
    The home page displayed at https://domain/
    """

    repositories = list_repositories()
    return template('explore.html', repositories=repositories)

@bottle.get('/about', name='about')
def about():
    """
    The home page displayed at https://domain/
    """

    return template('about.html', domain=INSTANCE_DOMAIN)

@bottle.get('/<repository:path>.git', name='overview')
def overview(repository):
    """
    Show README and other info about the repository.

    :param repository: Match repository name ending with ".git"
    """

    repository += '.git'
    path = os.path.join(GITOLITE_REPOSITORIES_ROOT, repository)

    if not os.path.isdir(path):
        bottle.abort(404, 'No repository at this path.')

    repo = pygit2.Repository(path)
    local_branches = list(repo.branches.local)

    HEAD = None
    ref_name = None

    try:
        HEAD = repo.head.name
        ref_name = HEAD
    except:
        for name_candidate in [ 'master', 'main', 'trunk', 'development', 'dev' ]:
            if name_candidate in local_branches:
                ref_name = name_candidate
                break

    readme = ''

    if ref_name:
        tree = repo.revparse_single(ref_name).tree

        for e in tree:
            if e.name.lower() not in [ 'readme', 'readme.md', 'readme.rst' ]:
                continue

            if e.is_binary:
                continue

            # Read the README content, cut at 1MB
            readme = tree[e.name].data[:1048576].decode('UTF-8')
            break

    repo_size = sum(f.stat().st_size for f in pathlib.Path(path).glob("**/*"))

    try:
        with open(os.path.join(path, 'description')) as f:
            description = f.read()
    except:
        description = ''

    return template('repository/overview.html',
                    readme=readme,
                    repository=repository,
                    repository_size=human_size(repo_size),
                    description=description,
                    head_ref=HEAD)

@bottle.get('/<repository:path>.git/refs', name='refs')
def refs(repository):
    """
    List repository refs
    """

    repository += '.git'
    path = os.path.join(GITOLITE_REPOSITORIES_ROOT, repository)

    if not os.path.isdir(path):
        bottle.abort(404, 'No repository at this path.')

    repo = pygit2.Repository(path)

    if repo.is_empty:
        return template('repository/refs.html',
                        repository=repository)

    try:    HEAD = repo.head.name
    except: HEAD = None

    heads = []
    tags = []

    for ref in repo.references:
        ref = repo.references.get(ref)

        if not ref:
            continue

        if ref.name.startswith('refs/heads/'):
            heads.append({
                'ref': ref,
                'commit': ref.peel(pygit2.GIT_OBJ_COMMIT)
            })

        if ref.name.startswith('refs/tags/'):
            target = repo.get(str(ref.target))

            tags.append({
                'ref': ref,
                'object': target,
                'is_annotated': target.type == pygit2.GIT_OBJ_TAG
            })

    heads.sort(key = lambda item: item['ref'].name)

    def tagsort(item):
        try:
            if item['object'].type == pygit2.GIT_OBJ_TAG:
                return item['object'].tagger.time

            if item['object'].type == pygit2.GIT_OBJ_COMMIT:
                return item['object'].commit_time
        except:
            return 0

    tags.sort(key = lambda item: tagsort(item), reverse=True)

    return template('repository/refs.html',
                    repository=repository,
                    heads=heads, tags=tags, HEAD=HEAD)

@bottle.get('/<repository:path>.git/tree/<revision>', name='tree')
@bottle.get('/<repository:path>.git/tree/<revision>/<tree_path:path>', name='tree_path')
def tree(repository, revision, tree_path=None):
    """
    Show commit tree.
    """

    repository += '.git'
    repository_path = os.path.join(GITOLITE_REPOSITORIES_ROOT, repository)

    if not os.path.isdir(repository_path):
        bottle.abort(404, 'No repository at this path.')

    repo = pygit2.Repository(repository_path)

    if repo.is_empty:
        return template('repository/tree.html',
                        repository=repository, revision=revision, offset=0)

    try:
        git_object = repo.revparse_single(revision)
    except:
        bottle.abort(404)

    # List all the references.
    # This is used for allowing the user to switch revision with a selector.
    HEAD = None
    heads = []
    tags = []
    for ref in repo.references:
        if ref.startswith('refs/heads/'): heads.append(ref)
        if ref.startswith('refs/tags/'):  tags.append(ref)
    heads.sort()
    tags.sort()

    try:
        HEAD = repo.head.name
    except:
        pass

    if git_object.type == pygit2.GIT_OBJ_TAG:
        git_object = git_object.peel(None)

    if git_object.type == pygit2.GIT_OBJ_COMMIT:
        git_object = git_object.tree

    if git_object.type == pygit2.GIT_OBJ_TREE and tree_path:
        git_object = git_object[tree_path]

    if git_object.type == pygit2.GIT_OBJ_TREE:
        return template(
            'repository/tree.html',
            heads=heads, head_ref=HEAD, tags=tags,
            tree=git_object,
            tree_path=tree_path,
            repository=repository, revision=revision)

    if git_object.type == pygit2.GIT_OBJ_BLOB:

        # Highlight blob text
        if git_object.is_binary:
            blob_formatted = ''
        else:
            blob_data = git_object.data.decode('UTF-8')

            # Guess Pygments lexer by filename, or by content if we can't find one
            try:
                pygments_lexer = guess_lexer_for_filename(git_object.name, blob_data)
            except:
                pygments_lexer = guess_lexer(blob_data)

            pygments_formatter = HtmlFormatter(nobackground=True, linenos=True, anchorlinenos=True,
                                           lineanchors='line')

            blob_formatted = highlight(blob_data, pygments_lexer, pygments_formatter)

        return template(
            'repository/blob.html',
            heads=heads, tags=tags,
            blob=git_object,
            blob_formatted=blob_formatted,
            repository=repository, revision=revision,
            tree_path=tree_path)

    bottle.abort(404)

@bottle.post('/<repository:path>.git/tree', name='tree_change')
def tree_change(repository):
    """
    Switch revision in tree page.
    This route is used by the <form> in the tree page when changing the revision
    to be displayed.
    """

    revision = request.forms.get('revision')

    bottle.redirect(application.get_url('tree',
                                        repository=repository,
                                        revision=revision))

@bottle.get('/<repository:path>.git/log/<revision>', name='log')
def log(repository, revision):
    """
    Show commit log.
    """

    repository += '.git'
    repository_path = os.path.join(GITOLITE_REPOSITORIES_ROOT, repository)

    # Read commits
    try:    commits_offset = int(request.query.get('offset', 0))
    except: commits_offset = 0

    if not os.path.isdir(repository_path):
        bottle.abort(404, 'No repository at this path.')

    repo = pygit2.Repository(repository_path)

    if repo.is_empty:
        return template('repository/log.html',
                        repository=repository, revision=revision, offset=commits_offset)

    try:
        git_object = repo.revparse_single(revision)
    except:
        bottle.abort(404)

    # List all the references.
    # This is used for allowing the user to switch revision with a selector.
    HEAD = None
    heads = []
    tags = []
    for ref in repo.references:
        if ref.startswith('refs/heads/'): heads.append(ref)
        if ref.startswith('refs/tags/'):  tags.append(ref)
    heads.sort()
    tags.sort()

    try:
        HEAD = repo.head.name
    except:
        pass

    if git_object.type in [ pygit2.GIT_OBJ_TREE, pygit2.GIT_OBJ_BLOB ]:
        return 'Not a valid ref'

    if git_object.type == pygit2.GIT_OBJ_TAG:
        git_object = git_object.peel(None)

    # At this point git_object should be a valid pygit2.GIT_OBJ_COMMIT

    commits = []
    diff = {}
    commit_ith = 0
    for commit in repo.walk(git_object.id):
        # Skip the first one (offset)
        if commit_ith < commits_offset:
            commit_ith += 1
            continue

        # Stop if we have reached pagination size
        if len(commits) >= LOG_PAGINATION:
            break

        commits.append(commit)

        # Diff with parent tree, or empty tree if there's no parent
        if LOG_STATS:
            diff[commit.short_id] = \
                     commit.parents[0].tree.diff_to_tree(commit.tree) \
                if   len(commit.parents) > 0 \
                else commit.tree.diff_to_tree(swap=True)

    return template(
        'repository/log.html',
        heads=heads, head_ref=HEAD, tags=tags,
        commits=commits, diff=diff,
        log_pagination=LOG_PAGINATION, offset=commits_offset,
        repository=repository, revision=revision)

@bottle.post('/<repository:path>.git/log', name='log_change')
def log_change(repository):
    """
    Switch revision in log page.
    This route is used by the <form> in the log page when changing the revision
    to be displayed.
    """

    revision = request.forms.get('revision')

    bottle.redirect(application.get_url('log',
                                        repository=repository,
                                        revision=revision))

@bottle.get('/<repository:path>.git/commit/<commit_id>', name='commit')
@bottle.get('/<repository:path>.git/commit/<commit_id2>..<commit_id>', name='commit2')
@bottle.get('/<repository:path>.git/commit/<commit_id>.patch', name='commit_patch')
@bottle.get('/<repository:path>.git/commit/<commit_id>.diff', name='commit_diff')
@bottle.get('/<repository:path>.git/commit/<commit_id2>..<commit_id>.diff', name='commit_diff2')
def commit(repository, commit_id, commit_id2=None):
    """
    Show a commit.
    """

    repository += '.git'
    repository_path = os.path.join(GITOLITE_REPOSITORIES_ROOT, repository)

    if not os.path.isdir(repository_path):
        bottle.abort(404, 'No repository at this path.')

    repo = pygit2.Repository(repository_path)

    try:
        commit = repo.get(commit_id)
        assert commit.type == pygit2.GIT_OBJ_COMMIT

        if commit_id2:
            commit2 = repo.get(commit_id2)
            assert commit2.type == pygit2.GIT_OBJ_COMMIT
        elif len(commit.parents) > 0:
            commit2 = commit.parents[0]
            assert commit2.type == pygit2.GIT_OBJ_COMMIT
        else:
            commit2 = None
    except:
        bottle.abort(404, 'Not a valid commit.')

    # Diff options

    diff_mode = DIFF_VIEW
    if 'mode' in request.query:
        if request.query.get('mode') in [ 'udiff', 'udiff_raw', 'ssdiff' ]:
            diff_mode = request.query.get('mode')
        else:
            bottle.abort(400, 'Bad request: mode')

    try:    diff_context_lines = int(request.query.get('context_lines', DIFF_CONTEXT_LINES))
    except: bottle.abort(400, 'Bad request: context_lines')

    try:    diff_inter_hunk_lines = int(request.query.get('inter_hunk_lines', DIFF_INTERHUNK_LINES))
    except: bottle.abort(400, 'Bad request: inter_hunk_lines')

    diff_flags = pygit2.GIT_DIFF_NORMAL
    diff_side = DIFF_SIDE
    if 'side' in request.query:
        if request.query.get('side') == 'normal':
            diff_side = 'normal'
        elif request.query.get('side') == 'reverse':
            diff_flags |= pygit2.GIT_DIFF_REVERSE
            diff_side = 'reverse'
        else:
            bottle.abort(400, 'Bad request: side')

    diff_whitespace = DIFF_WHITESPACE
    if 'whitespace' in request.query:
        if request.query.get('whitespace') == 'include':
            diff_whitespace = 'include'
        elif request.query.get('whitespace') == 'ignore_all':
            diff_flags |= pygit2.GIT_DIFF_IGNORE_WHITESPACE
            diff_whitespace = 'ignore_all'
        elif request.query.get('whitespace') == 'ignore_change':
            diff_flags |= pygit2.GIT_DIFF_IGNORE_WHITESPACE_CHANGE
            diff_whitespace = 'ignore_change'
        elif request.query.get('whitespace') == 'ignore_eol':
            diff_flags |= pygit2.GIT_DIFF_IGNORE_WHITESPACE_EOL
            diff_whitespace = 'ignore_eol'
        else:
            bottle.abort(400, 'Bad request: whitespace')

    # Compute diff with parent

    if commit2:
        diff = repo.diff(
            a=commit2, b=commit, flags=diff_flags,
            context_lines=diff_context_lines, interhunk_lines=diff_inter_hunk_lines)
    else:
        # diff with empty tree
        diff = commit.tree.diff_to_tree(
            context_lines   = diff_context_lines,
            interhunk_lines = diff_inter_hunk_lines,
            flags           = diff_flags,
            swap            = True)

    # Compute the similarity index. This is used to decide which files are "renamed".
    diff.find_similar()

    if request.route.name in [ 'commit_diff', 'commit_diff2' ]:
        response.content_type = 'text/plain'
        return diff.patch

    if request.route.name == 'commit_patch':
        """
        Looks like pygit2 doesn't have a way for creating a patch file from a commit.
        So, exclusively for this task, we fork a new subprocess and read the output.
        TODO see if this subprocess call can be replaced with pygit2.
        """

        try:
            output = subprocess.check_output(
                args=[ 'git', 'format-patch',
                       '--no-signature',
                       '--stdout',
                       '--unified={}'.format(diff_context_lines),
                       '--inter-hunk-context={}'.format(diff_inter_hunk_lines),
                       '-1', str(commit.id) ],
                cwd=repository_path)

            response.content_type = 'text/plain'
            return output
        except Exception as e:
            print(e)
            bottle.abort(500, 'Cannot create patch.')

    return template(
        'repository/commit.html',
        repository=repository, commit=commit, commit2=commit2, diff=diff,
        context_lines=diff_context_lines, inter_hunk_lines=diff_inter_hunk_lines,
        mode=diff_mode, side=diff_side, whitespace=diff_whitespace)

@bottle.get('/<repository:path>.git/raw/<revision>/<tree_path:path>', name='raw')
def raw(repository, revision, tree_path):
    """
    Return a raw blow object.
    """

    repository += '.git'
    repository_path = os.path.join(GITOLITE_REPOSITORIES_ROOT, repository)

    if not os.path.isdir(repository_path):
        bottle.abort(404, 'No repository at this path.')

    repo = pygit2.Repository(repository_path)

    if repo.is_empty:
        return ""

    git_tree = None

    try:
        git_object = repo.revparse_single(revision)
    except:
        pass

    if not git_object or git_object.type != pygit2.GIT_OBJ_COMMIT:
        bottle.abort(404, 'Not a valid revision.')

    blob = None

    try:
        blob = git_object.tree[tree_path]
    except:
        bottle.abort(404, 'Object does not exist.')

    if blob.type != pygit2.GIT_OBJ_BLOB:
        bottle.abort(404, 'Object is not a blob.')

    mime = magic.from_buffer(blob.data[:1048576], mime=True)
    response.content_type = mime
    return blob.data

@bottle.get('/<repository:path>.git/info/refs')
@bottle.post('/<repository:path>.git/git-upload-pack')
def git_smart_http(repository):
    """
    This controller proxies Git Smart HTTP requests to gitolite-shell for allowing
    anonymous clones over HTTP. Looks like anonymous clones are not possible via SSH,
    hence why we have this feature.
    Note that this controller only matches "git-upload-pack" (used for fetching)
    but does not match "git-receive-pack" (used for pushing). Pushing should only
    happen via SSH.

    Note: If CLIF is running behind a web server such as httpd or lighttpd, the
    same behavior of this controller can be achieved much more simply by configuring
    the server with CGI and an alias that redirects the URLs above to the gitolite-shell
    script. However, this controller exists so that anonymous HTTP clones can work
    "out of the box" without any manual configuration of the server.

    Documentation useful for understanding how this works:
      https://git-scm.com/docs/http-protocol
      https://bottlepy.org/docs/dev/async.html
      https://gitolite.com/gitolite/http.html#allowing-unauthenticated-access
    """

    # Environment variables for the Gitolite shell
    # TODO Gitolite gives a warning: "WARNING: Use of uninitialized value in concatenation (.) or string at /home/git/bin/gitolite-shell line 239"
    #      Looks like some non-critical env vars are missing here: REMOTE_PORT SERVER_ADDR SERVER_PORT
    gitenv = {
        **os.environ,

        # https://git-scm.com/docs/git-http-backend#_environment
        'PATH_INFO': request.path,
        'REMOTE_USER': 'anonymous', # This user must be set in ~/.gitolite.rc like this:
                                    # HTTP_ANON_USER => 'anonymous',
        'REMOTE_ADDR': request.remote_addr,
        'CONTENT_TYPE': request.content_type,
        'QUERY_STRING': request.query_string,
        'REQUEST_METHOD': request.method,
        'GIT_PROJECT_ROOT': GITOLITE_REPOSITORIES_ROOT,
        'GIT_HTTP_EXPORT_ALL': 'true',

        # Additional variables required by Gitolite
        'REQUEST_URI': request.fullpath,
        'GITOLITE_HTTP_HOME': GITOLITE_HTTP_HOME,
        'HOME': GITOLITE_HTTP_HOME,
    }

    # Start a Gitolite shell.
    # Do not replace .Popen() with .run() because it waits for child process to finish before returning.
    proc = subprocess.Popen(
        [ GITOLITE_SHELL ],
        env = gitenv,
        stdin = subprocess.PIPE,
        stdout = subprocess.PIPE)
        # stderr = )

    # Write the whole request body to Gitolite stdin.
    # Don't forget to close the pipe or it will hang!
    proc.stdin.write(request.body.read())
    proc.stdin.close()

    # Now we process the Gitolite response and return it to the client.

    # First we need to scan all the HTTP headers in the response so that we can
    # add them to the bottle response...
    for line in proc.stdout:
        line = line.decode('UTF-8').strip()

        # Empty line means no more headers
        if line == '':
            break

        header = line.split(':', 1)
        response.set_header(header[0].strip(), header[1].strip())

    # ...then we can return the rest of the Gitolite response to the client as we read it
    for line in proc.stdout:
        yield line

@bottle.get('/<repository:path>.mlist', name='threads')
def threads(repository):
    """
    List email threads.

    :param repository: Match repository name NOT ending with ".git"
    """

    # List of seletected tags, retrieved from the query string
    query_tags = { k: request.query.getall(k) for k in request.query.keys() }

    repository += '.mlist.git'
    path = os.path.join(GITOLITE_REPOSITORIES_ROOT, repository)
    list_address = '{}@{}'.format(repository[:-10], INSTANCE_DOMAIN)

    if not os.path.isdir(path):
        bottle.abort(404, 'No repository at this path.')

    try:
        repo = pygit2.Repository(path)
        tree = repo.revparse_single('HEAD').tree
    except:
        return template('mailing_list/emails.html', list_address=list_address, repository=repository)

    threads_list = []
    tags = {}

    for obj in tree:
        if obj.type != pygit2.GIT_OBJ_TREE:
            continue

        thread_date, thread_time, thread_id, thread_title = obj.name.split(' ', 3)

        try:
            thread_tags = parse_thread_tags(obj['tags'].data.decode('UTF-8'))

            # Collect tags for filters
            for k, v in thread_tags.items():
                tags[k] = tags.get(k, set()).union(v)
        except:
            thread_tags = {}

        # Check if we should filter out this thread from the list
        keep = True
        for key in query_tags.keys():
            for value in query_tags[key]:
                action, value = value[0], value[1:]

                if action not in [ '+', '-' ]:
                    bottle.abort(400, 'Bad request: {}'.format(key))

                if action == '+' and value not in thread_tags.get(key, []):
                    keep = False
                    break

                if action == '-' and value in thread_tags.get(key, []):
                    keep = False
                    break

            if not keep: break

        if keep:
            threads_list.append({
                'datetime': thread_date + ' ' + thread_time,
                'id': thread_id,
                'title': thread_title,
                'tags': thread_tags
            })

    threads_list.reverse()

    return template('mailing_list/emails.html', threads=threads_list,
                    list_address=list_address,
                    repository=repository,
                    tags=tags, query_tags=query_tags)

@bottle.get('/<repository:path>.mlist/<thread_id>', name='thread')
def thread(repository, thread_id):
    """
    Show a single email thread.
    """

    repository += '.mlist.git'
    path = os.path.join(GITOLITE_REPOSITORIES_ROOT, repository)
    list_address = '{}@{}'.format(repository[:-10], INSTANCE_DOMAIN)

    if not os.path.isdir(path):
        bottle.abort(404, 'No repository at this path.')

    repo = pygit2.Repository(path)
    head_tree = repo.revparse_single('HEAD').tree
    thread_tree = None

    for obj in head_tree:
        if obj.type != pygit2.GIT_OBJ_TREE:
            continue

        if thread_id in obj.name:
            thread_tree = obj
            break

    if not thread_tree:
        bottle.abort(404, 'Not a valid thread')

    thread_date, thread_time, thread_id, thread_title = thread_tree.name.split(' ', 3)
    thread_data = {
        'datetime': thread_date + ' ' + thread_time,
        'id': thread_id,
        'title': thread_title
    }

    # Read all the emails in this thread and collect some statistics on the way (for
    # displaying purposes only)
    emails = []
    participants = []
    tags = {}

    for obj in thread_tree:
        if obj.type != pygit2.GIT_OBJ_BLOB:
            continue

        if obj.name == 'tags':
            tags = parse_thread_tags(obj.data.decode('UTF-8'))
            continue

        if not obj.name.endswith('.email'):
            continue

        message = email.message_from_string(obj.data.decode('UTF-8'), policy=email.policy.default)

        email_data = {
            'id': message.get('message-id'),
            'id_hash': hashlib.sha256(message.get('message-id').encode('utf-8')).hexdigest()[:8],
            'from': email.utils.parseaddr(message.get('from')),
            'to': email.utils.parseaddr(message.get('to')),
            'in_reply_to': message.get('in-reply-to'),
            'sent_at': email.utils.parsedate_to_datetime(message.get('date')).astimezone(pytz.utc).strftime('%Y-%m-%d %H:%M:%S'),
            'received_at': email.utils.parsedate_to_datetime(message.get_all('received')[0].rsplit(";")[-1]).astimezone(pytz.utc).strftime('%Y-%m-%d %H:%M:%S'),
            'subject': message.get('subject'),
            'body': message.get_body(('plain',)).get_content()
        }

        emails.append(email_data)

        if email_data['from'] not in participants:
            participants.append(email_data['from'])

    emails.sort(key = lambda email: email['received_at'])

    return template('mailing_list/emails_thread.html', thread=thread_data, emails=emails,
                    participants=participants, list_address=list_address, tags=tags,
                    repository=repository)