blob: bb0c569833181ecd9902a951435e5e3c82241ada [file] [log] [blame]
mblighe8819cd2008-02-15 16:48:40 +00001# use some undocumented Django tricks to execute custom logic after syncdb
2
3from django.dispatch import dispatcher
4from django.db.models import signals
mblighe8819cd2008-02-15 16:48:40 +00005from django.contrib import auth
showard043abc12009-01-14 21:41:51 +00006# In this file, it is critical that we import models *just like this*. In
7# particular, we *cannot* do import common; from autotest_lib... import models.
8# This is becasue when we pass the models module to dispatcher.connect(), it
9# calls id() on the module, and the id() of a module can differ depending on how
10# it was imported. For that reason, we must import models as Django does -- not
11# through the autotest_lib magic set up through common.py. If you do that, the
12# connection won't work and the dispatcher will simply never call the method.
13from frontend.afe import models
mblighe8819cd2008-02-15 16:48:40 +000014
15BASIC_ADMIN = 'Basic admin'
16
17def create_admin_group(app, created_models, verbosity, **kwargs):
jadmanski0afbb632008-06-06 21:10:57 +000018 """\
19 Create a basic admin group with permissions for managing basic autotest
20 objects.
21 """
22 admin_group, created = auth.models.Group.objects.get_or_create(
23 name=BASIC_ADMIN)
24 admin_group.save() # must save before adding permissions
25 PermissionModel = auth.models.Permission
26 have_permissions = list(admin_group.permissions.all())
showard2b9a88b2008-06-13 20:55:03 +000027 for model_name in ('host', 'label', 'test', 'acl_group', 'profiler'):
jadmanski0afbb632008-06-06 21:10:57 +000028 for permission_type in ('add', 'change', 'delete'):
29 codename = permission_type + '_' + model_name
30 permissions = list(PermissionModel.objects.filter(
31 codename=codename))
32 if len(permissions) == 0:
33 print ' No permission ' + codename
34 continue
35 for permission in permissions:
36 if permission not in have_permissions:
37 print ' Adding permission ' + codename
38 admin_group.permissions.add(permission)
39 if created:
40 print 'Created group "%s"' % BASIC_ADMIN
41 else:
42 print 'Group "%s" already exists' % BASIC_ADMIN
mblighe8819cd2008-02-15 16:48:40 +000043
44
showard56e93772008-10-06 10:06:22 +000045dispatcher.connect(create_admin_group, sender=models,
jadmanski0afbb632008-06-06 21:10:57 +000046 signal=signals.post_syncdb)