| 
									
										
										
										
											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\DB\DB; | 
					
						
							|  |  |  | use App\Core\Event; | 
					
						
							|  |  |  | use App\Core\Form; | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  | use function App\Core\I18n\_m; | 
					
						
							| 
									
										
										
										
											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\Exceptiion\InvalidFormException; | 
					
						
							|  |  |  | use App\Util\Exception\RedirectException; | 
					
						
							| 
									
										
										
										
											2020-10-10 20:05:16 +00:00
										 |  |  | use Component\Posting\Posting; | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  | use Symfony\Component\Form\Extension\Core\Type\FileType; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | use Symfony\Component\Form\Extension\Core\Type\HiddenType; | 
					
						
							|  |  |  | use Symfony\Component\Form\Extension\Core\Type\SubmitType; | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  | use Symfony\Component\Form\Extension\Core\Type\TextareaType; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | use Symfony\Component\HttpFoundation\Request; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-18 19:14:24 +01:00
										 |  |  | class Reply extends NoteHandlerPlugin | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     public function onAddRoute($r) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $r->connect('note_reply', '/note/reply/{reply_to<\\d*>}', [self::class, 'replyController']); | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |     public function onAddNoteActions(Request $request, Note $note, array &$actions) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |         if (($user = Common::user()) == null) { | 
					
						
							|  |  |  |             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-05 14:34:30 +01:00
										 |  |  |             ['reply', SubmitType::class, | 
					
						
							|  |  |  |                 [ | 
					
						
							|  |  |  |                     'label' => ' ', | 
					
						
							|  |  |  |                     'attr'  => [ | 
					
						
							|  |  |  |                         'class' => 'note-actions-unset', | 
					
						
							|  |  |  |                     ], | 
					
						
							|  |  |  |                 ], | 
					
						
							|  |  |  |             ], | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Handle form
 | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |         $ret = self::noteActionHandle($request, $form, $note, 'reply', function ($note, $data) { | 
					
						
							|  |  |  |             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
 | 
					
						
							|  |  |  |                 throw new RedirectException('note_reply', ['reply_to' => $note->getId()]); | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |         if ($ret != null) { | 
					
						
							|  |  |  |             return $ret; | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         $actions[] = $form->createView(); | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Controller for the note reply non-JS page | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-09-10 22:28:11 +00:00
										 |  |  |     public function replyController(Request $request, string $reply_to) | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         $user     = Common::ensureLoggedIn(); | 
					
						
							|  |  |  |         $actor_id = $user->getId(); | 
					
						
							|  |  |  |         $note     = DB::find('note', ['id' => (int) $reply_to]); | 
					
						
							|  |  |  |         if ($note == null || !$note->isVisibleTo($user)) { | 
					
						
							|  |  |  |             throw new NoSuchNoteException(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $form = Form::create([ | 
					
						
							|  |  |  |             ['content',     TextareaType::class, ['label' => ' ']], | 
					
						
							|  |  |  |             ['attachments', FileType::class,     ['label' => ' ', 'multiple' => true, 'required' => false]], | 
					
						
							| 
									
										
										
										
											2021-01-03 18:00:57 +00:00
										 |  |  |             ['replyform',   SubmitType::class,   ['label' => _m('Submit')]], | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $form->handleRequest($request); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($form->isSubmitted()) { | 
					
						
							|  |  |  |             $data = $form->getData(); | 
					
						
							|  |  |  |             if ($form->isValid()) { | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |                 Posting::storeNote( | 
					
						
							|  |  |  |                     $actor_id, | 
					
						
							|  |  |  |                     $data['content'], | 
					
						
							|  |  |  |                     $data['attachments'], | 
					
						
							|  |  |  |                     $is_local = true, | 
					
						
							| 
									
										
										
										
											2021-02-18 22:28:35 +00:00
										 |  |  |                     $reply_to, | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |                     $repeat_of = null | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2020-09-10 20:35:57 +00:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 throw new InvalidFormException(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return [ | 
					
						
							|  |  |  |             '_template' => 'note/reply.html.twig', | 
					
						
							|  |  |  |             'note'      => $note, | 
					
						
							|  |  |  |             'reply'     => $form->createView(), | 
					
						
							|  |  |  |         ]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |