-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestionsdatabase.rb
431 lines (363 loc) · 8.74 KB
/
questionsdatabase.rb
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
require 'singleton'
require 'sqlite3'
class QuestionsDatabase < SQLite3::Database
include Singleton
def initialize
super('questions.db')
self.results_as_hash = true
self.type_translation = true
end
def get_first_result(*query_args)
self.execute(*query_args)[0]
end
end #end of class
class Question
def self.find_by_id(id)
result = QuestionsDatabase.instance.get_first_result(<<-SQL,id)
SELECT
*
FROM
questions
WHERE
id = ?
SQL
Question.new(result)
end
def self.find_by_author_id(author_id)
results = QuestionsDatabase.instance.execute(<<-SQL,author_id)
SELECT
*
FROM
questions
WHERE
author_id = ?
SQL
results.map { |result| Question.new(result) }
end
def self.most_followed(n)
QuestionFollow::most_followed_questions(n)
end
def self.most_liked(n)
QuestionLike::most_liked_questions(n)
end
attr_accessor :id, :title, :body, :author_id
def initialize(options = {})
@id = options['id']
@title = options['title']
@body = options['body']
@author_id = options['author_id']
end
def author
User.find_by_id(author_id)
end
def replies
Reply.find_by_question_id(id)
end
def followers
QuestionFollow.followers_for_question_id(id)
end
def likers
QuestionLike::likers_for_question_id(id)
end
def num_likes
QuestionLike::num_likes_for_question_id(id)
end
def save
if id.nil?
QuestionsDatabase.instance.execute(<<-SQL, title, body, author_id)
INSERT INTO
questions (title, body, author_id)
VALUES
(?, ?, ?)
SQL
@id = QuestionsDatabase.instance.last_insert_row_id
else
QuestionsDatabase.instance.execute(<<-SQL, title, body, author_id, id)
UPDATE
questions
SET
title = ? , body = ? , author_id = ?
WHERE
questions.id = ?
SQL
end
end
end
class User
def self.find_by_id(id)
result = QuestionsDatabase.instance.get_first_result(<<-SQL,id)
SELECT
*
FROM
users
WHERE
id = ?
SQL
User.new(result)
end
def self.find_by_name(fname, lname)
result = QuestionsDatabase.instance.get_first_result(<<-SQL,fname,lname)
SELECT
*
FROM
users
WHERE
fname = ? AND lname = ?
SQL
User.new(result)
end
attr_accessor :id, :fname, :lname
def initialize(options = {})
@id = options['id']
@fname = options['fname']
@lname = options['lname']
end
def authored_questions
Question.find_by_author_id(id)
end
def authored_replies
Reply.find_by_user_id(id)
end
def followed_questions
QuestionFollow.followed_questions_for_user_id(id)
end
def liked_questions
QuestionLike::liked_questions_for_user_id(id)
end
def average_karma
QuestionsDatabase.instance.execute(<<-SQL,id)
SELECT
CAST(COUNT(question_likes.user_id) AS FLOAT) / COUNT(DISTINCT questions.id)
FROM
questions
LEFT OUTER JOIN
question_likes
ON
questions.id = question_likes.question_id
WHERE
questions.author_id = ?
SQL
end
def save
if id.nil?
QuestionsDatabase.instance.execute(<<-SQL, fname, lname)
INSERT INTO
users (fname, lname)
VALUES
(?, ?)
SQL
@id = QuestionsDatabase.instance.last_insert_row_id
else
QuestionsDatabase.instance.execute(<<-SQL, fname, lname, id)
UPDATE
users
SET
fname = ? , lname = ?
WHERE
users.id = ?
SQL
end
end
end
class Reply
def self.find_by_id(id)
result = QuestionsDatabase.instance.get_first_result(<<-SQL,id)
SELECT
*
FROM
replies
WHERE
id = ?
SQL
Reply.new(result)
end
def self.find_by_user_id(reply_author_id)
results = QuestionsDatabase.instance.execute(<<-SQL,reply_author_id)
SELECT
*
FROM
replies
WHERE
reply_author_id = ?
SQL
results.map { |result| Reply.new(result) }
end
def self.find_by_question_id(question_id)
results = QuestionsDatabase.instance.execute(<<-SQL, question_id)
SELECT
*
FROM
replies
WHERE
question_id = ?
SQL
results.map { |result| Reply.new(result) }
end
def self.find_by_parent_id(parent_reply_id)
results = QuestionsDatabase.instance.execute(<<-SQL, parent_reply_id)
SELECT
*
FROM
replies
WHERE
parent_reply_id = ?
SQL
results.map { |result| Reply.new(result) }
end
attr_accessor :id, :body, :question_id, :parent_reply_id, :reply_author_id
def initialize(options = {})
@id = options['id']
@body = options['body']
@question_id = options['question_id']
@parent_reply_id = options['parent_reply_id']
@reply_author_id = options['reply_author_id']
end
def author
User.find_by_id(reply_author_id)
end
def question
Question.find_by_id(question_id)
end
def parent_reply
Reply.find_by_id(parent_reply_id)
end
def child_reply #one level deep
Reply.find_by_parent_id(id)
end
def save
if id.nil?
QuestionsDatabase.instance.execute(<<-SQL, body, question_id, parent_reply_id, reply_author_id)
INSERT INTO
replies (body, question_id, parent_reply_id, reply_author_id)
VALUES
(?, ?, ?, ?)
SQL
@id = QuestionsDatabase.instance.last_insert_row_id
else
QuestionsDatabase.instance.execute(<<-SQL, body, question_id, parent_reply_id, reply_author_id, id)
UPDATE
replies
SET
body = ? , question_id = ? , parent_reply_id = ?, reply_author_id = ?
WHERE
replies.id = ?
SQL
end
end
end
class QuestionFollow
# QuestionFollow::followers_for_question_id(question_id)
# This will return an array of User objects!
def self.followers_for_question_id(question_id)
results = QuestionsDatabase.instance.execute(<<-SQL, question_id)
SELECT
follower_id
FROM
question_follows
INNER JOIN
users
ON
question_follows.follower_id = users.id
WHERE
question_id = ?
SQL
results.map { |result| User.find_by_id(result["follower_id"]) }
end
def self.followed_questions_for_user_id(follower_id)
results = QuestionsDatabase.instance.execute(<<-SQL, follower_id)
SELECT
question_id
FROM
question_follows
INNER JOIN
questions
ON
question_follows.question_id = questions.id
WHERE
follower_id = ?
SQL
results.map { |result| Question.find_by_id(result["question_id"]) }
end
def self.most_followed_questions(n)
results = QuestionsDatabase.instance.execute(<<-SQL, n)
SELECT
question_id
FROM
question_follows
GROUP BY
question_id
ORDER BY
COUNT(follower_id) DESC
LIMIT
?
SQL
results.map { |result| Question.find_by_id(result["question_id"])}
end
attr_accessor :follower_id, :question_id
def initialize(options = {})
@follower_id = options['follower_id']
@question_id = options['question_id']
end
end
class QuestionLike
def self.likers_for_question_id(question_id)
results = QuestionsDatabase.instance.execute(<<-SQL, question_id)
SELECT
user_id
FROM
question_likes
INNER JOIN
users
ON
question_likes.user_id = users.id
WHERE
question_id = ?
SQL
results.map { |result| User.find_by_id(result["user_id"]) }
end
def self.liked_questions_for_user_id(user_id)
results = QuestionsDatabase.instance.execute(<<-SQL, user_id)
SELECT
question_id
FROM
question_likes
INNER JOIN
questions
ON
question_likes.question_id = questions.id
WHERE
user_id = ?
SQL
results.map { |result| Question.find_by_id(result['question_id']) }
end
def self.num_likes_for_question_id(question_id)
results = QuestionsDatabase.instance.get_first_result(<<-SQL, question_id)
SELECT
COUNT(user_id) AS likes
FROM
question_likes
WHERE
question_id = ?
SQL
results['likes']
end #return number
def self.most_liked_questions(n)
results = QuestionsDatabase.instance.execute(<<-SQL, n)
SELECT
question_id
FROM
question_likes
GROUP BY
question_id
ORDER BY
COUNT(user_id) DESC
LIMIT
?
SQL
results.map { |result| Question.find_by_id(result["question_id"])}
end
def initialize(options = {})
@user_id = options['user_id']
@question_id = options['question_id']
end
end