-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThread.php
500 lines (444 loc) · 12.1 KB
/
Thread.php
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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
<?php
/**
* @file Thread.php
*
* description
*
* copyright (c) 2017 Frank Hellenkamp [[email protected]]
*
* @author Frank Hellenkamp [[email protected]]
*/
namespace Depage\Discuss;
use intrawarez\dateranges\DateRange as DateRange;
/**
* @brief Thread
* Class Thread
*/
class Thread extends \Depage\Entity\Entity
{
use Traits\Votes;
// {{{ variables
/**
* @brief fields
**/
static protected $fields = array(
"id" => null,
"topicId" => null,
"uid" => null,
"subject" => "",
"post" => "",
"postDate" => null,
"editDate" => null,
"lastPostDate" => null,
"sticky" => 0,
"visible" => 1,
);
/**
* @brief primary
**/
static protected $primary = ["id"];
/**
* @brief voteTable
**/
static public $voteTable = "_discuss_thread_votes";
/**
* @brief pdo object for database access
**/
protected $pdo = null;
// }}}
// {{{ __construct()
/**
* @brief __construct
*
* @param mixed $
* @return void
**/
public function __construct($pdo)
{
parent::__construct($pdo);
$this->pdo = $pdo;
}
// }}}
// {{{ loadByTopic()
/**
* @brief loadByTopic
*
* @param mixed $
* @return void
**/
public static function loadByTopic($pdo, $topicId)
{
$fields = "thread." . implode(", thread.", self::getFields());
$params = [
"topicId" => $topicId,
];
$query = $pdo->prepare(
"SELECT
$fields,
IFNULL(SUM(vote.upvote), 0) AS upvotes,
IFNULL(SUM(vote.downvote), 0) AS downvotes
FROM
{$pdo->prefix}_discuss_threads AS thread
LEFT JOIN {$pdo->prefix}" . self::$voteTable . " AS vote
ON thread.id = vote.id
WHERE thread.topicId = :topicId
GROUP BY thread.id
ORDER BY thread.sticky DESC, thread.lastPostDate DESC"
);
$query->execute($params);
// pass pdo-instance to constructor
$query->setFetchMode(\PDO::FETCH_CLASS, get_called_class(), [$pdo]);
$thread = $query->fetchAll();
return $thread;
}
// }}}
// {{{ loadById()
/**
* @brief loadById
*
* @param mixed $
* @return void
**/
public static function loadById($pdo, $threadId)
{
$fields = "thread." . implode(", thread.", self::getFields());
$params = [
"threadId" => $threadId,
];
$query = $pdo->prepare(
"SELECT
$fields,
IFNULL(SUM(vote.upvote), 0) AS upvotes,
IFNULL(SUM(vote.downvote), 0) AS downvotes
FROM
{$pdo->prefix}_discuss_threads AS thread
LEFT JOIN {$pdo->prefix}" . self::$voteTable . " AS vote
ON thread.id = vote.id
WHERE thread.id = :threadId
GROUP BY thread.id
ORDER BY thread.sticky"
);
$query->execute($params);
// pass pdo-instance to constructor
$query->setFetchMode(\PDO::FETCH_CLASS, get_called_class(), array($pdo));
$thread = $query->fetch();
return $thread;
}
// }}}
// {{{ loadByUser()
/**
* @brief loadByUser
*
* @param mixed $
* @return void
**/
public static function loadByUser($pdo, $user, $range = null)
{
$fields = "thread." . implode(", thread.", self::getFields());
$params = [
"uid1" => $user->id,
"uid2" => $user->id,
];
$where = "";
if (!is_null($range)) {
$params["from"] = $range->getStartDate()->format("Y-m-d");
$params["to"] = $range->getEndDate()->format("Y-m-d");
$where = "AND thread.postDate >= :from AND thread.postDate < :to";
}
$query = $pdo->prepare(
"SELECT $fields
FROM
{$pdo->prefix}_discuss_threads AS thread
LEFT JOIN {$pdo->prefix}_discuss_posts AS post
ON thread.id = post.threadId
WHERE
(thread.uid = :uid1 OR post.uid = :uid2)
AND thread.topicId IS NOT NULL
$where
GROUP BY thread.id
ORDER BY thread.lastPostDate DESC"
);
$query->execute($params);
// pass pdo-instance to constructor
$query->setFetchMode(\PDO::FETCH_CLASS, get_called_class(), array($pdo));
$threads = $query->fetchAll();
return $threads;
}
// }}}
// {{{ countByTopic()
/**
* @brief countByTopic
*
* @param mixed $
* @return void
**/
public static function countByTopic($pdo, $topicId)
{
$params = [
"topicId" => $topicId,
];
$query = $pdo->prepare(
"SELECT
COUNT(*)
FROM
{$pdo->prefix}_discuss_threads AS thread
WHERE thread.topicId = :topicId"
);
$query->execute($params);
$count = $query->fetchColumn();
return $count;
}
// }}}
// {{{ loadPosts()
/**
* @brief loadPosts
*
* @param mixed $
* @return void
**/
public function loadPosts($from, $to)
{
$posts = Post::loadByThread($this->pdo, $this->id, $from, $to);
return $posts;
}
// }}}
// {{{ loadUsersToNotify()
/**
* @brief loadUsersToNotify
*
* @param mixed
* @return void
**/
public function loadUsersToNotify($additionalUsers = [])
{
$users = [];
$union = "";
$params = [
"threadId1" => $this->id,
"threadId2" => $this->id,
"threadId3" => $this->id,
"threadId4" => $this->id,
];
$i = 0;
foreach ($additionalUsers as $u) {
$i++;
$params["uId$i"] = $u->id;
$union .= " UNION DISTINCT SELECT :uId$i";
}
$query = $this->pdo->prepare(
"SELECT threadUserViews.uid FROM
(SELECT views.* FROM
(SELECT
thread.uid
FROM
{$this->pdo->prefix}_discuss_threads AS thread
WHERE thread.id = :threadId1
UNION DISTINCT
SELECT
post.uid
FROM
{$this->pdo->prefix}_discuss_posts AS post
WHERE post.threadId = :threadId2
{$union}
) AS uids
INNER JOIN
{$this->pdo->prefix}_discuss_thread_views as views
ON uids.uid = views.uid
WHERE views.threadId = :threadId3
) AS threadUserViews
JOIN
{$this->pdo->prefix}_discuss_posts AS post2
ON threadUserViews.threadId = post2.threadId
WHERE postDate > viewDate
AND post2.threadId = :threadId4
GROUP BY threadUserViews.uid
HAVING COUNT(post2.threadId) = 1
"
);
$query->execute($params);
while ($uid = $query->fetchColumn()) {
$users[$uid] = \Depage\Auth\CachedUser::loadById($this->pdo, $uid);
}
return $users;
}
// }}}
// {{{ addPost()
/**
* @brief addPost
*
* @param mixed
* @return void
**/
public function addPost($text, $uid)
{
$post = new Post($this->pdo);
$post->setData([
'threadId' => $this->id,
'post' => (string) $text,
'uid' => $uid,
])
->save();
return $post;
}
// }}}
// {{{ getNumPosts()
/**
* @brief getNumPosts
*
* @param mixed
* @return void
**/
public function getNumPosts()
{
return Post::countByThread($this->pdo, $this->id);
}
// }}}
// {{{ setPost()
/**
* @brief setPost
*
* @param mixed $post
* @return void
**/
public function setPost($post)
{
if (!empty($post) && substr($post, 0, 1) !== "<") {
$post = "<p>" . str_replace("\n", "</p><p>", $post) . "</p>";
}
$this->data['post'] = $post;
$this->dirty['post'] = true;
return $this;
}
// }}}
// {{{ setVisible()
/**
* @brief setVisible
*
* @param mixed $value
* @return void
**/
protected function setVisible($value)
{
$this->data['visible'] = (int) $value;
$this->dirty['visible'] = true;
return $this;
}
// }}}
// {{{ save()
/**
* save a notification object
*
* @public
*/
public function save() {
$fields = array();
$primary = self::$primary[0];
$isNew = $this->data[$primary] === null;
if ($isNew) {
$this->lastPostDate = date('Y-m-d H:i:s');
}
$dirty = array_keys($this->dirty, true);
if (count($dirty) > 0) {
if ($isNew) {
$query = "INSERT INTO {$this->pdo->prefix}_discuss_threads";
} else {
$query = "UPDATE {$this->pdo->prefix}_discuss_threads";
}
foreach ($dirty as $key) {
$fields[] = "$key=:$key";
}
$query .= " SET " . implode(",", $fields);
if (!$isNew) {
$query .= " WHERE $primary=:$primary";
$dirty[] = $primary;
}
$params = array_intersect_key($this->data, array_flip($dirty));
$cmd = $this->pdo->prepare($query);
$success = $cmd->execute($params);
if ($isNew) {
$this->data[$primary] = $this->pdo->lastInsertId();
}
if ($success) {
$this->dirty = array_fill_keys(array_keys(static::$fields), false);
}
}
}
// }}}
// {{{ processVote()
/**
* @brief processVote
*
* @return void
**/
public function processVote(\Depage\Auth\User $user)
{
if (!empty($user) && !empty($_POST['action']) && $_POST['action'] == "changeVote" && !empty($_POST['id']) && !empty($_POST['vote'])) {
list($type, $id) = explode("-", $_POST['id']);
if ($type == "post") {
$el = Post::loadById($this->pdo, $id);
} else if ($type == "thread" && $this->id == $id) {
$el = $this;
} else {
return;
}
$el->vote($user->id, $_POST['vote']);
$result = [
'uid' => $user->id,
'id' => "{$type}-{$el->id}",
'upvotes' => $el->upvotes,
'downvotes' => $el->downvotes,
];
echo(json_encode($result, \JSON_NUMERIC_CHECK));
die();
}
}
// }}}
// {{{ setLastViewedPost()
/**
* @brief setLastViewedPost
*
* @param mixed $
* @return void
**/
public function setLastViewedPost($user, $post)
{
if (!$user) {
return false;
}
if (!$post) {
$postId = NULL;
} else {
$postId = $post->id;
}
$query = $this->pdo->prepare("
REPLACE INTO
{$this->pdo->prefix}_discuss_thread_views
SET
uid=:uid,
threadId=:threadId,
postId=:postId
");
return $query->execute([
'uid' => $user->id,
'threadId' => $this->id,
'postId' => $postId,
]);
}
// }}}
// {{{ getLastViewedPost()
/**
* @brief getLastViewedPost
*
* @param mixed $user
* @return void
**/
public function getLastViewedPost($user)
{
if (!$user) {
return false;
}
return Post::loadByUserLastViewed($this->pdo, $this, $user);
}
// }}}
}
// vim:set ft=php sw=4 sts=4 fdm=marker et :