Skip to content
Snippets Groups Projects
Commit a4b72b44 authored by Jonas Haag's avatar Jonas Haag
Browse files

Refactoring

parent 55517419
No related branches found
No related tags found
No related merge requests found
{% extends 'base.html' %} {% extends 'base.html' %}
{% block extra_header %}{% endblock %} {# no branch selector on commits #} {% block extra_header %}{% endblock %} {# hide branch selector #}
{% block title %} {% block title %}
Commit {{ rev }} - {{ repo.name }} Commit {{ rev }} - {{ repo.name }}
......
...@@ -40,6 +40,24 @@ def robots_txt(): ...@@ -40,6 +40,24 @@ def robots_txt():
return current_app.send_static_file('robots.txt') return current_app.send_static_file('robots.txt')
def _get_repo_and_rev(repo, rev=None):
try:
repo = current_app.repos[repo]
except KeyError:
raise NotFound("No such repository %r" % repo)
if rev is None:
rev = repo.get_default_branch()
if rev is None:
raise NotFound("Empty repository")
try:
commit = repo.get_commit(rev)
except KeyError:
raise NotFound("No such commit %r" % rev)
return repo, rev, commit
class BaseRepoView(View): class BaseRepoView(View):
"""Base for all views with a repo context. """Base for all views with a repo context.
...@@ -64,20 +82,7 @@ class BaseRepoView(View): ...@@ -64,20 +82,7 @@ class BaseRepoView(View):
return render_template(self.template_name, **self.context) return render_template(self.template_name, **self.context)
def make_template_context(self, repo, rev, path): def make_template_context(self, repo, rev, path):
try: repo, rev, commit = _get_repo_and_rev(repo, rev)
repo = current_app.repos[repo]
except KeyError:
raise NotFound("No such repository %r" % repo)
if rev is None:
rev = repo.get_default_branch()
if rev is None:
raise NotFound("Empty repository")
try:
commit = repo.get_commit(rev)
except KeyError:
raise NotFound("No such commit %r" % rev)
try: try:
blob_or_tree = repo.get_blob_or_tree(commit, path) blob_or_tree = repo.get_blob_or_tree(commit, path)
except KeyError: except KeyError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment