]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Bookmark/BookmarkPlugin.php
Moved functions into ActivityHandlerPlugin from MicroAppPlugin
[quix0rs-gnu-social.git] / plugins / Bookmark / BookmarkPlugin.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * A plugin to enable social-bookmarking functionality
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  SocialBookmark
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 /**
36  * Bookmark plugin main class
37  *
38  * @category  Bookmark
39  * @package   StatusNet
40  * @author    Brion Vibber <brionv@status.net>
41  * @author    Evan Prodromou <evan@status.net>
42  * @copyright 2010 StatusNet, Inc.
43  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
44  * @link      http://status.net/
45  */
46 class BookmarkPlugin extends MicroAppPlugin
47 {
48     const VERSION         = '0.1';
49     const IMPORTDELICIOUS = 'BookmarkPlugin:IMPORTDELICIOUS';
50
51     /**
52      * Authorization for importing delicious bookmarks
53      *
54      * By default, everyone can import bookmarks except silenced people.
55      *
56      * @param Profile $profile Person whose rights to check
57      * @param string  $right   Right to check; const value
58      * @param boolean &$result Result of the check, writeable
59      *
60      * @return boolean hook value
61      */
62     function onUserRightsCheck($profile, $right, &$result)
63     {
64         if ($right == self::IMPORTDELICIOUS) {
65             $result = !$profile->isSilenced();
66             return false;
67         }
68         return true;
69     }
70
71     /**
72      * Database schema setup
73      *
74      * @see Schema
75      * @see ColumnDef
76      *
77      * @return boolean hook value; true means continue processing, false means stop.
78      */
79     function onCheckSchema()
80     {
81         $schema = Schema::get();
82
83         $schema->ensureTable('bookmark', Bookmark::schemaDef());
84
85         return true;
86     }
87
88     /**
89      * Show the CSS necessary for this plugin
90      *
91      * @param Action $action the action being run
92      *
93      * @return boolean hook value
94      */
95     function onEndShowStyles($action)
96     {
97         $action->cssLink($this->path('css/bookmark.css'));
98         return true;
99     }
100
101     function onEndShowScripts($action)
102     {
103         $action->script($this->path('js/bookmark.js'));
104         return true;
105     }
106
107     /**
108      * Map URLs to actions
109      *
110      * @param Net_URL_Mapper $m path-to-action mapper
111      *
112      * @return boolean hook value; true means continue processing, false means stop.
113      */
114     function onRouterInitialized($m)
115     {
116         if (common_config('singleuser', 'enabled')) {
117             $nickname = User::singleUserNickname();
118             $m->connect('bookmarks',
119                         array('action' => 'bookmarks', 'nickname' => $nickname));
120             $m->connect('bookmarks/rss',
121                         array('action' => 'bookmarksrss', 'nickname' => $nickname));
122         } else {
123             $m->connect(':nickname/bookmarks',
124                         array('action' => 'bookmarks'),
125                         array('nickname' => Nickname::DISPLAY_FMT));
126             $m->connect(':nickname/bookmarks/rss',
127                         array('action' => 'bookmarksrss'),
128                         array('nickname' => Nickname::DISPLAY_FMT));
129         }
130
131         $m->connect('api/bookmarks/:id.:format',
132                     array('action' => 'ApiTimelineBookmarks',
133                           'id' => Nickname::INPUT_FMT,
134                           'format' => '(xml|json|rss|atom|as)'));
135
136         $m->connect('main/bookmark/new',
137                     array('action' => 'newbookmark'),
138                     array('id' => '[0-9]+'));
139
140         $m->connect('main/bookmark/popup',
141                     array('action' => 'bookmarkpopup'));
142
143         $m->connect('main/bookmark/import',
144                     array('action' => 'importdelicious'));
145
146         $m->connect('main/bookmark/forurl',
147                     array('action' => 'bookmarkforurl'));
148
149         $m->connect('bookmark/:id',
150                     array('action' => 'showbookmark'),
151                     array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'));
152
153         $m->connect('notice/by-url/:id',
154                     array('action' => 'noticebyurl'),
155                     array('id' => '[0-9]+'));
156
157         return true;
158     }
159
160
161     /**
162      * Add our two queue handlers to the queue manager
163      *
164      * @param QueueManager $qm current queue manager
165      *
166      * @return boolean hook value
167      */
168     function onEndInitializeQueueManager($qm)
169     {
170         $qm->connect('dlcsback', 'DeliciousBackupImporter');
171         $qm->connect('dlcsbkmk', 'DeliciousBookmarkImporter');
172         return true;
173     }
174
175     /**
176      * Plugin version data
177      *
178      * @param array &$versions array of version data
179      *
180      * @return value
181      */
182     function onPluginVersion(&$versions)
183     {
184         $versions[] = array('name' => 'Bookmark',
185                             'version' => self::VERSION,
186                             'author' => 'Evan Prodromou, Stephane Berube, Jean Baptiste Favre',
187                             'homepage' => 'http://status.net/wiki/Plugin:Bookmark',
188                             'description' =>
189                             // TRANS: Plugin description.
190                             _m('Simple extension for supporting bookmarks. ') .
191                             'BookmarkList feature has been developped by Stephane Berube. ' .
192                             'Integration has been done by Jean Baptiste Favre.');
193         return true;
194     }
195
196     /**
197      * Load our document if requested
198      *
199      * @param string &$title  Title to fetch
200      * @param string &$output HTML to output
201      *
202      * @return boolean hook value
203      */
204     function onStartLoadDoc(&$title, &$output)
205     {
206         if ($title == 'bookmarklet') {
207             $filename = INSTALLDIR.'/plugins/Bookmark/bookmarklet';
208
209             $c      = file_get_contents($filename);
210             $output = common_markup_to_html($c);
211             return false; // success!
212         }
213
214         return true;
215     }
216
217     /**
218      * Show a link to our delicious import page on profile settings form
219      *
220      * @param Action $action Profile settings action being shown
221      *
222      * @return boolean hook value
223      */
224     function onEndProfileSettingsActions($action)
225     {
226         $user = common_current_user();
227
228         if (!empty($user) && $user->hasRight(self::IMPORTDELICIOUS)) {
229             $action->elementStart('li');
230             $action->element('a',
231                              array('href' => common_local_url('importdelicious')),
232                              // TRANS: Link text in proile leading to import form.
233                              _m('Import del.icio.us bookmarks'));
234             $action->elementEnd('li');
235         }
236
237         return true;
238     }
239
240     /**
241      * Output our CSS class for bookmark notice list elements
242      *
243      * @param NoticeListItem $nli The item being shown
244      *
245      * @return boolean hook value
246      */
247
248     function onStartOpenNoticeListItemElement($nli)
249     {
250         if (!$this->isMyNotice($nli->notice)) {
251                 return true;
252         }
253         
254         $nb = Bookmark::getByNotice($nli->notice);
255         
256         if (empty($nb)) {
257                 $this->log(LOG_INFO, "Notice {$nli->notice->id} has bookmark class but no matching Bookmark record.");
258                 return true;
259         }
260                 
261             $id = (empty($nli->repeat)) ? $nli->notice->id : $nli->repeat->id;
262             $class = 'h-entry notice bookmark';
263             if ($nli->notice->scope != 0 && $nli->notice->scope != 1) {
264                 $class .= ' limited-scope';
265             }
266             $nli->out->elementStart('li', array('class' => $class,
267                                                 'id' => 'notice-' . $id));
268                                                 
269             Event::handle('EndOpenNoticeListItemElement', array($nli));
270             return false;
271     }
272
273     /**
274      * Modify the default menu to link to our custom action
275      *
276      * Using event handlers, it's possible to modify the default UI for pages
277      * almost without limit. In this method, we add a menu item to the default
278      * primary menu for the interface to link to our action.
279      *
280      * The Action class provides a rich set of events to hook, as well as output
281      * methods.
282      *
283      * @param Action $action The current action handler. Use this to
284      * do any output.
285      *
286      * @return boolean hook value; true means continue processing, false means stop.
287      *
288      * @see Action
289      */
290     function onEndPersonalGroupNav(Menu $menu, Profile $target, Profile $scoped=null)
291     {
292         $menu->menuItem(common_local_url('bookmarks', array('nickname' => $target->getNickname())),
293                           // TRANS: Menu item in sample plugin.
294                           _m('Bookmarks'),
295                           // TRANS: Menu item title in sample plugin.
296                           _m('A list of your bookmarks'), false, 'nav_timeline_bookmarks');
297         return true;
298     }
299
300     function types()
301     {
302         return array(ActivityObject::BOOKMARK);
303     }
304
305     /**
306      * When a notice is deleted, delete the related Bookmark
307      *
308      * @param Notice $notice Notice being deleted
309      *
310      * @return boolean hook value
311      */
312     function deleteRelated(Notice $notice)
313     {
314         if ($this->isMyNotice($notice)) {
315                 
316                 $nb = Bookmark::getByNotice($notice);
317
318                 if (!empty($nb)) {
319                 $nb->delete();
320                 }
321         }
322         
323         return true;
324     }
325
326     /**
327      * Save a bookmark from an activity
328      *
329      * @param Activity $activity Activity to save
330      * @param Profile  $actor    Profile to use as author
331      * @param array    $options  Options to pass to bookmark-saving code
332      *
333      * @return Notice resulting notice
334      */
335     function saveNoticeFromActivity(Activity $activity, Profile $actor, array $options=array())
336     {
337         $bookmark = $activity->objects[0];
338
339         $relLinkEls = ActivityUtils::getLinks($bookmark->element, 'related');
340
341         if (count($relLinkEls) < 1) {
342             // TRANS: Client exception thrown when a bookmark is formatted incorrectly.
343             throw new ClientException(_m('Expected exactly 1 link '.
344                                         'rel=related in a Bookmark.'));
345         }
346
347         if (count($relLinkEls) > 1) {
348             common_log(LOG_WARNING,
349                        "Got too many link rel=related in a Bookmark.");
350         }
351
352         $linkEl = $relLinkEls[0];
353
354         $url = $linkEl->getAttribute('href');
355
356         $tags = array();
357
358         foreach ($activity->categories as $category) {
359             $tags[] = common_canonical_tag($category->term);
360         }
361
362         if (!empty($activity->time)) {
363             $options['created'] = common_sql_date($activity->time);
364         }
365
366         // Fill in location if available
367
368         $location = $activity->context->location;
369
370         if ($location) {
371             $options['lat'] = $location->lat;
372             $options['lon'] = $location->lon;
373             if ($location->location_id) {
374                 $options['location_ns'] = $location->location_ns;
375                 $options['location_id'] = $location->location_id;
376             }
377         }
378
379         $options['groups']  = array();
380         $options['replies'] = array();  // TODO: context->attention
381
382         foreach ($activity->context->attention as $attnUrl=>$type) {
383             try {
384                 $other = Profile::fromUri($attnUrl);
385                 if ($other->isGroup()) {
386                     $options['groups'][] = $other->id;
387                 } else {
388                     $options['replies'][] = $attnUrl;
389                 }
390             } catch (UnknownUriException $e) {
391                 // We simply don't know this URI, despite lookup attempts.
392             }
393         }
394
395         // Maintain direct reply associations
396         // @fixme what about conversation ID?
397
398         if (!empty($activity->context->replyToID)) {
399             $orig = Notice::getKV('uri',
400                                       $activity->context->replyToID);
401             if (!empty($orig)) {
402                 $options['reply_to'] = $orig->id;
403             }
404         }
405
406         return Bookmark::saveNew($actor,
407                                  $bookmark->title,
408                                  $url,
409                                  $tags,
410                                  $bookmark->summary,
411                                  $options);
412     }
413
414     function activityObjectFromNotice(Notice $notice)
415     {
416         assert($this->isMyNotice($notice));
417
418         common_log(LOG_INFO,
419                    "Formatting notice {$notice->uri} as a bookmark.");
420
421         $object = new ActivityObject();
422         $nb = Bookmark::getByNotice($notice);
423
424         $object->id      = $notice->uri;
425         $object->type    = ActivityObject::BOOKMARK;
426         $object->title   = $nb->title;
427         $object->summary = $nb->description;
428         $object->link    = $notice->getUrl();
429
430         // Attributes of the URL
431
432         $attachments = $notice->attachments();
433
434         if (count($attachments) != 1) {
435             // TRANS: Server exception thrown when a bookmark has multiple attachments.
436             throw new ServerException(_m('Bookmark notice with the '.
437                                         'wrong number of attachments.'));
438         }
439
440         $target = $attachments[0];
441
442         $attrs = array('rel' => 'related',
443                        'href' => $target->url);
444
445         if (!empty($target->title)) {
446             $attrs['title'] = $target->title;
447         }
448
449         $object->extra[] = array('link', $attrs, null);
450
451         // Attributes of the thumbnail, if any
452
453         try {
454             $thumbnail = $target->getThumbnail();
455             $tattrs = array('rel' => 'preview',
456                             'href' => $thumbnail->url);
457
458             if (!empty($thumbnail->width)) {
459                 $tattrs['media:width'] = $thumbnail->width;
460             }
461
462             if (!empty($thumbnail->height)) {
463                 $tattrs['media:height'] = $thumbnail->height;
464             }
465
466             $object->extra[] = array('link', $tattrs, null);
467         } catch (UnsupportedMediaException $e) {
468             // No image thumbnail metadata available
469         }
470
471         return $object;
472     }
473
474     /**
475      * Given a notice list item, returns an adapter specific
476      * to this plugin.
477      *
478      * @param NoticeListItem $nli item to adapt
479      *
480      * @return NoticeListItemAdapter adapter or null
481      */
482     function adaptNoticeListItem($nli)
483     {
484         return new BookmarkListItem($nli);
485     }
486
487     function entryForm($out)
488     {
489         return new InitialBookmarkForm($out);
490     }
491
492     function tag()
493     {
494         return 'bookmark';
495     }
496
497     function appTitle()
498     {
499         // TRANS: Application title.
500         return _m('TITLE','Bookmark');
501     }
502
503     function onEndUpgrade()
504     {
505         // Version 0.9.x of the plugin didn't stamp notices
506         // with verb and object-type (for obvious reasons). Update
507         // those notices here.
508
509         $notice = new Notice();
510         
511         $notice->whereAdd('exists (select uri from bookmark where bookmark.uri = notice.uri)');
512         $notice->whereAdd('((object_type is null) or (object_type = "' .ActivityObject::NOTE.'"))');
513
514         $notice->find();
515
516         while ($notice->fetch()) {
517             $original = clone($notice);
518             $notice->verb        = ActivityVerb::POST;
519             $notice->object_type = ActivityObject::BOOKMARK;
520             $notice->update($original);
521         }
522     }
523
524     public function activityObjectOutputJson(ActivityObject $obj, array &$out)
525     {
526         assert($obj->type == ActivityObject::BOOKMARK);
527
528         $bm = Bookmark::getKV('uri', $obj->id);
529
530         if (empty($bm)) {
531             throw new ServerException("Unknown bookmark: " . $obj->id);
532         }
533
534         $out['displayName'] = $bm->title;
535         $out['targetUrl']   = $bm->url;
536
537         return true;
538     }
539 }