/corehq/apps/reports/filters/fixtures.py

https://github.com/dimagi/commcare-hq · Python · 66 lines · 48 code · 10 blank · 8 comment · 2 complexity · 96d40f4814c2574d8a0606141ae4c33b MD5 · raw file

  1. from django.urls import reverse
  2. from django.utils.translation import ugettext_noop
  3. from corehq.apps.locations.util import (
  4. load_locs_json,
  5. location_hierarchy_config,
  6. )
  7. from corehq.apps.reports.filters.base import BaseReportFilter
  8. class AsyncLocationFilter(BaseReportFilter):
  9. # todo: cleanup template
  10. label = ugettext_noop("Location")
  11. slug = "location_async"
  12. template = "reports/filters/location_async.html"
  13. make_optional = False
  14. auto_drill = True
  15. @property
  16. def api_root(self):
  17. return reverse('api_dispatch_list', kwargs={'domain': self.domain,
  18. 'resource_name': 'location_internal',
  19. 'api_name': 'v0.5'})
  20. def load_locations_json(self, loc_id):
  21. return load_locs_json(self.domain, loc_id, user=self.request.couch_user)
  22. @property
  23. def location_hierarchy_config(self):
  24. return location_hierarchy_config(self.domain)
  25. @property
  26. def filter_context(self):
  27. api_root = self.api_root
  28. user = self.request.couch_user
  29. loc_id = self.request.GET.get('location_id')
  30. if not loc_id:
  31. # Don't use enterprise permissions, because any location not in the current domain won't exist
  32. domain_membership = user.get_domain_membership(self.domain, allow_enterprise=False)
  33. if domain_membership:
  34. loc_id = domain_membership.location_id
  35. return {
  36. 'api_root': api_root,
  37. 'control_name': self.label, # todo: cleanup, don't follow this structure
  38. 'control_slug': self.slug, # todo: cleanup, don't follow this structure
  39. 'auto_drill': self.auto_drill,
  40. 'loc_id': loc_id,
  41. 'locations': self.load_locations_json(loc_id),
  42. 'make_optional': self.make_optional,
  43. 'hierarchy': self.location_hierarchy_config,
  44. 'path': self.request.path,
  45. }
  46. @classmethod
  47. def get_value(cls, request, domain):
  48. return request.GET.get('location_id')
  49. class OptionalAsyncLocationFilter(AsyncLocationFilter):
  50. """
  51. This is the same as the AsyncLocationFilter, only when the template is
  52. rendered, it will give the user the option of filtering by location or
  53. not. If the user chooses to not filter by location, the location_id
  54. value will be blank.
  55. """
  56. make_optional = True