|
@@ -1,5 +1,7 @@
|
|
|
from django.contrib import admin
|
|
|
+from django.contrib.gis import admin as geo_admin
|
|
|
from django.db import models
|
|
|
+from django.db.models import Q
|
|
|
from django.forms import ModelForm, BaseInlineFormSet
|
|
|
from django.utils import timezone
|
|
|
from django.core.urlresolvers import reverse
|
|
@@ -7,8 +9,7 @@ from django.utils.html import format_html
|
|
|
from django.core.mail import mail_managers
|
|
|
|
|
|
from adhesions.models import Adhesion
|
|
|
-from djadhere.utils import get_active_filter
|
|
|
-from .models import Service, ServiceType, IPResource, Route, ResourceAllocation
|
|
|
+from .models import Service, ServiceType, IPResource, Route, ServiceAllocation, Antenna, AntennaAllocation, Allocation
|
|
|
from .utils import notify_allocation
|
|
|
|
|
|
|
|
@@ -25,53 +26,32 @@ class ResourceInUseFilter(admin.SimpleListFilter):
|
|
|
)
|
|
|
|
|
|
def queryset(self, request, queryset):
|
|
|
- now = timezone.now()
|
|
|
- active_filter = get_active_filter('allocation')
|
|
|
+ available_filter = Q(reserved=False, in_use=False)
|
|
|
if self.value() == '0': # non disponible
|
|
|
- return queryset.filter(active_filter | models.Q(reserved=True))
|
|
|
+ return queryset.exclude(available_filter)
|
|
|
if self.value() == '1': # disponible
|
|
|
- return queryset.exclude(reserved=True).exclude(active_filter)
|
|
|
-
|
|
|
-
|
|
|
-class AllocationStatusFilter(admin.SimpleListFilter):
|
|
|
- title = 'statut'
|
|
|
- parameter_name = 'status'
|
|
|
-
|
|
|
- def lookups(self, request, model_admin):
|
|
|
- return (
|
|
|
- (1, 'En cours'),
|
|
|
- (0, 'Terminée'),
|
|
|
- )
|
|
|
-
|
|
|
- def queryset(self, request, queryset):
|
|
|
- now = timezone.now()
|
|
|
- active_filter = get_active_filter()
|
|
|
- if self.value() == '0': # inactif
|
|
|
- return queryset.exclude(active_filter)
|
|
|
- if self.value() == '1': # actif
|
|
|
- return queryset.filter(active_filter)
|
|
|
+ return queryset.filter(available_filter)
|
|
|
|
|
|
|
|
|
### Inlines
|
|
|
|
|
|
-class ResourceAllocationInlineFormSet(BaseInlineFormSet):
|
|
|
+class AllocationInlineFormSet(BaseInlineFormSet):
|
|
|
def save_new(self, form, commit=True):
|
|
|
obj = super().save_new(form, commit)
|
|
|
- notify_allocation(self.request, obj)
|
|
|
+ if type(obj) == ServiceAllocation:
|
|
|
+ notify_allocation(self.request, obj)
|
|
|
return obj
|
|
|
|
|
|
def save_existing(self, form, instance, commit=True):
|
|
|
- old = ResourceAllocation.objects.get(pk=instance.pk)
|
|
|
- notify_allocation(self.request, instance, old)
|
|
|
+ old = type(instance).objects.get(pk=instance.pk)
|
|
|
+ if type(instance) == ServiceAllocation:
|
|
|
+ notify_allocation(self.request, instance, old)
|
|
|
return super().save_existing(form, instance, commit)
|
|
|
|
|
|
|
|
|
class AllocationInline(admin.TabularInline):
|
|
|
- model = ResourceAllocation
|
|
|
- formset = ResourceAllocationInlineFormSet
|
|
|
+ formset = AllocationInlineFormSet
|
|
|
extra = 0
|
|
|
- fields = ('id', 'service', 'resource', 'route', 'start', 'end')
|
|
|
- raw_id_fields = ('service', 'resource',)
|
|
|
verbose_name_plural = 'Allocations'
|
|
|
show_change_link = True
|
|
|
|
|
@@ -90,6 +70,18 @@ class AllocationInline(admin.TabularInline):
|
|
|
return False
|
|
|
|
|
|
|
|
|
+class ServiceAllocationInline(AllocationInline):
|
|
|
+ model = ServiceAllocation
|
|
|
+ fields = ('id', 'service', 'resource', 'route', 'start', 'end')
|
|
|
+ raw_id_fields = ('service', 'resource',)
|
|
|
+
|
|
|
+
|
|
|
+class AntennaAllocationInline(AllocationInline):
|
|
|
+ model = AntennaAllocation
|
|
|
+ fields = ('id', 'antenna', 'resource', 'start', 'end')
|
|
|
+ raw_id_fields = ('antenna', 'resource',)
|
|
|
+
|
|
|
+
|
|
|
### Actions
|
|
|
|
|
|
def ends_resource(resource, request, queryset):
|
|
@@ -108,7 +100,7 @@ class ServiceAdmin(admin.ModelAdmin):
|
|
|
'active',
|
|
|
('service_type', admin.RelatedOnlyFieldListFilter),
|
|
|
)
|
|
|
- inlines = (AllocationInline,)
|
|
|
+ inlines = (ServiceAllocationInline,)
|
|
|
search_fields = ('id', 'service_type__name', 'label', 'adhesion__id',)
|
|
|
raw_id_fields = ('adhesion',)
|
|
|
|
|
@@ -129,21 +121,47 @@ class ServiceAdmin(admin.ModelAdmin):
|
|
|
|
|
|
|
|
|
class IPResourceAdmin(admin.ModelAdmin):
|
|
|
- list_display = ('__str__', 'available_display')
|
|
|
+ list_display = ('__str__', 'available_display', 'last_use',)
|
|
|
list_filter = (
|
|
|
+ 'category',
|
|
|
ResourceInUseFilter,
|
|
|
('prefixes', admin.RelatedOnlyFieldListFilter),
|
|
|
)
|
|
|
fields = ('ip', 'reserved', 'notes')
|
|
|
readonly_fields = ('ip', 'reserved',)
|
|
|
search_fields = ('ip',)
|
|
|
- inlines = (AllocationInline,)
|
|
|
+
|
|
|
+ def get_inline_instances(self, request, obj=None):
|
|
|
+ if obj:
|
|
|
+ if obj.category == 0:
|
|
|
+ inlines = (ServiceAllocationInline,)
|
|
|
+ elif obj.category == 1:
|
|
|
+ inlines = (AntennaAllocationInline,)
|
|
|
+ else:
|
|
|
+ inlines = ()
|
|
|
+ return [inline(self.model, self.admin_site) for inline in inlines]
|
|
|
+
|
|
|
+ def get_queryset(self, request):
|
|
|
+ qs = super().get_queryset(request)
|
|
|
+ qs = qs.annotate(last_use=models.Case(
|
|
|
+ models.When(category=0, then=models.Max('service_allocation__end')),
|
|
|
+ models.When(category=1, then=models.Max('antenna_allocation__end')),
|
|
|
+ ))
|
|
|
+ return qs
|
|
|
|
|
|
def available_display(self, obj):
|
|
|
return not obj.reserved and not obj.in_use
|
|
|
available_display.short_description = 'Disponible'
|
|
|
available_display.boolean = True
|
|
|
|
|
|
+ def last_use(self, obj):
|
|
|
+ if obj.allocations.exists():
|
|
|
+ return obj.allocations.last().end
|
|
|
+ else:
|
|
|
+ return None
|
|
|
+ last_use.short_description = 'Dernière utilisation'
|
|
|
+ last_use.admin_order_field = 'last_use'
|
|
|
+
|
|
|
def get_actions(self, request):
|
|
|
actions = super().get_actions(request)
|
|
|
if 'delete_selected' in actions:
|
|
@@ -174,32 +192,6 @@ class RouteAdmin(admin.ModelAdmin):
|
|
|
return False
|
|
|
|
|
|
|
|
|
-class ResourceAllocationAdmin(admin.ModelAdmin):
|
|
|
- list_display = ('id', 'resource', 'service', 'start', 'end',)
|
|
|
- list_display_links = ('resource', 'service',)
|
|
|
- list_filter = (AllocationStatusFilter,)
|
|
|
- #actions = (ends_resource,)
|
|
|
- raw_id_fields = ('resource', 'service',)
|
|
|
- search_fields = ('resource__ip', 'service__id', 'service__service_type__name', 'service__label')
|
|
|
-
|
|
|
- def get_actions(self, request):
|
|
|
- actions = super().get_actions(request)
|
|
|
- if 'delete_selected' in actions:
|
|
|
- del actions['delete_selected']
|
|
|
- return actions
|
|
|
-
|
|
|
- def has_delete_permission(self, request, obj=None):
|
|
|
- return False
|
|
|
-
|
|
|
- def save_model(self, request, obj, form, change):
|
|
|
- if change:
|
|
|
- old_alloc = ResourceAllocation.objects.get(pk=obj.pk)
|
|
|
- else:
|
|
|
- old_alloc = None
|
|
|
- super().save_model(request, obj, form, change)
|
|
|
- notify_allocation(request, obj, old_alloc)
|
|
|
-
|
|
|
-
|
|
|
class ServiceTypeAdmin(admin.ModelAdmin):
|
|
|
fields = ('name',)
|
|
|
readonly_fields = ('name',)
|
|
@@ -217,8 +209,12 @@ class ServiceTypeAdmin(admin.ModelAdmin):
|
|
|
return False
|
|
|
|
|
|
|
|
|
+class AntennaAdmin(geo_admin.OSMGeoAdmin):
|
|
|
+ inlines = (AntennaAllocationInline,)
|
|
|
+
|
|
|
+
|
|
|
admin.site.register(ServiceType, ServiceTypeAdmin)
|
|
|
admin.site.register(Service, ServiceAdmin)
|
|
|
admin.site.register(IPResource, IPResourceAdmin)
|
|
|
admin.site.register(Route, RouteAdmin)
|
|
|
-admin.site.register(ResourceAllocation, ResourceAllocationAdmin)
|
|
|
+geo_admin.site.register(Antenna, AntennaAdmin)
|