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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
|
|
|
$id = $this->trimmed('id');
|
|
|
|
|
|
|
|
if (!$id) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client error displayed trying to perform an action without providing an ID.
|
2010-09-19 14:17:36 +01:00
|
|
|
$this->clientError(_m('No ID.'));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->user = User::staticGet('id', $id);
|
|
|
|
|
|
|
|
if (empty($this->user)) {
|
2011-04-29 17:59:47 +01:00
|
|
|
// TRANS: Client error displayed when referring to a non-existing user.
|
2010-09-19 14:17:36 +01:00
|
|
|
$this->clientError(_m('No such user.'));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-27 18:51:59 +00:00
|
|
|
$this->target = $this->user;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// Notice must either be a) in reply to a notice by this user
|
|
|
|
// or b) to the attention of this user
|
2010-09-01 19:35:43 +01:00
|
|
|
// or c) in reply to a notice to the attention of this user
|
2010-02-20 18:20:42 +00:00
|
|
|
|
2010-08-13 22:18:54 +01:00
|
|
|
$context = $this->activity->context;
|
2010-02-20 18:20:42 +00:00
|
|
|
|
|
|
|
if (!empty($context->replyToID)) {
|
|
|
|
$notice = Notice::staticGet('uri', $context->replyToID);
|
|
|
|
if (empty($notice)) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
|
|
|
throw new ClientException(_m('In reply to unknown notice.'));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
2010-09-01 19:35:43 +01:00
|
|
|
if ($notice->profile_id != $this->user->id &&
|
2010-09-01 22:10:29 +01:00
|
|
|
!in_array($this->user->id, $notice->getReplies())) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
|
|
|
throw new ClientException(_m('In reply to a notice not by this user and not mentioning this user.'));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
} else if (!empty($context->attention)) {
|
2010-03-13 19:36:51 +00:00
|
|
|
if (!in_array($this->user->uri, $context->attention) &&
|
|
|
|
!in_array(common_profile_url($this->user->nickname), $context->attention)) {
|
2010-02-22 03:44:58 +00:00
|
|
|
common_log(LOG_ERR, "{$this->user->uri} not in attention list (".implode(',', $context->attention).")");
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
2011-04-29 17:59:47 +01:00
|
|
|
throw new ClientException(_m('To the attention of user(s), not including this one.'));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
2011-04-29 17:59:47 +01:00
|
|
|
throw new ClientException(_m('Not to anyone in reply to anything.'));
|
2010-02-20 18:20:42 +00:00
|
|
|
}
|
|
|
|
|
2010-08-13 22:18:54 +01:00
|
|
|
$existing = Notice::staticGet('uri', $this->activity->objects[0]->id);
|
2010-02-22 04:32:20 +00:00
|
|
|
|
|
|
|
if (!empty($existing)) {
|
|
|
|
common_log(LOG_ERR, "Not saving notice '{$existing->uri}'; already exists.");
|
2010-02-22 04:39:52 +00:00
|
|
|
return;
|
2010-02-22 04:32:20 +00:00
|
|
|
}
|
|
|
|
|
2010-02-21 14:17:35 +00:00
|
|
|
$this->saveNotice();
|
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()
|
|
|
|
{
|
|
|
|
$oprofile = $this->ensureProfile();
|
|
|
|
if ($oprofile) {
|
|
|
|
common_log(LOG_INFO, "Setting up subscription from remote {$oprofile->uri} to local {$this->user->nickname}");
|
2010-02-21 01:36:54 +00:00
|
|
|
Subscription::start($oprofile->localProfile(),
|
|
|
|
$this->user->getProfile());
|
2010-02-20 18:20:42 +00:00
|
|
|
} else {
|
|
|
|
common_log(LOG_INFO, "Can't set up subscription from remote; missing profile.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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()
|
|
|
|
{
|
|
|
|
$oprofile = $this->ensureProfile();
|
|
|
|
if ($oprofile) {
|
|
|
|
common_log(LOG_INFO, "Canceling subscription from remote {$oprofile->uri} to local {$this->user->nickname}");
|
|
|
|
Subscription::cancel($oprofile->localProfile(), $this->user->getProfile());
|
|
|
|
} else {
|
|
|
|
common_log(LOG_ERR, "Can't cancel subscription from remote, didn't find the profile");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remote user likes one of our posts.
|
|
|
|
* Confirm the post is ours, and save a local favorite event.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function handleFavorite()
|
|
|
|
{
|
2010-08-13 22:18:54 +01:00
|
|
|
$notice = $this->getNotice($this->activity->objects[0]);
|
2010-02-21 00:45:30 +00:00
|
|
|
$profile = $this->ensureProfile()->localProfile();
|
2010-02-20 18:20:42 +00:00
|
|
|
|
2010-02-21 00:45:30 +00:00
|
|
|
$old = Fave::pkeyGet(array('user_id' => $profile->id,
|
|
|
|
'notice_id' => $notice->id));
|
|
|
|
|
|
|
|
if (!empty($old)) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
2011-03-30 21:30:23 +01:00
|
|
|
throw new ClientException(_m('This is already a favorite.'));
|
2010-02-21 00:45:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!Fave::addNew($profile, $notice)) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
|
|
|
throw new ClientException(_m('Could not save new favorite.'));
|
2010-02-21 00:45:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remote user doesn't like one of our posts after all!
|
|
|
|
* Confirm the post is ours, and save a local favorite event.
|
|
|
|
*/
|
|
|
|
function handleUnfavorite()
|
|
|
|
{
|
2010-08-13 22:18:54 +01:00
|
|
|
$notice = $this->getNotice($this->activity->objects[0]);
|
2010-02-21 00:45:30 +00:00
|
|
|
$profile = $this->ensureProfile()->localProfile();
|
|
|
|
|
|
|
|
$fave = Fave::pkeyGet(array('user_id' => $profile->id,
|
|
|
|
'notice_id' => $notice->id));
|
|
|
|
if (empty($fave)) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
2011-03-30 21:30:23 +01:00
|
|
|
throw new ClientException(_m('Notice was not favorited!'));
|
2010-02-21 00:45:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$fave->delete();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// this is a peopletag
|
|
|
|
$tagged = User::staticGet('uri', $this->activity->objects[0]->id);
|
|
|
|
|
|
|
|
if (empty($tagged)) {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
if ($tagged->id !== $this->user->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
|
|
|
|
$tagger = $this->ensureProfile();
|
|
|
|
$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
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// this is a peopletag
|
|
|
|
$tagged = User::staticGet('uri', $this->activity->objects[0]->id);
|
|
|
|
|
|
|
|
if (empty($tagged)) {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
if ($tagged->id !== $this->user->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
|
|
|
|
$tagger = $this->ensureProfile();
|
|
|
|
$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
|
|
|
|
*/
|
|
|
|
function getNotice($object)
|
|
|
|
{
|
|
|
|
if (!$object) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception.
|
2011-04-10 23:39:27 +01:00
|
|
|
throw new ClientException(_m('Cannot favorite/unfavorite without an 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
|
|
|
}
|
|
|
|
|
|
|
|
$notice = Notice::staticGet('uri', $object->id);
|
|
|
|
|
|
|
|
if (empty($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
|
|
|
}
|
|
|
|
|
|
|
|
if ($notice->profile_id != $this->user->id) {
|
2010-09-19 14:17:36 +01:00
|
|
|
// TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID.
|
|
|
|
throw new ClientException(sprintf(_m('Notice with ID %1$s not posted by %2$s.'),$object->id,$this->user->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
|
|
|
}
|
|
|
|
}
|