forked from bleistivt/movecomment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass.movecomment.plugin.php
More file actions
338 lines (253 loc) · 14 KB
/
Copy pathclass.movecomment.plugin.php
File metadata and controls
338 lines (253 loc) · 14 KB
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
<?php
class MoveCommentPlugin extends Gdn_Plugin {
// Add the "Move" Option to the discussion dropdown.
public function discussionController_discussionOptions_handler($sender) {
$args = &$sender->EventArguments;
// Turning the discussion post into a comment is essentially deleting the discussion.
$isModerator = CategoryModel::checkPermission(
Gdn::controller()->data('Discussion')->CategoryID,
'Vanilla.Discussions.Delete'
);
if (!$isModerator) {
return;
}
$args['DiscussionOptions']['MoveComment'] = [
'Label' => Gdn::translate('MoveComment.MoveDiscussion'),
'Url' => '/discussion/movediscussion/'.$args['Discussion']->DiscussionID,
'Class' => 'MoveComment Popup'
];
}
// Add the "Move" Option to the comment dropdown.
public function base_commentOptions_handler($sender) {
$args = &$sender->EventArguments;
$isModerator = CategoryModel::checkPermission(
Gdn::controller()->data('Discussion')->CategoryID,
'Vanilla.Discussions.Edit'
);
if (!$isModerator) {
return;
}
$args['CommentOptions']['MoveComment'] = [
'Label' => Gdn::translate('MoveComment.Move'),
'Url' => '/discussion/movecomment/'.$args['Comment']->CommentID,
'Class' => 'MoveComment Popup'
];
$args['CommentOptions']['MoveNewDiscussion'] = [
'Label' => Gdn::translate('MoveComment.MoveNewDiscussion'),
'Url' => '/discussion/movenewdiscussion/'.$args['Comment']->CommentID,
'Class' => 'MoveNewDiscussion Popup'
];
}
public function discussionController_movediscussion_create($sender, $discussionID) {
$session = Gdn::session();
$discussion = $sender->DiscussionModel->getID($discussionID, DATASET_TYPE_ARRAY);
if (!$discussion) {
throw notFoundException('Discussion');
}
// Check the permissions on the category we are moving from.
$sender->permission('Vanilla.Discussions.Delete', true, 'Category', $discussion['PermissionCategoryID']);
try {
if ($sender->Form->authenticatedPostBack()) {
// Fetch the target discussion.
$target = $sender->DiscussionModel->getID($sender->Form->getValue('TargetDiscussionID'));
if (!$target) {
throw notFoundException('Discussion');
}
// Source and target discussions can not be the same.
if ($discussion['DiscussionID'] === $target->DiscussionID) {
throw new Gdn_UserException(Gdn::translate('MoveComment.SameSourceAndTarget'));
}
// Escalate permissions to fit the target discussion.
$sender->permission('Vanilla.Discussions.Edit', true, 'Category', $target->PermissionCategoryID);
// Create a comment out of the discussion.
$newComment = array_merge($discussion, ['DiscussionID' => $target->DiscussionID]);
$commentID = $sender->CommentModel->insert($newComment);
if (!$commentID) {
throw new Gdn_UserException("Cannot create comment.");
}
$newComment['CommentID'] = $commentID;
$this->EventArguments['SourceDiscussion'] = $discussion;
$this->EventArguments['TargetComment'] = $newComment;
$this->fireEvent('TransformDiscussionToComment');
// Delete the discussion. (This updates counts.)
$sender->DiscussionModel->deleteID($discussion['DiscussionID']);
// Update the comment count of the target discussion.
$sender->CommentModel->updateCommentCount($target->DiscussionID);
// Update the category.
CategoryModel::instance()->setRecentPost($target->CategoryID);
// Correct CountAllComments for the category and its parents.
CategoryModel::incrementAggregateCount($target->CategoryID, CategoryModel::AGGREGATE_COMMENT);
// Save the target discussion ID with the user so the form can be pre-filled.
$this->setUserMeta($session->UserID, 'LastDiscussion', $target->DiscussionID);
// Redirect to the target discussion.
$redirectUrl = '/discussion/comment/'.$commentID.'#Comment_'.$commentID;
// Not in a popup, always redirect.
if ($sender->deliveryType() === DELIVERY_TYPE_ALL) {
redirectTo($redirectUrl);
}
$sender->setRedirectTo($redirectUrl);
}
} catch (Exception $ex) {
$sender->Form->addError($ex->getMessage());
}
$sender->title(Gdn::translate('MoveComment.TitleMoveToDiscussion'));
// Pre-fill with the last discussion this user has moved a comment to.
$lastDiscussion = $this->getUserMeta($session->UserID, 'LastDiscussion', null, true);
if ($lastDiscussion) {
$sender->Form->setValue('TargetDiscussionID', $lastDiscussion);
}
$sender->setData('moveType', 'discussion');
$sender->render('movecomment', '', 'plugins/movecomment');
}
public function discussionController_movecomment_create($sender, $commentID) {
$session = Gdn::session();
$comment = $sender->CommentModel->getID($commentID);
if (!$comment) {
throw notFoundException('Comment');
}
$discussion = $sender->DiscussionModel->getID($comment->DiscussionID);
if (!$discussion) {
throw notFoundException('Discussion');
}
// Check the permissions on the category we are moving from.
$sender->permission('Vanilla.Discussions.Edit', true, 'Category', $discussion->PermissionCategoryID);
try {
if ($sender->Form->authenticatedPostBack()) {
// Fetch the target discussion.
$target = $sender->DiscussionModel->getID($sender->Form->getValue('TargetDiscussionID'));
if (!$target) {
throw notFoundException('Discussion');
}
// Source and target discussions can not be the same.
if ($discussion->DiscussionID === $target->DiscussionID) {
throw new Gdn_UserException(Gdn::translate('MoveComment.SameSourceAndTarget'));
}
// Calculate the current offset before moving so we can use it later.
$offset = $sender->CommentModel->getOffset($comment);
// Escalate permissions to fit the target discussion.
$sender->permission('Vanilla.Discussions.Edit', true, 'Category', $target->PermissionCategoryID);
// Move the comment.
$sender->CommentModel->setField($comment->CommentID, 'DiscussionID', $target->DiscussionID);
// Clear the page cache.
$sender->CommentModel->removePageCache($comment->DiscussionID);
// Update the comment counts.
$sender->CommentModel->updateCommentCount($discussion->DiscussionID);
$sender->CommentModel->updateCommentCount($target->DiscussionID);
// Update the categories.
$categoryModel = CategoryModel::instance();
$categoryModel->setRecentPost($discussion->CategoryID);
// Was the comment moved between categories?
if ($discussion->CategoryID !== $target->CategoryID) {
$categoryModel->setRecentPost($target->CategoryID);
// Correct CountAllComments for the category and its parents.
CategoryModel::decrementAggregateCount($discussion->CategoryID, CategoryModel::AGGREGATE_COMMENT);
CategoryModel::incrementAggregateCount($target->CategoryID, CategoryModel::AGGREGATE_COMMENT);
}
// Save the target discussion ID with the user so the form can be pre-filled.
$this->setUserMeta($session->UserID, 'LastDiscussion', $target->DiscussionID);
// Redirect to the target discussion or stay here?
$redirect = (bool)$sender->Form->getValue('RedirectToTarget');
if ($redirect) {
$redirectUrl = '/discussion/comment/'.$comment->CommentID.'#Comment_'.$comment->CommentID;
} else {
$pageNumber = pageNumber($offset, Gdn::config('Vanilla.Comments.PerPage'), true);
$redirectUrl = discussionUrl($discussion, $pageNumber);
}
// Not in a popup, always redirect.
if ($sender->deliveryType() === DELIVERY_TYPE_ALL) {
redirectTo($redirectUrl);
}
// For JS (popup) users, only redirect if we want a page change.
if ($redirect) {
$sender->setRedirectTo($redirectUrl);
}
// Remove the comment from the UI.
$sender->jsonTarget('#Comment_'.$comment->CommentID, '', 'SlideUp');
}
} catch (Exception $ex) {
$sender->Form->addError($ex->getMessage());
}
$sender->title(Gdn::translate('MoveComment.TitleMoveToDiscussion'));
// Pre-fill with the last discussion this user has moved a comment to.
$lastDiscussion = $this->getUserMeta($session->UserID, 'LastDiscussion', null, true);
if ($lastDiscussion) {
$sender->Form->setValue('TargetDiscussionID', $lastDiscussion);
}
$sender->render('movecomment', '', 'plugins/movecomment');
}
public function discussionController_movenewdiscussion_create($sender, $commentID) {
$session = Gdn::session();
$comment = $sender->CommentModel->getID($commentID, DATASET_TYPE_ARRAY);
if (!$comment) {
throw notFoundException('Comment');
}
$discussion = $sender->DiscussionModel->getID($comment['DiscussionID']);
if (!$discussion) {
throw notFoundException('Discussion');
}
// Check the permissions on the category we are moving from.
$sender->permission('Vanilla.Discussions.Edit', true, 'Category', $discussion->PermissionCategoryID);
try {
if ($sender->Form->authenticatedPostBack()) {
// Fetch the target category.
$target = CategoryModel::categories($sender->Form->getValue('CategoryID'));
if (!$target) {
throw notFoundException('Category');
}
// Escalate permissions to fit the target category.
$sender->permission('Vanilla.Discussions.Edit', true, 'Category', $target['PermissionCategoryID']);
// Create a discussion out of the comment.
$newDiscussion = array_merge($comment, [
'CategoryID' => $target['CategoryID'],
'Name' => substr($sender->Form->getValue('Name') ?: $comment['Body'], 0, 100),
'DateLastComment' => $comment['DateInserted']
]);
unset($newDiscussion['DiscussionID']);
$discussionID = $sender->DiscussionModel->insert($newDiscussion);
if (!$discussionID) {
throw new Gdn_UserException("Cannot create discussion.");
}
$newDiscussion['DiscussionID'] = $discussionID;
$this->EventArguments['SourceComment'] = $comment;
$this->EventArguments['TargetDiscussion'] = $newDiscussion;
$this->fireEvent('TransformCommentToDiscussion');
// Delete the comment. (This updates counts.)
$sender->CommentModel->deleteID($comment['CommentID']);
// Update the category.
CategoryModel::instance()->setRecentPost($target['CategoryID']);
// Correct CountAllDiscussions for the category and its parents.
CategoryModel::incrementAggregateCount($target['CategoryID'], CategoryModel::AGGREGATE_DISCUSSION);
// Pre-fill with the new discussion in case there are more comments to be moved there.
$this->setUserMeta($session->UserID, 'LastDiscussion', $discussionID);
// Redirect to the target discussion or stay here?
$redirect = (bool)$sender->Form->getValue('RedirectToTarget');
$redirectUrl = '/discussion/'.$discussionID;
// Not in a popup, always redirect.
if ($sender->deliveryType() === DELIVERY_TYPE_ALL) {
redirectTo($redirectUrl);
}
// For JS (popup) users, only redirect if we want a page change.
if ($redirect) {
$sender->setRedirectTo($redirectUrl);
}
// Remove the comment from the UI.
$sender->jsonTarget('#Comment_'.$comment['CommentID'], '', 'SlideUp');
}
} catch (Exception $ex) {
$sender->Form->addError($ex->getMessage());
}
$sender->title(Gdn::translate('MoveComment.TitleMoveToNewDiscussion'));
$sender->Form->setValue('Name', substr($comment['Body'], 0, 100));
$sender->render('movenewdiscussion', '', 'plugins/movecomment');
}
// Endpoint for JS to get a discussion title that helps the user validate that the ID is correct.
public function discussionController_movecommentpeek_create($sender, $discussionID) {
$sender->deliveryMethod(DELIVERY_METHOD_JSON);
$discussion = $sender->DiscussionModel->getID($discussionID);
$canView = $discussion ? CategoryModel::checkPermission($discussion, 'Vanilla.Discussions.View') : false;
$sender->renderData($canView ? [
'title' => htmlspecialchars_decode($discussion->Name),
'id' => $discussion->DiscussionID
] : []);
}
}