]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Share/SharePlugin.php
Merge remote-tracking branch 'upstream/master' into social-master
[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     // Share is a bit special and $act->objects[0] should be an Activity
44     // instead of ActivityObject! Therefore also $act->objects[0]->type is not set.
45     public function isMyActivity(Activity $act) {
46         return (count($act->objects) == 1
47             && ($act->objects[0] instanceof Activity)
48             && $this->isMyVerb($act->verb));
49     }
50
51     public function onRouterInitialized(URLMapper $m)
52     {
53         // Web UI actions
54         $m->connect('main/repeat', array('action' => 'repeat'));
55
56         // Share for Twitter API ("Retweet")
57         $m->connect('api/statuses/retweeted_by_me.:format',
58                     array('action' => 'ApiTimelineRetweetedByMe',
59                           'format' => '(xml|json|atom|as)'));
60
61         $m->connect('api/statuses/retweeted_to_me.:format',
62                     array('action' => 'ApiTimelineRetweetedToMe',
63                           'format' => '(xml|json|atom|as)'));
64
65         $m->connect('api/statuses/retweets_of_me.:format',
66                     array('action' => 'ApiTimelineRetweetsOfMe',
67                           'format' => '(xml|json|atom|as)'));
68
69         $m->connect('api/statuses/retweet/:id.:format',
70                     array('action' => 'ApiStatusesRetweet',
71                           'id' => '[0-9]+',
72                           'format' => '(xml|json)'));
73
74         $m->connect('api/statuses/retweets/:id.:format',
75                     array('action' => 'ApiStatusesRetweets',
76                           'id' => '[0-9]+',
77                           'format' => '(xml|json)'));
78     }
79
80     // FIXME: Set this to abstract public in lib/activityhandlerplugin.php when all plugins have migrated!
81     protected function saveObjectFromActivity(Activity $act, Notice $stored, array $options=array())
82     {
83         assert($this->isMyActivity($act));
84
85         // The below algorithm is mainly copied from the previous Ostatus_profile->processShare()
86
87         if (count($act->objects) !== 1) {
88             // TRANS: Client exception thrown when trying to share multiple activities at once.
89             throw new ClientException(_m('Can only handle share activities with exactly one object.'));
90         }
91
92         $shared = $act->objects[0];
93         if (!$shared instanceof Activity) {
94             // TRANS: Client exception thrown when trying to share a non-activity object.
95             throw new ClientException(_m('Can only handle shared activities.'));
96         }
97
98         $sharedUri = $shared->id;
99         if (!empty($shared->objects[0]->id)) {
100             // Because StatusNet since commit 8cc4660 sets $shared->id to a TagURI which
101             // fucks up federation, because the URI is no longer recognised by the origin.
102             // So we set it to the object ID if it exists, otherwise we trust $shared->id
103             $sharedUri = $shared->objects[0]->id;
104         }
105         if (empty($sharedUri)) {
106             throw new ClientException(_m('Shared activity does not have an id'));
107         }
108
109         try {
110             // First check if we have the shared activity. This has to be done first, because
111             // we can't use these functions to "ensureActivityObjectProfile" of a local user,
112             // who might be the creator of the shared activity in question.
113             $sharedNotice = Notice::getByUri($sharedUri);
114         } catch (NoResultException $e) {
115             // If no locally stored notice is found, process it!
116             // TODO: Remember to check Deleted_notice!
117             // TODO: If a post is shared that we can't retrieve - what to do?
118             $other = Ostatus_profile::ensureActivityObjectProfile($shared->actor);
119             $sharedNotice = Notice::saveActivity($shared, $other->localProfile(), array('source'=>'share'));
120         } catch (FeedSubException $e) {
121             // Remote feed could not be found or verified, should we
122             // transform this into an "RT @user Blah, blah, blah..."?
123             common_log(LOG_INFO, __METHOD__ . ' got a ' . get_class($e) . ': ' . $e->getMessage());
124             return false;
125         }
126
127         // Setting this here because when the algorithm gets back to
128         // Notice::saveActivity it will update the Notice object.
129         $stored->repeat_of = $sharedNotice->getID();
130         $stored->conversation = $sharedNotice->conversation;
131         $stored->object_type = ActivityUtils::resolveUri(ActivityObject::ACTIVITY, true);
132
133         // We don't have to save a repeat in a separate table, we can
134         // find repeats by just looking at the notice.repeat_of field.
135
136         // By returning true here instead of something that evaluates
137         // to false, we show that we have processed everything properly.
138         return true;
139     }
140
141     // FIXME: Put this in lib/activityhandlerplugin.php when we're ready
142     //          with the other microapps/activityhandlers as well.
143     //          Also it should be StartNoticeAsActivity (with a prepped Activity, including ->context etc.)
144     public function onEndNoticeAsActivity(Notice $stored, Activity $act, Profile $scoped=null)
145     {
146         if (!$this->isMyNotice($stored)) {
147             return true;
148         }
149
150         common_debug('Extending activity '.$stored->id.' with '.get_called_class());
151         $this->extendActivity($stored, $act, $scoped);
152         return false;
153     }
154
155     public function extendActivity(Notice $stored, Activity $act, Profile $scoped=null)
156     {
157         // TODO: How to handle repeats of deleted notices?
158         $target = Notice::getByID($stored->repeat_of);
159         // TRANS: A repeat activity's title. %1$s is repeater's nickname
160         //        and %2$s is the repeated user's nickname.
161         $act->title = sprintf(_('%1$s repeated a notice by %2$s'),
162                               $stored->getProfile()->getNickname(),
163                               $target->getProfile()->getNickname());
164         $act->objects[] = $target->asActivity($scoped);
165     }
166
167     public function activityObjectFromNotice(Notice $stored)
168     {
169         // Repeat is a little bit special. As it's an activity, our
170         // ActivityObject is instead turned into an Activity
171         $object          = new Activity();
172         $object->actor   = $stored->getProfile()->asActivityObject();
173         $object->verb    = ActivityVerb::SHARE;
174         $object->content = $stored->rendered;
175         $this->extendActivity($stored, $object);
176
177         return $object;
178     }
179
180     public function deleteRelated(Notice $notice)
181     {
182         // No action needed as we don't have a separate table for share objects.
183         return true;
184     }
185
186     // Layout stuff
187
188     /**
189      * show a link to the author of repeat
190      *
191      * FIXME: Some repeat stuff still in lib/noticelistitem.php! ($nli->repeat etc.)
192      */
193     public function onEndShowNoticeInfo(NoticeListItem $nli)
194     {
195         if (!empty($nli->repeat)) {
196             $repeater = $nli->repeat->getProfile();
197
198             $attrs = array('href' => $repeater->getUrl(),
199                            'class' => 'h-card p-author',
200                            'title' => $repeater->getFancyName());
201
202             $nli->out->elementStart('span', 'repeat');
203
204             // TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname.
205             $nli->out->raw(_('Repeated by').' ');
206
207             $nli->out->element('a', $attrs, $repeater->getNickname());
208
209             $nli->out->elementEnd('span');
210         }
211     }
212
213     public function onEndShowThreadedNoticeTailItems(NoticeListItem $nli, Notice $notice, &$threadActive)
214     {
215         if ($nli instanceof ThreadedNoticeListSubItem) {
216             // The sub-items are replies to a conversation, thus we use different HTML elements etc.
217             $item = new ThreadedNoticeListInlineRepeatsItem($notice, $nli->out);
218         } else {
219             $item = new ThreadedNoticeListRepeatsItem($notice, $nli->out);
220         }
221         $threadActive = $item->show() || $threadActive;
222         return true;
223     }
224
225     /**
226      * show the "repeat" form in the notice options element
227      * FIXME: Don't let a NoticeListItemAdapter slip in here (or extend that from NoticeListItem)
228      *
229      * @return void
230      */
231     public function onEndShowNoticeOptionItems($nli)
232     {
233         // FIXME: Use bitmasks (but be aware that PUBLIC_SCOPE is 0!)
234         // Also: AHHH, $scope and $scoped are scarily similar looking.
235         $scope = $nli->notice->getScope();
236         if ($scope === Notice::PUBLIC_SCOPE || $scope === Notice::SITE_SCOPE) {
237             $scoped = Profile::current();
238             if ($scoped instanceof Profile &&
239                     $scoped->getID() !== $nli->notice->getProfile()->getID()) {
240
241                 if ($scoped->hasRepeated($nli->notice)) {
242                     $nli->out->element('span', array('class' => 'repeated',
243                                                       // TRANS: Title for repeat form status in notice list when a notice has been repeated.
244                                                       'title' => _('Notice repeated.')),
245                                         // TRANS: Repeat form status in notice list when a notice has been repeated.
246                                         _('Repeated'));
247                 } else {
248                     $repeat = new RepeatForm($nli->out, $nli->notice);
249                     $repeat->show();
250                 }
251             }
252         }
253     }
254
255     protected function showNoticeListItem(NoticeListItem $nli)
256     {
257         // pass
258     }
259     public function openNoticeListItemElement(NoticeListItem $nli)
260     {
261         // pass
262     }
263     public function closeNoticeListItemElement(NoticeListItem $nli)
264     {
265         // pass
266     }
267
268     // API stuff
269
270     /**
271      * Typically just used to fill out Twitter-compatible API status data.
272      *
273      * FIXME: Make all the calls before this end up with a Notice instead of ArrayWrapper please...
274      */
275     public function onNoticeSimpleStatusArray($notice, array &$status, Profile $scoped=null, array $args=array())
276     {
277         $status['repeated'] = $scoped instanceof Profile
278                             ? $scoped->hasRepeated($notice)
279                             : false;
280
281         if ($status['repeated'] === true) {
282             // Qvitter API wants the "repeated_id" value set too.
283             $repeated = Notice::pkeyGet(array('profile_id' => $scoped->getID(),
284                                               'repeat_of' => $notice->getID(),
285                                               'verb' => ActivityVerb::SHARE));
286             $status['repeated_id'] = $repeated->getID();
287         }
288     }
289
290     public function onTwitterUserArray(Profile $profile, array &$userdata, Profile $scoped=null, array $args=array())
291     {
292         $userdata['favourites_count'] = Fave::countByProfile($profile);
293     }
294
295     // Command stuff
296
297     /**
298      * EndInterpretCommand for RepeatPlugin will handle the 'repeat' command
299      * using the class RepeatCommand.
300      *
301      * @param string  $cmd     Command being run
302      * @param string  $arg     Rest of the message (including address)
303      * @param User    $user    User sending the message
304      * @param Command &$result The resulting command object to be run.
305      *
306      * @return boolean hook value
307      */
308     public function onStartInterpretCommand($cmd, $arg, $user, &$result)
309     {
310         if ($result === false && in_array($cmd, array('repeat', 'rp', 'rt', 'rd'))) {
311             if (empty($arg)) {
312                 $result = null;
313             } else {
314                 list($other, $extra) = CommandInterpreter::split_arg($arg);
315                 if (!empty($extra)) {
316                     $result = null;
317                 } else {
318                     $result = new RepeatCommand($user, $other);
319                 }
320             }
321             return false;
322         }
323         return true;
324     }
325
326     public function onHelpCommandMessages(HelpCommand $help, array &$commands)
327     {
328         // TRANS: Help message for IM/SMS command "repeat #<notice_id>".
329         $commands['repeat #<notice_id>'] = _m('COMMANDHELP', "repeat a notice with a given id");
330         // TRANS: Help message for IM/SMS command "repeat <nickname>".
331         $commands['repeat <nickname>']   = _m('COMMANDHELP', "repeat the last notice from user");
332     }
333
334     /**
335      * Are we allowed to perform a certain command over the API?
336      */
337     public function onCommandSupportedAPI(Command $cmd, &$supported)
338     {
339         $supported = $supported || $cmd instanceof RepeatCommand;
340     }
341
342     protected function getActionTitle(ManagedAction $action, $verb, Notice $target, Profile $scoped)
343     {
344         // return page title
345     }
346
347     protected function doActionPreparation(ManagedAction $action, $verb, Notice $target, Profile $scoped)
348     {
349         // prepare Action?
350     }
351
352     protected function doActionPost(ManagedAction $action, $verb, Notice $target, Profile $scoped)
353     {
354         // handle repeat POST
355     }
356
357     protected function getActivityForm(ManagedAction $action, $verb, Notice $target, Profile $scoped)
358     {
359         return new RepeatForm($action, $target);
360     }
361
362     public function onPluginVersion(array &$versions)
363     {
364         $versions[] = array('name' => 'Share verb',
365                             'version' => GNUSOCIAL_VERSION,
366                             'author' => 'Mikael Nordfeldth',
367                             'homepage' => 'https://gnu.io/',
368                             'rawdescription' =>
369                             // TRANS: Plugin description.
370                             _m('Shares (repeats) using ActivityStreams.'));
371
372         return true;
373     }
374 }