2010-12-18 07:27:14 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2010, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* A plugin to enable social-bookmarking functionality
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category SocialBookmark
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
2010-12-21 15:13:20 +00:00
|
|
|
exit(1);
|
2010-12-18 07:27:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bookmark plugin main class
|
|
|
|
*
|
|
|
|
* @category Bookmark
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Brion Vibber <brionv@status.net>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
2011-03-06 21:33:36 +00:00
|
|
|
class BookmarkPlugin extends MicroAppPlugin
|
2010-12-18 07:27:14 +00:00
|
|
|
{
|
2010-12-29 22:16:15 +00:00
|
|
|
const VERSION = '0.1';
|
2010-12-29 21:51:59 +00:00
|
|
|
const IMPORTDELICIOUS = 'BookmarkPlugin:IMPORTDELICIOUS';
|
|
|
|
|
2010-12-29 22:16:15 +00:00
|
|
|
/**
|
|
|
|
* Authorization for importing delicious bookmarks
|
|
|
|
*
|
|
|
|
* By default, everyone can import bookmarks except silenced people.
|
|
|
|
*
|
|
|
|
* @param Profile $profile Person whose rights to check
|
|
|
|
* @param string $right Right to check; const value
|
|
|
|
* @param boolean &$result Result of the check, writeable
|
|
|
|
*
|
|
|
|
* @return boolean hook value
|
|
|
|
*/
|
2010-12-29 21:51:59 +00:00
|
|
|
function onUserRightsCheck($profile, $right, &$result)
|
|
|
|
{
|
|
|
|
if ($right == self::IMPORTDELICIOUS) {
|
|
|
|
$result = !$profile->isSilenced();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2010-12-21 15:13:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Database schema setup
|
|
|
|
*
|
|
|
|
* @see Schema
|
|
|
|
* @see ColumnDef
|
|
|
|
*
|
|
|
|
* @return boolean hook value; true means continue processing, false means stop.
|
|
|
|
*/
|
|
|
|
function onCheckSchema()
|
|
|
|
{
|
|
|
|
$schema = Schema::get();
|
|
|
|
|
|
|
|
// For storing user-submitted flags on profiles
|
|
|
|
|
2010-12-25 04:34:15 +00:00
|
|
|
$schema->ensureTable('bookmark',
|
2010-12-30 21:21:14 +00:00
|
|
|
array(new ColumnDef('id',
|
|
|
|
'char',
|
|
|
|
36,
|
|
|
|
false,
|
|
|
|
'PRI'),
|
|
|
|
new ColumnDef('profile_id',
|
2010-12-21 15:13:20 +00:00
|
|
|
'integer',
|
|
|
|
null,
|
|
|
|
false,
|
2010-12-30 21:21:14 +00:00
|
|
|
'MUL'),
|
2010-12-25 04:34:15 +00:00
|
|
|
new ColumnDef('url',
|
|
|
|
'varchar',
|
|
|
|
255,
|
|
|
|
false,
|
2010-12-30 21:21:14 +00:00
|
|
|
'MUL'),
|
2010-12-21 15:13:20 +00:00
|
|
|
new ColumnDef('title',
|
|
|
|
'varchar',
|
|
|
|
255),
|
|
|
|
new ColumnDef('description',
|
2010-12-25 04:34:15 +00:00
|
|
|
'text'),
|
|
|
|
new ColumnDef('uri',
|
|
|
|
'varchar',
|
|
|
|
255,
|
|
|
|
false,
|
|
|
|
'UNI'),
|
|
|
|
new ColumnDef('created',
|
|
|
|
'datetime',
|
|
|
|
null,
|
|
|
|
false,
|
|
|
|
'MUL')));
|
|
|
|
|
2010-12-21 15:13:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the CSS necessary for this plugin
|
|
|
|
*
|
|
|
|
* @param Action $action the action being run
|
|
|
|
*
|
|
|
|
* @return boolean hook value
|
|
|
|
*/
|
|
|
|
function onEndShowStyles($action)
|
|
|
|
{
|
2011-02-03 17:04:54 +00:00
|
|
|
$action->cssLink($this->path('bookmark.css'));
|
2010-12-21 15:13:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-04-18 02:37:51 +01:00
|
|
|
function onEndShowScripts($action)
|
|
|
|
{
|
|
|
|
$action->script($this->path('js/bookmark.js'));
|
|
|
|
return true;
|
|
|
|
}
|
2010-12-21 15:13:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Map URLs to actions
|
|
|
|
*
|
|
|
|
* @param Net_URL_Mapper $m path-to-action mapper
|
|
|
|
*
|
|
|
|
* @return boolean hook value; true means continue processing, false means stop.
|
|
|
|
*/
|
|
|
|
function onRouterInitialized($m)
|
|
|
|
{
|
2012-09-14 16:37:42 +01:00
|
|
|
if (common_config('singleuser', 'enabled')) {
|
|
|
|
$nickname = User::singleUserNickname();
|
|
|
|
$m->connect('bookmarks',
|
|
|
|
array('action' => 'bookmarks', 'nickname' => $nickname));
|
|
|
|
$m->connect('bookmarks/rss',
|
|
|
|
array('action' => 'bookmarksrss', 'nickname' => $nickname));
|
|
|
|
} else {
|
|
|
|
$m->connect(':nickname/bookmarks',
|
|
|
|
array('action' => 'bookmarks'),
|
|
|
|
array('nickname' => Nickname::DISPLAY_FMT));
|
|
|
|
$m->connect(':nickname/bookmarks/rss',
|
|
|
|
array('action' => 'bookmarksrss'),
|
|
|
|
array('nickname' => Nickname::DISPLAY_FMT));
|
|
|
|
}
|
|
|
|
|
|
|
|
$m->connect('api/bookmarks/:id.:format',
|
|
|
|
array('action' => 'ApiTimelineBookmarks',
|
|
|
|
'id' => Nickname::INPUT_FMT,
|
|
|
|
'format' => '(xml|json|rss|atom|as)'));
|
|
|
|
|
2010-12-21 15:13:20 +00:00
|
|
|
$m->connect('main/bookmark/new',
|
|
|
|
array('action' => 'newbookmark'),
|
|
|
|
array('id' => '[0-9]+'));
|
|
|
|
|
2010-12-28 20:58:10 +00:00
|
|
|
$m->connect('main/bookmark/popup',
|
|
|
|
array('action' => 'bookmarkpopup'));
|
2010-12-21 19:43:03 +00:00
|
|
|
|
2010-12-29 21:51:59 +00:00
|
|
|
$m->connect('main/bookmark/import',
|
|
|
|
array('action' => 'importdelicious'));
|
|
|
|
|
2011-04-15 04:44:01 +01:00
|
|
|
$m->connect('main/bookmark/forurl',
|
|
|
|
array('action' => 'bookmarkforurl'));
|
|
|
|
|
2010-12-30 21:21:14 +00:00
|
|
|
$m->connect('bookmark/:id',
|
2010-12-25 04:34:15 +00:00
|
|
|
array('action' => 'showbookmark'),
|
2010-12-30 21:21:14 +00:00
|
|
|
array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'));
|
2010-12-25 04:34:15 +00:00
|
|
|
|
2010-12-28 20:58:10 +00:00
|
|
|
$m->connect('notice/by-url/:id',
|
|
|
|
array('action' => 'noticebyurl'),
|
|
|
|
array('id' => '[0-9]+'));
|
|
|
|
|
2010-12-21 15:13:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-21 19:46:31 +00:00
|
|
|
/**
|
|
|
|
* Add our two queue handlers to the queue manager
|
|
|
|
*
|
|
|
|
* @param QueueManager $qm current queue manager
|
2011-04-06 15:36:35 +01:00
|
|
|
*
|
2010-12-21 19:46:31 +00:00
|
|
|
* @return boolean hook value
|
|
|
|
*/
|
2010-12-21 16:09:01 +00:00
|
|
|
function onEndInitializeQueueManager($qm)
|
|
|
|
{
|
|
|
|
$qm->connect('dlcsback', 'DeliciousBackupImporter');
|
|
|
|
$qm->connect('dlcsbkmk', 'DeliciousBookmarkImporter');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-21 15:13:20 +00:00
|
|
|
/**
|
|
|
|
* Plugin version data
|
|
|
|
*
|
|
|
|
* @param array &$versions array of version data
|
2011-04-06 15:36:35 +01:00
|
|
|
*
|
2010-12-21 15:13:20 +00:00
|
|
|
* @return value
|
|
|
|
*/
|
|
|
|
function onPluginVersion(&$versions)
|
|
|
|
{
|
2011-04-13 20:26:47 +01:00
|
|
|
$versions[] = array('name' => 'Bookmark',
|
2010-12-21 15:13:20 +00:00
|
|
|
'version' => self::VERSION,
|
2012-09-14 16:37:42 +01:00
|
|
|
'author' => 'Evan Prodromou, Stephane Berube, Jean Baptiste Favre',
|
2010-12-21 15:13:20 +00:00
|
|
|
'homepage' => 'http://status.net/wiki/Plugin:Bookmark',
|
2011-04-13 20:26:47 +01:00
|
|
|
'description' =>
|
2011-04-06 15:36:35 +01:00
|
|
|
// TRANS: Plugin description.
|
2012-09-14 16:37:42 +01:00
|
|
|
_m('Simple extension for supporting bookmarks. ') .
|
|
|
|
'BookmarkList feature has been developped by Stephane Berube. ' .
|
|
|
|
'Integration has been done by Jean Baptiste Favre.');
|
2010-12-21 15:13:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
2010-12-21 19:43:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load our document if requested
|
|
|
|
*
|
|
|
|
* @param string &$title Title to fetch
|
|
|
|
* @param string &$output HTML to output
|
|
|
|
*
|
|
|
|
* @return boolean hook value
|
|
|
|
*/
|
|
|
|
function onStartLoadDoc(&$title, &$output)
|
|
|
|
{
|
|
|
|
if ($title == 'bookmarklet') {
|
|
|
|
$filename = INSTALLDIR.'/plugins/Bookmark/bookmarklet';
|
|
|
|
|
|
|
|
$c = file_get_contents($filename);
|
|
|
|
$output = common_markup_to_html($c);
|
|
|
|
return false; // success!
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2010-12-23 17:42:42 +00:00
|
|
|
|
2010-12-29 22:16:15 +00:00
|
|
|
/**
|
|
|
|
* Show a link to our delicious import page on profile settings form
|
|
|
|
*
|
|
|
|
* @param Action $action Profile settings action being shown
|
|
|
|
*
|
|
|
|
* @return boolean hook value
|
|
|
|
*/
|
2010-12-29 22:02:31 +00:00
|
|
|
function onEndProfileSettingsActions($action)
|
|
|
|
{
|
|
|
|
$user = common_current_user();
|
2011-04-06 15:36:35 +01:00
|
|
|
|
2010-12-29 22:02:31 +00:00
|
|
|
if (!empty($user) && $user->hasRight(self::IMPORTDELICIOUS)) {
|
|
|
|
$action->elementStart('li');
|
|
|
|
$action->element('a',
|
|
|
|
array('href' => common_local_url('importdelicious')),
|
2011-04-06 15:36:35 +01:00
|
|
|
// TRANS: Link text in proile leading to import form.
|
2011-03-30 21:30:23 +01:00
|
|
|
_m('Import del.icio.us bookmarks'));
|
2010-12-29 22:02:31 +00:00
|
|
|
$action->elementEnd('li');
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-31 00:57:28 +00:00
|
|
|
/**
|
|
|
|
* Output our CSS class for bookmark notice list elements
|
|
|
|
*
|
|
|
|
* @param NoticeListItem $nli The item being shown
|
|
|
|
*
|
|
|
|
* @return boolean hook value
|
|
|
|
*/
|
|
|
|
|
|
|
|
function onStartOpenNoticeListItemElement($nli)
|
|
|
|
{
|
2011-07-14 20:05:15 +01:00
|
|
|
if (!$this->isMyNotice($nli->notice)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-31 00:57:28 +00:00
|
|
|
$nb = Bookmark::getByNotice($nli->notice);
|
2011-07-14 20:05:15 +01:00
|
|
|
|
|
|
|
if (empty($nb)) {
|
|
|
|
$this->log(LOG_INFO, "Notice {$nli->notice->id} has bookmark class but no matching Bookmark record.");
|
|
|
|
return true;
|
2010-12-31 00:57:28 +00:00
|
|
|
}
|
2011-07-14 20:05:15 +01:00
|
|
|
|
|
|
|
$id = (empty($nli->repeat)) ? $nli->notice->id : $nli->repeat->id;
|
|
|
|
$class = 'hentry notice bookmark';
|
|
|
|
if ($nli->notice->scope != 0 && $nli->notice->scope != 1) {
|
|
|
|
$class .= ' limited-scope';
|
|
|
|
}
|
|
|
|
$nli->out->elementStart('li', array('class' => $class,
|
|
|
|
'id' => 'notice-' . $id));
|
|
|
|
|
|
|
|
Event::handle('EndOpenNoticeListItemElement', array($nli));
|
|
|
|
return false;
|
2010-12-31 00:57:28 +00:00
|
|
|
}
|
|
|
|
|
2012-09-14 16:37:42 +01:00
|
|
|
/**
|
|
|
|
* Modify the default menu to link to our custom action
|
|
|
|
*
|
|
|
|
* Using event handlers, it's possible to modify the default UI for pages
|
|
|
|
* almost without limit. In this method, we add a menu item to the default
|
|
|
|
* primary menu for the interface to link to our action.
|
|
|
|
*
|
|
|
|
* The Action class provides a rich set of events to hook, as well as output
|
|
|
|
* methods.
|
|
|
|
*
|
|
|
|
* @param Action $action The current action handler. Use this to
|
|
|
|
* do any output.
|
|
|
|
*
|
|
|
|
* @return boolean hook value; true means continue processing, false means stop.
|
|
|
|
*
|
|
|
|
* @see Action
|
|
|
|
*/
|
|
|
|
function onEndPersonalGroupNav($action)
|
|
|
|
{
|
|
|
|
$this->user = common_current_user();
|
|
|
|
|
|
|
|
if (!$this->user) {
|
|
|
|
// TRANS: Client error displayed when trying to display bookmarks for a non-existing user.
|
|
|
|
$this->clientError(_('No such user.'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$action->menuItem(common_local_url('bookmarks', array('nickname' => $this->user->nickname)),
|
|
|
|
// TRANS: Menu item in sample plugin.
|
|
|
|
_m('Bookmarks'),
|
|
|
|
// TRANS: Menu item title in sample plugin.
|
|
|
|
_m('A list of your bookmarks'), false, 'nav_timeline_bookmarks');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-29 22:16:15 +00:00
|
|
|
/**
|
|
|
|
* Save a remote bookmark (from Salmon or PuSH)
|
|
|
|
*
|
|
|
|
* @param Ostatus_profile $author Author of the bookmark
|
|
|
|
* @param Activity $activity Activity to save
|
|
|
|
*
|
|
|
|
* @return Notice resulting notice.
|
|
|
|
*/
|
|
|
|
static private function _postRemoteBookmark(Ostatus_profile $author,
|
|
|
|
Activity $activity)
|
2010-12-23 17:42:42 +00:00
|
|
|
{
|
|
|
|
$bookmark = $activity->objects[0];
|
|
|
|
|
2010-12-28 06:09:29 +00:00
|
|
|
$options = array('uri' => $bookmark->id,
|
|
|
|
'url' => $bookmark->link,
|
2011-07-15 20:13:57 +01:00
|
|
|
'is_local' => Notice::REMOTE,
|
2010-12-28 06:09:29 +00:00
|
|
|
'source' => 'ostatus');
|
2011-04-06 15:36:35 +01:00
|
|
|
|
2010-12-28 06:09:29 +00:00
|
|
|
return self::_postBookmark($author->localProfile(), $activity, $options);
|
|
|
|
}
|
|
|
|
|
2011-03-06 21:33:36 +00:00
|
|
|
/**
|
|
|
|
* Test if an activity represents posting a bookmark
|
|
|
|
*
|
|
|
|
* @param Activity $activity Activity to test
|
|
|
|
*
|
|
|
|
* @return true if it's a Post of a Bookmark, else false
|
|
|
|
*/
|
|
|
|
static private function _isPostBookmark($activity)
|
|
|
|
{
|
|
|
|
return ($activity->verb == ActivityVerb::POST &&
|
|
|
|
$activity->objects[0]->type == ActivityObject::BOOKMARK);
|
|
|
|
}
|
|
|
|
|
|
|
|
function types()
|
|
|
|
{
|
|
|
|
return array(ActivityObject::BOOKMARK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When a notice is deleted, delete the related Bookmark
|
|
|
|
*
|
|
|
|
* @param Notice $notice Notice being deleted
|
2011-04-06 15:36:35 +01:00
|
|
|
*
|
2011-03-06 21:33:36 +00:00
|
|
|
* @return boolean hook value
|
|
|
|
*/
|
|
|
|
function deleteRelated($notice)
|
|
|
|
{
|
2011-07-14 20:05:15 +01:00
|
|
|
if ($this->isMyNotice($notice)) {
|
|
|
|
|
|
|
|
$nb = Bookmark::getByNotice($notice);
|
|
|
|
|
|
|
|
if (!empty($nb)) {
|
|
|
|
$nb->delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-06 21:33:36 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-29 22:16:15 +00:00
|
|
|
/**
|
|
|
|
* Save a bookmark from an activity
|
|
|
|
*
|
|
|
|
* @param Activity $activity Activity to save
|
2011-03-07 21:36:15 +00:00
|
|
|
* @param Profile $profile Profile to use as author
|
2010-12-29 22:16:15 +00:00
|
|
|
* @param array $options Options to pass to bookmark-saving code
|
|
|
|
*
|
|
|
|
* @return Notice resulting notice
|
|
|
|
*/
|
2011-03-06 22:27:03 +00:00
|
|
|
function saveNoticeFromActivity($activity, $profile, $options=array())
|
2010-12-28 06:09:29 +00:00
|
|
|
{
|
|
|
|
$bookmark = $activity->objects[0];
|
|
|
|
|
2010-12-23 17:42:42 +00:00
|
|
|
$relLinkEls = ActivityUtils::getLinks($bookmark->element, 'related');
|
|
|
|
|
|
|
|
if (count($relLinkEls) < 1) {
|
2011-04-06 15:36:35 +01:00
|
|
|
// TRANS: Client exception thrown when a bookmark is formatted incorrectly.
|
2011-03-30 21:30:23 +01:00
|
|
|
throw new ClientException(_m('Expected exactly 1 link '.
|
2010-12-29 22:16:15 +00:00
|
|
|
'rel=related in a Bookmark.'));
|
2010-12-23 17:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count($relLinkEls) > 1) {
|
2010-12-29 22:16:15 +00:00
|
|
|
common_log(LOG_WARNING,
|
|
|
|
"Got too many link rel=related in a Bookmark.");
|
2010-12-23 17:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$linkEl = $relLinkEls[0];
|
|
|
|
|
|
|
|
$url = $linkEl->getAttribute('href');
|
|
|
|
|
|
|
|
$tags = array();
|
|
|
|
|
|
|
|
foreach ($activity->categories as $category) {
|
|
|
|
$tags[] = common_canonical_tag($category->term);
|
|
|
|
}
|
|
|
|
|
2010-12-28 06:09:29 +00:00
|
|
|
if (!empty($activity->time)) {
|
|
|
|
$options['created'] = common_sql_date($activity->time);
|
|
|
|
}
|
2010-12-23 17:42:42 +00:00
|
|
|
|
|
|
|
// Fill in location if available
|
|
|
|
|
|
|
|
$location = $activity->context->location;
|
|
|
|
|
|
|
|
if ($location) {
|
|
|
|
$options['lat'] = $location->lat;
|
|
|
|
$options['lon'] = $location->lon;
|
|
|
|
if ($location->location_id) {
|
|
|
|
$options['location_ns'] = $location->location_ns;
|
|
|
|
$options['location_id'] = $location->location_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-29 22:16:15 +00:00
|
|
|
$options['groups'] = array();
|
2013-10-28 21:21:14 +00:00
|
|
|
$options['replies'] = array(); // TODO: context->attention
|
2010-12-27 05:38:28 +00:00
|
|
|
|
2013-10-28 21:21:14 +00:00
|
|
|
foreach ($activity->context->attention as $attnUrl=>$type) {
|
|
|
|
$other = Profile::fromURI($attnUrl);
|
|
|
|
if ($other instanceof Profile) {
|
|
|
|
$options['replies'][] = $attnUrl;
|
2010-12-27 05:38:28 +00:00
|
|
|
} else {
|
2013-10-28 21:21:14 +00:00
|
|
|
// Maybe we can get rid of this since every User_group got a Profile?
|
|
|
|
// TODO: Make sure the above replies get sorted properly for groups (or handled afterwards)
|
|
|
|
$group = User_group::getKV('uri', $attnUrl);
|
|
|
|
if ($group instanceof User_group) {
|
|
|
|
$options['groups'][] = $attnUrl;
|
2010-12-27 05:38:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-12-23 17:42:42 +00:00
|
|
|
|
|
|
|
// Maintain direct reply associations
|
|
|
|
// @fixme what about conversation ID?
|
|
|
|
|
|
|
|
if (!empty($activity->context->replyToID)) {
|
2013-08-18 12:04:58 +01:00
|
|
|
$orig = Notice::getKV('uri',
|
2010-12-23 17:42:42 +00:00
|
|
|
$activity->context->replyToID);
|
|
|
|
if (!empty($orig)) {
|
|
|
|
$options['reply_to'] = $orig->id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-28 06:09:29 +00:00
|
|
|
return Bookmark::saveNew($profile,
|
2010-12-23 17:42:42 +00:00
|
|
|
$bookmark->title,
|
|
|
|
$url,
|
|
|
|
$tags,
|
|
|
|
$bookmark->summary,
|
|
|
|
$options);
|
|
|
|
}
|
2010-12-28 06:09:29 +00:00
|
|
|
|
2011-03-06 21:33:36 +00:00
|
|
|
function activityObjectFromNotice($notice)
|
|
|
|
{
|
|
|
|
assert($this->isMyNotice($notice));
|
2010-12-29 22:16:15 +00:00
|
|
|
|
2011-03-06 21:33:36 +00:00
|
|
|
common_log(LOG_INFO,
|
|
|
|
"Formatting notice {$notice->uri} as a bookmark.");
|
|
|
|
|
|
|
|
$object = new ActivityObject();
|
2011-03-30 00:50:06 +01:00
|
|
|
$nb = Bookmark::getByNotice($notice);
|
2011-03-06 21:33:36 +00:00
|
|
|
|
|
|
|
$object->id = $notice->uri;
|
|
|
|
$object->type = ActivityObject::BOOKMARK;
|
|
|
|
$object->title = $nb->title;
|
|
|
|
$object->summary = $nb->description;
|
|
|
|
$object->link = $notice->bestUrl();
|
|
|
|
|
|
|
|
// Attributes of the URL
|
|
|
|
|
|
|
|
$attachments = $notice->attachments();
|
|
|
|
|
|
|
|
if (count($attachments) != 1) {
|
2011-04-06 15:36:35 +01:00
|
|
|
// TRANS: Server exception thrown when a bookmark has multiple attachments.
|
2011-03-30 21:30:23 +01:00
|
|
|
throw new ServerException(_m('Bookmark notice with the '.
|
2011-03-06 21:33:36 +00:00
|
|
|
'wrong number of attachments.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$target = $attachments[0];
|
|
|
|
|
|
|
|
$attrs = array('rel' => 'related',
|
|
|
|
'href' => $target->url);
|
|
|
|
|
|
|
|
if (!empty($target->title)) {
|
|
|
|
$attrs['title'] = $target->title;
|
|
|
|
}
|
|
|
|
|
|
|
|
$object->extra[] = array('link', $attrs, null);
|
2011-04-06 15:36:35 +01:00
|
|
|
|
2011-03-06 21:33:36 +00:00
|
|
|
// Attributes of the thumbnail, if any
|
|
|
|
|
|
|
|
$thumbnail = $target->getThumbnail();
|
|
|
|
|
|
|
|
if (!empty($thumbnail)) {
|
|
|
|
$tattrs = array('rel' => 'preview',
|
|
|
|
'href' => $thumbnail->url);
|
|
|
|
|
|
|
|
if (!empty($thumbnail->width)) {
|
|
|
|
$tattrs['media:width'] = $thumbnail->width;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($thumbnail->height)) {
|
|
|
|
$tattrs['media:height'] = $thumbnail->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
$object->extra[] = array('link', $attrs, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $object;
|
|
|
|
}
|
|
|
|
|
2011-03-07 23:15:21 +00:00
|
|
|
/**
|
2011-04-19 20:52:57 +01:00
|
|
|
* Given a notice list item, returns an adapter specific
|
|
|
|
* to this plugin.
|
2011-03-07 23:15:21 +00:00
|
|
|
*
|
2011-04-19 20:52:57 +01:00
|
|
|
* @param NoticeListItem $nli item to adapt
|
|
|
|
*
|
|
|
|
* @return NoticeListItemAdapter adapter or null
|
2011-03-07 23:15:21 +00:00
|
|
|
*/
|
2011-04-19 20:52:57 +01:00
|
|
|
function adaptNoticeListItem($nli)
|
2010-12-28 06:09:29 +00:00
|
|
|
{
|
2011-04-19 22:38:56 +01:00
|
|
|
return new BookmarkListItem($nli);
|
2010-12-28 06:09:29 +00:00
|
|
|
}
|
2011-03-06 21:33:36 +00:00
|
|
|
|
|
|
|
function entryForm($out)
|
|
|
|
{
|
2011-04-15 04:44:01 +01:00
|
|
|
return new InitialBookmarkForm($out);
|
2011-03-06 21:33:36 +00:00
|
|
|
}
|
|
|
|
|
2011-03-06 22:27:03 +00:00
|
|
|
function tag()
|
|
|
|
{
|
|
|
|
return 'bookmark';
|
|
|
|
}
|
|
|
|
|
|
|
|
function appTitle()
|
|
|
|
{
|
2011-04-06 15:36:35 +01:00
|
|
|
// TRANS: Application title.
|
|
|
|
return _m('TITLE','Bookmark');
|
2011-03-06 22:27:03 +00:00
|
|
|
}
|
2011-09-15 22:06:05 +01:00
|
|
|
|
|
|
|
function onEndUpgrade()
|
|
|
|
{
|
|
|
|
// Version 0.9.x of the plugin didn't stamp notices
|
|
|
|
// with verb and object-type (for obvious reasons). Update
|
|
|
|
// those notices here.
|
|
|
|
|
|
|
|
$notice = new Notice();
|
|
|
|
|
|
|
|
$notice->whereAdd('exists (select uri from bookmark where bookmark.uri = notice.uri)');
|
|
|
|
$notice->whereAdd('((object_type is null) or (object_type = "' .ActivityObject::NOTE.'"))');
|
|
|
|
|
|
|
|
$notice->find();
|
|
|
|
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$original = clone($notice);
|
|
|
|
$notice->verb = ActivityVerb::POST;
|
|
|
|
$notice->object_type = ActivityObject::BOOKMARK;
|
|
|
|
$notice->update($original);
|
|
|
|
}
|
|
|
|
}
|
2012-01-22 02:12:20 +00:00
|
|
|
|
|
|
|
public function activityObjectOutputJson(ActivityObject $obj, array &$out)
|
|
|
|
{
|
|
|
|
assert($obj->type == ActivityObject::BOOKMARK);
|
|
|
|
|
2013-08-18 12:04:58 +01:00
|
|
|
$bm = Bookmark::getKV('uri', $obj->id);
|
2012-01-22 02:12:20 +00:00
|
|
|
|
|
|
|
if (empty($bm)) {
|
|
|
|
throw new ServerException("Unknown bookmark: " . $obj->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
$out['displayName'] = $bm->title;
|
|
|
|
$out['targetUrl'] = $bm->url;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2010-12-18 07:27:14 +00:00
|
|
|
}
|