Replace internal gvacommon copy with external requirement
This commit is contained in:
parent
2b74fe99e0
commit
dee8aa71a4
5 changed files with 1 additions and 60 deletions
3
gvafile/gvacommon/.gitignore
vendored
3
gvafile/gvacommon/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
||||||
.*.swp
|
|
||||||
*.pyc
|
|
||||||
.ropeproject/
|
|
|
@ -1,15 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
from __future__ import unicode_literals
|
|
||||||
|
|
||||||
|
|
||||||
class GvaRouter(object):
|
|
||||||
|
|
||||||
def route_for_task(self, task, args=None, kwargs=None):
|
|
||||||
for route in ['ldap', 'file', 'mysql', 'pgsql', 'web']:
|
|
||||||
if route in task:
|
|
||||||
return {
|
|
||||||
'exchange': route,
|
|
||||||
'exchange_type': 'direct',
|
|
||||||
'queue': route,
|
|
||||||
}
|
|
||||||
return None
|
|
|
@ -1,42 +0,0 @@
|
||||||
"""
|
|
||||||
This module defines mixins for gnuviechadmin views.
|
|
||||||
|
|
||||||
"""
|
|
||||||
from __future__ import unicode_literals
|
|
||||||
|
|
||||||
from django.http import HttpResponseForbidden
|
|
||||||
from django.utils.translation import ugettext as _
|
|
||||||
|
|
||||||
from braces.views import LoginRequiredMixin
|
|
||||||
|
|
||||||
|
|
||||||
class StaffOrSelfLoginRequiredMixin(LoginRequiredMixin):
|
|
||||||
"""
|
|
||||||
Mixin that makes sure that a user is logged in and matches the current
|
|
||||||
customer or is a staff user.
|
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
def dispatch(self, request, *args, **kwargs):
|
|
||||||
if (
|
|
||||||
request.user.is_staff or
|
|
||||||
request.user == self.get_customer_object()
|
|
||||||
):
|
|
||||||
return super(StaffOrSelfLoginRequiredMixin, self).dispatch(
|
|
||||||
request, *args, **kwargs
|
|
||||||
)
|
|
||||||
return HttpResponseForbidden(
|
|
||||||
_('You are not allowed to view this page.')
|
|
||||||
)
|
|
||||||
|
|
||||||
def get_customer_object(self):
|
|
||||||
"""
|
|
||||||
Views based on this mixin have to implement this method to return
|
|
||||||
the customer that must be an object of the same class as the
|
|
||||||
django.contrib.auth user type.
|
|
||||||
|
|
||||||
:return: customer
|
|
||||||
:rtype: settings.AUTH_USER_MODEL
|
|
||||||
|
|
||||||
"""
|
|
||||||
raise NotImplemented("subclass has to implement get_customer_object")
|
|
|
@ -8,3 +8,4 @@ kombu==3.0.24
|
||||||
pytz==2014.10
|
pytz==2014.10
|
||||||
wsgiref==0.1.2
|
wsgiref==0.1.2
|
||||||
PyYAML==3.11
|
PyYAML==3.11
|
||||||
|
-e git+https://git.gnuviech-server.de/gvacommon.git@0.3.0#egg=gvacommon
|
||||||
|
|
Loading…
Reference in a new issue