]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Share/SharePlugin.php
5972d1b517a70e0b74e73505ac4f26eb0cdcfbbb
[quix0rs-gnu-social.git] / plugins / Share / SharePlugin.php
1 <?php
2 /*
3  * GNU Social - a federating social network
4  * Copyright (C) 2014, Free Software Foundation, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('GNUSOCIAL')) { exit(1); }
21
22 /**
23  * @package     Activity
24  * @maintainer  Mikael Nordfeldth <mmn@hethane.se>
25  */
26 class SharePlugin extends ActivityVerbHandlerPlugin
27 {
28     public function tag()
29     {
30         return 'share';
31     }
32
33     public function types()
34     {
35         return array();
36     }
37
38     public function verbs()
39     {
40         return array(ActivityVerb::SHARE);
41     }
42
43     public function onRouterInitialized(URLMapper $m)
44     {
45         // Web UI actions
46         $m->connect('main/repeat', array('action' => 'repeat'));
47
48         // Share for Twitter API ("Retweet")
49         $m->connect('api/statuses/retweeted_by_me.:format',
50                     array('action' => 'ApiTimelineRetweetedByMe',
51                           'format' => '(xml|json|atom|as)'));
52
53         $m->connect('api/statuses/retweeted_to_me.:format',
54                     array('action' => 'ApiTimelineRetweetedToMe',
55                           'format' => '(xml|json|atom|as)'));
56
57         $m->connect('api/statuses/retweets_of_me.:format',
58                     array('action' => 'ApiTimelineRetweetsOfMe',
59                           'format' => '(xml|json|atom|as)'));
60
61         $m->connect('api/statuses/retweet/:id.:format',
62                     array('action' => 'ApiStatusesRetweet',
63                           'id' => '[0-9]+',
64                           'format' => '(xml|json)'));
65
66         $m->connect('api/statuses/retweets/:id.:format',
67                     array('action' => 'ApiStatusesRetweets',
68                           'id' => '[0-9]+',
69                           'format' => '(xml|json)'));
70     }
71
72     // FIXME: Set this to abstract public in lib/activityhandlerplugin.php when all plugins have migrated!
73     protected function saveObjectFromActivity(Activity $act, Notice $stored, array $options=array())
74     {
75         assert($this->isMyActivity($act));
76
77         // The below algorithm is mainly copied from the previous Ostatus_profile->processShare()
78
79         if (count($act->objects) !== 1) {
80             // TRANS: Client exception thrown when trying to share multiple activities at once.
81             throw new ClientException(_m('Can only handle share activities with exactly one object.'));
82         }
83
84         $shared = $act->objects[0];
85         if (!$shared instanceof Activity) {
86             // TRANS: Client exception thrown when trying to share a non-activity object.
87             throw new ClientException(_m('Can only handle shared activities.'));
88         }
89
90         $sharedUri = $shared->id;
91         if (!empty($shared->objects[0]->id)) {
92             // Because StatusNet since commit 8cc4660 sets $shared->id to a TagURI which
93             // fucks up federation, because the URI is no longer recognised by the origin.
94             // So we set it to the object ID if it exists, otherwise we trust $shared->id
95             $sharedUri = $shared->objects[0]->id;
96         }
97         if (empty($sharedUri)) {
98             throw new ClientException(_m('Shared activity does not have an id'));
99         }
100
101         try {
102             // First check if we have the shared activity. This has to be done first, because
103             // we can't use these functions to "ensureActivityObjectProfile" of a local user,
104             // who might be the creator of the shared activity in question.
105             $sharedNotice = Notice::getByUri($sharedUri);
106         } catch (NoResultException $e) {
107             // If no locally stored notice is found, process it!
108             // TODO: Remember to check Deleted_notice!
109             // TODO: If a post is shared that we can't retrieve - what to do?
110             $other = Ostatus_profile::ensureActivityObjectProfile($shared->actor);
111             $sharedNotice = $other->processActivity($shared, 'push');   // FIXME: push/salmon/what?
112             if (!$sharedNotice instanceof Notice) {
113                 // And if we apparently can't get the shared notice, we'll abort the whole thing.
114                 // TRANS: Client exception thrown when saving an activity share fails.
115                 // TRANS: %s is a share ID.
116                 throw new ClientException(sprintf(_m('Failed to save activity %s.'), $sharedUri));
117             }
118         } catch (FeedSubException $e) {
119             // Remote feed could not be found or verified, should we
120             // transform this into an "RT @user Blah, blah, blah..."?
121             common_log(LOG_INFO, __METHOD__ . ' got a ' . get_class($e) . ': ' . $e->getMessage());
122             return false;
123         }
124
125         // We don't have to save a repeat in a separate table, we can
126         // find repeats by just looking at the notice.repeat_of field.
127
128         // By returning true here instead of something that evaluates
129         // to false, we show that we have processed everything properly.
130         return true;
131     }
132
133     // FIXME: Put this in lib/activityhandlerplugin.php when we're ready
134     //          with the other microapps/activityhandlers as well.
135     //          Also it should be StartNoticeAsActivity (with a prepped Activity, including ->context etc.)
136     public function onEndNoticeAsActivity(Notice $stored, Activity $act, Profile $scoped=null)
137     {
138         if (!$this->isMyNotice($stored)) {
139             return true;
140         }
141
142         common_debug('Extending activity '.$stored->id.' with '.get_called_class());
143         $this->extendActivity($stored, $act, $scoped);
144         return false;
145     }
146
147     public function extendActivity(Notice $stored, Activity $act, Profile $scoped=null)
148     {
149         // TODO: How to handle repeats of deleted notices?
150         $target = Notice::getById($stored->repeat_of);
151         // TRANS: A repeat activity's title. %1$s is repeater's nickname
152         //        and %2$s is the repeated user's nickname.
153         $act->title = sprintf(_('%1$s repeated a notice by %2$s'),
154                               $stored->getProfile()->getNickname(),
155                               $target->getProfile()->getNickname());
156         $act->objects[] = $target->asActivity($scoped);
157     }
158
159     public function activityObjectFromNotice(Notice $notice)
160     {
161         // Repeat is a little bit special. As it's an activity, our
162         // ActivityObject is instead turned into an Activity
163         $object          = new Activity();
164         $object->verb    = ActivityVerb::SHARE;
165         $object->content = $notice->rendered;
166         $this->extendActivity($stored, $act);
167
168         return $object;
169     }
170
171     public function deleteRelated(Notice $notice)
172     {
173         // No action needed as we don't have a separate table for share objects.
174         return true;
175     }
176
177     // API stuff
178
179     /**
180      * show the "favorite" form in the notice options element
181      * FIXME: Don't let a NoticeListItemAdapter slip in here (or extend that from NoticeListItem)
182      *
183      * @return void
184      */
185     public function onEndShowNoticeOptionItems($nli)
186     {
187         // FIXME: Use bitmasks (but be aware that PUBLIC_SCOPE is 0!)
188         if ($nli->notice->scope == Notice::PUBLIC_SCOPE ||
189                 $nli->notice->scope == Notice::SITE_SCOPE) {
190             $scoped = Profile::current();
191             if ($scoped instanceof Profile &&
192                     $scoped->getID() !== $nli->notice->getProfile()->getID()) {
193
194                 if ($scoped->hasRepeated($nli->notice)) {
195                     $nli->out->element('span', array('class' => 'repeated',
196                                                       // TRANS: Title for repeat form status in notice list when a notice has been repeated.
197                                                       'title' => _('Notice repeated.')),
198                                         // TRANS: Repeat form status in notice list when a notice has been repeated.
199                                         _('Repeated'));
200                 } else {
201                     $repeat = new RepeatForm($nli->out, $nli->notice);
202                     $repeat->show();
203                 }
204             }
205         }
206     }
207
208     public function showNoticeListItem(NoticeListItem $nli)
209     {
210         // pass
211     }
212     public function openNoticeListItemElement(NoticeListItem $nli)
213     {
214         // pass
215     }
216     public function closeNoticeListItemElement(NoticeListItem $nli)
217     {
218         // pass
219     }
220
221     /**
222      * EndInterpretCommand for FavoritePlugin will handle the 'fav' command
223      * using the class FavCommand.
224      *
225      * @param string  $cmd     Command being run
226      * @param string  $arg     Rest of the message (including address)
227      * @param User    $user    User sending the message
228      * @param Command &$result The resulting command object to be run.
229      *
230      * @return boolean hook value
231      */
232     public function onStartInterpretCommand($cmd, $arg, $user, &$result)
233     {
234         if ($result === false && in_array($cmd, array('repeat', 'rp', 'rt', 'rd'))) {
235             if (empty($arg)) {
236                 $result = null;
237             } else {
238                 list($other, $extra) = CommandInterpreter::split_arg($arg);
239                 if (!empty($extra)) {
240                     $result = null;
241                 } else {
242                     $result = new RepeatCommand($user, $other);
243                 }
244             }
245             return false;
246         }
247         return true;
248     }
249
250     public function onHelpCommandMessages(HelpCommand $help, array &$commands)
251     {
252         // TRANS: Help message for IM/SMS command "fav <nickname>".
253         $commands['fav <nickname>'] = _m('COMMANDHELP', "add user's last notice as a 'fave'");
254         // TRANS: Help message for IM/SMS command "fav #<notice_id>".
255         $commands['fav #<notice_id>'] = _m('COMMANDHELP', "add notice with the given id as a 'fave'");
256     }
257
258     /**
259      * Are we allowed to perform a certain command over the API?
260      */
261     public function onCommandSupportedAPI(Command $cmd, &$supported)
262     {
263         $supported = $supported || $cmd instanceof RepeatCommand;
264     }
265
266     protected function getActionTitle(ManagedAction $action, $verb, Notice $target, Profile $scoped)
267     {
268         // return page title
269     }
270
271     protected function doActionPreparation(ManagedAction $action, $verb, Notice $target, Profile $scoped)
272     {
273         // prepare Action?
274     }
275
276     protected function doActionPost(ManagedAction $action, $verb, Notice $target, Profile $scoped)
277     {
278         // handle repeat POST
279     }
280
281     protected function getActivityForm(ManagedAction $action, $verb, Notice $target, Profile $scoped)
282     {
283         return new RepeatForm($action, $target);
284     }
285
286     public function onPluginVersion(array &$versions)
287     {
288         $versions[] = array('name' => 'Share verb',
289                             'version' => GNUSOCIAL_VERSION,
290                             'author' => 'Mikael Nordfeldth',
291                             'homepage' => 'https://gnu.io/',
292                             'rawdescription' =>
293                             // TRANS: Plugin description.
294                             _m('Shares (repeats) using ActivityStreams.'));
295
296         return true;
297     }
298 }