/app/soc/views/helper/surveys.py

https://code.google.com/ · Python · 147 lines · 51 code · 28 blank · 68 comment · 6 complexity · 29ddaa4b5804bec85808dff65ee5538e MD5 · raw file

  1. #!/usr/bin/env python2.5
  2. #
  3. # Copyright 2009 the Melange authors.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. """Helper classes that abstract survey form structure and fields meta data.
  17. """
  18. import urllib
  19. from django.utils.datastructures import SortedDict
  20. from django.utils.simplejson import loads
  21. from soc.modules.gsoc.logic.survey import getSurveysForProgram
  22. class SurveyField(object):
  23. """Meta data for single field in the survey form.
  24. """
  25. def __init__(self, fields, field_id):
  26. """Initialize the meta data dictionary for the field
  27. """
  28. self.fields = fields
  29. self.field_id = field_id
  30. # Assign the meta dictionary corresponding to an individial field
  31. # to an object attribute
  32. self.meta_dict = self.fields.get(self.field_id, {})
  33. # If the field contains multiple choices, it contains additional
  34. # meta data for each choice and which of them must be checked
  35. self.choices = []
  36. self.checked = []
  37. def getFieldName(self):
  38. """Returns the name to be used as the property name in the survey record.
  39. """
  40. return self.field_id
  41. def getType(self):
  42. """Returns the type of the field to which it should be rendered.
  43. Possible types:
  44. 1. input_text
  45. 2. textarea
  46. 3. radio
  47. 4. checkbox
  48. """
  49. return self.meta_dict.get('field_type', '')
  50. def getLabel(self):
  51. """Returns the label which should be shown along with the field.
  52. """
  53. return urllib.unquote(self.meta_dict.get('label', ''))
  54. def isRequired(self):
  55. """Returns True if the field is a mandatory field on the form else False
  56. """
  57. return self.meta_dict.get('required', False)
  58. def requireOtherField(self):
  59. """Returns True if field needs "Other" option to be rendered automatically.
  60. """
  61. return self.meta_dict.get('other', False)
  62. def getHelpText(self):
  63. """Returns the help text which should be shown along with the field.
  64. """
  65. return self.meta_dict.get('tip', '')
  66. def getValues(self):
  67. """Returns the list of options which should be rendered for the field.
  68. """
  69. return self.meta_dict.get('values', '')
  70. def getChoices(self):
  71. """Returns the list of choices for the field as 2-tuple.
  72. This format of returning the list of 2-tuples where each 2-tuple
  73. corresponds to a single option for the multiple choice fields is
  74. the format that Django uses in its form. So we can directly use this
  75. list in the Django forms.
  76. """
  77. for choice in self.getValues():
  78. value = urllib.unquote(choice.get('value'))
  79. self.choices.append((value, value))
  80. if choice.get('checked', False):
  81. self.checked.append(value)
  82. return self.choices
  83. def getCheckedChoices(self):
  84. """Returns the list of choices that must be checked as initial values.
  85. """
  86. return self.checked
  87. class SurveySchema(object):
  88. """Meta data containing the form elements needed to build surveys.
  89. """
  90. def __init__(self, survey):
  91. """Intialize the Survey Schema from the provided survey entity.
  92. """
  93. self.order, self.fields = loads(survey.schema)
  94. def __iter__(self):
  95. """Iterator for providing the fields in order to be used to build surveys.
  96. """
  97. for field_id in self.order:
  98. yield SurveyField(self.fields, field_id)
  99. def dictForSurveyModel(model, program, surveys):
  100. """Returns a dictionary of link id and entity pairs for given model.
  101. Args:
  102. model: The survey model class for which the dictionary must be built
  103. program: The program to query
  104. surveys: The list containing the link ids of the surveys
  105. """
  106. survey_dict = dict([(e.link_id, e) for e in getSurveysForProgram(
  107. model, program, surveys)])
  108. # Create a sorted dictionary to ensure that the surveys are stored
  109. # in the same order they were asked for in addition to giving key
  110. # based access to surveys fetched
  111. survey_sorted_dict = SortedDict()
  112. for s in surveys:
  113. survey = survey_dict.get(s)
  114. if survey:
  115. survey_sorted_dict[s] = survey
  116. return survey_sorted_dict