| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | // 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/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * ActivityPub queue handler for notice distribution | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |  * @author    Bruno Casteleiro <brunoccast@fc.up.pt> | 
					
						
							| 
									
										
										
										
											2020-08-29 16:09:10 +01:00
										 |  |  |  * @author    Diogo Cordeiro <diogo@fc.up.pt> | 
					
						
							|  |  |  |  * @copyright 2019-2020 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2020-08-29 16:09:10 +01:00
										 |  |  |  * @copyright 2019-2020 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  | class activitypubqueuehandler extends QueueHandler | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Getter of the queue transport name. | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |      * @return string transport name | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function transport(): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 'activitypub'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Notice distribution handler. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Notice $notice notice to be distributed. | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |      * @throws HTTP_Request2_Exception | 
					
						
							|  |  |  |      * @throws InvalidUrlException | 
					
						
							|  |  |  |      * @throws ServerException | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool true on success, false otherwise | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |      * @author Diogo Cordeiro <diogo@fc.up.pt> | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function handle($notice): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!($notice instanceof Notice)) { | 
					
						
							| 
									
										
										
										
											2020-08-28 01:12:40 +01:00
										 |  |  |             common_log(LOG_ERR, 'Got a bogus notice, not distributing'); | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $profile = $notice->getProfile(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$profile->isLocal()) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |         if ($notice->source == 'activity') { | 
					
						
							|  |  |  |             common_log(LOG_ERR, "Ignoring distribution of notice:{$notice->id}: activity source"); | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |         $other = Activitypub_profile::from_profile_collection( | 
					
						
							|  |  |  |             $notice->getAttentionProfiles() | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-29 16:09:10 +01:00
										 |  |  |         try { | 
					
						
							|  |  |  |             // Handling a Create?
 | 
					
						
							|  |  |  |             if (ActivityUtils::compareVerbs($notice->verb, [ActivityVerb::POST, ActivityVerb::SHARE])) { | 
					
						
							|  |  |  |                 return $this->handle_create($profile, $notice, $other); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-29 16:09:10 +01:00
										 |  |  |             // Handling a Like?
 | 
					
						
							|  |  |  |             if (ActivityUtils::compareVerbs($notice->verb, [ActivityVerb::FAVORITE])) { | 
					
						
							|  |  |  |                 return $this->onEndFavorNotice($profile, $notice, $other); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-29 16:09:10 +01:00
										 |  |  |             // Handling a Delete Note?
 | 
					
						
							|  |  |  |             if (ActivityUtils::compareVerbs($notice->verb, [ActivityVerb::DELETE])) { | 
					
						
							|  |  |  |                 return $this->onStartDeleteOwnNotice($profile, $notice, $other); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } catch (Exception $e) { | 
					
						
							|  |  |  |             // Postman handles issues with the failed queue
 | 
					
						
							|  |  |  |             common_debug('ActivityPub Queue Handler:'.$e->getMessage()); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Handle notice creation and propagation | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param mixed $profile | 
					
						
							|  |  |  |      * @param mixed $notice | 
					
						
							|  |  |  |      * @param mixed $other | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |     private function handle_create($profile, $notice, $other) | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |         // Handling a reply?
 | 
					
						
							|  |  |  |         if ($notice->reply_to) { | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |             try { | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |                 $parent_notice = $notice->getParent(); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 try { | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |                     $other[] = Activitypub_profile::from_profile($parent_notice->getProfile()); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |                 } catch (Exception $e) { | 
					
						
							|  |  |  |                     // Local user can be ignored
 | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 foreach ($parent_notice->getAttentionProfiles() as $mention) { | 
					
						
							|  |  |  |                     try { | 
					
						
							|  |  |  |                         $other[] = Activitypub_profile::from_profile($mention); | 
					
						
							|  |  |  |                     } catch (Exception $e) { | 
					
						
							|  |  |  |                         // Local user can be ignored
 | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } catch (NoParentNoticeException $e) { | 
					
						
							|  |  |  |                 // This is not a reply to something (has no parent)
 | 
					
						
							|  |  |  |             } catch (NoResultException $e) { | 
					
						
							|  |  |  |                 // Parent author's profile not found! Complain louder?
 | 
					
						
							|  |  |  |                 common_log( | 
					
						
							|  |  |  |                     LOG_ERR, | 
					
						
							|  |  |  |                     "Parent notice's author not found: " . $e->getMessage() | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |         // Handling an Announce?
 | 
					
						
							|  |  |  |         if ($notice->isRepeat()) { | 
					
						
							|  |  |  |             $repeated_notice = Notice::getKV('id', $notice->repeat_of); | 
					
						
							|  |  |  |             if ($repeated_notice instanceof Notice) { | 
					
						
							|  |  |  |                 $other = array_merge( | 
					
						
							|  |  |  |                     $other, | 
					
						
							|  |  |  |                     Activitypub_profile::from_profile_collection( | 
					
						
							|  |  |  |                         $repeated_notice->getAttentionProfiles() | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |                 try { | 
					
						
							|  |  |  |                     $other[] = Activitypub_profile::from_profile( | 
					
						
							|  |  |  |                         $repeated_notice->getProfile() | 
					
						
							|  |  |  |                     ); | 
					
						
							|  |  |  |                 } catch (Exception $e) { | 
					
						
							|  |  |  |                     // Local user can be ignored
 | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |                 // That was it
 | 
					
						
							|  |  |  |                 $postman = new Activitypub_postman($profile, $other); | 
					
						
							| 
									
										
										
										
											2020-08-28 01:12:40 +01:00
										 |  |  |                 $postman->announce($notice, $repeated_notice); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |             // either made the announce or found nothing to repeat
 | 
					
						
							|  |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 18:21:47 +01:00
										 |  |  |         // That was it
 | 
					
						
							|  |  |  |         $postman = new Activitypub_postman($profile, $other); | 
					
						
							|  |  |  |         $postman->create_note($notice); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Notify remote users when their notices get favourited. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Profile $profile of local user doing the faving | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |      * @param Notice  $notice  Notice being favored | 
					
						
							|  |  |  |      * @param mixed   $other | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |      * @throws HTTP_Request2_Exception | 
					
						
							|  |  |  |      * @throws InvalidUrlException | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool return value | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |      * @author Diogo Cordeiro <diogo@fc.up.pt> | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function onEndFavorNotice(Profile $profile, Notice $notice, $other) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-28 01:12:40 +01:00
										 |  |  |         $notice_liked = $notice->getParent(); | 
					
						
							|  |  |  |         if ($notice_liked->reply_to) { | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |             try { | 
					
						
							| 
									
										
										
										
											2020-08-28 01:12:40 +01:00
										 |  |  |                 $parent_notice = $notice_liked->getParent(); | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 try { | 
					
						
							|  |  |  |                     $other[] = Activitypub_profile::from_profile($parent_notice->getProfile()); | 
					
						
							|  |  |  |                 } catch (Exception $e) { | 
					
						
							|  |  |  |                     // Local user can be ignored
 | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |                 $other = array_merge( | 
					
						
							|  |  |  |                     $other, | 
					
						
							|  |  |  |                     Activitypub_profile::from_profile_collection( | 
					
						
							|  |  |  |                         $parent_notice->getAttentionProfiles() | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |             } catch (NoParentNoticeException $e) { | 
					
						
							|  |  |  |                 // This is not a reply to something (has no parent)
 | 
					
						
							|  |  |  |             } catch (NoResultException $e) { | 
					
						
							|  |  |  |                 // Parent author's profile not found! Complain louder?
 | 
					
						
							| 
									
										
										
										
											2020-08-28 01:12:40 +01:00
										 |  |  |                 common_log(LOG_ERR, "Parent notice's author not found: " . $e->getMessage()); | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |         $postman = new Activitypub_postman($profile, $other); | 
					
						
							|  |  |  |         $postman->like($notice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Notify remote users when their notices get de-favourited. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Profile $profile of local user doing the de-faving | 
					
						
							|  |  |  |      * @param Notice  $notice  Notice being favored | 
					
						
							|  |  |  |      * @param mixed   $other | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws HTTP_Request2_Exception | 
					
						
							|  |  |  |      * @throws InvalidUrlException | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool return value | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @author Diogo Cordeiro <diogo@fc.up.pt> | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function onEndDisfavorNotice(Profile $profile, Notice $notice, $other) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($notice->reply_to) { | 
					
						
							|  |  |  |             try { | 
					
						
							|  |  |  |                 $parent_notice = $notice->getParent(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 try { | 
					
						
							|  |  |  |                     $other[] = Activitypub_profile::from_profile($parent_notice->getProfile()); | 
					
						
							|  |  |  |                 } catch (Exception $e) { | 
					
						
							|  |  |  |                     // Local user can be ignored
 | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 $other = array_merge( | 
					
						
							|  |  |  |                     $other, | 
					
						
							|  |  |  |                     Activitypub_profile::from_profile_collection( | 
					
						
							|  |  |  |                         $parent_notice->getAttentionProfiles() | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |             } catch (NoParentNoticeException $e) { | 
					
						
							|  |  |  |                 // This is not a reply to something (has no parent)
 | 
					
						
							|  |  |  |             } catch (NoResultException $e) { | 
					
						
							|  |  |  |                 // Parent author's profile not found! Complain louder?
 | 
					
						
							|  |  |  |                 common_log(LOG_ERR, "Parent notice's author not found: " . $e->getMessage()); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $postman = new Activitypub_postman($profile, $other); | 
					
						
							|  |  |  |         $postman->undo_like($notice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Notify remote users when their notices get deleted | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param $user | 
					
						
							|  |  |  |      * @param $notice | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |      * @param mixed $profile | 
					
						
							|  |  |  |      * @param mixed $other | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |      * @throws HTTP_Request2_Exception | 
					
						
							|  |  |  |      * @throws InvalidUrlException | 
					
						
							| 
									
										
										
										
											2021-02-19 23:03:01 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool hook flag | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |      * @author Diogo Cordeiro <diogo@fc.up.pt> | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function onStartDeleteOwnNotice($profile, $notice, $other) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Handle delete locally either because:
 | 
					
						
							|  |  |  |         // 1. There's no undo-share logic yet
 | 
					
						
							|  |  |  |         // 2. The deleting user has privileges to do so (locally)
 | 
					
						
							|  |  |  |         if ($notice->isRepeat() || ($notice->getProfile()->getID() != $profile->getID())) { | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |         if ($notice->reply_to) { | 
					
						
							|  |  |  |             try { | 
					
						
							|  |  |  |                 $parent_notice = $notice->getParent(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 try { | 
					
						
							|  |  |  |                     $other[] = Activitypub_profile::from_profile($parent_notice->getProfile()); | 
					
						
							|  |  |  |                 } catch (Exception $e) { | 
					
						
							|  |  |  |                     // Local user can be ignored
 | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 $other = array_merge( | 
					
						
							|  |  |  |                     $other, | 
					
						
							|  |  |  |                     Activitypub_profile::from_profile_collection( | 
					
						
							|  |  |  |                         $parent_notice->getAttentionProfiles() | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |             } catch (NoParentNoticeException $e) { | 
					
						
							|  |  |  |                 // This is not a reply to something (has no parent)
 | 
					
						
							|  |  |  |             } catch (NoResultException $e) { | 
					
						
							|  |  |  |                 // Parent author's profile not found! Complain louder?
 | 
					
						
							| 
									
										
										
										
											2020-08-28 01:12:40 +01:00
										 |  |  |                 common_log(LOG_ERR, "Parent notice's author not found: " . $e->getMessage()); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |         $postman = new Activitypub_postman($profile, $other); | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  |         $postman->delete_note($notice); | 
					
						
							| 
									
										
										
										
											2019-08-06 21:28:55 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-05 03:22:10 +01:00
										 |  |  | } |