Browse Source

Mot de passe pseudo aléatoire par IP public

Élie Bouttier 6 years ago
parent
commit
fb6617a193
2 changed files with 9 additions and 0 deletions
  1. 2 0
      services/admin.py
  2. 7 0
      services/models.py

+ 2 - 0
services/admin.py

@@ -397,6 +397,8 @@ class IPResourceAdmin(admin.ModelAdmin):
             fields += ['last_use']
         if obj and obj.last_time_up and obj.last_check:
             fields += ['last_time_up', 'last_check']
+        if obj.category == IPRessource.CATEGORY_PUBLIC:
+            fields += ['password']
         if obj and obj.checkmk_label:
             fields += ['checkmk']
         if obj and obj.notes:

+ 7 - 0
services/models.py

@@ -14,6 +14,8 @@ from django.conf import settings
 
 from ipaddress import ip_network
 from urllib.parse import quote
+from hashlib import sha256
+from base64 import urlsafe_b64encode
 
 from djadhere.utils import get_active_filter, is_overlapping
 from adhesions.models import Adhesion
@@ -119,6 +121,11 @@ class IPResource(models.Model):
         else:
             return None
 
+    def password(self):
+        data = sha256((settings.MASTER_PASSWORD + self.ip).encode('utf-8')).digest();
+        return urlsafe_b64encode(data).decode('utf-8')[:8]
+    password.short_description = 'Mot de passe'
+
     class Meta:
         ordering = ['ip']
         verbose_name = 'IP'