-
Notifications
You must be signed in to change notification settings - Fork 0
/
answerMod.py
187 lines (151 loc) · 4.99 KB
/
answerMod.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
# std:
# n/a
# pip-ext:
# n/a
# pip-int:
import dotsi
import vf
# loc:
from constants import K
import mongo
import utils
import bu
import stdAdpBuilder
############################################################
# Assertions & prelims: #
############################################################
assert K.CURRENT_ANSWER_V == 1
db = dotsi.fy({"answerBox": mongo.db.answerBox}) # Isolate
############################################################
# Answer building and validation: #
############################################################
validateAnswer = vf.dictOf(
{
"_id": utils.isObjectId,
"_v": lambda x: x == K.CURRENT_ANSWER_V,
#
# Intro'd in _v0:
#
"questionId": utils.isObjectId,
"choiceId": utils.isObjectId,
# "choiceText": vf.typeIs(str), -- Renamed in _v1 to 'thenChoiceText'
"email": vf.typeIs(str), # TODO: Allow K.EMAIL_RE or "".
"createdAt": utils.isInty,
"comment": vf.typeIs(str),
#
# Intro'd in _v1:
#
"thenChoiceText": vf.typeIs(str),
"thenChoiceWeight": utils.isInty,
},
extraKeysOk=True,
)
def buildAnswer(questionId, choiceId, thenChoiceText, thenChoiceWeight, email=""):
assert K.CURRENT_ANSWER_V == 1
return dotsi.fy(
{
"_id": utils.objectId(),
"_v": K.CURRENT_ANSWER_V,
#
# Intro'd in _v0:
#
"questionId": questionId,
"choiceId": choiceId,
# "choiceText": choiceText, -- Renamed in _v1 to 'thenChoiceText'
"email": email,
"createdAt": utils.now(),
"comment": "",
#
# Intro'd in _v1:
#
"thenChoiceText": thenChoiceText,
"thenChoiceWeight": thenChoiceWeight,
}
)
############################################################
# Adapting:
############################################################
answerAdp = stdAdpBuilder.buildStdAdp(
str_fooBox="answerBox",
str_CURRENT_FOO_V="CURRENT_ANSWER_V",
int_CURRENT_FOO_V=K.CURRENT_ANSWER_V,
func_validateFoo=validateAnswer,
)
@answerAdp.addStepAdapter
def stepAdapterCore_from_0_to_1(answerY): # NON-lambda func.
# answer._v: 0 --> 1
# Renamed:
# ~ choiceText --> thenChoiceText
# Added:
# + thenChoiceWeight
answerY.update(
{
"thenChoiceText": answerY.pop("choiceText"),
"thenChoiceWeight": 0, # Backfilling 0.
}
)
# @answerAdp.addStepAdapter
# def stepAdapterCore_from_X_to_Y (answerY): # NON-lambda func.
# # answer._v: X --> Y
# # Added:
# # + foo
# answerY.update({
# "foo": "foobar",
# });
assert answerAdp.getStepCount() == K.CURRENT_ANSWER_V
# Adaptation Checklist:
# Assertions will help you.
# You'll need to look at:
# + constants.py
# + answerMod.py
# + top (K) assertion
# + define stepAdapterCore_from_X_to_Y
# + modify builder/s as needed
# + modify validator/s as needed
# + modify snip/s if any, as needed
# + answerCon.py and others:
# + modify funcs that call answerMod's funcs.
############################################################
# Getting:
############################################################
def getAnswer(q, shouldUpdateDb=True):
"Query traditionally for a single answer."
q = {"_id": q} if type(q) is str else q
assert type(q) is dict
answer = db.answerBox.find_one(q)
if answer is None:
return None # Short ckt.
return answerAdp.adapt(answer, shouldUpdateDb)
def getAnswerList(q=None, shouldUpdateDb=True):
"Query traditionally for multiple answers."
q = q or {}
assert type(q) is dict
adaptWrapper = ( # A wrapper around `adapt`, aware of `shouldUpdateDb`.
lambda answer: (answerAdp.adapt(answer, shouldUpdateDb)) # , # NO COMMA
)
return utils.map(adaptWrapper, db.answerBox.find(q))
def getAnswerCount(q=None):
return db.answerBox.count_documents(q or {})
############################################################
# Inserting, Updating & Deleting:
############################################################
def insertAnswer(answer):
"More or less blindly INSERTS answer to db."
assert validateAnswer(answer)
# print("inserting answer: ", answer);
dbOut = db.answerBox.insert_one(answer)
assert dbOut.inserted_id == answer._id
return dbOut
def replaceAnswer(answer):
"More or less blindly REPLACES answer in db."
assert validateAnswer(answer)
dbOut = db.answerBox.replace_one({"_id": answer._id}, answer)
assert dbOut.matched_count == 1 == dbOut.modified_count
return dbOut
def deleteAnswer(answer):
"More or less blindly deletes an answer."
assert validateAnswer(answer)
dbOut = db.answerBox.delete_one({"_id": answer._id})
assert dbOut.deleted_count == 1
return True
# xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx