mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
* Fixes the gitweb app initalization when there are no public repositories and the apache2 configuration gitweb-freedombox-auth has not been enabled before (this may happen when the git repositories or apache2 configuration has been modified outside the plinth web UI). * Fix comment in the gitweb-freedombox-auth.conf apache2 configuration file. Fixes #1928 Tests performed: * The gitweb app unit and functional tests pass. * Configured all gitweb repositories as private. Stopped the plinth service. Disabled the apache2 configuration gitweb-freedombox-auth. Then starting the plinth service succeeds and gitweb-freedombox-auth configuration gets enabled. Signed-off-by: Veiko Aasa <veiko17@disroot.org> Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
153 lines
4.9 KiB
Python
153 lines
4.9 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Django views for Gitweb.
|
|
"""
|
|
|
|
from django.contrib import messages
|
|
from django.contrib.messages.views import SuccessMessageMixin
|
|
from django.http import Http404
|
|
from django.shortcuts import redirect
|
|
from django.template.response import TemplateResponse
|
|
from django.urls import reverse_lazy
|
|
from django.utils.translation import ugettext as _
|
|
from django.views.generic import FormView
|
|
|
|
from plinth import actions, views
|
|
from plinth.errors import ActionError
|
|
from plinth.modules import gitweb
|
|
|
|
from .forms import CreateRepoForm, EditRepoForm
|
|
|
|
|
|
class GitwebAppView(views.AppView):
|
|
"""Serve configuration page."""
|
|
|
|
app_id = 'gitweb'
|
|
template_name = 'gitweb_configure.html'
|
|
|
|
def get_context_data(self, *args, **kwargs):
|
|
"""Add repositories to the context data."""
|
|
context = super().get_context_data(*args, **kwargs)
|
|
repos = gitweb.get_repo_list()
|
|
context['repos'] = repos
|
|
context['cloning'] = any('clone_progress' in repo for repo in repos)
|
|
context['refresh_page_sec'] = 3 if context['cloning'] else None
|
|
return context
|
|
|
|
|
|
class CreateRepoView(SuccessMessageMixin, FormView):
|
|
"""View to create a new repository."""
|
|
|
|
form_class = CreateRepoForm
|
|
prefix = 'gitweb'
|
|
template_name = 'gitweb_create_edit.html'
|
|
success_url = reverse_lazy('gitweb:index')
|
|
success_message = _('Repository created.')
|
|
|
|
def get_context_data(self, **kwargs):
|
|
"""Return additional context for rendering the template."""
|
|
context = super().get_context_data(**kwargs)
|
|
context['title'] = _('Create Repository')
|
|
return context
|
|
|
|
def form_valid(self, form):
|
|
"""Create the repository on valid form submission."""
|
|
form_data = {}
|
|
for key, value in form.cleaned_data.items():
|
|
if value is None:
|
|
form_data[key] = ''
|
|
else:
|
|
form_data[key] = value
|
|
try:
|
|
gitweb.create_repo(form_data['name'], form_data['description'],
|
|
form_data['owner'], form_data['is_private'])
|
|
except ActionError as error:
|
|
self.success_message = ''
|
|
error_text = error.args[2].split('\n')[0]
|
|
messages.error(
|
|
self.request, "{0} {1}".format(
|
|
_('An error occurred while creating the repository.'),
|
|
error_text))
|
|
else:
|
|
gitweb.app.update_service_access()
|
|
|
|
return super().form_valid(form)
|
|
|
|
|
|
class EditRepoView(SuccessMessageMixin, FormView):
|
|
"""View to edit an existing repository."""
|
|
|
|
form_class = EditRepoForm
|
|
prefix = 'gitweb'
|
|
template_name = 'gitweb_create_edit.html'
|
|
success_url = reverse_lazy('gitweb:index')
|
|
success_message = _('Repository edited.')
|
|
|
|
def get_context_data(self, **kwargs):
|
|
"""Return additional context for rendering the template."""
|
|
context = super().get_context_data(**kwargs)
|
|
context['title'] = _('Edit repository')
|
|
return context
|
|
|
|
def get_initial(self):
|
|
"""Load information about repository being edited."""
|
|
name = self.kwargs['name']
|
|
for repo in gitweb.get_repo_list():
|
|
if repo['name'] == name and 'clone_progress' not in repo:
|
|
break
|
|
else:
|
|
raise Http404
|
|
|
|
return gitweb.repo_info(name)
|
|
|
|
def form_valid(self, form):
|
|
"""Edit the repo on valid form submission."""
|
|
if form.initial != form.cleaned_data:
|
|
form_data = {}
|
|
for key, value in form.cleaned_data.items():
|
|
if value is None:
|
|
form_data[key] = ''
|
|
else:
|
|
form_data[key] = value
|
|
|
|
try:
|
|
gitweb.edit_repo(form.initial, form_data)
|
|
except ActionError:
|
|
messages.error(self.request,
|
|
_('An error occurred during configuration.'))
|
|
gitweb.app.update_service_access()
|
|
|
|
return super().form_valid(form)
|
|
|
|
|
|
def delete(request, name):
|
|
"""Handle deleting repositories, showing a confirmation dialog first.
|
|
|
|
On GET, display a confirmation page.
|
|
On POST, delete the repository.
|
|
"""
|
|
for repo in gitweb.get_repo_list():
|
|
if repo['name'] == name and 'clone_progress' not in repo:
|
|
break
|
|
else:
|
|
raise Http404
|
|
|
|
if request.method == 'POST':
|
|
try:
|
|
gitweb.delete_repo(name)
|
|
messages.success(request, _('{name} deleted.').format(name=name))
|
|
except actions.ActionError as error:
|
|
messages.error(
|
|
request,
|
|
_('Could not delete {name}: {error}').format(
|
|
name=name, error=error),
|
|
)
|
|
gitweb.app.update_service_access()
|
|
|
|
return redirect(reverse_lazy('gitweb:index'))
|
|
|
|
return TemplateResponse(request, 'gitweb_delete.html', {
|
|
'title': gitweb.app.info.name,
|
|
'name': name
|
|
})
|