Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 1 | import os |
Scott Baker | 65d5a9a | 2014-05-26 15:58:09 -0700 | [diff] [blame] | 2 | import sys |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 3 | from django.db import models |
Scott Baker | 13acdd6 | 2013-05-08 17:42:56 -0700 | [diff] [blame] | 4 | from django.forms.models import model_to_dict |
Scott Baker | c1c45f8 | 2014-01-21 16:23:51 -0800 | [diff] [blame] | 5 | from django.core.urlresolvers import reverse |
Scott Baker | 6ecd426 | 2014-01-21 23:15:21 -0800 | [diff] [blame] | 6 | from django.forms.models import model_to_dict |
Scott Baker | b24f2c3 | 2014-09-17 22:18:46 -0700 | [diff] [blame] | 7 | from django.utils import timezone |
Sapan Bhatia | bad6774 | 2014-09-04 00:39:19 -0400 | [diff] [blame] | 8 | import model_policy |
Scott Baker | 9e99074 | 2014-03-19 22:14:58 -0700 | [diff] [blame] | 9 | |
| 10 | try: |
| 11 | # This is a no-op if observer_disabled is set to 1 in the config file |
| 12 | from observer import * |
| 13 | except: |
Scott Baker | 65d5a9a | 2014-05-26 15:58:09 -0700 | [diff] [blame] | 14 | print >> sys.stderr, "import of observer failed! printing traceback and disabling observer:" |
Scott Baker | 9e99074 | 2014-03-19 22:14:58 -0700 | [diff] [blame] | 15 | import traceback |
| 16 | traceback.print_exc() |
| 17 | |
| 18 | # guard against something failing |
Scott Baker | fd44dfc | 2014-05-23 13:20:53 -0700 | [diff] [blame] | 19 | def notify_observer(*args, **kwargs): |
Scott Baker | 9e99074 | 2014-03-19 22:14:58 -0700 | [diff] [blame] | 20 | pass |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 21 | |
Sapan Bhatia | 3089d83 | 2014-04-29 14:36:51 -0400 | [diff] [blame] | 22 | # This manager will be inherited by all subclasses because |
| 23 | # the core model is abstract. |
Sapan Bhatia | 15bf5ac | 2014-07-21 20:06:59 -0400 | [diff] [blame] | 24 | class PlCoreBaseDeletionManager(models.Manager): |
Scott Baker | b08d656 | 2014-09-12 12:57:27 -0700 | [diff] [blame] | 25 | def get_queryset(self): |
Scott Baker | b24f2c3 | 2014-09-17 22:18:46 -0700 | [diff] [blame] | 26 | parent=super(PlCoreBaseDeletionManager, self) |
| 27 | if hasattr(parent, "get_queryset"): |
| 28 | return parent.get_queryset().filter(deleted=True) |
| 29 | else: |
| 30 | return parent.get_query_set().filter(deleted=True) |
Sapan Bhatia | 15bf5ac | 2014-07-21 20:06:59 -0400 | [diff] [blame] | 31 | |
Scott Baker | b24f2c3 | 2014-09-17 22:18:46 -0700 | [diff] [blame] | 32 | # deprecated in django 1.7 in favor of get_queryset(). |
Scott Baker | b08d656 | 2014-09-12 12:57:27 -0700 | [diff] [blame] | 33 | def get_query_set(self): |
| 34 | return self.get_queryset() |
| 35 | |
Sapan Bhatia | 15bf5ac | 2014-07-21 20:06:59 -0400 | [diff] [blame] | 36 | # This manager will be inherited by all subclasses because |
| 37 | # the core model is abstract. |
Sapan Bhatia | 4eb663a | 2014-04-29 14:26:10 -0400 | [diff] [blame] | 38 | class PlCoreBaseManager(models.Manager): |
Scott Baker | b08d656 | 2014-09-12 12:57:27 -0700 | [diff] [blame] | 39 | def get_queryset(self): |
Scott Baker | b24f2c3 | 2014-09-17 22:18:46 -0700 | [diff] [blame] | 40 | parent=super(PlCoreBaseManager, self) |
| 41 | if hasattr(parent, "get_queryset"): |
| 42 | return parent.get_queryset().filter(deleted=False) |
| 43 | else: |
| 44 | return parent.get_query_set().filter(deleted=False) |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 45 | |
Scott Baker | b24f2c3 | 2014-09-17 22:18:46 -0700 | [diff] [blame] | 46 | # deprecated in django 1.7 in favor of get_queryset(). |
Scott Baker | b08d656 | 2014-09-12 12:57:27 -0700 | [diff] [blame] | 47 | def get_query_set(self): |
| 48 | return self.get_queryset() |
| 49 | |
Sapan Bhatia | 4eb663a | 2014-04-29 14:26:10 -0400 | [diff] [blame] | 50 | class PlCoreBase(models.Model): |
| 51 | objects = PlCoreBaseManager() |
Sapan Bhatia | 15bf5ac | 2014-07-21 20:06:59 -0400 | [diff] [blame] | 52 | deleted_objects = PlCoreBaseDeletionManager() |
| 53 | |
| 54 | # default values for created and updated are only there to keep evolution |
| 55 | # from failing. |
Scott Baker | b24f2c3 | 2014-09-17 22:18:46 -0700 | [diff] [blame] | 56 | created = models.DateTimeField(auto_now_add=True, default=timezone.now) |
| 57 | updated = models.DateTimeField(auto_now=True, default=timezone.now) |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 58 | enacted = models.DateTimeField(null=True, default=None) |
Sapan Bhatia | 34aee75 | 2014-04-28 21:06:39 -0400 | [diff] [blame] | 59 | backend_status = models.CharField(max_length=140, |
Sapan Bhatia | d507f43 | 2014-04-29 00:41:39 -0400 | [diff] [blame] | 60 | default="Provisioning in progress") |
Sapan Bhatia | bcc1899 | 2014-04-29 10:32:14 -0400 | [diff] [blame] | 61 | deleted = models.BooleanField(default=False) |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 62 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 63 | class Meta: |
Sapan Bhatia | 3089d83 | 2014-04-29 14:36:51 -0400 | [diff] [blame] | 64 | # Changing abstract to False would require the managers of subclasses of |
| 65 | # PlCoreBase to be customized individually. |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 66 | abstract = True |
| 67 | app_label = "core" |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 68 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 69 | def __init__(self, *args, **kwargs): |
| 70 | super(PlCoreBase, self).__init__(*args, **kwargs) |
| 71 | self.__initial = self._dict |
Scott Baker | 13acdd6 | 2013-05-08 17:42:56 -0700 | [diff] [blame] | 72 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 73 | @property |
| 74 | def diff(self): |
| 75 | d1 = self.__initial |
| 76 | d2 = self._dict |
| 77 | diffs = [(k, (v, d2[k])) for k, v in d1.items() if v != d2[k]] |
| 78 | return dict(diffs) |
Siobhan Tully | 7329134 | 2013-05-10 10:50:08 -0400 | [diff] [blame] | 79 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 80 | @property |
| 81 | def has_changed(self): |
| 82 | return bool(self.diff) |
Siobhan Tully | 7329134 | 2013-05-10 10:50:08 -0400 | [diff] [blame] | 83 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 84 | @property |
| 85 | def changed_fields(self): |
| 86 | return self.diff.keys() |
Siobhan Tully | 7329134 | 2013-05-10 10:50:08 -0400 | [diff] [blame] | 87 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 88 | def get_field_diff(self, field_name): |
| 89 | return self.diff.get(field_name, None) |
Siobhan Tully | 7329134 | 2013-05-10 10:50:08 -0400 | [diff] [blame] | 90 | |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 91 | def can_update(self, user): |
| 92 | if user.is_readonly: |
| 93 | return False |
| 94 | if user.is_admin: |
| 95 | return True |
| 96 | return False |
| 97 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 98 | def delete(self, *args, **kwds): |
Scott Baker | 6ecd426 | 2014-01-21 23:15:21 -0800 | [diff] [blame] | 99 | # so we have something to give the observer |
Sapan Bhatia | 77d1d89 | 2014-07-21 20:07:23 -0400 | [diff] [blame] | 100 | purge = kwds.get('purge',False) |
Scott Baker | 0491f6f | 2014-09-23 16:04:36 -0700 | [diff] [blame] | 101 | silent = kwds.get('silent',False) |
Sapan Bhatia | 77d1d89 | 2014-07-21 20:07:23 -0400 | [diff] [blame] | 102 | try: |
| 103 | purge = purge or observer_disabled |
| 104 | except NameError: |
| 105 | pass |
Scott Baker | 0491f6f | 2014-09-23 16:04:36 -0700 | [diff] [blame] | 106 | |
Sapan Bhatia | 77d1d89 | 2014-07-21 20:07:23 -0400 | [diff] [blame] | 107 | if (purge): |
Sapan Bhatia | ad2c4a1 | 2014-07-22 01:21:05 -0400 | [diff] [blame] | 108 | del kwds['purge'] |
Sapan Bhatia | 77d1d89 | 2014-07-21 20:07:23 -0400 | [diff] [blame] | 109 | super(PlCoreBase, self).delete(*args, **kwds) |
Sapan Bhatia | c860243 | 2014-04-29 20:33:51 -0400 | [diff] [blame] | 110 | else: |
| 111 | self.deleted = True |
| 112 | self.enacted=None |
Scott Baker | 0491f6f | 2014-09-23 16:04:36 -0700 | [diff] [blame] | 113 | self.save(update_fields=['enacted','deleted'], silent=silent) |
Sapan Bhatia | dbaf193 | 2013-09-03 11:28:52 -0400 | [diff] [blame] | 114 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 115 | def save(self, *args, **kwargs): |
Scott Baker | 0491f6f | 2014-09-23 16:04:36 -0700 | [diff] [blame] | 116 | if "silent" in kwargs: |
| 117 | silent=kwargs.pop("silent") |
| 118 | else: |
| 119 | silent=False |
| 120 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 121 | super(PlCoreBase, self).save(*args, **kwargs) |
Sapan Bhatia | c860243 | 2014-04-29 20:33:51 -0400 | [diff] [blame] | 122 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 123 | # This is a no-op if observer_disabled is set |
Scott Baker | 0491f6f | 2014-09-23 16:04:36 -0700 | [diff] [blame] | 124 | if not silent: |
| 125 | notify_observer() |
Sapan Bhatia | 66f4e61 | 2013-07-02 12:12:38 -0400 | [diff] [blame] | 126 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 127 | self.__initial = self._dict |
Scott Baker | 13acdd6 | 2013-05-08 17:42:56 -0700 | [diff] [blame] | 128 | |
Tony Mack | 5b06147 | 2014-02-04 07:57:10 -0500 | [diff] [blame] | 129 | def save_by_user(self, user, *args, **kwds): |
| 130 | if self.can_update(user): |
| 131 | self.save(*args, **kwds) |
| 132 | |
Tony Mack | 332ee1d | 2014-02-04 15:33:45 -0500 | [diff] [blame] | 133 | def delete_by_user(self, user, *args, **kwds): |
| 134 | if self.can_update(user): |
| 135 | self.delete(*args, **kwds) |
| 136 | |
Sapan Bhatia | 9c2c8fa | 2013-10-16 13:26:05 -0400 | [diff] [blame] | 137 | @property |
| 138 | def _dict(self): |
| 139 | return model_to_dict(self, fields=[field.name for field in |
| 140 | self._meta.fields]) |
Scott Baker | 13acdd6 | 2013-05-08 17:42:56 -0700 | [diff] [blame] | 141 | |
Siobhan Tully | 4bc09f2 | 2013-04-10 21:15:21 -0400 | [diff] [blame] | 142 | |
| 143 | |