| 
									
										
										
										
											2020-09-04 15:18:58 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 15:18:58 +01:00
										 |  |  | // {{{ License
 | 
					
						
							| 
									
										
										
										
											2021-04-23 12:55:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 15:18:58 +01: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/>.
 | 
					
						
							| 
									
										
										
										
											2021-04-23 12:55:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 15:18:58 +01:00
										 |  |  | // }}}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Plugin\Favourite; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use App\Core\DB\DB; | 
					
						
							|  |  |  | use App\Core\Event; | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  | use function App\Core\I18n\_m; | 
					
						
							| 
									
										
										
										
											2021-08-18 19:14:24 +01:00
										 |  |  | use App\Core\Modules\NoteHandlerPlugin; | 
					
						
							| 
									
										
										
										
											2021-04-14 23:31:18 +00:00
										 |  |  | use App\Core\Router\RouteLoader; | 
					
						
							| 
									
										
										
										
											2021-09-18 07:27:17 +01:00
										 |  |  | use App\Core\Router\Router; | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  | use App\Entity\Activity; | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | use App\Entity\Actor; | 
					
						
							| 
									
										
										
										
											2021-12-01 01:33:12 +00:00
										 |  |  | use App\Entity\Feed; | 
					
						
							|  |  |  | use App\Entity\LocalUser; | 
					
						
							| 
									
										
										
										
											2020-09-04 15:18:58 +01:00
										 |  |  | use App\Entity\Note; | 
					
						
							|  |  |  | use App\Util\Common; | 
					
						
							| 
									
										
										
										
											2021-04-15 00:57:29 +00:00
										 |  |  | use App\Util\Nickname; | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  | use DateTime; | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  | use Plugin\Favourite\Entity\Favourite as FavouriteEntity; | 
					
						
							| 
									
										
										
										
											2020-09-04 15:18:58 +01:00
										 |  |  | use Symfony\Component\HttpFoundation\Request; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-18 19:14:24 +01:00
										 |  |  | class Favourite extends NoteHandlerPlugin | 
					
						
							| 
									
										
										
										
											2020-09-04 15:18:58 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |     public static function favourNote(int $note_id, int $actor_id, string $source = 'web'): ?Activity | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         $opts                  = ['note_id' => $note_id, 'actor_id' => $actor_id]; | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |         $note_already_favoured = DB::find('favourite', $opts); | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         if (\is_null($note_already_favoured)) { | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |             DB::persist(FavouriteEntity::create($opts)); | 
					
						
							|  |  |  |             $act = Activity::create([ | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |                 'actor_id'    => $actor_id, | 
					
						
							|  |  |  |                 'verb'        => 'favourite', | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |                 'object_type' => 'note', | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |                 'object_id'   => $note_id, | 
					
						
							|  |  |  |                 'source'      => $source, | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |             ]); | 
					
						
							|  |  |  |             DB::persist($act); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:02:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             Event::handle('NewNotification', [$actor = Actor::getById($actor_id), $act, [], "{$actor->getNickname()} favoured note {$note_id}"]); | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return $act ?? null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public static function unfavourNote(int $note_id, int $actor_id, string $source = 'web'): ?Activity | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $note_already_favoured = DB::find('favourite', ['note_id' => $note_id, 'actor_id' => $actor_id]); | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         if (!\is_null($note_already_favoured)) { | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |             DB::remove($note_already_favoured); | 
					
						
							| 
									
										
										
										
											2021-12-12 06:45:37 +00:00
										 |  |  |             $favourite_activity = DB::findBy('activity', ['verb' => 'favourite', 'object_type' => 'note', 'object_id' => $note_id], order_by: ['created' => 'DESC'])[0]; | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |             $act                = Activity::create([ | 
					
						
							|  |  |  |                 'actor_id'    => $actor_id, | 
					
						
							|  |  |  |                 'verb'        => 'undo', // 'undo_favourite',
 | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |                 'object_type' => 'activity', // 'note',
 | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |                 'object_id'   => $favourite_activity->getId(), // $note_id,
 | 
					
						
							|  |  |  |                 'source'      => $source, | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |             ]); | 
					
						
							|  |  |  |             DB::persist($act); | 
					
						
							| 
									
										
										
										
											2021-12-10 04:02:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             Event::handle('NewNotification', [$actor = Actor::getById($actor_id), $act, [], "{$actor->getNickname()} unfavoured note {$note_id}"]); | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return $act ?? null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * HTML rendering event that adds the favourite form as a note | 
					
						
							|  |  |  |      * action, if a user is logged in | 
					
						
							| 
									
										
										
										
											2021-08-11 02:49:23 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |      * @return bool Event hook | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-04-30 01:51:59 +01:00
										 |  |  |     public function onAddNoteActions(Request $request, Note $note, array &$actions): bool | 
					
						
							| 
									
										
										
										
											2020-09-04 15:18:58 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         if (\is_null($user = Common::user())) { | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-24 15:12:18 +01:00
										 |  |  |         // If note is favourite, "is_favourite" is 1
 | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         $opts         = ['note_id' => $note->getId(), 'actor_id' => $user->getId()]; | 
					
						
							| 
									
										
										
										
											2021-11-11 12:24:45 +00:00
										 |  |  |         $is_favourite = DB::find('favourite', $opts) !== null; | 
					
						
							| 
									
										
										
										
											2020-11-06 19:47:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 20:14:22 +01:00
										 |  |  |         // Generating URL for favourite action route
 | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         $args                 = ['id' => $note->getId()]; | 
					
						
							|  |  |  |         $type                 = Router::ABSOLUTE_PATH; | 
					
						
							| 
									
										
										
										
											2021-11-11 12:24:45 +00:00
										 |  |  |         $favourite_action_url = $is_favourite | 
					
						
							|  |  |  |             ? Router::url('favourite_remove', $args, $type) | 
					
						
							|  |  |  |             : Router::url('favourite_add', $args, $type); | 
					
						
							| 
									
										
										
										
											2021-08-11 02:49:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-11 12:24:45 +00:00
										 |  |  |         $query_string = $request->getQueryString(); | 
					
						
							| 
									
										
										
										
											2021-10-24 15:12:18 +01:00
										 |  |  |         // Concatenating get parameter to redirect the user to where he came from
 | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         $favourite_action_url .= !\is_null($query_string) ? '?from=' . mb_substr($query_string, 2) : ''; | 
					
						
							| 
									
										
										
										
											2021-10-24 15:12:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         $extra_classes    = $is_favourite ? 'note-actions-set' : 'note-actions-unset'; | 
					
						
							| 
									
										
										
										
											2021-10-21 20:14:22 +01:00
										 |  |  |         $favourite_action = [ | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |             'url'     => $favourite_action_url, | 
					
						
							|  |  |  |             'title'   => $is_favourite ? 'Remove this note from favourites' : 'Favourite this note!', | 
					
						
							| 
									
										
										
										
											2021-11-11 12:24:45 +00:00
										 |  |  |             'classes' => "button-container favourite-button-container {$extra_classes}", | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |             'id'      => 'favourite-button-container-' . $note->getId(), | 
					
						
							| 
									
										
										
										
											2021-10-21 20:14:22 +01:00
										 |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2021-08-11 02:49:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 20:14:22 +01:00
										 |  |  |         $actions[] = $favourite_action; | 
					
						
							| 
									
										
										
										
											2020-09-04 15:18:58 +01:00
										 |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-04-14 19:59:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-01 01:33:12 +00:00
										 |  |  |     public function onAppendCardNote(array $vars, array &$result) | 
					
						
							| 
									
										
										
										
											2021-04-15 00:57:29 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-08 22:28:35 +00:00
										 |  |  |         // if note is the original, append on end "user favoured this"
 | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  |         $actor = $vars['actor']; | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         $note  = $vars['note']; | 
					
						
							| 
									
										
										
										
											2021-11-07 01:32:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 01:51:59 +01:00
										 |  |  |     public function onAddRoute(RouteLoader $r): bool | 
					
						
							| 
									
										
										
										
											2021-04-14 19:59:37 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-10-21 20:14:22 +01:00
										 |  |  |         // Add/remove note to/from favourites
 | 
					
						
							| 
									
										
										
										
											2021-10-26 17:29:14 +01:00
										 |  |  |         $r->connect(id: 'favourite_add', uri_path: '/object/note/{id<\d+>}/favour', target: [Controller\Favourite::class, 'favouriteAddNote']); | 
					
						
							|  |  |  |         $r->connect(id: 'favourite_remove', uri_path: '/object/note/{id<\d+>}/unfavour', target: [Controller\Favourite::class, 'favouriteRemoveNote']); | 
					
						
							| 
									
										
										
										
											2021-10-21 20:14:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // View all favourites by actor id
 | 
					
						
							| 
									
										
										
										
											2021-10-26 17:29:14 +01:00
										 |  |  |         $r->connect(id: 'favourites_view_by_actor_id', uri_path: '/actor/{id<\d+>}/favourites', target: [Controller\Favourite::class, 'favouritesViewByActorId']); | 
					
						
							|  |  |  |         $r->connect(id: 'favourites_reverse_view_by_actor_id', uri_path: '/actor/{id<\d+>}/reverse_favourites', target: [Controller\Favourite::class, 'favouritesReverseViewByActorId']); | 
					
						
							| 
									
										
										
										
											2021-10-21 20:14:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // View all favourites by nickname
 | 
					
						
							| 
									
										
										
										
											2021-10-26 17:29:14 +01:00
										 |  |  |         $r->connect(id: 'favourites_view_by_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}/favourites', target: [Controller\Favourite::class, 'favouritesByActorNickname']); | 
					
						
							|  |  |  |         $r->connect(id: 'favourites_reverse_view_by_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}/reverse_favourites', target: [Controller\Favourite::class, 'reverseFavouritesByActorNickname']); | 
					
						
							| 
									
										
										
										
											2021-04-14 19:59:37 +00:00
										 |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-01 01:33:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function onCreateDefaultFeeds(int $actor_id, LocalUser $user, int &$ordering) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         DB::persist(Feed::create([ | 
					
						
							|  |  |  |             'actor_id' => $actor_id, | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |             'url'      => Router::url($route = 'favourites_view_by_nickname', ['nickname' => $user->getNickname()]), | 
					
						
							|  |  |  |             'route'    => $route, | 
					
						
							|  |  |  |             'title'    => _m('Favourites'), | 
					
						
							| 
									
										
										
										
											2021-12-01 01:33:12 +00:00
										 |  |  |             'ordering' => $ordering++, | 
					
						
							|  |  |  |         ])); | 
					
						
							|  |  |  |         DB::persist(Feed::create([ | 
					
						
							|  |  |  |             'actor_id' => $actor_id, | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |             'url'      => Router::url($route = 'favourites_reverse_view_by_nickname', ['nickname' => $user->getNickname()]), | 
					
						
							|  |  |  |             'route'    => $route, | 
					
						
							|  |  |  |             'title'    => _m('Reverse favourites'), | 
					
						
							| 
									
										
										
										
											2021-12-01 01:33:12 +00:00
										 |  |  |             'ordering' => $ordering++, | 
					
						
							|  |  |  |         ])); | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-08 22:29:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // ActivityPub
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private function activitypub_handler(Actor $actor, \ActivityPhp\Type\AbstractObject $type_activity, mixed $type_object, ?\Plugin\ActivityPub\Entity\ActivitypubActivity &$ap_act): bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         if (!\in_array($type_activity->get('type'), ['Like', 'Undo'])) { | 
					
						
							| 
									
										
										
										
											2021-12-08 22:29:12 +00:00
										 |  |  |             return Event::next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($type_activity->get('type') === 'Like') { // Favourite
 | 
					
						
							|  |  |  |             if ($type_object instanceof \ActivityPhp\Type\AbstractObject) { | 
					
						
							|  |  |  |                 if ($type_object->get('type') === 'Note') { | 
					
						
							|  |  |  |                     $note_id = \Plugin\ActivityPub\Util\Model\Note::fromJson($type_object)->getId(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     return Event::next; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |             } elseif ($type_object instanceof Note) { | 
					
						
							| 
									
										
										
										
											2021-12-08 22:29:12 +00:00
										 |  |  |                 $note_id = $type_object->getId(); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 return Event::next; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { // Undo Favourite
 | 
					
						
							|  |  |  |             if ($type_object instanceof \ActivityPhp\Type\AbstractObject) { | 
					
						
							|  |  |  |                 $ap_prev_favourite_act = \Plugin\ActivityPub\Util\Model\Activity::fromJson($type_object); | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |                 $prev_favourite_act    = $ap_prev_favourite_act->getActivity(); | 
					
						
							| 
									
										
										
										
											2021-12-08 22:29:12 +00:00
										 |  |  |                 if ($prev_favourite_act->getVerb() === 'favourite' && $prev_favourite_act->getObjectType() === 'note') { | 
					
						
							|  |  |  |                     $note_id = $prev_favourite_act->getObjectId(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     return Event::next; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |             } elseif ($type_object instanceof Activity) { | 
					
						
							| 
									
										
										
										
											2021-12-08 22:29:12 +00:00
										 |  |  |                 if ($type_object->getVerb() === 'favourite' && $type_object->getObjectType() === 'note') { | 
					
						
							|  |  |  |                     $note_id = $type_object->getObjectId(); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     return Event::next; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 return Event::next; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($type_activity->get('type') === 'Like') { | 
					
						
							|  |  |  |             $act = self::favourNote($note_id, $actor->getId(), source: 'ActivityPub'); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $act = self::unfavourNote($note_id, $actor->getId(), source: 'ActivityPub'); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         if (!\is_null($act)) { | 
					
						
							|  |  |  |             // Store ActivityPub Activity
 | 
					
						
							|  |  |  |             $ap_act = \Plugin\ActivityPub\Entity\ActivitypubActivity::create([ | 
					
						
							|  |  |  |                 'activity_id'  => $act->getId(), | 
					
						
							|  |  |  |                 'activity_uri' => $type_activity->get('id'), | 
					
						
							|  |  |  |                 'created'      => new DateTime($type_activity->get('published') ?? 'now'), | 
					
						
							|  |  |  |                 'modified'     => new DateTime(), | 
					
						
							|  |  |  |             ]); | 
					
						
							|  |  |  |             DB::persist($ap_act); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-08 22:29:12 +00:00
										 |  |  |         return Event::stop; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function onNewActivityPubActivity(Actor $actor, \ActivityPhp\Type\AbstractObject $type_activity, \ActivityPhp\Type\AbstractObject $type_object, ?\Plugin\ActivityPub\Entity\ActivitypubActivity &$ap_act): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->activitypub_handler($actor, $type_activity, $type_object, $ap_act); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function onNewActivityPubActivityWithObject(Actor $actor, \ActivityPhp\Type\AbstractObject $type_activity, mixed $type_object, ?\Plugin\ActivityPub\Entity\ActivitypubActivity &$ap_act): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->activitypub_handler($actor, $type_activity, $type_object, $ap_act); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 06:45:37 +00:00
										 |  |  |     public function onGSVerbToActivityStreamsTwoActivityType(string $verb, ?string &$gs_verb_to_activity_stream_two_verb): bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-24 01:58:41 +00:00
										 |  |  |         if ($verb === 'favourite') { | 
					
						
							|  |  |  |             $gs_verb_to_activity_stream_two_verb = 'Like'; | 
					
						
							|  |  |  |             return Event::stop; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-09-04 19:36:37 +00:00
										 |  |  | } |