2010-02-20 18:20:42 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2010, StatusNet, 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/>.
|
|
|
|
*/
|
|
|
|
|
2014-05-05 18:37:37 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2010-02-20 18:20:42 +00:00
|
|
|
|
2010-09-19 14:17:36 +01:00
|
|
|
/**
|
|
|
|
* @package OStatusPlugin
|
|
|
|
* @author James Walker <james@status.net>
|
|
|
|
*/
|
2010-02-20 18:20:42 +00:00
|
|
|
class UsersalmonAction extends SalmonAction
|
|
|
|
{
|
2014-05-05 18:37:37 +01:00
|
|
|
protected function prepare(array $args=array())
|
2010-02-20 18:20:42 +00:00
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
2016-02-23 22:56:43 +00:00
|
|
|
$this->user = User::getByID($this->trimmed('id'));
|
2010-02-20 18:20:42 +00:00
|
|
|
|
2016-02-23 22:56:43 +00:00
|
|
|
$this->target = $this->user->getProfile();
|
|
|
|
|
|
|
|
// Notice must either be a) in reply to a notice by this user
|
|
|
|
// or b) in reply to a notice to the attention of this user
|
|
|
|
// or c) to the attention of this user
|
|
|
|
// or d) reference the user as an activity:object
|
2010-02-20 18:20:42 +00:00
|
|
|
|
2016-02-23 22:56:43 +00:00
|
|
|
$notice = null;
|
2010-02-20 18:20:42 +00:00
|
|
|
|
2016-02-23 22:56:43 +00:00
|
|
|
if (!empty($this->activity->context->replyToID)) {
|
|
|
|
try {
|
2016-02-23 23:19:27 +00:00
|
|
|
$notice = Notice::getByUri($this->activity->context->replyToID);
|
2016-04-01 22:10:34 +01:00
|
|
|
common_debug('Referenced Notice object found with URI: '.$notice->getUri());
|
2016-02-23 22:56:43 +00:00
|
|
|
} catch (NoResultException $e) {
|
2016-04-01 22:10:34 +01:00
|
|
|
common_debug('Referenced Notice object NOT found with URI: '.$this->activity->context->replyToID);
|
2016-02-23 22:56:43 +00:00
|
|
|
$notice = false;
|
|
|
|
}
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 22:56:43 +00:00
|
|
|
if ($notice instanceof Notice &&
|
|
|
|
($this->target->sameAs($notice->getProfile())
|
2016-02-23 23:19:27 +00:00
|
|
|
|| in_array($this->target->getID(), $notice->getAttentionProfileIDs())
|
2016-02-23 22:56:43 +00:00
|
|
|
)) {
|
|
|
|
// In reply to a notice either from or mentioning this user.
|
|
|
|
common_debug('User is the owner or was in the attention list of thr:in-reply-to activity.');
|
|
|
|
} elseif (!empty($this->activity->context->attention) &&
|
|
|
|
array_key_exists($this->target->getUri(), $this->activity->context->attention)) {
|
|
|
|
// To the attention of this user.
|
|
|
|
common_debug('User was in attention list of salmon slap.');
|
|
|
|
} elseif (!empty($this->activity->objects) && $this->activity->objects[0]->id === $this->target->getUri()) {
|
|
|
|
// The user is the object of this slap (unfollow for example)
|
|
|
|
common_debug('User URI was the id of the salmon slap object.');
|
|
|
|
} else {
|
|
|
|
common_debug('User was NOT found in salmon slap context.');
|
|
|
|
// TRANS: Client exception.
|
|
|
|
throw new ClientException(_m('The owner of this salmon endpoint was not in the context of the carried slap.'));
|
|
|
|
}
|
2010-12-27 18:51:59 +00:00
|
|
|
|
2010-02-20 18:20:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We've gotten a post event on the Salmon backchannel, probably a reply.
|
|
|
|
*
|
|
|
|
* @todo validate if we need to handle this post, then call into
|
|
|
|
* ostatus_profile's general incoming-post handling.
|
|
|
|
*/
|
|
|
|
function handlePost()
|
|
|
|
{
|
2010-08-13 22:18:54 +01:00
|
|
|
common_log(LOG_INFO, "Received post of '{$this->activity->objects[0]->id}' from '{$this->activity->actor->id}'");
|
2010-02-22 04:39:52 +00:00
|
|
|
|
2010-03-23 01:53:09 +00:00
|
|
|
// @fixme: process all activity objects?
|
2010-08-13 22:18:54 +01:00
|
|
|
switch ($this->activity->objects[0]->type) {
|
2010-02-20 18:20:42 +00:00
|
|
|
case ActivityObject::ARTICLE:
|
|
|
|
case ActivityObject::BLOGENTRY:
|
|
|
|
case ActivityObject::NOTE:
|
|
|
|
case ActivityObject::STATUS:
|
|
|
|
case ActivityObject::COMMENT:
|
|
|
|
break;
|
|
|
|
default:
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception thrown when an undefied activity is performed.
|
2011-04-10 23:39:27 +01:00
|
|
|
throw new ClientException(_m('Cannot handle that kind of post.'));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
2015-12-27 00:40:00 +00:00
|
|
|
try {
|
|
|
|
$this->saveNotice();
|
2015-12-27 00:42:03 +00:00
|
|
|
} catch (AlreadyFulfilledException $e) {
|
2010-02-22 04:39:52 +00:00
|
|
|
return;
|
2010-02-22 04:32:20 +00:00
|
|
|
}
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We've gotten a follow/subscribe notification from a remote user.
|
|
|
|
* Save a subscription relationship for them.
|
|
|
|
*/
|
|
|
|
function handleFollow()
|
|
|
|
{
|
2014-06-28 19:33:09 +01:00
|
|
|
common_log(LOG_INFO, sprintf('Setting up subscription from remote %s to local %s', $this->oprofile->getUri(), $this->target->getNickname()));
|
|
|
|
Subscription::start($this->actor, $this->target);
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We've gotten an unfollow/unsubscribe notification from a remote user.
|
|
|
|
* Check if we have a subscription relationship for them and kill it.
|
|
|
|
*
|
|
|
|
* @fixme probably catch exceptions on fail?
|
|
|
|
*/
|
|
|
|
function handleUnfollow()
|
|
|
|
{
|
2014-06-28 19:33:09 +01:00
|
|
|
common_log(LOG_INFO, sprintf('Canceling subscription from remote %s to local %s', $this->oprofile->getUri(), $this->target->getNickname()));
|
|
|
|
try {
|
|
|
|
Subscription::cancel($this->actor, $this->target);
|
|
|
|
} catch (NoProfileException $e) {
|
|
|
|
common_debug('Could not find profile for Subscription: '.$e->getMessage());
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-06 19:15:34 +00:00
|
|
|
function handleTag()
|
|
|
|
{
|
|
|
|
if ($this->activity->target->type == ActivityObject::_LIST) {
|
|
|
|
if ($this->activity->objects[0]->type != ActivityObject::PERSON) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception.
|
|
|
|
throw new ClientException(_m('Not a person object.'));
|
2011-03-06 19:15:34 +00:00
|
|
|
}
|
|
|
|
// this is a peopletag
|
2013-08-18 12:04:58 +01:00
|
|
|
$tagged = User::getKV('uri', $this->activity->objects[0]->id);
|
2011-03-06 19:15:34 +00:00
|
|
|
|
2014-05-05 18:37:37 +01:00
|
|
|
if (!$tagged instanceof User) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception.
|
2011-08-20 19:30:37 +01:00
|
|
|
throw new ClientException(_m('Unidentified profile being listed.'));
|
2011-03-06 19:15:34 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 17:07:14 +01:00
|
|
|
if ($tagged->id !== $this->target->id) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception.
|
2011-08-20 19:30:37 +01:00
|
|
|
throw new ClientException(_m('This user is not the one being listed.'));
|
2011-03-06 19:15:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// save the list
|
|
|
|
$list = Ostatus_profile::ensureActivityObjectProfile($this->activity->target);
|
|
|
|
|
|
|
|
$ptag = $list->localPeopletag();
|
|
|
|
$result = Profile_tag::setTag($ptag->tagger, $tagged->id, $ptag->tag);
|
|
|
|
if (!$result) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception.
|
2011-08-20 19:30:37 +01:00
|
|
|
throw new ClientException(_m('The listing could not be saved.'));
|
2011-03-06 19:15:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleUntag()
|
|
|
|
{
|
|
|
|
if ($this->activity->target->type == ActivityObject::_LIST) {
|
|
|
|
if ($this->activity->objects[0]->type != ActivityObject::PERSON) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception.
|
|
|
|
throw new ClientException(_m('Not a person object.'));
|
2011-03-06 19:15:34 +00:00
|
|
|
}
|
|
|
|
// this is a peopletag
|
2013-08-18 12:04:58 +01:00
|
|
|
$tagged = User::getKV('uri', $this->activity->objects[0]->id);
|
2011-03-06 19:15:34 +00:00
|
|
|
|
2014-05-05 18:37:37 +01:00
|
|
|
if (!$tagged instanceof User) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception.
|
2011-08-20 19:30:37 +01:00
|
|
|
throw new ClientException(_m('Unidentified profile being unlisted.'));
|
2011-03-06 19:15:34 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 17:07:14 +01:00
|
|
|
if ($tagged->id !== $this->target->id) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception.
|
2011-08-20 19:30:37 +01:00
|
|
|
throw new ClientException(_m('This user is not the one being unlisted.'));
|
2011-03-06 19:15:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// save the list
|
|
|
|
$list = Ostatus_profile::ensureActivityObjectProfile($this->activity->target);
|
|
|
|
|
|
|
|
$ptag = $list->localPeopletag();
|
|
|
|
$result = Profile_tag::unTag($ptag->tagger, $tagged->id, $ptag->tag);
|
|
|
|
|
|
|
|
if (!$result) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client exception.
|
2011-08-20 19:30:37 +01:00
|
|
|
throw new ClientException(_m('The listing could not be deleted.'));
|
2011-03-06 19:15:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-21 00:45:30 +00:00
|
|
|
/**
|
|
|
|
* @param ActivityObject $object
|
|
|
|
* @return Notice
|
|
|
|
* @throws ClientException on invalid input
|
|
|
|
*/
|
2014-05-05 18:37:37 +01:00
|
|
|
function getNotice(ActivityObject $object)
|
2010-02-21 00:45:30 +00:00
|
|
|
{
|
|
|
|
switch ($object->type) {
|
2010-02-20 18:20:42 +00:00
|
|
|
case ActivityObject::ARTICLE:
|
|
|
|
case ActivityObject::BLOGENTRY:
|
|
|
|
case ActivityObject::NOTE:
|
|
|
|
case ActivityObject::STATUS:
|
|
|
|
case ActivityObject::COMMENT:
|
|
|
|
break;
|
|
|
|
default:
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
2011-04-10 23:39:27 +01:00
|
|
|
throw new ClientException(_m('Cannot handle that kind of object for liking/faving.'));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
2013-08-18 12:04:58 +01:00
|
|
|
$notice = Notice::getKV('uri', $object->id);
|
2010-02-20 18:20:42 +00:00
|
|
|
|
2014-05-05 18:37:37 +01:00
|
|
|
if (!$notice instanceof Notice) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception. %s is an object ID.
|
|
|
|
throw new ClientException(sprintf(_m('Notice with ID %s unknown.'),$object->id));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 17:07:14 +01:00
|
|
|
if ($notice->profile_id != $this->target->id) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID.
|
2014-05-19 17:07:14 +01:00
|
|
|
throw new ClientException(sprintf(_m('Notice with ID %1$s not posted by %2$s.'), $object->id, $this->target->id));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
2010-02-21 00:45:30 +00:00
|
|
|
return $notice;
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
}
|