-
Notifications
You must be signed in to change notification settings - Fork 0
/
Post.php
391 lines (346 loc) · 9.58 KB
/
Post.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
<?php
/**
* @file Post.php
*
* description
*
* copyright (c) 2017 Frank Hellenkamp [jonas@depage.net]
*
* @author Frank Hellenkamp [jonas@depage.net]
*/
namespace Depage\Discuss;
/**
* @brief Post
* Class Post
*/
class Post extends \Depage\Entity\Entity
{
use Traits\Votes;
// {{{ variables
/**
* @brief fields
**/
static protected $fields = array(
"id" => null,
"threadId" => null,
"uid" => null,
"post" => "",
"postDate" => null,
"editDate" => null,
"visible" => 1,
);
/**
* @brief primary
**/
static protected $primary = ["id"];
/**
* @brief voteTable
**/
static public $voteTable = "_discuss_post_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;
}
// }}}
// {{{ loadByThread()
/**
* @brief loadByThread
*
* @param mixed $
* @return void
**/
public static function loadByThread($pdo, $threadId, $from = null, $to = null)
{
$fields = "post." . implode(", post.", 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_posts AS post
LEFT JOIN {$pdo->prefix}" . self::$voteTable . " AS vote
ON post.id = vote.id
WHERE post.threadId = :threadId
GROUP BY post.id
ORDER BY post.postDate ASC
"
);
$query->execute($params);
// pass pdo-instance to constructor
$query->setFetchMode(\PDO::FETCH_CLASS, get_called_class(), array($pdo));
$posts = $query->fetchAll();
return $posts;
}
// }}}
// {{{ loadById()
/**
* @brief loadById
*
* @param mixed $
* @return void
**/
public static function loadById($pdo, $postId)
{
$fields = "post." . implode(", post.", self::getFields());
$params = [
"postId" => $postId,
];
$query = $pdo->prepare(
"SELECT
$fields,
IFNULL(SUM(vote.upvote), 0) AS upvotes,
IFNULL(SUM(vote.downvote), 0) AS downvotes
FROM
{$pdo->prefix}_discuss_posts AS post
LEFT JOIN {$pdo->prefix}" . self::$voteTable . " AS vote
ON post.id = vote.id
WHERE post.id = :postId
GROUP BY post.id
"
);
$query->execute($params);
// pass pdo-instance to constructor
$query->setFetchMode(\PDO::FETCH_CLASS, get_called_class(), array($pdo));
$post = $query->fetch();
return $post;
}
// }}}
// {{{ loadByUser()
/**
* @brief loadByUser
*
* @param mixed $
* @return void
**/
public static function loadByUser($pdo, $user, $range = null)
{
$fields = "post." . implode(", post.", self::getFields());
$params = [
"uid" => $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 post.postDate >= :from AND post.postDate < :to";
}
$query = $pdo->prepare(
"SELECT
post2.*,
IFNULL(SUM(vote.upvote), 0) AS upvotes,
IFNULL(SUM(vote.downvote), 0) AS downvotes
FROM
(SELECT post.*
FROM
sd_discuss_posts AS post
JOIN sd_discuss_threads AS thread
ON thread.id = post.threadId
WHERE
post.uid = :uid
AND thread.topicId IS NOT NULL
$where
ORDER BY thread.lastPostDate DESC
) AS post2
LEFT JOIN sd_discuss_post_votes AS vote
ON post2.id = vote.id
GROUP BY post2.id
ORDER BY post2.postDate ASC
"
);
$query->execute($params);
// pass pdo-instance to constructor
$query->setFetchMode(\PDO::FETCH_CLASS, get_called_class(), array($pdo));
$posts = $query->fetchAll();
return $posts;
}
// }}}
// {{{ loadByUserLastViewed()
/**
* @brief loadByUserLastViewed
*
* @param mixed $
* @return void
**/
public static function loadByUserLastViewed($pdo, $thread, $user)
{
$fields = "post." . implode(", post.", self::getFields());
$params = [
"threadId" => $thread->id,
"uid" => $user->id,
];
$query = $pdo->prepare(
"SELECT
$fields,
IFNULL(SUM(vote.upvote), 0) AS upvotes,
IFNULL(SUM(vote.downvote), 0) AS downvotes
FROM
{$pdo->prefix}_discuss_thread_views AS view,
{$pdo->prefix}_discuss_posts AS post
LEFT JOIN {$pdo->prefix}" . self::$voteTable . " AS vote
ON post.id = vote.id
WHERE post.id = view.postId
AND view.threadId = :threadId
AND view.uid = :uid
GROUP BY post.id
"
);
$query->execute($params);
// pass pdo-instance to constructor
$query->setFetchMode(\PDO::FETCH_CLASS, get_called_class(), array($pdo));
$post = $query->fetch();
return $post;
}
// }}}
// {{{ loadThread()
/**
* @brief loadThread
*
* @param mixed
* @return void
**/
public function loadThread()
{
return Thread::loadById($this->pdo, $this->threadId);
}
// }}}
// {{{ countByTopic()
/**
* @brief countByTopic
*
* @param mixed $
* @return void
**/
public static function countByTopic($pdo, $topicId)
{
$params = [
"topicId" => $topicId,
];
$query = $pdo->prepare(
"SELECT
COUNT(post.id)
FROM
{$pdo->prefix}_discuss_posts AS post,
{$pdo->prefix}_discuss_threads AS thread
WHERE post.threadId = thread.id AND thread.topicId = :topicId
"
);
$query->execute($params);
$count = $query->fetchColumn();
return $count;
}
// }}}
// {{{ countByThread()
/**
* @brief countByThread
*
* @param mixed $
* @return void
**/
public static function countByThread($pdo, $threadId)
{
$params = [
"threadId" => $threadId,
];
$query = $pdo->prepare(
"SELECT
COUNT(*)
FROM
{$pdo->prefix}_discuss_posts AS post
WHERE post.threadId = :threadId
"
);
$query->execute($params);
$count = $query->fetchColumn();
return $count;
}
// }}}
// {{{ 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;
}
// }}}
// {{{ 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;
$dirty = array_keys($this->dirty, true);
if (count($dirty) > 0) {
if ($isNew) {
$query = "INSERT INTO {$this->pdo->prefix}_discuss_posts";
} else {
$query = "UPDATE {$this->pdo->prefix}_discuss_posts";
}
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();
$cmd = $this->pdo->prepare("UPDATE {$this->pdo->prefix}_discuss_threads SET lastPostDate=NOW(), editDate=editDate WHERE id = :threadId");
$cmd->execute([
'threadId' => $this->threadId,
]);
}
if ($success) {
$this->dirty = array_fill_keys(array_keys(static::$fields), false);
}
}
}
// }}}
}
// vim:set ft=php sw=4 sts=4 fdm=marker et :