| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  | declare(strict_types=1); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // {{{ License
 | 
					
						
							|  |  |  | // 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/>.
 | 
					
						
							|  |  |  | // }}}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Plugin\RepeatNote; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  | use ActivityPhp\Type\AbstractObject; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | use App\Core\DB\DB; | 
					
						
							|  |  |  | use App\Core\Event; | 
					
						
							|  |  |  | use App\Core\Modules\NoteHandlerPlugin; | 
					
						
							|  |  |  | use App\Core\Router\RouteLoader; | 
					
						
							|  |  |  | use App\Core\Router\Router; | 
					
						
							|  |  |  | use App\Entity\Activity; | 
					
						
							|  |  |  | use App\Entity\Actor; | 
					
						
							|  |  |  | use App\Entity\Note; | 
					
						
							|  |  |  | use App\Util\Common; | 
					
						
							|  |  |  | use App\Util\Exception\ServerException; | 
					
						
							|  |  |  | use App\Util\Formatting; | 
					
						
							| 
									
										
										
										
											2021-12-26 09:48:16 +00:00
										 |  |  | use Component\Language\Entity\Language; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | use Component\Posting\Posting; | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  | use DateTime; | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  | use Plugin\ActivityPub\Entity\ActivitypubActivity; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | use Plugin\RepeatNote\Entity\NoteRepeat; | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  | use Symfony\Component\HttpFoundation\Request; | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  | use function App\Core\I18n\_m; | 
					
						
							|  |  |  | use const SORT_REGULAR; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class RepeatNote extends NoteHandlerPlugin | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * **Repeats a Note** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This means the current Actor creates a new Note, cloning the contents of | 
					
						
							|  |  |  |      * the original Note provided as an argument. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Bear in mind that, if it's a repeat, the **reply_to** should be to the | 
					
						
							|  |  |  |      * original, and **conversation** ought to be the same. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * In the end, the Activity is created, and a new notification for the | 
					
						
							|  |  |  |      * repeat Activity created | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param \App\Entity\Note $note | 
					
						
							|  |  |  |      * @param int              $actor_id | 
					
						
							|  |  |  |      * @param string           $source | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return \App\Entity\Activity|null | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\BugFoundException | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\ClientException | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\DuplicateFoundException | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\ServerException | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-28 16:07:35 +00:00
										 |  |  |     public static function repeatNote(Note $note, int $actor_id, string $source = 'web'): ?Activity | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         $repeat_entity = DB::findBy('note_repeat', [ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                 'actor_id' => $actor_id, | 
					
						
							|  |  |  |                 'note_id' => $note->getId(), | 
					
						
							|  |  |  |             ])[ 0 ] ?? null; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |         if (!\is_null($repeat_entity)) { | 
					
						
							| 
									
										
										
										
											2021-12-28 16:07:35 +00:00
										 |  |  |             return null; | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-26 18:40:54 +00:00
										 |  |  |         // If it's a repeat, the reply_to should be to the original, conversation ought to be the same
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |         $og_id = $note->getId(); | 
					
						
							|  |  |  |         $extra_args[ 'reply_to' ] = $og_id; | 
					
						
							| 
									
										
										
										
											2021-12-26 18:40:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |         // Create a new note with the same content as the original
 | 
					
						
							|  |  |  |         $repeat = Posting::storeLocalNote( | 
					
						
							|  |  |  |             actor: Actor::getById($actor_id), | 
					
						
							|  |  |  |             content: $note->getContent(), | 
					
						
							|  |  |  |             content_type: $note->getContentType(), | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |             language: \is_null($lang_id = $note->getLanguageId()) ? null : Language::getById($lang_id)->getLocale(), | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |             processed_attachments: $note->getAttachmentsWithTitle(), | 
					
						
							| 
									
										
										
										
											2021-12-26 18:40:54 +00:00
										 |  |  |             process_note_content_extra_args: $extra_args, | 
					
						
							| 
									
										
										
										
											2021-12-28 17:49:46 +00:00
										 |  |  |             notify: false, | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |         ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-26 22:17:26 +00:00
										 |  |  |         DB::persist(NoteRepeat::create([ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             'note_id' => $repeat->getId(), | 
					
						
							|  |  |  |             'actor_id' => $actor_id, | 
					
						
							| 
									
										
										
										
											2021-12-26 22:17:26 +00:00
										 |  |  |             'repeat_of' => $og_id, | 
					
						
							|  |  |  |         ])); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Log an activity
 | 
					
						
							|  |  |  |         $repeat_activity = Activity::create([ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             'actor_id' => $actor_id, | 
					
						
							|  |  |  |             'verb' => 'repeat', | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             'object_type' => 'note', | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             'object_id' => $note->getId(), | 
					
						
							|  |  |  |             'source' => $source, | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |         ]); | 
					
						
							|  |  |  |         DB::persist($repeat_activity); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |         Event::handle('NewNotification', [$actor = Actor::getById($actor_id), $repeat_activity, [], _m('{nickname} repeated note {note_id}.', ['nickname' => $actor->getNickname(), 'note_id' => $repeat_activity->getObjectId()])]); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |         return $repeat_activity; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * **Undoes a Repeat** | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Removes the Repeat from NoteRepeat table, and the deletes the Note | 
					
						
							|  |  |  |      * clone. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Finally, creates a new Activity, undoing the repeat, and the respective | 
					
						
							|  |  |  |      * Notification is handled. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param int    $note_id | 
					
						
							|  |  |  |      * @param int    $actor_id | 
					
						
							|  |  |  |      * @param string $source | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return \App\Entity\Activity|null | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\ServerException | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |     public static function unrepeatNote(int $note_id, int $actor_id, string $source = 'web'): ?Activity | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |         $already_repeated = DB::findBy(NoteRepeat::class, ['actor_id' => $actor_id, 'repeat_of' => $note_id])[ 0 ] ?? null; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |         if (!\is_null($already_repeated)) { // If it was repeated, then we can undo it
 | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             // Find previous repeat activity
 | 
					
						
							| 
									
										
										
										
											2021-12-28 17:28:44 +00:00
										 |  |  |             $already_repeated_activity = DB::findBy(Activity::class, [ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                     'actor_id' => $actor_id, | 
					
						
							|  |  |  |                     'verb' => 'repeat', | 
					
						
							|  |  |  |                     'object_type' => 'note', | 
					
						
							|  |  |  |                     'object_id' => $already_repeated->getRepeatOf(), | 
					
						
							|  |  |  |                 ])[ 0 ] ?? null; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // Remove the clone note
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             DB::findBy(Note::class, ['id' => $already_repeated->getNoteId()])[ 0 ]->delete(actor: Actor::getById($actor_id)); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // Remove from the note_repeat table
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             DB::remove(DB::findBy(NoteRepeat::class, ['note_id' => $already_repeated->getNoteId()])[ 0 ]); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // Log an activity
 | 
					
						
							|  |  |  |             $undo_repeat_activity = Activity::create([ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                 'actor_id' => $actor_id, | 
					
						
							|  |  |  |                 'verb' => 'undo', | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |                 'object_type' => 'activity', | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                 'object_id' => $already_repeated_activity->getId(), | 
					
						
							|  |  |  |                 'source' => $source, | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             ]); | 
					
						
							|  |  |  |             DB::persist($undo_repeat_activity); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             Event::handle('NewNotification', [$actor = Actor::getById($actor_id), $undo_repeat_activity, [], _m('{nickname} unrepeated note {note_id}.', ['nickname' => $actor->getNickname(), 'note_id' => $note_id])]); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             return $undo_repeat_activity; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             // Either was undoed already
 | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |             if (!\is_null($already_repeated_activity = DB::findBy('activity', [ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                     'actor_id' => $actor_id, | 
					
						
							|  |  |  |                     'verb' => 'repeat', | 
					
						
							|  |  |  |                     'object_type' => 'note', | 
					
						
							|  |  |  |                     'object_id' => $note_id, | 
					
						
							|  |  |  |                 ])[ 0 ] ?? null)) { | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |                 return DB::findBy('activity', [ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                         'actor_id' => $actor_id, | 
					
						
							|  |  |  |                         'verb' => 'undo', | 
					
						
							|  |  |  |                         'object_type' => 'activity', | 
					
						
							|  |  |  |                         'object_id' => $already_repeated_activity->getId(), | 
					
						
							|  |  |  |                     ])[ 0 ] ?? null; // null if not undoed
 | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 // or it's an attempt to undo something that wasn't repeated in the first place,
 | 
					
						
							|  |  |  |                 return null; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 17:28:44 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |      * Filters repeats out of Conversations, and replaces a repeat with the | 
					
						
							|  |  |  |      * original Note on Actor feed | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param \App\Entity\Actor|null                    $actor | 
					
						
							|  |  |  |      * @param array                                     $notes | 
					
						
							|  |  |  |      * @param \Symfony\Component\HttpFoundation\Request $request | 
					
						
							| 
									
										
										
										
											2021-12-28 17:28:44 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |     public function onFilterNoteList(?Actor $actor, array &$notes, Request $request): bool | 
					
						
							| 
									
										
										
										
											2021-12-28 17:28:44 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         // Replaces repeat with original note on Actor feed
 | 
					
						
							|  |  |  |         // it's pretty cool
 | 
					
						
							|  |  |  |         if (str_starts_with($request->get('_route'), 'actor_view_')) { | 
					
						
							|  |  |  |             $notes = array_map( | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                 fn(Note $note) => NoteRepeat::isNoteRepeat($note) | 
					
						
							|  |  |  |                     ? Note::getById(NoteRepeat::getByPK($note->getId())->getRepeatOf()) | 
					
						
							|  |  |  |                     : $note, | 
					
						
							| 
									
										
										
										
											2021-12-28 17:28:44 +00:00
										 |  |  |                 $notes, | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Filter out repeats altogether
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |         $notes = array_filter($notes, fn(Note $note) => !NoteRepeat::isNoteRepeat($note)); | 
					
						
							| 
									
										
										
										
											2021-12-28 17:28:44 +00:00
										 |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * HTML rendering event that adds the repeat form as a note | 
					
						
							|  |  |  |      * action, if a user is logged in | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |      * @param \Symfony\Component\HttpFoundation\Request $request | 
					
						
							|  |  |  |      * @param \App\Entity\Note                          $note | 
					
						
							|  |  |  |      * @param array                                     $actions | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool                                     Event hook | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function onAddNoteActions(Request $request, Note $note, array &$actions): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Only logged users can repeat notes
 | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |         if (\is_null($user = Common::user())) { | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // If note is repeated, "is_repeated" is 1, 0 otherwise.
 | 
					
						
							|  |  |  |         $is_repeat = ($note_repeat = DB::findBy('note_repeat', [ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             'actor_id' => $user->getId(), | 
					
						
							| 
									
										
										
										
											2021-12-28 17:28:44 +00:00
										 |  |  |             'repeat_of' => $note->getId(), | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |         ])) !== [] ? 1 : 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Generating URL for repeat action route
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |         $args = ['note_id' => $is_repeat === 0 ? $note->getId() : $note_repeat[ 0 ]->getRepeatOf()]; | 
					
						
							|  |  |  |         $type = Router::ABSOLUTE_PATH; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |         $repeat_action_url = $is_repeat | 
					
						
							|  |  |  |             ? Router::url('repeat_remove', $args, $type) | 
					
						
							|  |  |  |             : Router::url('repeat_add', $args, $type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Concatenating get parameter to redirect the user to where he came from
 | 
					
						
							| 
									
										
										
										
											2021-12-28 17:49:46 +00:00
										 |  |  |         $repeat_action_url .= '?from=' . urlencode($request->getRequestUri()); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $extra_classes = $is_repeat ? 'note-actions-set' : 'note-actions-unset'; | 
					
						
							|  |  |  |         $repeat_action = [ | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             'url' => $repeat_action_url, | 
					
						
							|  |  |  |             'title' => $is_repeat ? 'Remove this repeat' : 'Repeat this note!', | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             'classes' => "button-container repeat-button-container {$extra_classes}", | 
					
						
							| 
									
										
										
										
											2021-12-26 18:40:54 +00:00
										 |  |  |             'note_id' => 'repeat-button-container-' . $note->getId(), | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |         ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $actions[] = $repeat_action; | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |      * Appends in Note information stating who and what user actions were | 
					
						
							|  |  |  |      * performed. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $vars   Contains the Note currently being rendered | 
					
						
							|  |  |  |      * @param array $result Rendered String containing anchors for Actors that | 
					
						
							|  |  |  |      *                      repeated the Note | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return array|bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function onAppendCardNote(array $vars, array &$result) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // if note is the original and user isn't the one who repeated, append on end "user repeated this"
 | 
					
						
							|  |  |  |         // if user is the one who repeated, append on end "you repeated this, remove repeat?"
 | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |         $check_user = !\is_null(Common::user()); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |         $note = $vars[ 'note' ]; | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $complementary_info = ''; | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |         $repeat_actor = []; | 
					
						
							|  |  |  |         $note_repeats = NoteRepeat::getNoteRepeats($note); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Get actors who replied
 | 
					
						
							|  |  |  |         foreach ($note_repeats as $reply) { | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |             $repeat_actor[] = Actor::getByPK($reply->getActorId()); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |         if (\count($repeat_actor) < 1) { | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Filter out multiple replies from the same actor
 | 
					
						
							|  |  |  |         $repeat_actor = array_unique($repeat_actor, SORT_REGULAR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Add to complementary info
 | 
					
						
							|  |  |  |         foreach ($repeat_actor as $actor) { | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             $repeat_actor_url = $actor->getUrl(); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |             $repeat_actor_nickname = $actor->getNickname(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($check_user && $actor->getId() === (Common::actor())->getId()) { | 
					
						
							|  |  |  |                 // If the repeat is yours
 | 
					
						
							|  |  |  |                 try { | 
					
						
							|  |  |  |                     $you_translation = _m('You'); | 
					
						
							|  |  |  |                 } catch (ServerException $e) { | 
					
						
							|  |  |  |                     $you_translation = 'You'; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                 $prepend = "<a href={$repeat_actor_url}>{$you_translation}</a>, " . ($prepend = &$complementary_info); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |                 $complementary_info = $prepend; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 // If the repeat is from someone else
 | 
					
						
							|  |  |  |                 $complementary_info .= "<a href={$repeat_actor_url}>{$repeat_actor_nickname}</a>, "; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $complementary_info = rtrim(trim($complementary_info), ','); | 
					
						
							|  |  |  |         $complementary_info .= ' repeated this note.'; | 
					
						
							|  |  |  |         $result[] = Formatting::twigRenderString($complementary_info, []); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $result; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Connects the following Routes to their respective Controllers: | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * - **repeat_add** | 
					
						
							|  |  |  |      *  page containing the Note the user wishes to Repeat and a button to | 
					
						
							|  |  |  |      *  confirm it wishes to perform the action | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * - **repeat_remove** | 
					
						
							|  |  |  |      *  same as above, except that it undoes the aforementioned action | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param \App\Core\Router\RouteLoader $r | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool Event hook | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  |     public function onAddRoute(RouteLoader $r): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Add/remove note to/from repeats
 | 
					
						
							| 
									
										
										
										
											2021-12-26 18:40:54 +00:00
										 |  |  |         $r->connect(id: 'repeat_add', uri_path: '/object/note/{note_id<\d+>}/repeat', target: [Controller\Repeat::class, 'repeatAddNote']); | 
					
						
							|  |  |  |         $r->connect(id: 'repeat_remove', uri_path: '/object/note/{note_id<\d+>}/unrepeat', target: [Controller\Repeat::class, 'repeatRemoveNote']); | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |     /* | 
					
						
							|  |  |  |      * ActivityPub handling and processing for Repeat start | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Handler for the Repeat Activity | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param \App\Entity\Actor                                   $actor | 
					
						
							|  |  |  |      * @param \ActivityPhp\Type\AbstractObject                    $type_activity | 
					
						
							|  |  |  |      * @param mixed                                               $type_object | 
					
						
							|  |  |  |      * @param \Plugin\ActivityPub\Entity\ActivitypubActivity|null $ap_act | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\BugFoundException | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\ClientException | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\DuplicateFoundException | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\NoSuchActorException | 
					
						
							|  |  |  |      * @throws \App\Util\Exception\ServerException | 
					
						
							|  |  |  |      * @throws \Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface | 
					
						
							|  |  |  |      * @throws \Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface | 
					
						
							|  |  |  |      * @throws \Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface | 
					
						
							|  |  |  |      * @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     private function activitypub_handler(Actor $actor, AbstractObject $type_activity, mixed $type_object, ?ActivitypubActivity &$ap_act): bool | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |         if (!\in_array($type_activity->get('type'), ['Announce', 'Undo'])) { | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($type_activity->get('type') === 'Announce') { // Repeat
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             if ($type_object instanceof AbstractObject) { | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |                 if ($type_object->get('type') === 'Note') { | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                     $note = \Plugin\ActivityPub\Util\Model\Note::fromJson($type_object); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |                     $note_id = $note->getId(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     return Event::next; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |             } elseif ($type_object instanceof Note) { | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                 $note = $type_object; | 
					
						
							| 
									
										
										
										
											2021-12-28 17:49:46 +00:00
										 |  |  |                 $note_id = $note->getId(); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 return Event::next; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { // Undo Repeat
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             if ($type_object instanceof AbstractObject) { | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |                 $ap_prev_repeat_act = \Plugin\ActivityPub\Util\Model\Activity::fromJson($type_object); | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                 $prev_repeat_act = $ap_prev_repeat_act->getActivity(); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |                 if ($prev_repeat_act->getVerb() === 'repeat' && $prev_repeat_act->getObjectType() === 'note') { | 
					
						
							|  |  |  |                     $note_id = $prev_repeat_act->getObjectId(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     return Event::next; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |             } elseif ($type_object instanceof Activity) { | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |                 if ($type_object->getVerb() === 'repeat' && $type_object->getObjectType() === 'note') { | 
					
						
							|  |  |  |                     $note_id = $type_object->getObjectId(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     return Event::next; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 return Event::next; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($type_activity->get('type') === 'Announce') { | 
					
						
							| 
									
										
										
										
											2021-12-28 16:07:35 +00:00
										 |  |  |             $activity = self::repeatNote($note ?? Note::getById($note_id), $actor->getId(), source: 'ActivityPub'); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-12-28 16:07:35 +00:00
										 |  |  |             $activity = self::unrepeatNote($note_id, $actor->getId(), source: 'ActivityPub'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!\is_null($activity)) { | 
					
						
							|  |  |  |             // Store ActivityPub Activity
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |             $ap_act = ActivitypubActivity::create([ | 
					
						
							|  |  |  |                 'activity_id' => $activity->getId(), | 
					
						
							| 
									
										
										
										
											2021-12-28 16:07:35 +00:00
										 |  |  |                 'activity_uri' => $type_activity->get('id'), | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |                 'created' => new DateTime($type_activity->get('published') ?? 'now'), | 
					
						
							|  |  |  |                 'modified' => new DateTime(), | 
					
						
							| 
									
										
										
										
											2021-12-28 16:07:35 +00:00
										 |  |  |             ]); | 
					
						
							|  |  |  |             DB::persist($ap_act); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return Event::stop; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |     public function onNewActivityPubActivity(Actor $actor, AbstractObject $type_activity, AbstractObject $type_object, ?ActivitypubActivity &$ap_act): bool | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->activitypub_handler($actor, $type_activity, $type_object, $ap_act); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 21:49:22 +00:00
										 |  |  |     public function onNewActivityPubActivityWithObject(Actor $actor, AbstractObject $type_activity, mixed $type_object, ?ActivitypubActivity &$ap_act): bool | 
					
						
							| 
									
										
										
										
											2021-12-10 04:03:19 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->activitypub_handler($actor, $type_activity, $type_object, $ap_act); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-12 06:49:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function onGSVerbToActivityStreamsTwoActivityType(string $verb, ?string &$gs_verb_to_activity_stream_two_verb): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($verb === 'repeat') { | 
					
						
							|  |  |  |             $gs_verb_to_activity_stream_two_verb = 'Announce'; | 
					
						
							|  |  |  |             return Event::stop; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-10 02:45:31 +00:00
										 |  |  | } |