Skip to content
Snippets Groups Projects
Commit 10d18b6d authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-4: Adding more customizations to admin site

parent 1ead0633
No related branches found
No related tags found
1 merge request!2GREG-4: Simple admin interface
...@@ -15,6 +15,21 @@ from greg.models import ( ...@@ -15,6 +15,21 @@ from greg.models import (
admin.site.site_header = "Guest Registration Admin" admin.site.site_header = "Guest Registration Admin"
class RoleInline(admin.TabularInline):
model = PersonRole
extra = 1
class PersonIdentityInline(admin.TabularInline):
model = PersonIdentity
extra = 1
class ConsentInline(admin.TabularInline):
model = PersonConsent
extra = 1
class PersonAdmin(admin.ModelAdmin): class PersonAdmin(admin.ModelAdmin):
list_display = ( list_display = (
"first_name", "first_name",
...@@ -23,6 +38,7 @@ class PersonAdmin(admin.ModelAdmin): ...@@ -23,6 +38,7 @@ class PersonAdmin(admin.ModelAdmin):
) )
search_fields = ("first_name", "last_name") # TODO: "identities__value"? search_fields = ("first_name", "last_name") # TODO: "identities__value"?
readonly_fields = ("id", "created", "updated") readonly_fields = ("id", "created", "updated")
inlines = (RoleInline, PersonIdentityInline, ConsentInline)
def role_count(self, person): def role_count(self, person):
return str(person.roles.count()) return str(person.roles.count())
...@@ -46,22 +62,39 @@ class RoleAdmin(admin.ModelAdmin): ...@@ -46,22 +62,39 @@ class RoleAdmin(admin.ModelAdmin):
class PersonIdentityAdmin(admin.ModelAdmin): class PersonIdentityAdmin(admin.ModelAdmin):
list_display = ("id", "person", "type", "verified")
list_filter = ("verified",)
readonly_fields = ("id", "created", "updated") readonly_fields = ("id", "created", "updated")
class ConsentAdmin(admin.ModelAdmin): class ConsentAdmin(admin.ModelAdmin):
list_display = ("id", "consent_name_en", "valid_from", "user_allowed_to_change")
readonly_fields = ("id", "created", "updated") readonly_fields = ("id", "created", "updated")
class PersonConsentAdmin(admin.ModelAdmin): class PersonConsentAdmin(admin.ModelAdmin):
list_display = ("id", "person", "get_consent_name_en")
readonly_fields = ("id", "created", "updated") readonly_fields = ("id", "created", "updated")
def get_consent_name_en(self, obj):
return obj.consent.consent_name_en
get_consent_name_en.short_description = "Consent name"
class OrganizationalUnitAdmin(admin.ModelAdmin): class OrganizationalUnitAdmin(admin.ModelAdmin):
list_display = ("id", "name_en", "parent")
readonly_fields = ("id", "created", "updated") readonly_fields = ("id", "created", "updated")
class OrganizationalUnitInline(admin.TabularInline):
model = SponsorOrganizationalUnit
extra = 1
class SponsorAdmin(admin.ModelAdmin): class SponsorAdmin(admin.ModelAdmin):
list_display = ("id", "feide_id")
inlines = (OrganizationalUnitInline,)
readonly_fields = ("id", "created", "updated") readonly_fields = ("id", "created", "updated")
......
import random import random
from typing import List from typing import List, TypeVar
from django.db import connection, IntegrityError from django.db import connection, IntegrityError
from faker import Faker from faker import Faker
from greg.models import Person, Role, OrganizationalUnit, Sponsor, PersonRole, Consent from greg.models import (
Person,
Role,
OrganizationalUnit,
Sponsor,
PersonRole,
Consent,
PersonIdentity,
)
# Set seeds so that the generated data is always the same # Set seeds so that the generated data is always the same
random.seed(0) random.seed(0)
Faker.seed(0) Faker.seed(0)
R = TypeVar("R")
def get_random_element_from_list(input_list: List[R]) -> R:
return input_list[random.randint(0, len(input_list) - 1)]
class DatabasePopulation: class DatabasePopulation:
""" """
...@@ -17,6 +31,7 @@ class DatabasePopulation: ...@@ -17,6 +31,7 @@ class DatabasePopulation:
Run the file in the Django shell: exec(open('greg/tests/populate_database.py').read()) Run the file in the Django shell: exec(open('greg/tests/populate_database.py').read())
""" """
faker: Faker faker: Faker
persons: List[Person] = [] persons: List[Person] = []
units: List[OrganizationalUnit] = [] units: List[OrganizationalUnit] = []
...@@ -32,45 +47,111 @@ class DatabasePopulation: ...@@ -32,45 +47,111 @@ class DatabasePopulation:
first_name = self.faker.first_name() first_name = self.faker.first_name()
last_name = self.faker.last_name() last_name = self.faker.last_name()
self.persons.append(Person.objects.create( self.persons.append(
first_name=first_name, Person.objects.create(
last_name=last_name, first_name=first_name,
date_of_birth=self.faker.date_of_birth(maximum_age=50), last_name=last_name,
email=f"{first_name}.{last_name}@example.org", date_of_birth=self.faker.date_of_birth(maximum_age=50),
mobile_phone=self.faker.phone_number(), email=f"{first_name}.{last_name}@example.org",
)) mobile_phone=self.faker.phone_number(),
)
)
for role_type in ('Visiting Professor', 'Professor Emeritus', 'Consultant'): for role_type in ("Visiting Professor", "Professor Emeritus", "Consultant"):
self.role_types.append(Role.objects.create(type=role_type, name_en=role_type)) self.role_types.append(
Role.objects.create(type=role_type, name_en=role_type)
)
for i in range(10): for i in range(10):
self.units.append(OrganizationalUnit.objects.create(orgreg_id=f"12345{i}", name_en=self.faker.company())) self.units.append(
OrganizationalUnit.objects.create(
orgreg_id=f"12345{i}", name_en=self.faker.company()
)
)
for i in range(5): for i in range(5):
self.sponsors.append(Sponsor.objects.create(feide_id=self.faker.bothify(text="???####@uio.no"))) self.sponsors.append(
Sponsor.objects.create(
feide_id=self.faker.bothify(text="???####@uio.no")
)
)
for i in range(10): for i in range(10):
self.consents.append(Consent.objects.create( self.consents.append(
type=self.faker.slug(), Consent.objects.create(
consent_name_en=self.faker.sentence(nb_words=6), type=self.faker.slug(),
consent_name_nb=self.faker.sentence(nb_words=6), consent_name_en=self.faker.sentence(nb_words=6),
consent_description_en=self.faker.paragraph(nb_sentences=5), consent_name_nb=self.faker.sentence(nb_words=6),
consent_description_nb=self.faker.paragraph(nb_sentences=5), consent_description_en=self.faker.paragraph(nb_sentences=5),
consent_link_en=self.faker.url(), consent_description_nb=self.faker.paragraph(nb_sentences=5),
user_allowed_to_change=random.random() > 0.5)) consent_link_en=self.faker.url(),
user_allowed_to_change=random.random() > 0.5,
)
)
self.__add_random_person_role_connections()
self.__add_random_person_consent_connections()
self.__add_random_sponsor_unit_connections()
self.__add_random_person_identification_connections()
def __add_random_person_identification_connections(self, connections_to_create=5):
person_identifier_count = 0
while person_identifier_count < connections_to_create:
person = get_random_element_from_list(self.persons)
identity_type = get_random_element_from_list(
PersonIdentity.IdentityType.choices
)[0]
if random.random() > 0.5:
sponsor = get_random_element_from_list(self.sponsors)
verified_when = self.faker.date_this_year()
identity_type = get_random_element_from_list(
PersonIdentity.IdentityType.choices
)[0]
verified = self.faker.text(max_nb_chars=50)
else:
sponsor = None
verified_when = None
verified = ""
PersonIdentity.objects.create(
person=person,
type=identity_type,
source=self.faker.text(max_nb_chars=50),
value=self.faker.numerify("##################"),
verified_by=sponsor,
verified=verified,
verified_when=verified_when,
)
person_identifier_count += 1
def __add_random_sponsor_unit_connections(self, connections_to_create=5):
sponsor_unit_count = 0
while sponsor_unit_count < connections_to_create:
sponsor = get_random_element_from_list(self.sponsors)
unit = get_random_element_from_list(self.units)
sponsor.units.add(
unit, through_defaults={"hierarchical_access": random.random() > 0.5}
)
sponsor_unit_count += 1
def __add_random_person_role_connections(self, connections_to_create=5):
person_role_count = 0 person_role_count = 0
while person_role_count < 5: while person_role_count < connections_to_create:
try: try:
PersonRole.objects.create( PersonRole.objects.create(
person=self.persons[random.randint(0, len(self.persons) - 1)], person=get_random_element_from_list(self.persons),
role=self.role_types[random.randint(0, len(self.role_types) - 1)], role=get_random_element_from_list(self.role_types),
unit=self.units[random.randint(0, len(self.units) - 1)], unit=get_random_element_from_list(self.units),
start_date=self.faker.date_this_decade(), start_date=self.faker.date_this_decade(),
end_date=self.faker.date_this_decade(before_today=False, after_today=True), end_date=self.faker.date_this_decade(
before_today=False, after_today=True
),
contact_person_unit=self.faker.name(), contact_person_unit=self.faker.name(),
available_in_search=random.random() > 0.5, available_in_search=random.random() > 0.5,
registered_by=self.sponsors[random.randint(0, len(self.sponsors) - 1)], registered_by=get_random_element_from_list(self.sponsors),
) )
person_role_count += 1 person_role_count += 1
except IntegrityError: except IntegrityError:
...@@ -78,23 +159,36 @@ class DatabasePopulation: ...@@ -78,23 +159,36 @@ class DatabasePopulation:
# Try again and see if the randomly selected values will make it pass on the next attempt # Try again and see if the randomly selected values will make it pass on the next attempt
pass pass
def __add_random_person_consent_connections(self, number_of_connections_to_make=5):
person_consent_count = 0
while person_consent_count < number_of_connections_to_make:
person = get_random_element_from_list(self.persons)
consent = get_random_element_from_list(self.consents)
person.consents.add(
consent,
through_defaults={"consent_given_at": self.faker.date_this_decade()},
)
person_consent_count += 1
def truncate_tables(self): def truncate_tables(self):
with connection.cursor() as cursor: with connection.cursor() as cursor:
for table in ("greg_consent", for table in (
"greg_notification", "greg_personconsent",
"greg_personidentity", "greg_consent",
"greg_personconsent", "greg_notification",
"greg_personrole", "greg_personidentity",
"greg_person", "greg_personrole",
"greg_sponsororganizationalunit", "greg_person",
"greg_sponsor", "greg_sponsororganizationalunit",
"greg_organizationalunit", "greg_sponsor",
"greg_role" "greg_organizationalunit",
): "greg_role",
):
cursor.execute(f"DELETE FROM {table}") cursor.execute(f"DELETE FROM {table}")
if __name__ == '__main__': if __name__ == "__main__":
database_population = DatabasePopulation() database_population = DatabasePopulation()
database_population.truncate_tables() database_population.truncate_tables()
database_population.populate_database() database_population.populate_database()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment