-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.py
221 lines (177 loc) · 5.83 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
class Element(object):
def __init__(self, eleType, eleId, concept, question, answer):
self.eleType = eleType
self.eleId = eleId
self.concept = concept
self.question = question
self.answer = answer
def generate_properties_dict(self):
return {
'type': self.eleType,
'id': self.eleId,
'concept': self.concept,
'question': self.question,
'answer': self.answer
}
@staticmethod
def _validate_attributes(attrib):
if 'type' not in attrib:
raise Exception('Element', 'type')
if 'id' not in attrib:
raise Exception('Element', 'id')
if 'concept' not in attrib:
raise Exception('Element', 'concept')
if 'question' not in attrib:
raise Exception('Element', 'question')
if 'answer' not in attrib:
raise Exception('Element', 'answer')
@staticmethod
def create_element(attrib):
Element._validate_attributes(attrib)
if attrib['type'] == 'MULTI_SELECT':
return MultiSelectElement._create_element(attrib)
if attrib['type'] == 'ENTRY':
return EntryElement._create_element(attrib)
if attrib['type'] == 'PICTURE':
return PictureElement._create_element(attrib)
if attrib['type'] == 'GPS':
return GPSElement._create_element(attrib)
raise Exception('Element', 'type')
class ChoiceElement(Element):
def __init__(self, eleType, eleId, concept, question, choices, answer):
super(ChoiceElement, self).__init__(
eleType=eleType,
eleId=eleId,
concept=concept,
question=question,
answer=answer
)
self.choices = choices
def generate_properties_dict(self):
propDict = super(ChoiceElement, self).generate_properties_dict()
propDict['choices'] = self.choices
return propDict
@staticmethod
def _validate_attributes(attrib):
if 'choices' not in attrib:
raise Exception('ChoiceElement', 'choices')
class MultiSelectElement(ChoiceElement):
def __init__(self, eleId, concept, question, choices, answer):
super(MultiSelectElement, self).__init__(
eleType='MULTI_SELECT',
eleId=eleId,
concept=concept,
question=question,
choices=choices,
answer=answer
)
@staticmethod
def _create_element(attrib):
ChoiceElement._validate_attributes(attrib)
eleId = attrib['id']
concept = attrib['concept']
question = attrib['question']
choices = attrib['choices']
answer = attrib['answer']
return MultiSelectElement(
eleId=eleId,
concept=concept,
question=question,
choices=choices,
answer=answer
)
class EntryElement(Element):
def __init__(self, eleId, concept, question, answer, numeric=None):
super(EntryElement, self).__init__(
eleType='ENTRY',
eleId=eleId,
concept=concept,
question=question,
answer=answer
)
self.numeric = numeric
def generate_properties_dict(self):
propDict = super(EntryElement, self).generate_properties_dict()
if self.numeric is not None:
propDict['numeric'] = self.numeric
return propDict
@staticmethod
def _create_element(attrib):
eleId = attrib['id']
concept = attrib['concept']
question = attrib['question']
answer = attrib['answer']
numeric = attrib['numeric'] if 'numeric' in attrib else None
return EntryElement(
eleId=eleId,
concept=concept,
question=question,
answer=answer,
numeric=numeric
)
class PictureElement(Element):
def __init__(self, eleId, concept, question, answer):
super(PictureElement, self).__init__(
eleType='PICTURE',
eleId=eleId,
concept=concept,
question=question,
answer=answer
)
@staticmethod
def _create_element(attrib):
eleId = attrib['id']
concept = attrib['concept']
question = attrib['question']
answer = attrib['answer']
return PictureElement(
eleId=eleId,
concept=concept,
question=question,
answer=answer,
)
class GPSElement(Element):
def __init__(self, eleId, concept, question, answer):
super(GPSElement, self).__init__(
eleType='GPS',
eleId=eleId,
concept=concept,
question=question,
answer=answer
)
@staticmethod
def _create_element(attrib):
eleId = attrib['id']
concept = attrib['concept']
question = attrib['question']
answer = attrib['answer']
return PictureElement(
eleId=eleId,
concept=concept,
question=question,
answer=answer,
)
class Page(object):
def __init__(self):
self.elements = []
class Procedure(object):
def __init__(self, title, author):
self.title = title
self.author = author
self.pages = []
def __contains__(self, page):
return page in self.pages
def generate_properties_dict(self):
return {
'title': self.title,
'author': self.author
}
@staticmethod
def create_procedure(attrib):
if 'title' not in attrib:
raise Exception('Procedure', 'title')
if 'author' not in attrib:
raise Exception('Procedure', 'author')
title = attrib['title']
author = attrib['author']
return Procedure(title=title, author=author)