| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // {{{ 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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use App\Core\Event; | 
					
						
							|  |  |  | use App\Core\Form; | 
					
						
							| 
									
										
										
										
											2021-08-18 19:14:24 +01:00
										 |  |  | use App\Core\Modules\NoteHandlerPlugin; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | use App\Entity\Note; | 
					
						
							|  |  |  | use App\Util\Common; | 
					
						
							|  |  |  | use App\Util\Exception\RedirectException; | 
					
						
							| 
									
										
										
										
											2021-09-06 19:49:03 +01:00
										 |  |  | use Component\Posting\Posting; | 
					
						
							| 
									
										
										
										
											2021-09-05 18:25:53 +01:00
										 |  |  | use Plugin\Reply\Controller\Reply as ReplyController; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | use Symfony\Component\Form\Extension\Core\Type\HiddenType; | 
					
						
							|  |  |  | use Symfony\Component\Form\Extension\Core\Type\SubmitType; | 
					
						
							|  |  |  | use Symfony\Component\HttpFoundation\Request; | 
					
						
							| 
									
										
										
										
											2021-09-06 20:51:12 +01:00
										 |  |  | use function App\Core\I18n\_m; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							|  |  |  |     public function onAddRoute($r) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-09-05 18:25:53 +01:00
										 |  |  |         $r->connect('note_reply', '/note/reply/{reply_to<\\d*>}', ReplyController::class); | 
					
						
							| 
									
										
										
										
											2020-11-03 15:53:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * HTML rendering event that adds the reply form as a note action, | 
					
						
							|  |  |  |      * if a user is logged in | 
					
						
							| 
									
										
										
										
											2021-09-05 18:25:53 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-09-05 16:16:42 +01:00
										 |  |  |      * @throws RedirectException | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |     public function onAddNoteActions(Request $request, Note $note, array &$actions) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-09-05 16:16:42 +01:00
										 |  |  |         if (($user = Common::user()) === null) { | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |         $form = Form::create([ | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |             ['content',     HiddenType::class, ['label' => ' ', 'required' => false]], | 
					
						
							|  |  |  |             ['attachments', HiddenType::class, ['label' => ' ', 'required' => false]], | 
					
						
							|  |  |  |             ['note_id',     HiddenType::class, ['data' => $note->getId()]], | 
					
						
							| 
									
										
										
										
											2021-09-06 20:51:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-05 18:25:53 +01:00
										 |  |  |             ['reply',       SubmitType::class, | 
					
						
							| 
									
										
										
										
											2021-09-05 14:34:30 +01:00
										 |  |  |                 [ | 
					
						
							|  |  |  |                     'label' => ' ', | 
					
						
							|  |  |  |                     'attr'  => [ | 
					
						
							| 
									
										
										
										
											2021-09-07 15:23:41 +01:00
										 |  |  |                         'class' => 'note-actions-unset button-container reply-button-container', | 
					
						
							|  |  |  |                         'title' => 'Reply to this note!', | 
					
						
							| 
									
										
										
										
											2021-09-05 14:34:30 +01:00
										 |  |  |                     ], | 
					
						
							|  |  |  |                 ], | 
					
						
							|  |  |  |             ], | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Handle form
 | 
					
						
							| 
									
										
										
										
											2021-09-05 18:25:53 +01:00
										 |  |  |         $ret = self::noteActionHandle($request, $form, $note, 'reply', function ($note, $data, $user) use ($request) { | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |             if ($data['content'] !== null) { | 
					
						
							|  |  |  |                 // JS submitted
 | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |                 // TODO Implement in JS
 | 
					
						
							|  |  |  |                 $actor_id = $user->getId(); | 
					
						
							|  |  |  |                 Posting::storeNote( | 
					
						
							|  |  |  |                     $actor_id, | 
					
						
							|  |  |  |                     $data['content'], | 
					
						
							|  |  |  |                     $data['attachments'], | 
					
						
							|  |  |  |                     $is_local = true, | 
					
						
							|  |  |  |                     $data['reply_to'], | 
					
						
							|  |  |  |                     $repeat_of = null | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 // JS disabled, redirect
 | 
					
						
							| 
									
										
										
										
											2021-09-05 18:25:53 +01:00
										 |  |  |                 throw new RedirectException('note_reply', ['reply_to' => $note->getId(), 'return_to' => $request->getRequestUri()]); | 
					
						
							| 
									
										
										
										
											2021-09-05 16:16:42 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 return Event::stop; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-05 16:16:42 +01:00
										 |  |  |         if ($ret !== null) { | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |             return $ret; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         $actions[] = $form->createView(); | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |