2015-03-12 11:27:49 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* GNU Social - a federating social network
|
|
|
|
* Copyright (C) 2014, Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package Activity
|
|
|
|
* @maintainer Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
*/
|
2019-08-12 15:03:30 +01:00
|
|
|
class ShareModule extends ActivityVerbHandlerModule
|
2015-03-12 11:27:49 +00:00
|
|
|
{
|
2019-06-03 01:56:52 +01:00
|
|
|
const PLUGIN_VERSION = '2.0.0';
|
|
|
|
|
2015-03-12 11:27:49 +00:00
|
|
|
public function tag()
|
|
|
|
{
|
|
|
|
return 'share';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function types()
|
|
|
|
{
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function verbs()
|
|
|
|
{
|
|
|
|
return array(ActivityVerb::SHARE);
|
|
|
|
}
|
|
|
|
|
2015-03-12 21:17:08 +00:00
|
|
|
// Share is a bit special and $act->objects[0] should be an Activity
|
|
|
|
// instead of ActivityObject! Therefore also $act->objects[0]->type is not set.
|
|
|
|
public function isMyActivity(Activity $act) {
|
|
|
|
return (count($act->objects) == 1
|
|
|
|
&& ($act->objects[0] instanceof Activity)
|
|
|
|
&& $this->isMyVerb($act->verb));
|
|
|
|
}
|
|
|
|
|
2015-03-12 11:27:49 +00:00
|
|
|
public function onRouterInitialized(URLMapper $m)
|
|
|
|
{
|
|
|
|
// Web UI actions
|
2019-07-11 19:14:03 +01:00
|
|
|
$m->connect('main/repeat', ['action' => 'repeat']);
|
2015-03-12 11:27:49 +00:00
|
|
|
|
|
|
|
// Share for Twitter API ("Retweet")
|
|
|
|
$m->connect('api/statuses/retweeted_by_me.:format',
|
2019-07-11 19:14:03 +01:00
|
|
|
['action' => 'ApiTimelineRetweetedByMe'],
|
|
|
|
['format' => '(xml|json|atom|as)']);
|
2015-03-12 11:27:49 +00:00
|
|
|
|
|
|
|
$m->connect('api/statuses/retweeted_to_me.:format',
|
2019-07-11 19:14:03 +01:00
|
|
|
['action' => 'ApiTimelineRetweetedToMe'],
|
|
|
|
['format' => '(xml|json|atom|as)']);
|
2015-03-12 11:27:49 +00:00
|
|
|
|
|
|
|
$m->connect('api/statuses/retweets_of_me.:format',
|
2019-07-11 19:14:03 +01:00
|
|
|
['action' => 'ApiTimelineRetweetsOfMe'],
|
|
|
|
['format' => '(xml|json|atom|as)']);
|
2015-03-12 11:27:49 +00:00
|
|
|
|
|
|
|
$m->connect('api/statuses/retweet/:id.:format',
|
2019-07-11 19:14:03 +01:00
|
|
|
['action' => 'ApiStatusesRetweet'],
|
|
|
|
['id' => '[0-9]+',
|
|
|
|
'format' => '(xml|json)']);
|
2015-03-12 11:27:49 +00:00
|
|
|
|
|
|
|
$m->connect('api/statuses/retweets/:id.:format',
|
2019-07-11 19:14:03 +01:00
|
|
|
['action' => 'ApiStatusesRetweets'],
|
|
|
|
['id' => '[0-9]+',
|
|
|
|
'format' => '(xml|json)']);
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-02 02:50:48 +01:00
|
|
|
// FIXME: Set this to abstract public in lib/modules/ActivityHandlerPlugin.php when all plugins have migrated!
|
2015-03-12 11:27:49 +00:00
|
|
|
protected function saveObjectFromActivity(Activity $act, Notice $stored, array $options=array())
|
|
|
|
{
|
|
|
|
assert($this->isMyActivity($act));
|
|
|
|
|
2015-03-12 14:47:21 +00:00
|
|
|
// The below algorithm is mainly copied from the previous Ostatus_profile->processShare()
|
|
|
|
|
|
|
|
if (count($act->objects) !== 1) {
|
|
|
|
// TRANS: Client exception thrown when trying to share multiple activities at once.
|
|
|
|
throw new ClientException(_m('Can only handle share activities with exactly one object.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$shared = $act->objects[0];
|
|
|
|
if (!$shared instanceof Activity) {
|
|
|
|
// TRANS: Client exception thrown when trying to share a non-activity object.
|
|
|
|
throw new ClientException(_m('Can only handle shared activities.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$sharedUri = $shared->id;
|
|
|
|
if (!empty($shared->objects[0]->id)) {
|
|
|
|
// Because StatusNet since commit 8cc4660 sets $shared->id to a TagURI which
|
|
|
|
// fucks up federation, because the URI is no longer recognised by the origin.
|
|
|
|
// So we set it to the object ID if it exists, otherwise we trust $shared->id
|
|
|
|
$sharedUri = $shared->objects[0]->id;
|
|
|
|
}
|
|
|
|
if (empty($sharedUri)) {
|
|
|
|
throw new ClientException(_m('Shared activity does not have an id'));
|
|
|
|
}
|
|
|
|
|
2015-03-12 15:59:50 +00:00
|
|
|
try {
|
|
|
|
// First check if we have the shared activity. This has to be done first, because
|
|
|
|
// we can't use these functions to "ensureActivityObjectProfile" of a local user,
|
|
|
|
// who might be the creator of the shared activity in question.
|
|
|
|
$sharedNotice = Notice::getByUri($sharedUri);
|
|
|
|
} catch (NoResultException $e) {
|
2015-03-12 14:47:21 +00:00
|
|
|
// If no locally stored notice is found, process it!
|
|
|
|
// TODO: Remember to check Deleted_notice!
|
|
|
|
// TODO: If a post is shared that we can't retrieve - what to do?
|
2015-03-12 15:59:50 +00:00
|
|
|
$other = Ostatus_profile::ensureActivityObjectProfile($shared->actor);
|
2015-10-13 23:10:33 +01:00
|
|
|
$sharedNotice = Notice::saveActivity($shared, $other->localProfile(), array('source'=>'share'));
|
2015-03-12 15:59:50 +00:00
|
|
|
} catch (FeedSubException $e) {
|
|
|
|
// Remote feed could not be found or verified, should we
|
|
|
|
// transform this into an "RT @user Blah, blah, blah..."?
|
|
|
|
common_log(LOG_INFO, __METHOD__ . ' got a ' . get_class($e) . ': ' . $e->getMessage());
|
|
|
|
return false;
|
2015-03-12 14:47:21 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 20:56:18 +00:00
|
|
|
// Setting this here because when the algorithm gets back to
|
|
|
|
// Notice::saveActivity it will update the Notice object.
|
|
|
|
$stored->repeat_of = $sharedNotice->getID();
|
2015-03-12 21:17:08 +00:00
|
|
|
$stored->conversation = $sharedNotice->conversation;
|
2015-03-12 20:56:18 +00:00
|
|
|
|
2015-03-12 11:27:49 +00:00
|
|
|
// We don't have to save a repeat in a separate table, we can
|
|
|
|
// find repeats by just looking at the notice.repeat_of field.
|
|
|
|
|
2015-03-12 15:59:50 +00:00
|
|
|
// By returning true here instead of something that evaluates
|
|
|
|
// to false, we show that we have processed everything properly.
|
2015-03-12 11:27:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-02 02:50:48 +01:00
|
|
|
// FIXME: Put this in lib/modules/ActivityHandlerPlugin.php when we're ready
|
2015-03-12 11:27:49 +00:00
|
|
|
// with the other microapps/activityhandlers as well.
|
|
|
|
// Also it should be StartNoticeAsActivity (with a prepped Activity, including ->context etc.)
|
|
|
|
public function onEndNoticeAsActivity(Notice $stored, Activity $act, Profile $scoped=null)
|
|
|
|
{
|
|
|
|
if (!$this->isMyNotice($stored)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->extendActivity($stored, $act, $scoped);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function extendActivity(Notice $stored, Activity $act, Profile $scoped=null)
|
|
|
|
{
|
|
|
|
// TODO: How to handle repeats of deleted notices?
|
2015-06-04 21:17:40 +01:00
|
|
|
$target = Notice::getByID($stored->repeat_of);
|
2015-03-12 11:27:49 +00:00
|
|
|
// TRANS: A repeat activity's title. %1$s is repeater's nickname
|
|
|
|
// and %2$s is the repeated user's nickname.
|
|
|
|
$act->title = sprintf(_('%1$s repeated a notice by %2$s'),
|
|
|
|
$stored->getProfile()->getNickname(),
|
|
|
|
$target->getProfile()->getNickname());
|
|
|
|
$act->objects[] = $target->asActivity($scoped);
|
|
|
|
}
|
|
|
|
|
2015-10-13 22:18:13 +01:00
|
|
|
public function activityObjectFromNotice(Notice $stored)
|
2015-03-12 11:27:49 +00:00
|
|
|
{
|
|
|
|
// Repeat is a little bit special. As it's an activity, our
|
|
|
|
// ActivityObject is instead turned into an Activity
|
|
|
|
$object = new Activity();
|
2015-10-14 00:18:28 +01:00
|
|
|
$object->actor = $stored->getProfile()->asActivityObject();
|
2015-03-12 11:27:49 +00:00
|
|
|
$object->verb = ActivityVerb::SHARE;
|
2016-01-06 14:32:00 +00:00
|
|
|
$object->content = $stored->getRendered();
|
2015-10-13 22:18:13 +01:00
|
|
|
$this->extendActivity($stored, $object);
|
2015-03-12 15:33:34 +00:00
|
|
|
|
2015-03-12 11:27:49 +00:00
|
|
|
return $object;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deleteRelated(Notice $notice)
|
|
|
|
{
|
2015-03-12 15:33:34 +00:00
|
|
|
// No action needed as we don't have a separate table for share objects.
|
|
|
|
return true;
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 18:49:20 +00:00
|
|
|
// Layout stuff
|
|
|
|
|
2015-03-12 21:56:25 +00:00
|
|
|
/**
|
|
|
|
* show a link to the author of repeat
|
|
|
|
*
|
|
|
|
* FIXME: Some repeat stuff still in lib/noticelistitem.php! ($nli->repeat etc.)
|
|
|
|
*/
|
|
|
|
public function onEndShowNoticeInfo(NoticeListItem $nli)
|
|
|
|
{
|
|
|
|
if (!empty($nli->repeat)) {
|
|
|
|
$repeater = $nli->repeat->getProfile();
|
|
|
|
|
|
|
|
$attrs = array('href' => $repeater->getUrl(),
|
|
|
|
'class' => 'h-card p-author',
|
|
|
|
'title' => $repeater->getFancyName());
|
|
|
|
|
2015-10-27 17:19:03 +00:00
|
|
|
$nli->out->elementStart('span', 'repeat');
|
2015-03-12 21:56:25 +00:00
|
|
|
|
|
|
|
// TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname.
|
|
|
|
$nli->out->raw(_('Repeated by').' ');
|
|
|
|
|
|
|
|
$nli->out->element('a', $attrs, $repeater->getNickname());
|
|
|
|
|
|
|
|
$nli->out->elementEnd('span');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-12 18:49:20 +00:00
|
|
|
public function onEndShowThreadedNoticeTailItems(NoticeListItem $nli, Notice $notice, &$threadActive)
|
|
|
|
{
|
|
|
|
if ($nli instanceof ThreadedNoticeListSubItem) {
|
|
|
|
// The sub-items are replies to a conversation, thus we use different HTML elements etc.
|
|
|
|
$item = new ThreadedNoticeListInlineRepeatsItem($notice, $nli->out);
|
|
|
|
} else {
|
|
|
|
$item = new ThreadedNoticeListRepeatsItem($notice, $nli->out);
|
|
|
|
}
|
|
|
|
$threadActive = $item->show() || $threadActive;
|
|
|
|
return true;
|
|
|
|
}
|
2015-03-12 11:27:49 +00:00
|
|
|
|
|
|
|
/**
|
2015-03-12 18:22:05 +00:00
|
|
|
* show the "repeat" form in the notice options element
|
2015-03-12 11:27:49 +00:00
|
|
|
* FIXME: Don't let a NoticeListItemAdapter slip in here (or extend that from NoticeListItem)
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2015-03-12 15:33:34 +00:00
|
|
|
public function onEndShowNoticeOptionItems($nli)
|
2015-03-12 11:27:49 +00:00
|
|
|
{
|
2019-08-13 00:05:51 +01:00
|
|
|
$notice = $nli->notice;
|
|
|
|
|
|
|
|
// We shouldn't be restricting Shares for received unlisted notices,
|
|
|
|
// but without subscription_policy working we treat both this type
|
|
|
|
// and followers-only notices the same, so we also restrict both.
|
|
|
|
if (!$notice->isPublic()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-12 15:33:34 +00:00
|
|
|
// FIXME: Use bitmasks (but be aware that PUBLIC_SCOPE is 0!)
|
2015-10-13 23:27:51 +01:00
|
|
|
// Also: AHHH, $scope and $scoped are scarily similar looking.
|
2019-08-13 00:05:51 +01:00
|
|
|
$scope = $notice->getScope();
|
2015-10-13 23:27:51 +01:00
|
|
|
if ($scope === Notice::PUBLIC_SCOPE || $scope === Notice::SITE_SCOPE) {
|
2015-03-12 11:27:49 +00:00
|
|
|
$scoped = Profile::current();
|
2015-03-12 15:33:34 +00:00
|
|
|
if ($scoped instanceof Profile &&
|
2019-08-13 00:05:51 +01:00
|
|
|
$scoped->getID() !== $notice->getProfile()->getID()) {
|
2015-03-12 15:33:34 +00:00
|
|
|
|
2019-08-13 00:05:51 +01:00
|
|
|
if ($scoped->hasRepeated($notice)) {
|
2015-03-12 15:33:34 +00:00
|
|
|
$nli->out->element('span', array('class' => 'repeated',
|
|
|
|
// TRANS: Title for repeat form status in notice list when a notice has been repeated.
|
|
|
|
'title' => _('Notice repeated.')),
|
|
|
|
// TRANS: Repeat form status in notice list when a notice has been repeated.
|
|
|
|
_('Repeated'));
|
2015-03-12 11:27:49 +00:00
|
|
|
} else {
|
2019-08-13 00:05:51 +01:00
|
|
|
$repeat = new RepeatForm($nli->out, $notice);
|
2015-03-12 15:33:34 +00:00
|
|
|
$repeat->show();
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-29 14:17:38 +01:00
|
|
|
protected function showNoticeListItem(NoticeListItem $nli)
|
2015-03-12 11:27:49 +00:00
|
|
|
{
|
|
|
|
// pass
|
|
|
|
}
|
|
|
|
public function openNoticeListItemElement(NoticeListItem $nli)
|
|
|
|
{
|
|
|
|
// pass
|
|
|
|
}
|
|
|
|
public function closeNoticeListItemElement(NoticeListItem $nli)
|
|
|
|
{
|
|
|
|
// pass
|
|
|
|
}
|
|
|
|
|
2015-03-12 21:56:25 +00:00
|
|
|
// API stuff
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Typically just used to fill out Twitter-compatible API status data.
|
|
|
|
*
|
|
|
|
* FIXME: Make all the calls before this end up with a Notice instead of ArrayWrapper please...
|
|
|
|
*/
|
|
|
|
public function onNoticeSimpleStatusArray($notice, array &$status, Profile $scoped=null, array $args=array())
|
|
|
|
{
|
2015-03-13 08:49:09 +00:00
|
|
|
$status['repeated'] = $scoped instanceof Profile
|
|
|
|
? $scoped->hasRepeated($notice)
|
|
|
|
: false;
|
|
|
|
|
|
|
|
if ($status['repeated'] === true) {
|
2015-03-12 23:02:48 +00:00
|
|
|
// Qvitter API wants the "repeated_id" value set too.
|
|
|
|
$repeated = Notice::pkeyGet(array('profile_id' => $scoped->getID(),
|
2015-11-22 20:28:07 +00:00
|
|
|
'repeat_of' => $notice->getID(),
|
|
|
|
'verb' => ActivityVerb::SHARE));
|
2015-03-13 08:49:09 +00:00
|
|
|
$status['repeated_id'] = $repeated->getID();
|
2015-03-12 21:56:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onTwitterUserArray(Profile $profile, array &$userdata, Profile $scoped=null, array $args=array())
|
|
|
|
{
|
|
|
|
$userdata['favourites_count'] = Fave::countByProfile($profile);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Command stuff
|
|
|
|
|
2015-03-12 11:27:49 +00:00
|
|
|
/**
|
2015-03-12 18:22:05 +00:00
|
|
|
* EndInterpretCommand for RepeatPlugin will handle the 'repeat' command
|
|
|
|
* using the class RepeatCommand.
|
2015-03-12 11:27:49 +00:00
|
|
|
*
|
|
|
|
* @param string $cmd Command being run
|
|
|
|
* @param string $arg Rest of the message (including address)
|
|
|
|
* @param User $user User sending the message
|
|
|
|
* @param Command &$result The resulting command object to be run.
|
|
|
|
*
|
|
|
|
* @return boolean hook value
|
|
|
|
*/
|
|
|
|
public function onStartInterpretCommand($cmd, $arg, $user, &$result)
|
|
|
|
{
|
2015-03-12 14:58:57 +00:00
|
|
|
if ($result === false && in_array($cmd, array('repeat', 'rp', 'rt', 'rd'))) {
|
2015-03-12 11:27:49 +00:00
|
|
|
if (empty($arg)) {
|
|
|
|
$result = null;
|
|
|
|
} else {
|
|
|
|
list($other, $extra) = CommandInterpreter::split_arg($arg);
|
|
|
|
if (!empty($extra)) {
|
|
|
|
$result = null;
|
|
|
|
} else {
|
2015-03-12 14:58:57 +00:00
|
|
|
$result = new RepeatCommand($user, $other);
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onHelpCommandMessages(HelpCommand $help, array &$commands)
|
|
|
|
{
|
2015-03-12 18:22:05 +00:00
|
|
|
// TRANS: Help message for IM/SMS command "repeat #<notice_id>".
|
|
|
|
$commands['repeat #<notice_id>'] = _m('COMMANDHELP', "repeat a notice with a given id");
|
|
|
|
// TRANS: Help message for IM/SMS command "repeat <nickname>".
|
|
|
|
$commands['repeat <nickname>'] = _m('COMMANDHELP', "repeat the last notice from user");
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Are we allowed to perform a certain command over the API?
|
|
|
|
*/
|
|
|
|
public function onCommandSupportedAPI(Command $cmd, &$supported)
|
|
|
|
{
|
2015-03-12 14:58:57 +00:00
|
|
|
$supported = $supported || $cmd instanceof RepeatCommand;
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function getActionTitle(ManagedAction $action, $verb, Notice $target, Profile $scoped)
|
|
|
|
{
|
2015-03-12 16:03:37 +00:00
|
|
|
// return page title
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function doActionPreparation(ManagedAction $action, $verb, Notice $target, Profile $scoped)
|
|
|
|
{
|
2015-03-12 16:03:37 +00:00
|
|
|
// prepare Action?
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function doActionPost(ManagedAction $action, $verb, Notice $target, Profile $scoped)
|
|
|
|
{
|
2015-03-12 16:03:37 +00:00
|
|
|
// handle repeat POST
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function getActivityForm(ManagedAction $action, $verb, Notice $target, Profile $scoped)
|
|
|
|
{
|
2015-03-12 16:03:37 +00:00
|
|
|
return new RepeatForm($action, $target);
|
2015-03-12 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
public function onModuleVersion(array &$versions): bool
|
2015-03-12 11:27:49 +00:00
|
|
|
{
|
2015-03-12 14:58:57 +00:00
|
|
|
$versions[] = array('name' => 'Share verb',
|
2019-06-03 01:56:52 +01:00
|
|
|
'version' => self::PLUGIN_VERSION,
|
2015-03-12 11:27:49 +00:00
|
|
|
'author' => 'Mikael Nordfeldth',
|
2015-03-12 14:58:57 +00:00
|
|
|
'homepage' => 'https://gnu.io/',
|
2015-03-12 11:27:49 +00:00
|
|
|
'rawdescription' =>
|
|
|
|
// TRANS: Plugin description.
|
2015-03-12 14:58:57 +00:00
|
|
|
_m('Shares (repeats) using ActivityStreams.'));
|
2015-03-12 11:27:49 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2015-12-14 20:44:59 +00:00
|
|
|
}
|