mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-06 07:06:19 +01:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3874aa6fee | ||
|
|
103e9f3a11 | ||
|
|
d02c25f421 | ||
|
|
228af38a4a | ||
|
|
051a48885c | ||
|
|
6bcdc6052f | ||
|
|
af3527e64f | ||
|
|
17ef3dd07a | ||
|
|
1f165ecd2a | ||
|
|
70d1d450a9 |
@@ -36,7 +36,7 @@ Main features:
|
|||||||
|
|
||||||
- Can be easily extended with additional services and apps. Many are provided by the community and can be found here: [Community Creations](https://gitlab.com/allianceauth/community-creations)
|
- Can be easily extended with additional services and apps. Many are provided by the community and can be found here: [Community Creations](https://gitlab.com/allianceauth/community-creations)
|
||||||
|
|
||||||
- Chinese :cn:, English :us:, German :de: and Spanish :es: localization
|
- English :flag_gb:, Chinese :flag_cn:, German :flag_de:, Spanish :flag_es:, Korean :flag_kr: and Russian :flag_ru: localization
|
||||||
|
|
||||||
For further details about AA - including an installation guide and a full list of included services and plugin apps - please see the [official documentation](http://allianceauth.rtfd.io).
|
For further details about AA - including an installation guide and a full list of included services and plugin apps - please see the [official documentation](http://allianceauth.rtfd.io).
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# This will make sure the app is always imported when
|
# This will make sure the app is always imported when
|
||||||
# Django starts so that shared_task will use this app.
|
# Django starts so that shared_task will use this app.
|
||||||
|
|
||||||
__version__ = '2.7.5'
|
__version__ = '2.8.0a1'
|
||||||
__title__ = 'Alliance Auth'
|
__title__ = 'Alliance Auth'
|
||||||
__url__ = 'https://gitlab.com/allianceauth/allianceauth'
|
__url__ = 'https://gitlab.com/allianceauth/allianceauth'
|
||||||
NAME = '%s v%s' % (__title__, __version__)
|
NAME = '%s v%s' % (__title__, __version__)
|
||||||
|
|||||||
37
allianceauth/groupmanagement/auth_hooks.py
Normal file
37
allianceauth/groupmanagement/auth_hooks.py
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
|
from allianceauth.services.hooks import MenuItemHook, UrlHook
|
||||||
|
from allianceauth import hooks
|
||||||
|
|
||||||
|
from . import urls
|
||||||
|
from .managers import GroupManager
|
||||||
|
|
||||||
|
|
||||||
|
class GroupManagementMenuItem(MenuItemHook):
|
||||||
|
""" This class ensures only authorized users will see the menu entry """
|
||||||
|
def __init__(self):
|
||||||
|
# setup menu entry for sidebar
|
||||||
|
MenuItemHook.__init__(
|
||||||
|
self,
|
||||||
|
text=_('Group Management'),
|
||||||
|
classes='fas fa-users-cog fa-fw',
|
||||||
|
url_name='groupmanagement:management',
|
||||||
|
order=50,
|
||||||
|
navactive=['groupmanagement:management']
|
||||||
|
)
|
||||||
|
|
||||||
|
def render(self, request):
|
||||||
|
if GroupManager.can_manage_groups(request.user):
|
||||||
|
self.count = GroupManager.pending_requests_count_for_user(request.user)
|
||||||
|
return MenuItemHook.render(self, request)
|
||||||
|
return ''
|
||||||
|
|
||||||
|
|
||||||
|
@hooks.register('menu_item_hook')
|
||||||
|
def register_menu():
|
||||||
|
return GroupManagementMenuItem()
|
||||||
|
|
||||||
|
|
||||||
|
@hooks.register('url_hook')
|
||||||
|
def register_urls():
|
||||||
|
return UrlHook(urls, 'group', r'^group/')
|
||||||
@@ -4,6 +4,7 @@ from django.contrib.auth.models import Group, User
|
|||||||
from django.db.models import Q, QuerySet
|
from django.db.models import Q, QuerySet
|
||||||
|
|
||||||
from allianceauth.authentication.models import State
|
from allianceauth.authentication.models import State
|
||||||
|
from .models import GroupRequest
|
||||||
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
@@ -101,3 +102,18 @@ class GroupManager:
|
|||||||
if user.is_authenticated:
|
if user.is_authenticated:
|
||||||
return cls.has_management_permission(user) or cls.get_group_leaders_groups(user).filter(pk=group.pk).exists()
|
return cls.has_management_permission(user) or cls.get_group_leaders_groups(user).filter(pk=group.pk).exists()
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def pending_requests_count_for_user(cls, user: User) -> int:
|
||||||
|
"""Returns the number of pending group requests for the given user"""
|
||||||
|
|
||||||
|
if cls.has_management_permission(user):
|
||||||
|
return GroupRequest.objects.filter(status="pending").count()
|
||||||
|
else:
|
||||||
|
return (
|
||||||
|
GroupRequest.objects
|
||||||
|
.filter(status="pending")
|
||||||
|
.filter(group__authgroup__group_leaders__exact=user)
|
||||||
|
.select_related("group__authgroup__group_leaders")
|
||||||
|
.count()
|
||||||
|
)
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ from django.db import models
|
|||||||
from django.db.models.signals import post_save
|
from django.db.models.signals import post_save
|
||||||
from django.dispatch import receiver
|
from django.dispatch import receiver
|
||||||
from allianceauth.authentication.models import State
|
from allianceauth.authentication.models import State
|
||||||
from datetime import datetime
|
|
||||||
|
|
||||||
|
|
||||||
class GroupRequest(models.Model):
|
class GroupRequest(models.Model):
|
||||||
|
|||||||
@@ -66,8 +66,8 @@
|
|||||||
|
|
||||||
{% block extra_javascript %}
|
{% block extra_javascript %}
|
||||||
{% include 'bundles/datatables-js.html' %}
|
{% include 'bundles/datatables-js.html' %}
|
||||||
{% include 'bundles/moment-js.html' %}
|
{% include 'bundles/moment-js.html' with locale=True %}
|
||||||
<script type="text/javascript" src="{% static 'js/filterDropDown/filterDropDown.min.js' %}"></script>
|
<script type="application/javascript" src="{% static 'js/filterDropDown/filterDropDown.min.js' %}"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block extra_css %}
|
{% block extra_css %}
|
||||||
|
|||||||
@@ -73,7 +73,7 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
{% block extra_javascript %}
|
{% block extra_javascript %}
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.4/clipboard.min.js"></script>
|
{% include 'bundles/clipboard-js.html' %}
|
||||||
<script>
|
<script>
|
||||||
new ClipboardJS('#clipboard-copy');
|
new ClipboardJS('#clipboard-copy');
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
from django import template
|
|
||||||
from django.contrib.auth.models import User
|
|
||||||
|
|
||||||
from allianceauth.groupmanagement.managers import GroupManager
|
|
||||||
|
|
||||||
|
|
||||||
register = template.Library()
|
|
||||||
|
|
||||||
|
|
||||||
@register.filter
|
|
||||||
def can_manage_groups(user: User) -> bool:
|
|
||||||
"""returns True if the given user can manage groups. Returns False otherwise."""
|
|
||||||
if not isinstance(user, User):
|
|
||||||
return False
|
|
||||||
return GroupManager.can_manage_groups(user)
|
|
||||||
@@ -7,7 +7,7 @@ from django.urls import reverse
|
|||||||
from allianceauth.eveonline.models import EveCorporationInfo, EveAllianceInfo
|
from allianceauth.eveonline.models import EveCorporationInfo, EveAllianceInfo
|
||||||
from allianceauth.tests.auth_utils import AuthUtils
|
from allianceauth.tests.auth_utils import AuthUtils
|
||||||
|
|
||||||
from ..models import AuthGroup
|
from ..models import GroupRequest
|
||||||
from ..managers import GroupManager
|
from ..managers import GroupManager
|
||||||
|
|
||||||
|
|
||||||
@@ -15,6 +15,7 @@ class MockUserNotAuthenticated():
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.is_authenticated = False
|
self.is_authenticated = False
|
||||||
|
|
||||||
|
|
||||||
class GroupManagementVisibilityTestCase(TestCase):
|
class GroupManagementVisibilityTestCase(TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpTestData(cls):
|
def setUpTestData(cls):
|
||||||
@@ -37,22 +38,20 @@ class GroupManagementVisibilityTestCase(TestCase):
|
|||||||
def _refresh_user(self):
|
def _refresh_user(self):
|
||||||
self.user = User.objects.get(pk=self.user.pk)
|
self.user = User.objects.get(pk=self.user.pk)
|
||||||
|
|
||||||
|
|
||||||
def test_get_group_leaders_groups(self):
|
def test_get_group_leaders_groups(self):
|
||||||
self.group1.authgroup.group_leaders.add(self.user)
|
self.group1.authgroup.group_leaders.add(self.user)
|
||||||
self.group2.authgroup.group_leader_groups.add(self.group1)
|
self.group2.authgroup.group_leader_groups.add(self.group1)
|
||||||
self._refresh_user()
|
self._refresh_user()
|
||||||
groups = GroupManager.get_group_leaders_groups(self.user)
|
groups = GroupManager.get_group_leaders_groups(self.user)
|
||||||
|
|
||||||
self.assertIn(self.group1, groups) #avail due to user
|
self.assertIn(self.group1, groups) #avail due to user
|
||||||
self.assertNotIn(self.group2, groups) #not avail due to group
|
self.assertNotIn(self.group2, groups) #not avail due to group
|
||||||
self.assertNotIn(self.group3, groups) #not avail at all
|
self.assertNotIn(self.group3, groups) #not avail at all
|
||||||
|
|
||||||
self.user.groups.add(self.group1)
|
self.user.groups.add(self.group1)
|
||||||
self._refresh_user()
|
self._refresh_user()
|
||||||
groups = GroupManager.get_group_leaders_groups(self.user)
|
groups = GroupManager.get_group_leaders_groups(self.user)
|
||||||
|
|
||||||
|
|
||||||
def test_can_manage_group(self):
|
def test_can_manage_group(self):
|
||||||
self.group1.authgroup.group_leaders.add(self.user)
|
self.group1.authgroup.group_leaders.add(self.user)
|
||||||
self.user.groups.add(self.group1)
|
self.user.groups.add(self.group1)
|
||||||
@@ -182,7 +181,6 @@ class TestGroupManager(TestCase):
|
|||||||
]:
|
]:
|
||||||
self.assertFalse(GroupManager.joinable_group(x, member_state))
|
self.assertFalse(GroupManager.joinable_group(x, member_state))
|
||||||
|
|
||||||
|
|
||||||
def test_joinable_group_guest(self):
|
def test_joinable_group_guest(self):
|
||||||
guest_state = AuthUtils.get_guest_state()
|
guest_state = AuthUtils.get_guest_state()
|
||||||
for x in [
|
for x in [
|
||||||
@@ -200,7 +198,6 @@ class TestGroupManager(TestCase):
|
|||||||
]:
|
]:
|
||||||
self.assertFalse(GroupManager.joinable_group(x, guest_state))
|
self.assertFalse(GroupManager.joinable_group(x, guest_state))
|
||||||
|
|
||||||
|
|
||||||
def test_get_all_non_internal_groups(self):
|
def test_get_all_non_internal_groups(self):
|
||||||
result = GroupManager.get_all_non_internal_groups()
|
result = GroupManager.get_all_non_internal_groups()
|
||||||
expected = {
|
expected = {
|
||||||
@@ -224,7 +221,7 @@ class TestGroupManager(TestCase):
|
|||||||
def test_get_joinable_groups_for_user_no_permission(self):
|
def test_get_joinable_groups_for_user_no_permission(self):
|
||||||
AuthUtils.assign_state(self.user, AuthUtils.get_guest_state())
|
AuthUtils.assign_state(self.user, AuthUtils.get_guest_state())
|
||||||
result = GroupManager.get_joinable_groups_for_user(self.user)
|
result = GroupManager.get_joinable_groups_for_user(self.user)
|
||||||
expected= {self.group_public_1, self.group_public_2}
|
expected = {self.group_public_1, self.group_public_2}
|
||||||
self.assertSetEqual(set(result), expected)
|
self.assertSetEqual(set(result), expected)
|
||||||
|
|
||||||
def test_get_joinable_groups_for_user_guest_w_permission_(self):
|
def test_get_joinable_groups_for_user_guest_w_permission_(self):
|
||||||
@@ -335,3 +332,96 @@ class TestGroupManager(TestCase):
|
|||||||
self.assertFalse(
|
self.assertFalse(
|
||||||
GroupManager.can_manage_group(user, self.group_default)
|
GroupManager.can_manage_group(user, self.group_default)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class TestPendingRequestsCountForUser(TestCase):
|
||||||
|
|
||||||
|
def setUp(self) -> None:
|
||||||
|
self.group_1 = Group.objects.create(name="Group 1")
|
||||||
|
self.group_2 = Group.objects.create(name="Group 2")
|
||||||
|
self.user_leader_1 = AuthUtils.create_member('Clark Kent')
|
||||||
|
self.group_1.authgroup.group_leaders.add(self.user_leader_1)
|
||||||
|
self.user_leader_2 = AuthUtils.create_member('Peter Parker')
|
||||||
|
self.group_2.authgroup.group_leaders.add(self.user_leader_2)
|
||||||
|
self.user_requestor = AuthUtils.create_member('Bruce Wayne')
|
||||||
|
|
||||||
|
def test_single_request_for_leader(self):
|
||||||
|
# given user_leader_1 is leader of group_1
|
||||||
|
# and user_leader_2 is leader of group_2
|
||||||
|
# when user_requestor is requesting access to group 1
|
||||||
|
# then return 1 for user_leader 1 and 0 for user_leader_2
|
||||||
|
GroupRequest.objects.create(
|
||||||
|
status="pending", user=self.user_requestor, group=self.group_1
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
GroupManager.pending_requests_count_for_user(self.user_leader_1), 1
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
GroupManager.pending_requests_count_for_user(self.user_leader_2), 0
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_return_none_for_none_leader(self):
|
||||||
|
# given user_requestor is leader of no group
|
||||||
|
# when user_requestor is requesting access to group 1
|
||||||
|
# then return 0 for user_requestor
|
||||||
|
GroupRequest.objects.create(
|
||||||
|
status="pending", user=self.user_requestor, group=self.group_1
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
GroupManager.pending_requests_count_for_user(self.user_requestor), 0
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_single_leave_request(self):
|
||||||
|
# given user_leader_2 is leader of group_2
|
||||||
|
# and user_requestor is member of group 2
|
||||||
|
# when user_requestor is requesting to leave group 2
|
||||||
|
# then return 1 for user_leader_2
|
||||||
|
self.user_requestor.groups.add(self.group_2)
|
||||||
|
|
||||||
|
GroupRequest.objects.create(
|
||||||
|
status="pending",
|
||||||
|
user=self.user_requestor,
|
||||||
|
group=self.group_2,
|
||||||
|
leave_request=True
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
GroupManager.pending_requests_count_for_user(self.user_leader_2), 1
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_join_and_leave_request(self):
|
||||||
|
# given user_leader_2 is leader of group_2
|
||||||
|
# and user_requestor is member of group 2
|
||||||
|
# when user_requestor is requesting to leave group 2
|
||||||
|
# and user_requestor_2 is requesting to join group 2
|
||||||
|
# then return 2 for user_leader_2
|
||||||
|
self.user_requestor.groups.add(self.group_2)
|
||||||
|
user_requestor_2 = AuthUtils.create_member("Lex Luther")
|
||||||
|
GroupRequest.objects.create(
|
||||||
|
status="pending",
|
||||||
|
user=user_requestor_2,
|
||||||
|
group=self.group_2
|
||||||
|
)
|
||||||
|
GroupRequest.objects.create(
|
||||||
|
status="pending",
|
||||||
|
user=self.user_requestor,
|
||||||
|
group=self.group_2,
|
||||||
|
leave_request=True
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
GroupManager.pending_requests_count_for_user(self.user_leader_2), 2
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_single_request_for_user_with_management_perm(self):
|
||||||
|
# given user_leader_4 which is leafer of no group
|
||||||
|
# but has the management permissions
|
||||||
|
# when user_requestor is requesting access to group 1
|
||||||
|
# then return 1 for user_leader_4
|
||||||
|
user_leader_4 = AuthUtils.create_member("Lex Luther")
|
||||||
|
AuthUtils.add_permission_to_user_by_name("auth.group_management", user_leader_4)
|
||||||
|
user_leader_4 = User.objects.get(pk=user_leader_4.pk)
|
||||||
|
GroupRequest.objects.create(
|
||||||
|
status="pending", user=self.user_requestor, group=self.group_1
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
GroupManager.pending_requests_count_for_user(self.user_leader_1), 1
|
||||||
|
)
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
from unittest.mock import patch
|
|
||||||
|
|
||||||
from django.test import TestCase
|
|
||||||
from allianceauth.tests.auth_utils import AuthUtils
|
|
||||||
|
|
||||||
from ..templatetags.groupmanagement import can_manage_groups
|
|
||||||
|
|
||||||
MODULE_PATH = 'allianceauth.groupmanagement.templatetags.groupmanagement'
|
|
||||||
|
|
||||||
|
|
||||||
@patch(MODULE_PATH + '.GroupManager.can_manage_groups')
|
|
||||||
class TestCanManageGroups(TestCase):
|
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self.user = AuthUtils.create_user('Bruce Wayne')
|
|
||||||
|
|
||||||
def test_return_normal_result(self, mock_can_manage_groups):
|
|
||||||
mock_can_manage_groups.return_value = True
|
|
||||||
|
|
||||||
self.assertTrue(can_manage_groups(self.user))
|
|
||||||
self.assertTrue(mock_can_manage_groups.called)
|
|
||||||
|
|
||||||
def test_return_false_if_not_user(self, mock_can_manage_groups):
|
|
||||||
mock_can_manage_groups.return_value = True
|
|
||||||
|
|
||||||
self.assertFalse(can_manage_groups('invalid'))
|
|
||||||
self.assertFalse(mock_can_manage_groups.called)
|
|
||||||
@@ -1,32 +1,29 @@
|
|||||||
from . import views
|
from . import views
|
||||||
|
|
||||||
from django.conf.urls import include, url
|
from django.conf.urls import url
|
||||||
app_name = 'groupmanagement'
|
app_name = 'groupmanagement'
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r'^groups/', views.groups_view, name='groups'),
|
url(r'^groups/', views.groups_view, name='groups'),
|
||||||
url(r'^group/', include([
|
url(r'^management/', views.group_management,
|
||||||
url(r'^management/', views.group_management,
|
name='management'),
|
||||||
name='management'),
|
url(r'^membership/$', views.group_membership,
|
||||||
url(r'^membership/$', views.group_membership,
|
name='membership'),
|
||||||
name='membership'),
|
url(r'^membership/(\w+)/$', views.group_membership_list,
|
||||||
url(r'^membership/(\w+)/$', views.group_membership_list,
|
name='membership_list'),
|
||||||
name='membership_list'),
|
url(r'^membership/(\w+)/audit/$', views.group_membership_audit, name="audit_log"),
|
||||||
url(r'^membership/(\w+)/audit/$', views.group_membership_audit, name="audit_log"),
|
url(r'^membership/(\w+)/remove/(\w+)/$', views.group_membership_remove,
|
||||||
url(r'^membership/(\w+)/remove/(\w+)/$', views.group_membership_remove,
|
name='membership_remove'),
|
||||||
name='membership_remove'),
|
url(r'^request_add/(\w+)', views.group_request_add,
|
||||||
url(r'^request_add/(\w+)', views.group_request_add,
|
name='request_add'),
|
||||||
name='request_add'),
|
url(r'^request/accept/(\w+)', views.group_accept_request,
|
||||||
url(r'^request/accept/(\w+)', views.group_accept_request,
|
name='accept_request'),
|
||||||
name='accept_request'),
|
url(r'^request/reject/(\w+)', views.group_reject_request,
|
||||||
url(r'^request/reject/(\w+)', views.group_reject_request,
|
name='reject_request'),
|
||||||
name='reject_request'),
|
url(r'^request_leave/(\w+)', views.group_request_leave,
|
||||||
|
name='request_leave'),
|
||||||
url(r'^request_leave/(\w+)', views.group_request_leave,
|
url(r'leave_request/accept/(\w+)', views.group_leave_accept_request,
|
||||||
name='request_leave'),
|
name='leave_accept_request'),
|
||||||
url(r'leave_request/accept/(\w+)', views.group_leave_accept_request,
|
url(r'^leave_request/reject/(\w+)', views.group_leave_reject_request,
|
||||||
name='leave_accept_request'),
|
name='leave_reject_request'),
|
||||||
url(r'^leave_request/reject/(\w+)', views.group_leave_reject_request,
|
|
||||||
name='leave_reject_request'),
|
|
||||||
])),
|
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
from allianceauth.services.hooks import MenuItemHook, UrlHook
|
|
||||||
from django.utils.translation import ugettext_lazy as _
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
from allianceauth import hooks
|
from allianceauth import hooks
|
||||||
from allianceauth.hrapplications import urls
|
from allianceauth.services.hooks import MenuItemHook, UrlHook
|
||||||
|
|
||||||
|
from . import urls
|
||||||
|
from .models import Application
|
||||||
|
|
||||||
|
|
||||||
class ApplicationsMenu(MenuItemHook):
|
class ApplicationsMenu(MenuItemHook):
|
||||||
@@ -12,6 +15,11 @@ class ApplicationsMenu(MenuItemHook):
|
|||||||
'hrapplications:index',
|
'hrapplications:index',
|
||||||
navactive=['hrapplications:'])
|
navactive=['hrapplications:'])
|
||||||
|
|
||||||
|
def render(self, request):
|
||||||
|
app_count = Application.objects.pending_requests_count_for_user(request.user)
|
||||||
|
self.count = app_count if app_count and app_count > 0 else None
|
||||||
|
return MenuItemHook.render(self, request)
|
||||||
|
|
||||||
|
|
||||||
@hooks.register('menu_item_hook')
|
@hooks.register('menu_item_hook')
|
||||||
def register_menu():
|
def register_menu():
|
||||||
|
|||||||
25
allianceauth/hrapplications/managers.py
Normal file
25
allianceauth/hrapplications/managers.py
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
from django.contrib.auth.models import User
|
||||||
|
from django.db import models
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
|
||||||
|
class ApplicationManager(models.Manager):
|
||||||
|
|
||||||
|
def pending_requests_count_for_user(self, user: User) -> Optional[int]:
|
||||||
|
"""Returns the number of pending group requests for the given user"""
|
||||||
|
if user.is_superuser:
|
||||||
|
return self.filter(approved__isnull=True).count()
|
||||||
|
elif user.has_perm("auth.human_resources"):
|
||||||
|
main_character = user.profile.main_character
|
||||||
|
if main_character:
|
||||||
|
return (
|
||||||
|
self
|
||||||
|
.select_related("form__corp")
|
||||||
|
.filter(form__corp__corporation_id=main_character.corporation_id)
|
||||||
|
.filter(approved__isnull=True)
|
||||||
|
.count()
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
return None
|
||||||
@@ -2,8 +2,9 @@ from django.contrib.auth.models import User
|
|||||||
from django.db import models
|
from django.db import models
|
||||||
from sortedm2m.fields import SortedManyToManyField
|
from sortedm2m.fields import SortedManyToManyField
|
||||||
|
|
||||||
from allianceauth.eveonline.models import EveCharacter
|
from allianceauth.eveonline.models import EveCharacter, EveCorporationInfo
|
||||||
from allianceauth.eveonline.models import EveCorporationInfo
|
|
||||||
|
from .managers import ApplicationManager
|
||||||
|
|
||||||
|
|
||||||
class ApplicationQuestion(models.Model):
|
class ApplicationQuestion(models.Model):
|
||||||
@@ -22,6 +23,7 @@ class ApplicationChoice(models.Model):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.choice_text
|
return self.choice_text
|
||||||
|
|
||||||
|
|
||||||
class ApplicationForm(models.Model):
|
class ApplicationForm(models.Model):
|
||||||
questions = SortedManyToManyField(ApplicationQuestion)
|
questions = SortedManyToManyField(ApplicationQuestion)
|
||||||
corp = models.OneToOneField(EveCorporationInfo, on_delete=models.CASCADE)
|
corp = models.OneToOneField(EveCorporationInfo, on_delete=models.CASCADE)
|
||||||
@@ -38,6 +40,8 @@ class Application(models.Model):
|
|||||||
reviewer_character = models.ForeignKey(EveCharacter, on_delete=models.SET_NULL, blank=True, null=True)
|
reviewer_character = models.ForeignKey(EveCharacter, on_delete=models.SET_NULL, blank=True, null=True)
|
||||||
created = models.DateTimeField(auto_now_add=True)
|
created = models.DateTimeField(auto_now_add=True)
|
||||||
|
|
||||||
|
objects = ApplicationManager()
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return str(self.user) + " Application To " + str(self.form)
|
return str(self.user) + " Application To " + str(self.form)
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,103 @@
|
|||||||
# Create your tests here.
|
from django.contrib.auth.models import User
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
from allianceauth.eveonline.models import EveCorporationInfo
|
||||||
|
from allianceauth.tests.auth_utils import AuthUtils
|
||||||
|
|
||||||
|
from .models import Application, ApplicationForm, ApplicationQuestion, ApplicationChoice
|
||||||
|
|
||||||
|
|
||||||
|
class TestApplicationManagersPendingRequestsCountForUser(TestCase):
|
||||||
|
def setUp(self) -> None:
|
||||||
|
self.corporation_1 = EveCorporationInfo.objects.create(
|
||||||
|
corporation_id=2001, corporation_name="Wayne Tech", member_count=42
|
||||||
|
)
|
||||||
|
self.corporation_2 = EveCorporationInfo.objects.create(
|
||||||
|
corporation_id=2011, corporation_name="Lex Corp", member_count=666
|
||||||
|
)
|
||||||
|
question = ApplicationQuestion.objects.create(title="Dummy Question")
|
||||||
|
ApplicationChoice.objects.create(question=question, choice_text="yes")
|
||||||
|
ApplicationChoice.objects.create(question=question, choice_text="no")
|
||||||
|
self.form_corporation_1 = ApplicationForm.objects.create(
|
||||||
|
corp=self.corporation_1
|
||||||
|
)
|
||||||
|
self.form_corporation_1.questions.add(question)
|
||||||
|
self.form_corporation_2 = ApplicationForm.objects.create(
|
||||||
|
corp=self.corporation_2
|
||||||
|
)
|
||||||
|
self.form_corporation_2.questions.add(question)
|
||||||
|
|
||||||
|
self.user_requestor = AuthUtils.create_member("Peter Parker")
|
||||||
|
|
||||||
|
self.user_manager = AuthUtils.create_member("Bruce Wayne")
|
||||||
|
AuthUtils.add_main_character_2(
|
||||||
|
self.user_manager,
|
||||||
|
self.user_manager.username,
|
||||||
|
1001,
|
||||||
|
self.corporation_1.corporation_id,
|
||||||
|
self.corporation_1.corporation_name,
|
||||||
|
)
|
||||||
|
AuthUtils.add_permission_to_user_by_name(
|
||||||
|
"auth.human_resources", self.user_manager
|
||||||
|
)
|
||||||
|
self.user_manager = User.objects.get(pk=self.user_manager.pk)
|
||||||
|
|
||||||
|
def test_no_pending_application(self):
|
||||||
|
# given manager of corporation 1 has permission
|
||||||
|
# when no application is pending for corporation 1
|
||||||
|
# return 0
|
||||||
|
self.assertEqual(
|
||||||
|
Application.objects.pending_requests_count_for_user(self.user_manager), 0
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_single_pending_application(self):
|
||||||
|
# given manager of corporation 1 has permission
|
||||||
|
# when 1 application is pending for corporation 1
|
||||||
|
# return 1
|
||||||
|
Application.objects.create(
|
||||||
|
form=self.form_corporation_1, user=self.user_requestor
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
Application.objects.pending_requests_count_for_user(self.user_manager), 1
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_user_has_no_permission(self):
|
||||||
|
# given user has no permission
|
||||||
|
# when 1 application is pending
|
||||||
|
# return None
|
||||||
|
self.assertIsNone(
|
||||||
|
Application.objects.pending_requests_count_for_user(self.user_requestor)
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_two_pending_applications_for_different_corporations_normal_manager(self):
|
||||||
|
# given manager of corporation 1 has permission
|
||||||
|
# when 1 application is pending for corporation 1
|
||||||
|
# and 1 application is pending for corporation 2
|
||||||
|
# return 1
|
||||||
|
Application.objects.create(
|
||||||
|
form=self.form_corporation_1, user=self.user_requestor
|
||||||
|
)
|
||||||
|
Application.objects.create(
|
||||||
|
form=self.form_corporation_2, user=self.user_requestor
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
Application.objects.pending_requests_count_for_user(self.user_manager), 1
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_two_pending_applications_for_different_corporations_manager_is_super(self):
|
||||||
|
# given manager of corporation 1 has permission
|
||||||
|
# when 1 application is pending for corporation 1
|
||||||
|
# and 1 application is pending for corporation 2
|
||||||
|
# return 1
|
||||||
|
Application.objects.create(
|
||||||
|
form=self.form_corporation_1, user=self.user_requestor
|
||||||
|
)
|
||||||
|
Application.objects.create(
|
||||||
|
form=self.form_corporation_2, user=self.user_requestor
|
||||||
|
)
|
||||||
|
superuser = User.objects.create_superuser(
|
||||||
|
"Superman", "superman@example.com", "password"
|
||||||
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
Application.objects.pending_requests_count_for_user(superuser), 2
|
||||||
|
)
|
||||||
|
|||||||
@@ -36,9 +36,15 @@
|
|||||||
{% block extra_script %}
|
{% block extra_script %}
|
||||||
|
|
||||||
$('#id_start').datetimepicker({
|
$('#id_start').datetimepicker({
|
||||||
lang: '{{ LANGUAGE_CODE }}',
|
setlocale: '{{ LANGUAGE_CODE }}',
|
||||||
maskInput: true,
|
{% if NIGHT_MODE %}
|
||||||
format: 'Y-m-d H:i',minDate:0
|
theme: 'dark',
|
||||||
|
{% else %}
|
||||||
|
theme: 'default',
|
||||||
|
{% endif %}
|
||||||
|
mask: true,
|
||||||
|
format: 'Y-m-d H:i',
|
||||||
|
minDate: 0
|
||||||
});
|
});
|
||||||
|
|
||||||
{% endblock extra_script %}
|
{% endblock extra_script %}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
{% include 'bundles/moment-js.html' with locale=True %}
|
{% include 'bundles/moment-js.html' with locale=True %}
|
||||||
<script src="{% static 'js/timers.js' %}"></script>
|
<script src="{% static 'js/timers.js' %}"></script>
|
||||||
<script type="text/javascript">
|
<script type="application/javascript">
|
||||||
// Data
|
// Data
|
||||||
var timers = [
|
var timers = [
|
||||||
{% for op in optimer %}
|
{% for op in optimer %}
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript">
|
<script type="application/javascript">
|
||||||
|
|
||||||
timedUpdate();
|
timedUpdate();
|
||||||
setAllLocalTimes();
|
setAllLocalTimes();
|
||||||
|
|||||||
@@ -44,9 +44,15 @@
|
|||||||
{% block extra_script %}
|
{% block extra_script %}
|
||||||
|
|
||||||
$('#id_start').datetimepicker({
|
$('#id_start').datetimepicker({
|
||||||
lang: '{{ LANGUAGE_CODE }}',
|
setlocale: '{{ LANGUAGE_CODE }}',
|
||||||
maskInput: true,
|
{% if NIGHT_MODE %}
|
||||||
format: 'Y-m-d H:i',minDate:0
|
theme: 'dark',
|
||||||
|
{% else %}
|
||||||
|
theme: 'default',
|
||||||
|
{% endif %}
|
||||||
|
mask: true,
|
||||||
|
format: 'Y-m-d H:i',
|
||||||
|
minDate: 0
|
||||||
});
|
});
|
||||||
|
|
||||||
{% endblock extra_script %}
|
{% endblock extra_script %}
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
{% block extra_javascript %}
|
{% block extra_javascript %}
|
||||||
{% include 'bundles/datatables-js.html' %}
|
{% include 'bundles/datatables-js.html' %}
|
||||||
<script type="text/javascript" src="{% static 'js/filterDropDown/filterDropDown.min.js' %}"></script>
|
<script type="application/javascript" src="{% static 'js/filterDropDown/filterDropDown.min.js' %}"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block extra_css %}
|
{% block extra_css %}
|
||||||
|
|||||||
@@ -80,7 +80,7 @@
|
|||||||
|
|
||||||
{% block extra_javascript %}
|
{% block extra_javascript %}
|
||||||
{% include 'bundles/datatables-js.html' %}
|
{% include 'bundles/datatables-js.html' %}
|
||||||
<script type="text/javascript" src="{% static 'js/filterDropDown/filterDropDown.min.js' %}"></script>
|
<script type="application/javascript" src="{% static 'js/filterDropDown/filterDropDown.min.js' %}"></script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block extra_css %}
|
{% block extra_css %}
|
||||||
|
|||||||
@@ -139,6 +139,11 @@ class MenuItemHook:
|
|||||||
self.url_name = url_name
|
self.url_name = url_name
|
||||||
self.template = 'public/menuitem.html'
|
self.template = 'public/menuitem.html'
|
||||||
self.order = order if order is not None else 9999
|
self.order = order if order is not None else 9999
|
||||||
|
|
||||||
|
# count is an integer shown next to the menu item as badge when count != None
|
||||||
|
# apps need to set the count in their child class, e.g. in render() method
|
||||||
|
self.count = None
|
||||||
|
|
||||||
navactive = navactive or []
|
navactive = navactive or []
|
||||||
navactive.append(url_name)
|
navactive.append(url_name)
|
||||||
self.navactive = navactive
|
self.navactive = navactive
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import re
|
|||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.cache import cache
|
from django.core.cache import cache
|
||||||
from hashlib import md5
|
from hashlib import md5
|
||||||
|
from . import providers
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
GROUP_CACHE_MAX_AGE = getattr(settings, 'DISCOURSE_GROUP_CACHE_MAX_AGE', 2 * 60 * 60) # default 2 hours
|
GROUP_CACHE_MAX_AGE = getattr(settings, 'DISCOURSE_GROUP_CACHE_MAX_AGE', 2 * 60 * 60) # default 2 hours
|
||||||
@@ -19,128 +19,8 @@ class DiscourseError(Exception):
|
|||||||
return "API execution failed.\nErrors: %s\nEndpoint: %s" % (self.errors, self.endpoint)
|
return "API execution failed.\nErrors: %s\nEndpoint: %s" % (self.errors, self.endpoint)
|
||||||
|
|
||||||
|
|
||||||
# not exhaustive, only the ones we need
|
|
||||||
ENDPOINTS = {
|
|
||||||
'groups': {
|
|
||||||
'list': {
|
|
||||||
'path': "/groups/search.json",
|
|
||||||
'method': 'get',
|
|
||||||
'args': {
|
|
||||||
'required': [],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'create': {
|
|
||||||
'path': "/admin/groups",
|
|
||||||
'method': 'post',
|
|
||||||
'args': {
|
|
||||||
'required': ['name'],
|
|
||||||
'optional': ['visible'],
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'add_user': {
|
|
||||||
'path': "/admin/groups/%s/members.json",
|
|
||||||
'method': 'put',
|
|
||||||
'args': {
|
|
||||||
'required': ['usernames'],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'remove_user': {
|
|
||||||
'path': "/admin/groups/%s/members.json",
|
|
||||||
'method': 'delete',
|
|
||||||
'args': {
|
|
||||||
'required': ['username'],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'delete': {
|
|
||||||
'path': "/admin/groups/%s.json",
|
|
||||||
'method': 'delete',
|
|
||||||
'args': {
|
|
||||||
'required': [],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'users': {
|
|
||||||
'create': {
|
|
||||||
'path': "/users",
|
|
||||||
'method': 'post',
|
|
||||||
'args': {
|
|
||||||
'required': ['name', 'email', 'password', 'username'],
|
|
||||||
'optional': ['active'],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'update': {
|
|
||||||
'path': "/users/%s.json",
|
|
||||||
'method': 'put',
|
|
||||||
'args': {
|
|
||||||
'required': ['params'],
|
|
||||||
'optional': [],
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'get': {
|
|
||||||
'path': "/users/%s.json",
|
|
||||||
'method': 'get',
|
|
||||||
'args': {
|
|
||||||
'required': [],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'activate': {
|
|
||||||
'path': "/admin/users/%s/activate",
|
|
||||||
'method': 'put',
|
|
||||||
'args': {
|
|
||||||
'required': [],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'set_email': {
|
|
||||||
'path': "/users/%s/preferences/email",
|
|
||||||
'method': 'put',
|
|
||||||
'args': {
|
|
||||||
'required': ['email'],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'suspend': {
|
|
||||||
'path': "/admin/users/%s/suspend",
|
|
||||||
'method': 'put',
|
|
||||||
'args': {
|
|
||||||
'required': ['duration', 'reason'],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'unsuspend': {
|
|
||||||
'path': "/admin/users/%s/unsuspend",
|
|
||||||
'method': 'put',
|
|
||||||
'args': {
|
|
||||||
'required': [],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'logout': {
|
|
||||||
'path': "/admin/users/%s/log_out",
|
|
||||||
'method': 'post',
|
|
||||||
'args': {
|
|
||||||
'required': [],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'external': {
|
|
||||||
'path': "/users/by-external/%s.json",
|
|
||||||
'method': 'get',
|
|
||||||
'args': {
|
|
||||||
'required': [],
|
|
||||||
'optional': [],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class DiscourseManager:
|
class DiscourseManager:
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@@ -148,55 +28,14 @@ class DiscourseManager:
|
|||||||
SUSPEND_DAYS = 99999
|
SUSPEND_DAYS = 99999
|
||||||
SUSPEND_REASON = "Disabled by auth."
|
SUSPEND_REASON = "Disabled by auth."
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def __exc(endpoint, *args, **kwargs):
|
|
||||||
params = {
|
|
||||||
'api_key': settings.DISCOURSE_API_KEY,
|
|
||||||
'api_username': settings.DISCOURSE_API_USERNAME,
|
|
||||||
}
|
|
||||||
silent = kwargs.pop('silent', False)
|
|
||||||
if args:
|
|
||||||
endpoint['parsed_url'] = endpoint['path'] % args
|
|
||||||
else:
|
|
||||||
endpoint['parsed_url'] = endpoint['path']
|
|
||||||
data = {}
|
|
||||||
for arg in endpoint['args']['required']:
|
|
||||||
data[arg] = kwargs[arg]
|
|
||||||
for arg in endpoint['args']['optional']:
|
|
||||||
if arg in kwargs:
|
|
||||||
data[arg] = kwargs[arg]
|
|
||||||
for arg in kwargs:
|
|
||||||
if arg not in endpoint['args']['required'] and arg not in endpoint['args']['optional'] and not silent:
|
|
||||||
logger.warn("Received unrecognized kwarg %s for endpoint %s" % (arg, endpoint))
|
|
||||||
r = getattr(requests, endpoint['method'])(settings.DISCOURSE_URL + endpoint['parsed_url'], headers=params,
|
|
||||||
json=data)
|
|
||||||
try:
|
|
||||||
if 'errors' in r.json() and not silent:
|
|
||||||
logger.error("Discourse execution failed.\nEndpoint: %s\nErrors: %s" % (endpoint, r.json()['errors']))
|
|
||||||
raise DiscourseError(endpoint, r.json()['errors'])
|
|
||||||
if 'success' in r.json():
|
|
||||||
if not r.json()['success'] and not silent:
|
|
||||||
raise DiscourseError(endpoint, None)
|
|
||||||
out = r.json()
|
|
||||||
except ValueError:
|
|
||||||
out = r.text
|
|
||||||
finally:
|
|
||||||
try:
|
|
||||||
r.raise_for_status()
|
|
||||||
except requests.exceptions.HTTPError as e:
|
|
||||||
raise DiscourseError(endpoint, e.response.status_code)
|
|
||||||
return out
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _get_groups():
|
def _get_groups():
|
||||||
endpoint = ENDPOINTS['groups']['list']
|
data = providers.discourse.client.groups()
|
||||||
data = DiscourseManager.__exc(endpoint)
|
|
||||||
return [g for g in data if not g['automatic']]
|
return [g for g in data if not g['automatic']]
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _create_group(name):
|
def _create_group(name):
|
||||||
endpoint = ENDPOINTS['groups']['create']
|
return providers.discourse.client.create_group(name=name[:20], visible=True)['basic_group']
|
||||||
return DiscourseManager.__exc(endpoint, name=name[:20], visible=True)['basic_group']
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _generate_cache_group_name_key(name):
|
def _generate_cache_group_name_key(name):
|
||||||
@@ -234,13 +73,11 @@ class DiscourseManager:
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __add_user_to_group(g_id, username):
|
def __add_user_to_group(g_id, username):
|
||||||
endpoint = ENDPOINTS['groups']['add_user']
|
providers.discourse.client.add_group_member(g_id, username)
|
||||||
DiscourseManager.__exc(endpoint, g_id, usernames=username)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __remove_user_from_group(g_id, username):
|
def __remove_user_from_group(g_id, uid):
|
||||||
endpoint = ENDPOINTS['groups']['remove_user']
|
providers.discourse.client.delete_group_member(g_id, uid)
|
||||||
DiscourseManager.__exc(endpoint, g_id, username=username)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __generate_group_dict(names):
|
def __generate_group_dict(names):
|
||||||
@@ -252,39 +89,35 @@ class DiscourseManager:
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def __get_user_groups(username):
|
def __get_user_groups(username):
|
||||||
data = DiscourseManager.__get_user(username)
|
data = DiscourseManager.__get_user(username)
|
||||||
return [g['id'] for g in data['user']['groups'] if not g['automatic']]
|
return [g['id'] for g in data['groups'] if not g['automatic']]
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __user_name_to_id(name, silent=False):
|
def __user_name_to_id(name, silent=False):
|
||||||
data = DiscourseManager.__get_user(name, silent=silent)
|
data = DiscourseManager.__get_user(name)
|
||||||
return data['user']['id']
|
return data['user']['id']
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __get_user(username, silent=False):
|
def __get_user(username, silent=False):
|
||||||
endpoint = ENDPOINTS['users']['get']
|
return providers.discourse.client.user(username)
|
||||||
return DiscourseManager.__exc(endpoint, username, silent=silent)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __activate_user(username):
|
def __activate_user(username):
|
||||||
endpoint = ENDPOINTS['users']['activate']
|
|
||||||
u_id = DiscourseManager.__user_name_to_id(username)
|
u_id = DiscourseManager.__user_name_to_id(username)
|
||||||
DiscourseManager.__exc(endpoint, u_id)
|
providers.discourse.client.activate(u_id)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __update_user(username, **kwargs):
|
def __update_user(username, **kwargs):
|
||||||
endpoint = ENDPOINTS['users']['update']
|
|
||||||
u_id = DiscourseManager.__user_name_to_id(username)
|
u_id = DiscourseManager.__user_name_to_id(username)
|
||||||
DiscourseManager.__exc(endpoint, u_id, params=kwargs)
|
providers.discourse.client.update_user(endpoint, u_id, **kwargs)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __create_user(username, email, password):
|
def __create_user(username, email, password):
|
||||||
endpoint = ENDPOINTS['users']['create']
|
providers.discourse.client.create_user(username, username, email, password)
|
||||||
DiscourseManager.__exc(endpoint, name=username, username=username, email=email, password=password, active=True)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __check_if_user_exists(username):
|
def __check_if_user_exists(username):
|
||||||
try:
|
try:
|
||||||
DiscourseManager.__user_name_to_id(username, silent=True)
|
DiscourseManager.__user_name_to_id(username)
|
||||||
return True
|
return True
|
||||||
except DiscourseError:
|
except DiscourseError:
|
||||||
return False
|
return False
|
||||||
@@ -292,30 +125,26 @@ class DiscourseManager:
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def __suspend_user(username):
|
def __suspend_user(username):
|
||||||
u_id = DiscourseManager.__user_name_to_id(username)
|
u_id = DiscourseManager.__user_name_to_id(username)
|
||||||
endpoint = ENDPOINTS['users']['suspend']
|
return providers.discourse.client.suspend(u_id, DiscourseManager.SUSPEND_DAYS,
|
||||||
return DiscourseManager.__exc(endpoint, u_id, duration=DiscourseManager.SUSPEND_DAYS,
|
DiscourseManager.SUSPEND_REASON)
|
||||||
reason=DiscourseManager.SUSPEND_REASON)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __unsuspend(username):
|
def __unsuspend(username):
|
||||||
u_id = DiscourseManager.__user_name_to_id(username)
|
u_id = DiscourseManager.__user_name_to_id(username)
|
||||||
endpoint = ENDPOINTS['users']['unsuspend']
|
return providers.discourse.client.unsuspend(u_id)
|
||||||
return DiscourseManager.__exc(endpoint, u_id)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __set_email(username, email):
|
def __set_email(username, email):
|
||||||
endpoint = ENDPOINTS['users']['set_email']
|
return providers.discourse.client.update_email(username, email)
|
||||||
return DiscourseManager.__exc(endpoint, username, email=email)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __logout(u_id):
|
def __logout(u_id):
|
||||||
endpoint = ENDPOINTS['users']['logout']
|
return providers.discourse.client.log_out(u_id)
|
||||||
return DiscourseManager.__exc(endpoint, u_id)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __get_user_by_external(u_id):
|
def __get_user_by_external(u_id):
|
||||||
endpoint = ENDPOINTS['users']['external']
|
data = providers.discourse.client.user_by_external_id(u_id)
|
||||||
return DiscourseManager.__exc(endpoint, u_id)
|
return data
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __user_id_by_external_id(u_id):
|
def __user_id_by_external_id(u_id):
|
||||||
@@ -351,7 +180,9 @@ class DiscourseManager:
|
|||||||
logger.debug("Updating discourse user %s groups to %s" % (user, groups))
|
logger.debug("Updating discourse user %s groups to %s" % (user, groups))
|
||||||
group_dict = DiscourseManager.__generate_group_dict(groups)
|
group_dict = DiscourseManager.__generate_group_dict(groups)
|
||||||
inv_group_dict = {v: k for k, v in group_dict.items()}
|
inv_group_dict = {v: k for k, v in group_dict.items()}
|
||||||
username = DiscourseManager.__get_user_by_external(user.pk)['user']['username']
|
discord_user = DiscourseManager.__get_user_by_external(user.pk)
|
||||||
|
username = discord_user['username']
|
||||||
|
uid = discord_user['id']
|
||||||
user_groups = DiscourseManager.__get_user_groups(username)
|
user_groups = DiscourseManager.__get_user_groups(username)
|
||||||
add_groups = [group_dict[x] for x in group_dict if not group_dict[x] in user_groups]
|
add_groups = [group_dict[x] for x in group_dict if not group_dict[x] in user_groups]
|
||||||
rem_groups = [x for x in user_groups if x not in inv_group_dict]
|
rem_groups = [x for x in user_groups if x not in inv_group_dict]
|
||||||
@@ -364,7 +195,7 @@ class DiscourseManager:
|
|||||||
logger.info(
|
logger.info(
|
||||||
"Updating discourse user %s groups: removing %s" % (username, rem_groups))
|
"Updating discourse user %s groups: removing %s" % (username, rem_groups))
|
||||||
for g in rem_groups:
|
for g in rem_groups:
|
||||||
DiscourseManager.__remove_user_from_group(g, username)
|
DiscourseManager.__remove_user_from_group(g, uid)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def disable_user(user):
|
def disable_user(user):
|
||||||
|
|||||||
@@ -16,3 +16,4 @@ class DiscourseUser(models.Model):
|
|||||||
permissions = (
|
permissions = (
|
||||||
("access_discourse", u"Can access the Discourse service"),
|
("access_discourse", u"Can access the Discourse service"),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
19
allianceauth/services/modules/discourse/providers.py
Normal file
19
allianceauth/services/modules/discourse/providers.py
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
from pydiscourse import DiscourseClient
|
||||||
|
from django.conf import settings
|
||||||
|
|
||||||
|
class DiscourseAPIClient():
|
||||||
|
_client = None
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
@property
|
||||||
|
def client(self):
|
||||||
|
if not self._client:
|
||||||
|
self._client = DiscourseClient(
|
||||||
|
settings.DISCOURSE_URL,
|
||||||
|
api_username=settings.DISCOURSE_API_USERNAME,
|
||||||
|
api_key=settings.DISCOURSE_API_KEY)
|
||||||
|
return self._client
|
||||||
|
|
||||||
|
discourse = DiscourseAPIClient()
|
||||||
@@ -47,7 +47,8 @@ class DiscourseTasks:
|
|||||||
logger.debug("Updating discourse groups for user %s" % user)
|
logger.debug("Updating discourse groups for user %s" % user)
|
||||||
try:
|
try:
|
||||||
DiscourseManager.update_groups(user)
|
DiscourseManager.update_groups(user)
|
||||||
except:
|
except Exception as e:
|
||||||
|
logger.exception(e)
|
||||||
logger.warn("Discourse group sync failed for %s, retrying in 10 mins" % user)
|
logger.warn("Discourse group sync failed for %s, retrying in 10 mins" % user)
|
||||||
raise self.retry(countdown=60 * 10)
|
raise self.retry(countdown=60 * 10)
|
||||||
logger.debug("Updated user %s discourse groups." % user)
|
logger.debug("Updated user %s discourse groups." % user)
|
||||||
@@ -63,3 +64,4 @@ class DiscourseTasks:
|
|||||||
def get_username(user):
|
def get_username(user):
|
||||||
from .auth_hooks import DiscourseService
|
from .auth_hooks import DiscourseService
|
||||||
return NameFormatter(DiscourseService(), user).format_name()
|
return NameFormatter(DiscourseService(), user).format_name()
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,10 @@
|
|||||||
{% load navactive %}
|
{% load navactive %}
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a class="{% navactive request item.navactive|join:" " %}" href="{% url item.url_name %}">
|
<a class="{% navactive request item.navactive|join:' ' %}" href="{% url item.url_name %}">
|
||||||
<i class="{{ item.classes }}"></i> {% trans item.text %}
|
<i class="{{ item.classes }}"></i> {% trans item.text %}
|
||||||
|
{% if item.count != None %}
|
||||||
|
<span class="badge">{{ item.count }}</span>
|
||||||
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
from allianceauth.services.hooks import MenuItemHook, UrlHook
|
|
||||||
from django.utils.translation import ugettext_lazy as _
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
from allianceauth import hooks
|
from allianceauth import hooks
|
||||||
|
from allianceauth.services.hooks import MenuItemHook, UrlHook
|
||||||
|
|
||||||
from . import urls
|
from . import urls
|
||||||
|
from .managers import SRPManager
|
||||||
|
|
||||||
|
|
||||||
class SrpMenu(MenuItemHook):
|
class SrpMenu(MenuItemHook):
|
||||||
@@ -13,6 +16,8 @@ class SrpMenu(MenuItemHook):
|
|||||||
|
|
||||||
def render(self, request):
|
def render(self, request):
|
||||||
if request.user.has_perm('srp.access_srp'):
|
if request.user.has_perm('srp.access_srp'):
|
||||||
|
app_count = SRPManager.pending_requests_count_for_user(request.user)
|
||||||
|
self.count = app_count if app_count and app_count > 0 else None
|
||||||
return MenuItemHook.render(self, request)
|
return MenuItemHook.render(self, request)
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
import logging
|
import logging
|
||||||
import os
|
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
|
from django.contrib.auth.models import User
|
||||||
|
|
||||||
from allianceauth import NAME
|
from allianceauth import NAME
|
||||||
from allianceauth.eveonline.providers import provider
|
from allianceauth.eveonline.providers import provider
|
||||||
|
|
||||||
|
from .models import SrpUserRequest
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
@@ -50,3 +52,12 @@ class SRPManager:
|
|||||||
return ship_type, ship_value, victim_id
|
return ship_type, ship_value, victim_id
|
||||||
else:
|
else:
|
||||||
raise ValueError("Invalid Kill ID or Hash.")
|
raise ValueError("Invalid Kill ID or Hash.")
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def pending_requests_count_for_user(user: User):
|
||||||
|
"""returns the number of open SRP requests for given user
|
||||||
|
or None if user has no permission"""
|
||||||
|
if user.has_perm("auth.srp_management"):
|
||||||
|
return SrpUserRequest.objects.filter(srp_status="pending").count()
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<div class="alert alert-info" role="alert">{% blocktrans %}Give this link to the line members{% endblocktrans %}.</div>
|
<div class="alert alert-info" role="alert">{% blocktrans %}Give this link to the line members{% endblocktrans %}.</div>
|
||||||
<div class="alert alert-info" role="alert">
|
<div class="alert alert-info" role="alert">
|
||||||
http://{{ request.get_host }}{% url 'srp:request' completed_srp_code %}</div>
|
{{ request.scheme }}://{{ request.get_host }}{% url 'srp:request' completed_srp_code %}</div>
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<a href="{% url 'srp:management' %}" class="btn btn-primary btn-lg">{% trans "Continue" %}</a>
|
<a href="{% url 'srp:management' %}" class="btn btn-primary btn-lg">{% trans "Continue" %}</a>
|
||||||
</div>
|
</div>
|
||||||
@@ -34,7 +34,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
@@ -46,8 +45,15 @@
|
|||||||
{% block extra_script %}
|
{% block extra_script %}
|
||||||
|
|
||||||
$('#id_fleet_time').datetimepicker({
|
$('#id_fleet_time').datetimepicker({
|
||||||
maskInput: true,
|
setlocale: '{{ LANGUAGE_CODE }}',
|
||||||
format: 'Y-m-d H:i'
|
{% if NIGHT_MODE %}
|
||||||
|
theme: 'dark',
|
||||||
|
{% else %}
|
||||||
|
theme: 'default',
|
||||||
|
{% endif %}
|
||||||
|
mask: true,
|
||||||
|
format: 'Y-m-d H:i',
|
||||||
|
minDate: 0
|
||||||
});
|
});
|
||||||
|
|
||||||
{% endblock extra_script %}
|
{% endblock extra_script %}
|
||||||
|
|||||||
@@ -1,11 +1,16 @@
|
|||||||
import inspect
|
import inspect
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
from unittest.mock import patch, Mock
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
from django.contrib.auth.models import User
|
||||||
|
from django.utils.timezone import now
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
|
||||||
|
from allianceauth.tests.auth_utils import AuthUtils
|
||||||
|
|
||||||
from ..managers import SRPManager
|
from ..managers import SRPManager
|
||||||
|
from ..models import SrpUserRequest, SrpFleetMain
|
||||||
|
|
||||||
MODULE_PATH = 'allianceauth.srp.managers'
|
MODULE_PATH = 'allianceauth.srp.managers'
|
||||||
|
|
||||||
@@ -13,6 +18,7 @@ currentdir = os.path.dirname(os.path.abspath(inspect.getfile(
|
|||||||
inspect.currentframe()
|
inspect.currentframe()
|
||||||
)))
|
)))
|
||||||
|
|
||||||
|
|
||||||
def load_data(filename):
|
def load_data(filename):
|
||||||
"""loads given JSON file from `testdata` sub folder and returns content"""
|
"""loads given JSON file from `testdata` sub folder and returns content"""
|
||||||
with open(
|
with open(
|
||||||
@@ -52,7 +58,7 @@ class TestSrpManager(TestCase):
|
|||||||
mock_get.return_value.json.return_value = ['']
|
mock_get.return_value.json.return_value = ['']
|
||||||
|
|
||||||
with self.assertRaises(ValueError):
|
with self.assertRaises(ValueError):
|
||||||
ship_type, ship_value, victim_id = SRPManager.get_kill_data(81973979)
|
SRPManager.get_kill_data(81973979)
|
||||||
|
|
||||||
@patch(MODULE_PATH + '.provider')
|
@patch(MODULE_PATH + '.provider')
|
||||||
@patch(MODULE_PATH + '.requests.get')
|
@patch(MODULE_PATH + '.requests.get')
|
||||||
@@ -67,6 +73,34 @@ class TestSrpManager(TestCase):
|
|||||||
result.return_value = None
|
result.return_value = None
|
||||||
|
|
||||||
with self.assertRaises(ValueError):
|
with self.assertRaises(ValueError):
|
||||||
ship_type, ship_value, victim_id = SRPManager.get_kill_data(81973979)
|
SRPManager.get_kill_data(81973979)
|
||||||
|
|
||||||
|
def test_pending_requests_count_for_user(self):
|
||||||
|
user = AuthUtils.create_member("Bruce Wayne")
|
||||||
|
|
||||||
|
# when no permission to approve SRP requests
|
||||||
|
# then return None
|
||||||
|
self.assertIsNone(SRPManager.pending_requests_count_for_user(user))
|
||||||
|
|
||||||
|
# given permission to approve SRP requests
|
||||||
|
# when no open requests
|
||||||
|
# then return 0
|
||||||
|
AuthUtils.add_permission_to_user_by_name("auth.srp_management", user)
|
||||||
|
user = User.objects.get(pk=user.pk)
|
||||||
|
self.assertEqual(SRPManager.pending_requests_count_for_user(user), 0)
|
||||||
|
|
||||||
|
# given permission to approve SRP requests
|
||||||
|
# when 1 pending request
|
||||||
|
# then return 1
|
||||||
|
fleet = SrpFleetMain.objects.create(fleet_time=now())
|
||||||
|
SrpUserRequest.objects.create(
|
||||||
|
killboard_link="https://zkillboard.com/kill/79111612/",
|
||||||
|
srp_status="Pending",
|
||||||
|
srp_fleet_main=fleet,
|
||||||
|
)
|
||||||
|
SrpUserRequest.objects.create(
|
||||||
|
killboard_link="https://zkillboard.com/kill/79111612/",
|
||||||
|
srp_status="Approved",
|
||||||
|
srp_fleet_main=fleet,
|
||||||
|
)
|
||||||
|
self.assertEqual(SRPManager.pending_requests_count_for_user(user), 1)
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
// Import the fonts from CDN
|
// Import the fonts from CDN
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Glyphicons Halflings';
|
font-family: 'Glyphicons Halflings';
|
||||||
src: url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/fonts/glyphicons-halflings-regular.eot');
|
src: url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.4.0/fonts/glyphicons-halflings-regular.eot');
|
||||||
src: url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
|
src: url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.4.0/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
|
||||||
url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/fonts/glyphicons-halflings-regular.woff2') format('woff2'),
|
url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.4.0/fonts/glyphicons-halflings-regular.woff2') format('woff2'),
|
||||||
url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/fonts/glyphicons-halflings-regular.woff') format('woff'),
|
url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.4.0/fonts/glyphicons-halflings-regular.woff') format('woff'),
|
||||||
url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/fonts/glyphicons-halflings-regular.ttf') format('truetype'),
|
url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.4.0/fonts/glyphicons-halflings-regular.ttf') format('truetype'),
|
||||||
url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/fonts/glyphicons-halflings-regular.svg#@{icon-font-svg-id}') format('svg');
|
url('https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.4.0/fonts/glyphicons-halflings-regular.svg#@{icon-font-svg-id}') format('svg');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
// To build a new CSS file you need to `npm install -g less less-plugin-clean-css`
|
// To build a new CSS file you need to `npm install -g less less-plugin-clean-css`
|
||||||
// Then `lessc --clean-css darkly.less darkly.min.css`
|
// Then `lessc --clean-css darkly.less darkly.min.css`
|
||||||
|
|
||||||
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/gh-pages/bower_components/bootstrap/less/bootstrap.less";
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/v3/bower_components/bootstrap/less/bootstrap.less";
|
||||||
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/gh-pages/darkly/variables.less";
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/v3/darkly/variables.less";
|
||||||
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/gh-pages/darkly/bootswatch.less";
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/v3/darkly/bootswatch.less";
|
||||||
@import "../bootstrap-locals.less";
|
@import "../bootstrap-locals.less";
|
||||||
@import "../flatly-shared.less";
|
@import "../flatly-shared.less";
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -2,9 +2,9 @@
|
|||||||
// To build a new CSS file you need to `npm install -g less less-plugin-clean-css`
|
// To build a new CSS file you need to `npm install -g less less-plugin-clean-css`
|
||||||
// Then `lessc --clean-css flatly.less flatly.min.css`
|
// Then `lessc --clean-css flatly.less flatly.min.css`
|
||||||
|
|
||||||
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/gh-pages/bower_components/bootstrap/less/bootstrap.less";
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/v3/bower_components/bootstrap/less/bootstrap.less";
|
||||||
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/gh-pages/flatly/variables.less";
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/v3/flatly/variables.less";
|
||||||
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/gh-pages/flatly/bootswatch.less";
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/v3/flatly/bootswatch.less";
|
||||||
@import "../bootstrap-locals.less";
|
@import "../bootstrap-locals.less";
|
||||||
@import "../flatly-shared.less";
|
@import "../flatly-shared.less";
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,7 +1,6 @@
|
|||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load navactive %}
|
{% load navactive %}
|
||||||
{% load menu_items %}
|
{% load menu_items %}
|
||||||
{% load groupmanagement %}
|
|
||||||
|
|
||||||
<div class="col-sm-2 auth-side-navbar" role="navigation">
|
<div class="col-sm-2 auth-side-navbar" role="navigation">
|
||||||
<div class="collapse navbar-collapse auth-menus-collapse auth-side-navbar-collapse">
|
<div class="collapse navbar-collapse auth-menus-collapse auth-side-navbar-collapse">
|
||||||
@@ -14,18 +13,9 @@
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="{% navactive request 'groupmanagement:groups' %}" href="{% url 'groupmanagement:groups' %}">
|
<a class="{% navactive request 'groupmanagement:groups' %}" href="{% url 'groupmanagement:groups' %}">
|
||||||
<i class="fas fa-sitemap fa-fw"></i> {% trans "Groups" %}
|
<i class="fas fa-users fa-fw"></i> {% trans "Groups" %}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
{% if request.user|can_manage_groups %}
|
|
||||||
<li>
|
|
||||||
<a class="{% navactive request 'groupmanagement:management groupmanagement:membership groupmanagement:membership_list' %}"
|
|
||||||
href="{% url 'groupmanagement:management' %}">
|
|
||||||
<i class="fas fa-sitemap fa-fw"></i> {% trans "Group Management" %}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% menu_items %}
|
{% menu_items %}
|
||||||
|
|
||||||
|
|||||||
@@ -4,17 +4,17 @@
|
|||||||
{% if debug %}
|
{% if debug %}
|
||||||
<!-- In template debug, loading less file instead of CSS -->
|
<!-- In template debug, loading less file instead of CSS -->
|
||||||
<link rel="stylesheet/less" type="text/css" href="{% static 'css/themes/darkly/darkly.less' %}" />
|
<link rel="stylesheet/less" type="text/css" href="{% static 'css/themes/darkly/darkly.less' %}" />
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/less.js/2.7.2/less.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/less.js/2.7.3/less.min.js"></script>
|
||||||
{% else %}
|
{% else %}
|
||||||
<link rel="stylesheet" href="{% static 'css/themes/darkly/darkly.min.css' %}" />
|
<link rel="stylesheet" type="text/css" href="{% static 'css/themes/darkly/darkly.min.css' %}" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if debug %}
|
{% if debug %}
|
||||||
<!-- In template debug, loading less file instead of CSS -->
|
<!-- In template debug, loading less file instead of CSS -->
|
||||||
<link rel="stylesheet/less" type="text/css" href="{% static 'css/themes/flatly/flatly.less' %}" />
|
<link rel="stylesheet/less" type="text/css" href="{% static 'css/themes/flatly/flatly.less' %}" />
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/less.js/2.7.2/less.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/less.js/2.7.3/less.min.js"></script>
|
||||||
{% else %}
|
{% else %}
|
||||||
<link rel="stylesheet" href="{% static 'css/themes/flatly/flatly.min.css' %}" />
|
<link rel="stylesheet" type="text/css" href="{% static 'css/themes/flatly/flatly.min.css' %}" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<!-- End Bootstrap CSS -->
|
<!-- End Bootstrap CSS -->
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
{% load static %}
|
<!-- Start Bootstrap + jQuery js from cdnjs -->
|
||||||
<!-- Start Bootstrap + jQuery js -->
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
||||||
|
<!-- End Bootstrap + jQuery js from cdnjs -->
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
||||||
<!-- End Bootstrap + jQuery js -->
|
|
||||||
3
allianceauth/templates/bundles/clipboard-js.html
Normal file
3
allianceauth/templates/bundles/clipboard-js.html
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<!-- Start Clipboard.js js from cdnjs -->
|
||||||
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.6/clipboard.min.js"></script>
|
||||||
|
<!-- End Clipboard.js js from cdnjs -->
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
<!-- Start DataTables-css -->
|
<!-- Start Datatables-css from cdnjs -->
|
||||||
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.15/css/dataTables.bootstrap.min.css"/>
|
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.21/css/dataTables.bootstrap.min.css"/>
|
||||||
<!-- End DataTables-css -->
|
<!-- End Datatables-css from cdnjs -->
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<!-- Start DataTables-js -->
|
<!-- Start Datatables-js from cdnjs -->
|
||||||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.15/js/jquery.dataTables.min.js"></script>
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.21/js/jquery.dataTables.min.js"></script>
|
||||||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.15/js/dataTables.bootstrap.min.js"></script>
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.21/js/dataTables.bootstrap.min.js"></script>
|
||||||
<!-- End DataTables-js -->
|
<!-- End Datatables-js from cdnjs -->
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
{% load staticfiles %}
|
<!-- Start FontAwesome CSS from cdnjs -->
|
||||||
<!-- Font Awesome Bundle -->
|
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"/>
|
||||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" rel="stylesheet" type="text/css">
|
<!-- End FontAwesome CSS from cdnjs -->
|
||||||
<!-- End Font Awesome Bundle -->
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
{% load static %}
|
<!-- Start jQuery-DateTimePicker CSS from cdnjs -->
|
||||||
<!-- Start jQuery datetimepicker CSS -->
|
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.5.20/jquery.datetimepicker.min.css"/>
|
||||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.3.7/jquery.datetimepicker.min.css" rel="stylesheet" type="text/css">
|
<!-- End jQuery-DateTimePicker CSS from cdnjs -->
|
||||||
<!-- End jQuery datetimepicker CSS -->
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
{% load static %}
|
<!-- Start jQuery-DateTimePicker JS from cdnjs -->
|
||||||
<!-- Start jQuery datetimepicker js -->
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.5.20/jquery.datetimepicker.full.min.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.3.7/jquery.datetimepicker.min.js"></script>
|
<!-- End jQuery-DateTimePicker JS from cdnjs -->
|
||||||
<!-- End jQuery datetimepicker js -->
|
|
||||||
@@ -1,4 +1,7 @@
|
|||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.1/moment.min.js"></script>
|
<!-- Start Moment.js from cdnjs -->
|
||||||
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.27.0/moment.min.js"></script>
|
||||||
{% if locale and LANGUAGE_CODE != 'en' %}
|
{% if locale and LANGUAGE_CODE != 'en' %}
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.1/locale/{{ LANGUAGE_CODE }}.js"></script>
|
<!-- Moment.JS Not EN-en -->
|
||||||
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.27.0/locale/{{ LANGUAGE_CODE }}.js"></script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<!-- End Moment JS from cdnjs -->
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
{% load static %}
|
<!-- Start X-editable JS from cdnjs -->
|
||||||
<!-- Start X-Editablle js -->
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.1/bootstrap3-editable/js/bootstrap-editable.min.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.1/bootstrap3-editable/js/bootstrap-editable.min.js"></script>
|
<!-- End X-editable JS from cdnjs -->
|
||||||
<!-- End X-Editable js -->
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
{% load staticfiles %}
|
<!-- Start X-editable CSS from cdnjs -->
|
||||||
<!-- X-Editable Core CSS -->
|
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.1/bootstrap3-editable/css/bootstrap-editable.css"/>
|
||||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.1/bootstrap3-editable/css/bootstrap-editable.css" rel="stylesheet">
|
<!-- End X-editable CSS from cdnjs -->
|
||||||
<!-- End Bootstrap CSS -->
|
|
||||||
@@ -525,7 +525,7 @@
|
|||||||
|
|
||||||
{% include 'bundles/moment-js.html' with locale=True %}
|
{% include 'bundles/moment-js.html' with locale=True %}
|
||||||
<script src="{% static 'js/timers.js' %}"></script>
|
<script src="{% static 'js/timers.js' %}"></script>
|
||||||
<script type="text/javascript">
|
<script type="application/javascript">
|
||||||
var locale = "{{ LANGUAGE_CODE }}";
|
var locale = "{{ LANGUAGE_CODE }}";
|
||||||
|
|
||||||
var timers = [
|
var timers = [
|
||||||
|
|||||||
@@ -4,24 +4,58 @@ The menu hooks allow you to dynamically specify menu items from your plugin app
|
|||||||
|
|
||||||
To register a MenuItemHook class you would do the following:
|
To register a MenuItemHook class you would do the following:
|
||||||
|
|
||||||
@hooks.register('menu_item_hook')
|
```Python
|
||||||
def register_menu():
|
@hooks.register('menu_item_hook')
|
||||||
return MenuItemHook('Example Item', 'glyphicon glyphicon-heart', 'example_url_name', 150)
|
def register_menu():
|
||||||
|
return MenuItemHook('Example Item', 'glyphicon glyphicon-heart', 'example_url_name',150)
|
||||||
|
```
|
||||||
|
|
||||||
The `MenuItemHook` class specifies some parameters/instance variables required for menu item display.
|
The `MenuItemHook` class specifies some parameters/instance variables required for menu item display.
|
||||||
|
|
||||||
`MenuItemHook(text, classes, url_name, order=None)`
|
## MenuItemHook(text, classes, url_name, order=None)
|
||||||
|
|
||||||
|
### text
|
||||||
|
|
||||||
|
The text shown as menu item, e.g. usually the name of the app.
|
||||||
|
|
||||||
|
### classes
|
||||||
|
|
||||||
#### text
|
|
||||||
The text value of the link
|
|
||||||
#### classes
|
|
||||||
The classes that should be applied to the bootstrap menu item icon
|
The classes that should be applied to the bootstrap menu item icon
|
||||||
#### url_name
|
|
||||||
|
### url_name
|
||||||
|
|
||||||
The name of the Django URL to use
|
The name of the Django URL to use
|
||||||
#### order
|
|
||||||
An integer which specifies the order of the menu item, lowest to highest
|
### order
|
||||||
#### navactive
|
|
||||||
|
An integer which specifies the order of the menu item, lowest to highest. Community apps are free ot use an oder above `1000`. Numbers below are served for Auth.
|
||||||
|
|
||||||
|
### navactive
|
||||||
|
|
||||||
A list of views or namespaces the link should be highlighted on. See [django-navhelper](https://github.com/geelweb/django-navhelper#navactive) for usage. Defaults to the supplied `url_name`.
|
A list of views or namespaces the link should be highlighted on. See [django-navhelper](https://github.com/geelweb/django-navhelper#navactive) for usage. Defaults to the supplied `url_name`.
|
||||||
|
|
||||||
|
### count
|
||||||
|
|
||||||
|
`count` is an integer shown next to the menu item as badge when `count` is not `None`.
|
||||||
|
|
||||||
|
This is a great feature to signal the user, that he has some open issues to take care of within an app. For example Auth uses this feature to show the specific number of open group request to the current user.
|
||||||
|
|
||||||
|
```eval_rst
|
||||||
|
.. hint::
|
||||||
|
Here is how to stay consistent with the Auth design philosophy for using this feature:
|
||||||
|
1. Use it to display open items that the current user can close by himself only. Do not use it for items, that the user has no control over.
|
||||||
|
2. If there are currently no open items, do not show a badge at all.
|
||||||
|
```
|
||||||
|
|
||||||
|
To use it set count the `render()` function of your subclass in accordance to the current user. Here is an example:
|
||||||
|
|
||||||
|
```Python
|
||||||
|
def render(self, request):
|
||||||
|
# ...
|
||||||
|
self.count = calculate_count_for_user(request.user)
|
||||||
|
# ...
|
||||||
|
```
|
||||||
|
|
||||||
|
## Customization
|
||||||
|
|
||||||
If you cannot get the menu item to look the way you wish, you are free to subclass and override the default render function and the template used.
|
If you cannot get the menu item to look the way you wish, you are free to subclass and override the default render function and the template used.
|
||||||
|
|||||||
Reference in New Issue
Block a user