| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | // {{{ License
 | 
					
						
							| 
									
										
										
										
											2020-10-10 20:05:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2020-10-10 20:05:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | // }}}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Plugin\Reply; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | use App\Core\DB\DB; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | use App\Core\Event; | 
					
						
							| 
									
										
										
										
											2021-08-18 19:14:24 +01:00
										 |  |  | use App\Core\Modules\NoteHandlerPlugin; | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | use App\Core\Router\Router; | 
					
						
							|  |  |  | use App\Entity\Actor; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | use App\Entity\Note; | 
					
						
							|  |  |  | use App\Util\Common; | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | use App\Util\Exception\InvalidFormException; | 
					
						
							|  |  |  | use App\Util\Exception\NoSuchNoteException; | 
					
						
							|  |  |  | use App\Util\Exception\NotFoundException; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | use App\Util\Exception\RedirectException; | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | use App\Util\Formatting; | 
					
						
							| 
									
										
										
										
											2021-09-05 18:25:53 +01:00
										 |  |  | use Plugin\Reply\Controller\Reply as ReplyController; | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | use Plugin\Reply\Entity\NoteReply; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | use Symfony\Component\HttpFoundation\Request; | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | use function PHPUnit\Framework\isEmpty; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-18 19:14:24 +01:00
										 |  |  | class Reply extends NoteHandlerPlugin | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  |      * HTML rendering event that adds the repeat form as a note | 
					
						
							|  |  |  |      * action, if a user is logged in | 
					
						
							| 
									
										
										
										
											2021-09-05 18:25:53 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  |      * @throws InvalidFormException | 
					
						
							|  |  |  |      * @throws NoSuchNoteException | 
					
						
							| 
									
										
										
										
											2021-09-05 16:16:42 +01:00
										 |  |  |      * @throws RedirectException | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool Event hook | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  |     public function onAddNoteActions(Request $request, Note $note, array &$actions): bool | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  |         if (is_null(Common::user())) { | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  |         // Generating URL for repeat action route
 | 
					
						
							|  |  |  |         $args = ['id' => $note->getId()]; | 
					
						
							|  |  |  |         $type = Router::ABSOLUTE_PATH; | 
					
						
							|  |  |  |         $reply_action_url = Router::url('reply_add', $args, $type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Concatenating get parameter to redirect the user to where he came from
 | 
					
						
							|  |  |  |         $reply_action_url .= '?from=' . substr($request->getQueryString(), 2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $reply_action = [ | 
					
						
							|  |  |  |             "url" => $reply_action_url, | 
					
						
							|  |  |  |             "classes" => "button-container reply-button-container note-actions-unset", | 
					
						
							|  |  |  |             "id" => "reply-button-container-" . $note->getId() | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $actions[] = $reply_action; | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function onAppendCardNote(array $vars, array &$result) { | 
					
						
							|  |  |  |         // if note is the original, append on end "user replied to this"
 | 
					
						
							|  |  |  |         // if note is the reply itself: append on end "in response to user in conversation"
 | 
					
						
							|  |  |  |         $note = $vars['note']; | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-10 15:44:28 +00:00
										 |  |  |         $complementary_info = ''; | 
					
						
							|  |  |  |         $reply_actor = []; | 
					
						
							|  |  |  |         $note_replies = NoteReply::getNoteReplies($note); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Get actors who replied
 | 
					
						
							|  |  |  |         foreach ($note_replies as $reply) { | 
					
						
							|  |  |  |             $reply_actor[] = Actor::getWithPK($reply->getActorId()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (count($reply_actor) < 1) { | 
					
						
							|  |  |  |             return null; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-10 15:44:28 +00:00
										 |  |  |         // Filter out multiple replies from the same actor
 | 
					
						
							|  |  |  |         $reply_actor = array_unique($reply_actor, SORT_REGULAR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Add to complementary info
 | 
					
						
							|  |  |  |         foreach ($reply_actor as $actor) { | 
					
						
							|  |  |  |             $reply_actor_url = $actor->getUrl(); | 
					
						
							|  |  |  |             $reply_actor_nickname = $actor->getNickname(); | 
					
						
							|  |  |  |             $complementary_info .= "<a href={$reply_actor_url}>{$reply_actor_nickname}</a>, "; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $complementary_info = rtrim(trim($complementary_info), ','); | 
					
						
							|  |  |  |         $complementary_info .= ' replied to this note.'; | 
					
						
							|  |  |  |         $result[] = Formatting::twigRenderString($complementary_info, []); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $result; | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function onAddRoute($r) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $r->connect('reply_add', '/object/note/{id<\d+>}/reply', [ReplyController::class, 'replyAddNote']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | } |