modules.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. import json
  2. from django import forms
  3. from django.contrib.admin.models import LogEntry
  4. from django.db.models import Q
  5. from django.template.loader import render_to_string
  6. from django.utils.translation import ugettext_lazy as _
  7. from jet.utils import get_app_list, LazyEncoder
  8. import datetime
  9. class DashboardModule(object):
  10. template = 'jet/dashboard/module.html'
  11. enabled = True
  12. draggable = True
  13. collapsible = True
  14. deletable = True
  15. show_title = True
  16. title = ''
  17. title_url = None
  18. css_classes = None
  19. pre_content = None
  20. post_content = None
  21. children = None
  22. settings_form = None
  23. child_form = None
  24. child_name = None
  25. child_name_plural = None
  26. settings = None
  27. column = None
  28. order = None
  29. ajax_load = False
  30. class Media:
  31. css = ()
  32. js = ()
  33. def __init__(self, title=None, model=None, context=None, **kwargs):
  34. if title is not None:
  35. self.title = title
  36. self.model = model
  37. self.context = context or {}
  38. for key in kwargs:
  39. if hasattr(self.__class__, key):
  40. setattr(self, key, kwargs[key])
  41. self.children = self.children or []
  42. if self.model:
  43. self.load_from_model()
  44. def fullname(self):
  45. return self.__module__ + "." + self.__class__.__name__
  46. def load_settings(self, settings):
  47. pass
  48. def load_children(self, children):
  49. self.children = children
  50. def store_children(self):
  51. return False
  52. def settings_dict(self):
  53. pass
  54. def dump_settings(self, settings=None):
  55. settings = settings or self.settings_dict()
  56. if settings:
  57. return json.dumps(settings, cls=LazyEncoder)
  58. else:
  59. return ''
  60. def dump_children(self):
  61. if self.store_children():
  62. return json.dumps(self.children, cls=LazyEncoder)
  63. else:
  64. return ''
  65. def load_from_model(self):
  66. self.title = self.model.title
  67. if self.model.settings:
  68. try:
  69. self.settings = json.loads(self.model.settings)
  70. self.load_settings(self.settings)
  71. except ValueError:
  72. pass
  73. if self.store_children() and self.model.children:
  74. try:
  75. children = json.loads(self.model.children)
  76. self.load_children(children)
  77. except ValueError:
  78. pass
  79. def init_with_context(self, context):
  80. pass
  81. def get_context_data(self):
  82. context = self.context
  83. context.update({
  84. 'module': self
  85. })
  86. return context
  87. def render(self):
  88. self.init_with_context(self.context)
  89. return render_to_string(self.template, self.get_context_data())
  90. class LinkListItemForm(forms.Form):
  91. url = forms.CharField(label=_('URL'))
  92. title = forms.CharField(label=_('Title'))
  93. external = forms.BooleanField(label=_('External link'), required=False)
  94. class LinkListSettingsForm(forms.Form):
  95. layout = forms.ChoiceField(label=_('Layout'), choices=(('stacked', _('Stacked')), ('inline', _('Inline'))))
  96. class LinkList(DashboardModule):
  97. title = _('Links')
  98. template = 'jet/dashboard/modules/link_list.html'
  99. layout = 'stacked'
  100. settings_form = LinkListSettingsForm
  101. child_form = LinkListItemForm
  102. child_name = _('Link')
  103. child_name_plural = _('Links')
  104. def __init__(self, title=None, children=list(), **kwargs):
  105. children = list(map(self.parse_link, children))
  106. kwargs.update({'children': children})
  107. super(LinkList, self).__init__(title, **kwargs)
  108. def settings_dict(self):
  109. return {
  110. 'layout': self.layout
  111. }
  112. def load_settings(self, settings):
  113. self.layout = settings.get('layout', self.layout)
  114. def store_children(self):
  115. return True
  116. def parse_link(self, link):
  117. if isinstance(link, (tuple, list)):
  118. link_dict = {'title': link[0], 'url': link[1]}
  119. if len(link) >= 3:
  120. link_dict['external'] = link[2]
  121. return link_dict
  122. elif isinstance(link, (dict,)):
  123. return link
  124. class AppList(DashboardModule):
  125. title = _('Applications')
  126. template = 'jet/dashboard/modules/app_list.html'
  127. models = None
  128. exclude = None
  129. hide_empty = True
  130. def settings_dict(self):
  131. return {
  132. 'models': self.models,
  133. 'exclude': self.exclude
  134. }
  135. def load_settings(self, settings):
  136. self.models = settings.get('models')
  137. self.exclude = settings.get('exclude')
  138. def init_with_context(self, context):
  139. app_list = get_app_list(context)
  140. app_to_remove = []
  141. for app in app_list:
  142. app['models'] = filter(
  143. lambda model: self.models is None or model['object_name'] in self.models or app['app_label'] + '.*' in self.models,
  144. app['models']
  145. )
  146. app['models'] = filter(
  147. lambda model: self.exclude is None or model['object_name'] not in self.exclude and app['app_label'] + '.*' not in self.exclude,
  148. app['models']
  149. )
  150. app['models'] = list(app['models'])
  151. if self.hide_empty and len(list(app['models'])) == 0:
  152. app_to_remove.append(app)
  153. for app in app_to_remove:
  154. app_list.remove(app)
  155. self.children = app_list
  156. class ModelList(DashboardModule):
  157. title = _('Models')
  158. template = 'jet/dashboard/modules/model_list.html'
  159. models = None
  160. exclude = None
  161. hide_empty = True
  162. def settings_dict(self):
  163. return {
  164. 'models': self.models,
  165. 'exclude': self.exclude
  166. }
  167. def load_settings(self, settings):
  168. self.models = settings.get('models')
  169. self.exclude = settings.get('exclude')
  170. def init_with_context(self, context):
  171. app_list = get_app_list(context)
  172. models = []
  173. for app in app_list:
  174. app['models'] = filter(
  175. lambda model: self.models is None or model['object_name'] in self.models or app['app_label'] + '.*' in self.models,
  176. app['models']
  177. )
  178. app['models'] = filter(
  179. lambda model: self.exclude is None or model['object_name'] not in self.exclude and app['app_label'] + '.*' not in self.exclude,
  180. app['models']
  181. )
  182. app['models'] = list(app['models'])
  183. models.extend(app['models'])
  184. self.children = models
  185. class RecentActionsSettingsForm(forms.Form):
  186. limit = forms.IntegerField(label=_('Items limit'), min_value=1)
  187. class RecentActions(DashboardModule):
  188. title = _('Recent Actions')
  189. template = 'jet/dashboard/modules/recent_actions.html'
  190. limit = 10
  191. include_list = None
  192. exclude_list = None
  193. settings_form = RecentActionsSettingsForm
  194. user = None
  195. def __init__(self, title=None, limit=10, **kwargs):
  196. kwargs.update({'limit': limit})
  197. super(RecentActions, self).__init__(title, **kwargs)
  198. def settings_dict(self):
  199. return {
  200. 'limit': self.limit,
  201. 'include_list': self.include_list,
  202. 'exclude_list': self.exclude_list,
  203. 'user': self.user
  204. }
  205. def load_settings(self, settings):
  206. self.limit = settings.get('limit', self.limit)
  207. self.include_list = settings.get('include_list')
  208. self.exclude_list = settings.get('exclude_list')
  209. self.user = settings.get('user', None)
  210. def init_with_context(self, context):
  211. def get_qset(list):
  212. qset = None
  213. for contenttype in list:
  214. try:
  215. app_label, model = contenttype.split('.')
  216. if model == '*':
  217. current_qset = Q(
  218. content_type__app_label=app_label
  219. )
  220. else:
  221. current_qset = Q(
  222. content_type__app_label=app_label,
  223. content_type__model=model
  224. )
  225. except:
  226. raise ValueError('Invalid contenttype: "%s"' % contenttype)
  227. if qset is None:
  228. qset = current_qset
  229. else:
  230. qset = qset | current_qset
  231. return qset
  232. qs = LogEntry.objects
  233. if self.user:
  234. qs = qs.filter(
  235. user__pk=int(self.user)
  236. )
  237. if self.include_list:
  238. qs = qs.filter(get_qset(self.include_list))
  239. if self.exclude_list:
  240. qs = qs.exclude(get_qset(self.exclude_list))
  241. self.children = qs.select_related('content_type', 'user')[:int(self.limit)]
  242. class FeedSettingsForm(forms.Form):
  243. limit = forms.IntegerField(label=_('Items limit'), min_value=1)
  244. feed_url = forms.URLField(label=_('Feed URL'))
  245. class Feed(DashboardModule):
  246. title = _('RSS Feed')
  247. template = 'jet/dashboard/modules/feed.html'
  248. feed_url = None
  249. limit = None
  250. settings_form = FeedSettingsForm
  251. ajax_load = True
  252. def __init__(self, title=None, feed_url=None, limit=None, **kwargs):
  253. kwargs.update({'feed_url': feed_url, 'limit': limit})
  254. super(Feed, self).__init__(title, **kwargs)
  255. def settings_dict(self):
  256. return {
  257. 'feed_url': self.feed_url,
  258. 'limit': self.limit
  259. }
  260. def load_settings(self, settings):
  261. self.feed_url = settings.get('feed_url')
  262. self.limit = settings.get('limit')
  263. def init_with_context(self, context):
  264. if self.feed_url is not None:
  265. try:
  266. import feedparser
  267. feed = feedparser.parse(self.feed_url)
  268. if self.limit is not None:
  269. entries = feed['entries'][:self.limit]
  270. else:
  271. entries = feed['entries']
  272. for entry in entries:
  273. try:
  274. entry.date = datetime.date(*entry.published_parsed[0:3])
  275. except:
  276. pass
  277. self.children.append(entry)
  278. except ImportError:
  279. self.children.append({
  280. 'title': _('You must install the FeedParser python module'),
  281. 'warning': True,
  282. })
  283. else:
  284. self.children.append({
  285. 'title': _('You must provide a valid feed URL'),
  286. 'warning': True,
  287. })