Created
          August 16, 2016 21:03 
        
      - 
      
 - 
        
Save martinsam/a0fba85ca9773cdeef5b63c59bdac2b6 to your computer and use it in GitHub Desktop.  
    A model mixin that tracks model fields' values and provide some useful api to know what fields have been changed.
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from django.forms.models import model_to_dict | |
| class ModelDiffMixin(object): | |
| """ | |
| A model mixin that tracks model fields' values and provide some useful api | |
| to know what fields have been changed. | |
| """ | |
| def __init__(self, *args, **kwargs): | |
| super(ModelDiffMixin, self).__init__(*args, **kwargs) | |
| self.__initial = self._dict | |
| @property | |
| def diff(self): | |
| d1 = self.__initial | |
| d2 = self._dict | |
| diffs = [(k, (v, d2[k])) for k, v in d1.items() if v != d2[k]] | |
| return dict(diffs) | |
| @property | |
| def has_changed(self): | |
| return bool(self.diff) | |
| @property | |
| def changed_fields(self): | |
| return self.diff.keys() | |
| def get_field_diff(self, field_name): | |
| """ | |
| Returns a diff for field if it's changed and None otherwise. | |
| """ | |
| return self.diff.get(field_name, None) | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment