-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QuestionsService.ts
279 lines (238 loc) · 9 KB
/
QuestionsService.ts
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
import type { SupabaseClient } from "@supabase/supabase-js";
import type {
QuestionOverview,
QuestionMeta,
QuestionScores,
VOTE_OPTIONS
} from "$models/Models";
import { createHash } from 'node:crypto'
export class QuestionService {
private supaInstance: SupabaseClient
private QUESTIONS_TABLE = 'questions'
private SCORES_TABLE = 'scores'
private VOTERS_TABLE = 'voters'
constructor(supabaseInstance: SupabaseClient) {
//setup the needs here
this.supaInstance = supabaseInstance;
}
/**
* Adds a new question to the system
* @param title Question title
* @param options Array of strings representing question voting options
* @returns `true` in case of success
*/
async addQuestion(title: string, options: string[]): Promise<boolean> {
const { data, error } = await this.supaInstance
.from(this.QUESTIONS_TABLE)
.insert({
title: title,
question_options: options
})
.select()
// check for errors
if(error) { return Promise.reject(error); }
// then add initial score to scores table
const questionID = data[0].id;
const response = await this.supaInstance
.from(this.SCORES_TABLE)
.insert({
question_id: questionID,
});
// finally, check if score addition resulted in error
if(response.error) {
console.error("Adding default scores failed. Manually deleting associated question...")
// NOTE: as of now, Supabase does NOT support SQL transactions
// in case of failure here, we should delete previous insertion, as we might end up with ghost data
const deleteResponse = await this.supaInstance
.from(this.QUESTIONS_TABLE)
.delete()
.eq('id', questionID)
if(deleteResponse.error) { return Promise.reject(deleteResponse.error); }
console.debug("After failing to add scores, associated question was removed successfully...")
return Promise.reject(response.error);
}
// return positive outcome
return Promise.resolve(true);
}
/**
* Fetches all the questions of the system
* @returns `QuestionSummary[]` array of question objects
*/
async fetchAllQuestions(): Promise<QuestionOverview[]> {
const { data, error } = await this.supaInstance
.from(this.QUESTIONS_TABLE)
.select(`
id,
title,
created_at,
voters_count:voters (
question_id
)
`)
// check for errors
if(error) {
return Promise.reject(error);
}
return Promise.resolve(data);
}
/**
* Loads and returns `QuestionMeta` for given question ID
* @param questionID ID of the question
* @returns `QuestionMeda` object
*/
async loadQuestionMeta(questionID: number): Promise<QuestionMeta> {
const { data, error } = await this.supaInstance
.from(this.QUESTIONS_TABLE)
.select()
.eq('id', questionID)
.returns<QuestionMeta>()
.maybeSingle();
// check for errors
if(error) { return Promise.reject(error) }
// return the success
return Promise.resolve(data);
}
async hasAnsweredQuestion(questionID: number): Promise<boolean> {
// get commitment hash
const commitmentHash = await this.getCommitHash(questionID);
// check for entries
const { data , error } = await this.supaInstance
.from(this.VOTERS_TABLE)
.select('user_hash')
.eq('question_id', questionID)
.eq('user_hash', commitmentHash)
.maybeSingle()
// check for errors
if(error) { return Promise.reject(error) }
//
return Promise.resolve(data !== null);
}
async loadQuestionScores(questionID: number): Promise<QuestionScores> {
const { data, error } = await this.supaInstance
.from(this.QUESTIONS_TABLE)
.select(`
*,
scores(*),
voters(question_id)
`)
.eq('id', questionID)
.maybeSingle()
// check for errors
if(error) { return Promise.reject(error) }
// construct return value
const returnValue: QuestionScores = {
id: data.id,
title: data.title,
question_options: data.question_options,
created_at: data.created_at,
option_scores: [
data.scores.option_1,
data.scores.option_2,
data.scores.option_3,
data.scores.option_4,
data.scores.option_5,
],
none: data.scores.none,
not_clear: data.scores.not_clear,
inadequate: data.scores.inadequate,
total_voters: data.voters.length
}
return Promise.resolve(returnValue);
}
/**
* Performs question voting operation and commits the change
* @param questionID ID of the question to vote fore
* @param vote_option `VOTE_OPTIONS` enum representing the actual user's choice
* @returns `true` in case of success; `error` object in case of various errors
*/
async commitQuestionVote(questionID: number, vote_option: VOTE_OPTIONS): Promise<boolean> {
// 1. pull out column name
const columnName = vote_option.toString().toLowerCase();
//
// 2. fetch the latest score
const qResult = await this.supaInstance
.from(this.SCORES_TABLE)
.select(columnName)
.eq('question_id', questionID)
.maybeSingle()
//
// 2.a) check for fetch errors
if(qResult.error) { return Promise.reject(qResult.error) }
// 3. increase current score by 1 vote
// and cache the result in case of further failures
const oldValue = qResult.data[[columnName]];
const newValue = oldValue + 1;
// 4. upsert scores table with new score
const scoreResult = await this.supaInstance
.from(this.SCORES_TABLE)
.upsert({
question_id: questionID,
[columnName]: newValue,
last_updated: new Date()
})
.eq('question_id', questionID);
// 4.a) check for upsert errors
if(scoreResult.error) {
return Promise.reject(scoreResult.error)
}
// 5. calculate commit hash
const commitHash = await this.getCommitHash(questionID);
// 6. update voters table
const commitResult = await this.supaInstance
.from('voters')
.insert({
question_id: questionID,
user_hash: commitHash
})
//
// 6.a) check for commit errors
if( commitResult.error ) {
// revert the last update of the scoring table
// to it's original value
const rollbackResult = await this.supaInstance
.from(this.SCORES_TABLE)
.upsert({
question_id: questionID,
[columnName]: oldValue,
last_updated: new Date()
})
.eq('question_id', questionID);
//
// check for failures (if this happens, we end with ghost data)
if(rollbackResult.error) {
return Promise.reject(rollbackResult.error)
}
return Promise.reject(commitResult.error)
}
// 7. finally:
return Promise.resolve(true);
}
private async getCommitHash(questionID: number): Promise<string> {
// get the user info
const { data: { user }, error } = await this.supaInstance.auth.getUser();
// throw if errors
if(error) { return Promise.reject(error) }
// get question basics and check for errors
const qResponse = await this.supaInstance
.from(this.QUESTIONS_TABLE)
.select('*')
.eq('id', questionID)
.maybeSingle()
if(qResponse.error) { return Promise.reject(qResponse.error) }
const qInfo = qResponse.data;
// create hashers and combine values
const qHasher = createHash('ripemd-160');
const finalHasher = createHash('sha-384');
qHasher.update(qInfo.id.toString());
qHasher.update(user?.id);
qHasher.update(qInfo.title);
for(const anOption in qInfo.question_options) {
qHasher.update(anOption);
}
//
finalHasher.update(user?.id);
finalHasher.update(qHasher.digest('hex'));
const finalOutput = finalHasher.digest('hex');
return Promise.resolve(finalOutput);
}
}