| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Mikael Nordfeldth <mmn@hethane.se> | 
					
						
							|  |  |  |  * @copyright 2014 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Superclass for plugins which add Activity types and such | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Activity | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Mikael Nordfeldth <mmn@hethane.se> | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |  * @copyright 2014 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | abstract class ActivityHandlerModule extends Module | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      * Returns a key string which represents this activity in HTML classes, | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * ids etc, as when offering selection of what type of post to make. | 
					
						
							|  |  |  |      * In MicroAppPlugin, this is paired with the user-visible localizable appTitle(). | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return string (compatible with HTML classes) | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      */ | 
					
						
							|  |  |  |     abstract public function tag(); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Return a list of ActivityStreams object type IRIs | 
					
						
							|  |  |  |      * which this micro-app handles. Default implementations | 
					
						
							|  |  |  |      * of the base class will use this list to check if a | 
					
						
							|  |  |  |      * given ActivityStreams object belongs to us, via | 
					
						
							|  |  |  |      * $this->isMyNotice() or $this->isMyActivity. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * An empty list means any type is ok. (Favorite verb etc.) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return array of strings | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     abstract public function types(); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Return a list of ActivityStreams verb IRIs which | 
					
						
							|  |  |  |      * this micro-app handles. Default implementations | 
					
						
							|  |  |  |      * of the base class will use this list to check if a | 
					
						
							|  |  |  |      * given ActivityStreams verb belongs to us, via | 
					
						
							|  |  |  |      * $this->isMyNotice() or $this->isMyActivity. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * All micro-app classes must override this method. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return array of strings | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function verbs() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         return array(ActivityVerb::POST); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Check if a given ActivityStreams activity should be handled by this | 
					
						
							|  |  |  |      * micro-app plugin. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The default implementation checks against the activity type list | 
					
						
							|  |  |  |      * returned by $this->types(), and requires that exactly one matching | 
					
						
							|  |  |  |      * object be present. You can override this method to expand | 
					
						
							|  |  |  |      * your checks or to compare the activity's verb, etc. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Activity $activity | 
					
						
							|  |  |  |      * @return boolean | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function isMyActivity(Activity $act) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         return (count($act->objects) == 1 | 
					
						
							|  |  |  |             && ($act->objects[0] instanceof ActivityObject) | 
					
						
							|  |  |  |             && $this->isMyVerb($act->verb) | 
					
						
							|  |  |  |             && $this->isMyType($act->objects[0]->type)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Check if a given notice object should be handled by this micro-app | 
					
						
							|  |  |  |      * plugin. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The default implementation checks against the activity type list | 
					
						
							|  |  |  |      * returned by $this->types(). You can override this method to expand | 
					
						
							|  |  |  |      * your checks, but follow the execution chain to get it right. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Notice $notice | 
					
						
							|  |  |  |      * @return boolean | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function isMyNotice(Notice $notice) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         return $this->isMyVerb($notice->verb) && $this->isMyType($notice->object_type); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function isMyVerb($verb) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         $verb = $verb ?: ActivityVerb::POST;    // post is the default verb
 | 
					
						
							|  |  |  |         return ActivityUtils::compareVerbs($verb, $this->verbs()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function isMyType($type) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         // Third argument to compareTypes is true, to allow for notices with empty object_type for example (verb-only)
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |         return count($this->types()) === 0 || ActivityUtils::compareTypes($type, $this->types()); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Given a parsed ActivityStreams activity, your plugin | 
					
						
							|  |  |  |      * gets to figure out how to actually save it into a notice | 
					
						
							|  |  |  |      * and any additional data structures you require. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This function is deprecated and in the future, Notice::saveActivity | 
					
						
							|  |  |  |      * should be called from onStartHandleFeedEntryWithProfile in this class | 
					
						
							|  |  |  |      * (which instead turns to saveObjectFromActivity). | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Activity $activity | 
					
						
							|  |  |  |      * @param Profile $actor | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * @param array $options = [] | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return Notice the resulting notice | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function saveNoticeFromActivity(Activity $activity, Profile $actor, array $options = []) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         // Any plugin which has not implemented saveObjectFromActivity _must_
 | 
					
						
							|  |  |  |         // override this function until they are migrated (this function will
 | 
					
						
							|  |  |  |         // be deleted when all plugins are migrated to saveObjectFromActivity).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (isset($this->oldSaveNew)) { | 
					
						
							|  |  |  |             throw new ServerException('A function has been called for new saveActivity functionality, but is still set with an oldSaveNew configuration'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return Notice::saveActivity($activity, $actor, $options); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * Given a parsed ActivityStreams activity, your plugin gets | 
					
						
							|  |  |  |      * to figure out itself how to store the additional data into | 
					
						
							|  |  |  |      * the database, besides the base data stored by the core. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This will handle just about all events where an activity | 
					
						
							|  |  |  |      * object gets saved, whether it is via AtomPub, OStatus | 
					
						
							|  |  |  |      * (WebSub and Salmon transports), or ActivityStreams-based | 
					
						
							|  |  |  |      * backup/restore of account data. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * You should be able to accept as input the output from an | 
					
						
							|  |  |  |      * asActivity() call on the stored object. Where applicable, | 
					
						
							|  |  |  |      * try to use existing ActivityStreams structures and object | 
					
						
							|  |  |  |      * types, and be liberal in accepting input from what might | 
					
						
							|  |  |  |      * be other compatible apps. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * All micro-app classes must override this method. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @fixme are there any standard options? | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Activity $activity | 
					
						
							|  |  |  |      * @param Notice $stored The notice in our database for this certain object | 
					
						
							|  |  |  |      * @param array $options = [] | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return object    If the verb handling plugin creates an object, it can be returned here (otherwise true) | 
					
						
							|  |  |  |      * @throws exception On any error. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected function saveObjectFromActivity(Activity $activity, Notice $stored, array $options = []) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         throw new ServerException('This function should be abstract when all plugins have migrated to saveObjectFromActivity'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      * This usually gets called from Notice::saveActivity after a Notice object has been created, | 
					
						
							|  |  |  |      * so it contains a proper id and a uri for the object to be saved. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onStoreActivityObject(Activity $act, Notice $stored, array $options, &$object) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         // $this->oldSaveNew is there during a migration period of plugins, to start using
 | 
					
						
							|  |  |  |         // Notice::saveActivity instead of Notice::saveNew
 | 
					
						
							|  |  |  |         if (!$this->isMyActivity($act) || isset($this->oldSaveNew)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $object = $this->saveObjectFromActivity($act, $stored, $options); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Given an existing Notice object, your plugin gets to | 
					
						
							|  |  |  |      * figure out how to arrange it into an ActivityStreams | 
					
						
							|  |  |  |      * object. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This will be how your specialized notice gets output in | 
					
						
							|  |  |  |      * Atom feeds and JSON-based ActivityStreams output, including | 
					
						
							|  |  |  |      * account backup/restore and OStatus (WebSub and Salmon transports). | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * You should be able to round-trip data from this format back | 
					
						
							|  |  |  |      * through $this->saveNoticeFromActivity(). Where applicable, try | 
					
						
							|  |  |  |      * to use existing ActivityStreams structures and object types, | 
					
						
							|  |  |  |      * and consider interop with other compatible apps. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * All micro-app classes must override this method. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @fixme this outputs an ActivityObject, not an Activity. Any compat issues? | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Notice $notice | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return ActivityObject | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     abstract public function activityObjectFromNotice(Notice $notice); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * When a notice is deleted, you'll be called here for a chance | 
					
						
							|  |  |  |      * to clean up any related resources. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * All micro-app classes must override this method. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Notice $notice | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     abstract public function deleteRelated(Notice $notice); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     protected function notifyMentioned(Notice $stored, array &$mentioned_ids) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // pass through silently by default
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // If we want to stop any other plugin from notifying based on this activity, return false instead.
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Called when generating Atom XML ActivityStreams output from an | 
					
						
							|  |  |  |      * ActivityObject belonging to this plugin. Gives the plugin | 
					
						
							|  |  |  |      * a chance to add custom output. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Note that you can only add output of additional XML elements, | 
					
						
							|  |  |  |      * not change existing stuff here. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * If output is already handled by the base Activity classes, | 
					
						
							|  |  |  |      * you can leave this base implementation as a no-op. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param ActivityObject $obj | 
					
						
							|  |  |  |      * @param XMLOutputter $out to add elements at end of object | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function activityObjectOutputAtom(ActivityObject $obj, XMLOutputter $out) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         // default is a no-op
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Called when generating JSON ActivityStreams output from an | 
					
						
							|  |  |  |      * ActivityObject belonging to this plugin. Gives the plugin | 
					
						
							|  |  |  |      * a chance to add custom output. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Modify the array contents to your heart's content, and it'll | 
					
						
							|  |  |  |      * all get serialized out as JSON. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * If output is already handled by the base Activity classes, | 
					
						
							|  |  |  |      * you can leave this base implementation as a no-op. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param ActivityObject $obj | 
					
						
							|  |  |  |      * @param array &$out JSON-targeted array which can be modified | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function activityObjectOutputJson(ActivityObject $obj, array &$out) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // default is a no-op
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * When a notice is deleted, delete the related objects | 
					
						
							|  |  |  |      * by calling the overridable $this->deleteRelated(). | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Notice $notice Notice being deleted | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean hook value | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function onNoticeDeleteRelated(Notice $notice) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($this->isMyNotice($notice)) { | 
					
						
							|  |  |  |             try { | 
					
						
							|  |  |  |                 $this->deleteRelated($notice); | 
					
						
							|  |  |  |             } catch (NoProfileException $e) { | 
					
						
							|  |  |  |                 // we failed because of database lookup failure, Notice has no recognized profile as creator
 | 
					
						
							|  |  |  |                 // so we skip this. If we want to remove missing notices we should do a SQL constraints check
 | 
					
						
							|  |  |  |                 // in the affected plugin.
 | 
					
						
							|  |  |  |             } catch (AlreadyFulfilledException $e) { | 
					
						
							|  |  |  |                 // Nothing to see here, it's obviously already gone...
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Always continue this event in our activity handling plugins.
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * @param Notice $stored The notice being distributed | 
					
						
							|  |  |  |      * @param array  &$mentioned_ids List of profiles (from $stored->getReplies()) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function onStartNotifyMentioned(Notice $stored, array &$mentioned_ids) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!$this->isMyNotice($stored)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $this->notifyMentioned($stored, $mentioned_ids); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Render a notice as one of our objects | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * @param Notice $notice Notice to render | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      * @param ActivityObject &$object Empty object to fill | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean hook value | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onStartActivityObjectFromNotice(Notice $notice, &$object) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!$this->isMyNotice($notice)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $object = $this->activityObjectFromNotice($notice); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle a posted object from WebSub | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * @param Activity $activity activity to handle | 
					
						
							|  |  |  |      * @param Profile $actor Profile for the feed | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return boolean hook value | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onStartHandleFeedEntryWithProfile(Activity $activity, Profile $profile, &$notice) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!$this->isMyActivity($activity)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // We are guaranteed to get a Profile back from checkAuthorship (or it throws an exception)
 | 
					
						
							|  |  |  |         $profile = ActivityUtils::checkAuthorship($activity, $profile); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $object = $activity->objects[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |         $options = [ | 
					
						
							|  |  |  |             'uri'      => $object->id, | 
					
						
							|  |  |  |             'url'      => $object->link, | 
					
						
							|  |  |  |             'self'     => $object->selfLink, | 
					
						
							|  |  |  |             'is_local' => Notice::REMOTE, | 
					
						
							|  |  |  |             'source'   => 'ostatus', | 
					
						
							|  |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!isset($this->oldSaveNew)) { | 
					
						
							|  |  |  |             $notice = Notice::saveActivity($activity, $profile, $options); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $notice = $this->saveNoticeFromActivity($activity, $profile, $options); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle a posted object from Salmon | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param Activity $activity activity to handle | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * @param mixed $target user or group targeted | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return boolean hook value | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onStartHandleSalmonTarget(Activity $activity, $target) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!$this->isMyActivity($activity)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!isset($this->oldSaveNew)) { | 
					
						
							|  |  |  |             // Handle saveActivity in OStatus class for incoming salmon, remove this event
 | 
					
						
							|  |  |  |             // handler when all plugins have gotten rid of "oldSaveNew".
 | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |         $this->log(LOG_INFO, get_called_class() . " checking {$activity->id} as a valid Salmon slap."); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($target instanceof User_group || $target->isGroup()) { | 
					
						
							|  |  |  |             $uri = $target->getUri(); | 
					
						
							|  |  |  |             if (!array_key_exists($uri, $activity->context->attention)) { | 
					
						
							|  |  |  |                 // @todo FIXME: please document (i18n).
 | 
					
						
							|  |  |  |                 // TRANS: Client exception thrown when ...
 | 
					
						
							|  |  |  |                 throw new ClientException(_('Object not posted to this group.')); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } elseif ($target instanceof Profile && $target->isLocal()) { | 
					
						
							|  |  |  |             $original = null; | 
					
						
							|  |  |  |             // FIXME: Shouldn't favorites show up with a 'target' activityobject?
 | 
					
						
							|  |  |  |             if (!ActivityUtils::compareVerbs($activity->verb, array(ActivityVerb::POST)) && isset($activity->objects[0])) { | 
					
						
							|  |  |  |                 // If this is not a post, it's a verb targeted at something (such as a Favorite attached to a note)
 | 
					
						
							|  |  |  |                 if (!empty($activity->objects[0]->id)) { | 
					
						
							|  |  |  |                     $activity->context->replyToID = $activity->objects[0]->id; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (!empty($activity->context->replyToID)) { | 
					
						
							|  |  |  |                 $original = Notice::getKV('uri', $activity->context->replyToID); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if ((!$original instanceof Notice || $original->profile_id != $target->id) | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |                 && !array_key_exists($target->getUri(), $activity->context->attention)) { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |                 // @todo FIXME: Please document (i18n).
 | 
					
						
							|  |  |  |                 // TRANS: Client exception when ...
 | 
					
						
							|  |  |  |                 throw new ClientException(_('Object not posted to this user.')); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             // TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled.
 | 
					
						
							|  |  |  |             throw new ServerException(_('Do not know how to handle this kind of target.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $oactor = Ostatus_profile::ensureActivityObjectProfile($activity->actor); | 
					
						
							|  |  |  |         $actor = $oactor->localProfile(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // FIXME: will this work in all cases? I made it work for Favorite...
 | 
					
						
							|  |  |  |         if (ActivityUtils::compareVerbs($activity->verb, array(ActivityVerb::POST))) { | 
					
						
							|  |  |  |             $object = $activity->objects[0]; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $object = $activity; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |         $options = [ | 
					
						
							|  |  |  |             'uri'      => $object->id, | 
					
						
							|  |  |  |             'url'      => $object->link, | 
					
						
							|  |  |  |             'self'     => $object->selfLink, | 
					
						
							|  |  |  |             'is_local' => Notice::REMOTE, | 
					
						
							|  |  |  |             'source'   => 'ostatus', | 
					
						
							|  |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $notice = $this->saveNoticeFromActivity($activity, $actor, $options); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle object posted via AtomPub | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * @param Activity $activity Activity that was posted | 
					
						
							|  |  |  |      * @param Profile $scoped Profile of user posting | 
					
						
							|  |  |  |      * @param Notice   &$notice Resulting notice | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return boolean hook value | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onStartAtomPubNewActivity(Activity $activity, Profile $scoped, Notice &$notice = null) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!$this->isMyActivity($activity)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $options = array('source' => 'atompub'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $notice = $this->saveNoticeFromActivity($activity, $scoped, $options); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle object imported from a backup file | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |      * @param User $user User to import for | 
					
						
							|  |  |  |      * @param ActivityObject $author Original author per import file | 
					
						
							|  |  |  |      * @param Activity $activity Activity to import | 
					
						
							|  |  |  |      * @param boolean $trusted Is this a trusted user? | 
					
						
							|  |  |  |      * @param boolean        &$done Is this done (success or unrecoverable error) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return boolean hook value | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onStartImportActivity($user, $author, Activity $activity, $trusted, &$done) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!$this->isMyActivity($activity)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $obj = $activity->objects[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |         $options = [ | 
					
						
							|  |  |  |             'uri'    => $object->id, | 
					
						
							|  |  |  |             'url'    => $object->link, | 
					
						
							|  |  |  |             'self'   => $object->selfLink, | 
					
						
							|  |  |  |             'source' => 'restore', | 
					
						
							|  |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // $user->getProfile() is a Profile
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |         $saved = $this->saveNoticeFromActivity( | 
					
						
							|  |  |  |             $activity, | 
					
						
							|  |  |  |             $user->getProfile(), | 
					
						
							|  |  |  |             $options | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($saved)) { | 
					
						
							|  |  |  |             $done = true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Event handler gives the plugin a chance to add custom | 
					
						
							|  |  |  |      * Atom XML ActivityStreams output from a previously filled-out | 
					
						
							|  |  |  |      * ActivityObject. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The atomOutput method is called if it's one of | 
					
						
							|  |  |  |      * our matching types. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param ActivityObject $obj | 
					
						
							|  |  |  |      * @param XMLOutputter $out to add elements at end of object | 
					
						
							|  |  |  |      * @return boolean hook return value | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onEndActivityObjectOutputAtom(ActivityObject $obj, XMLOutputter $out) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (in_array($obj->type, $this->types())) { | 
					
						
							|  |  |  |             $this->activityObjectOutputAtom($obj, $out); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Event handler gives the plugin a chance to add custom | 
					
						
							|  |  |  |      * JSON ActivityStreams output from a previously filled-out | 
					
						
							|  |  |  |      * ActivityObject. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The activityObjectOutputJson method is called if it's one of | 
					
						
							|  |  |  |      * our matching types. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param ActivityObject $obj | 
					
						
							|  |  |  |      * @param array &$out JSON-targeted array which can be modified | 
					
						
							|  |  |  |      * @return boolean hook return value | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onEndActivityObjectOutputJson(ActivityObject $obj, array &$out) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (in_array($obj->type, $this->types())) { | 
					
						
							|  |  |  |             $this->activityObjectOutputJson($obj, $out); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function onStartOpenNoticeListItemElement(NoticeListItem $nli) | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         if (!$this->isMyNotice($nli->notice)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->openNoticeListItemElement($nli); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |         Event::handle('EndOpenNoticeListItemElement', [$nli]); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function onStartCloseNoticeListItemElement(NoticeListItem $nli) | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         if (!$this->isMyNotice($nli->notice)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->closeNoticeListItemElement($nli); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |         Event::handle('EndCloseNoticeListItemElement', [$nli]); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected function openNoticeListItemElement(NoticeListItem $nli) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-01-09 19:49:49 +00:00
										 |  |  |         // Build up the attributes
 | 
					
						
							|  |  |  |         $attrs = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // -> The id
 | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         $id = (empty($nli->repeat)) ? $nli->notice->id : $nli->repeat->id; | 
					
						
							| 
									
										
										
										
											2020-01-09 19:49:49 +00:00
										 |  |  |         $id_decl = "notice-{$id}"; | 
					
						
							|  |  |  |         $attrs['id'] = $id_decl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // -> The class
 | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         $class = 'h-entry notice ' . $this->tag(); | 
					
						
							|  |  |  |         if ($nli->notice->scope != 0 && $nli->notice->scope != 1) { | 
					
						
							|  |  |  |             $class .= ' limited-scope'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         try { | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |             $class .= ' notice-source-' . common_to_alphanumeric($nli->notice->source); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         } catch (Exception $e) { | 
					
						
							|  |  |  |             // either source or what we filtered out was a zero-length string
 | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-01-09 19:49:49 +00:00
										 |  |  |         $attrs['class'] = $class; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // -> Robots
 | 
					
						
							|  |  |  |         if (!$nli->notice->isLocal()) { | 
					
						
							|  |  |  |             $attrs['data-nosnippet'] = 'true'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $nli->out->elementStart('li', $attrs); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected function closeNoticeListItemElement(NoticeListItem $nli) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $nli->out->elementEnd('li'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // FIXME: This is overriden in MicroAppPlugin but shouldn't have to be
 | 
					
						
							|  |  |  |     public function onStartShowNoticeItem(NoticeListItem $nli) | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |         if (!$this->isMyNotice($nli->notice)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							|  |  |  |             $this->showNoticeListItem($nli); | 
					
						
							|  |  |  |         } catch (Exception $e) { | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |             common_log(LOG_ERR, 'Error showing notice ' . $nli->getNotice()->getID() . ': ' . $e->getMessage()); | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |             $nli->out->element('p', 'error', sprintf(_('Error showing notice: %s'), $e->getMessage())); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Event::handle('EndShowNoticeItem', array($nli)); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected function showNoticeListItem(NoticeListItem $nli) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $nli->showNoticeHeaders(); | 
					
						
							|  |  |  |         $nli->showContent(); | 
					
						
							|  |  |  |         $nli->showNoticeFooter(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function onStartShowNoticeItemNotice(NoticeListItem $nli) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!$this->isMyNotice($nli->notice)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->showNoticeItemNotice($nli); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Event::handle('EndShowNoticeItemNotice', array($nli)); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected function showNoticeItemNotice(NoticeListItem $nli) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $nli->showNoticeTitle(); | 
					
						
							|  |  |  |         $nli->showAuthor(); | 
					
						
							|  |  |  |         $nli->showAddressees(); | 
					
						
							|  |  |  |         $nli->showContent(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     public function onStartShowNoticeContent(Notice $stored, HTMLOutputter $out, Profile $scoped = null) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!$this->isMyNotice($stored)) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							|  |  |  |             $this->showNoticeContent($stored, $out, $scoped); | 
					
						
							|  |  |  |         } catch (Exception $e) { | 
					
						
							|  |  |  |             $out->element('div', 'error', $e->getMessage()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 21:41:34 +00:00
										 |  |  |     protected function showNoticeContent(Notice $stored, HTMLOutputter $out, Profile $scoped = null) | 
					
						
							| 
									
										
										
										
											2019-08-12 15:03:30 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         $out->text($stored->getContent()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |