No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

model.py 991B

123456789101112131415161718192021222324252627282930313233343536
  1. # -*- coding: utf-8 -*-
  2. ## @file editorialmodel.py
  3. # Manage instance of an editorial model
  4. from EditorialModel.classes import EmClass
  5. class Model(object):
  6. componentClass = EmClass
  7. def __init__(self, backend):
  8. self.backend = backend
  9. self.load()
  10. def load(self):
  11. data = self.backend.load()
  12. self.uids = {}
  13. for uid, component in data.items():
  14. cls_name = 'component' + component['component']
  15. cls = getattr(Model, cls_name)
  16. if cls:
  17. component['uid'] = uid
  18. self.uids[uid] = cls(component)
  19. # save data using the current backend
  20. def save(self):
  21. return self.backend.save()
  22. # change the current backend
  23. def set_backend(self, backend):
  24. self.backend = backend
  25. # return a list of all EmClass of the model
  26. def classes():
  27. classes = [component for component in self.data.uids if isinstance(component, EmClass)]
  28. return classes