2008-05-14 15:54:36 +01:00
|
|
|
<?php
|
2008-05-20 20:14:12 +01:00
|
|
|
/*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* 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.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* 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.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
2008-05-14 15:54:36 +01:00
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class SubscribeAction extends Action
|
|
|
|
{
|
2008-12-08 03:13:12 +00:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!common_logged_in()) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Not logged in.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
2008-07-05 22:36:37 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
|
|
|
|
common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname)));
|
|
|
|
return;
|
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# CSRF protection
|
2008-08-29 06:11:04 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$token = $this->trimmed('token');
|
2008-12-08 03:13:12 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$token || $token != common_session_token()) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('There was a problem with your session token. Try again, please.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-08-29 06:11:04 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$other_id = $this->arg('subscribeto');
|
2008-12-08 03:13:12 +00:00
|
|
|
|
|
|
|
$other = User::staticGet('id', $other_id);
|
|
|
|
|
|
|
|
if (!$other) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Not a local user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
2008-12-08 03:13:12 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$result = subs_subscribe_to($user, $other);
|
2008-05-14 15:54:36 +01:00
|
|
|
|
2010-01-13 11:01:22 +00:00
|
|
|
if (is_string($result)) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError($result);
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-11-18 17:48:57 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($this->boolean('ajax')) {
|
2009-02-02 20:47:57 +00:00
|
|
|
$this->startHTML('text/xml;charset=utf-8');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('head');
|
|
|
|
$this->element('title', null, _('Subscribed'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
2009-01-21 04:08:05 +00:00
|
|
|
$unsubscribe = new UnsubscribeForm($this, $other->getProfile());
|
|
|
|
$unsubscribe->show();
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('body');
|
|
|
|
$this->elementEnd('html');
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
|
|
|
common_redirect(common_local_url('subscriptions', array('nickname' =>
|
2009-04-01 20:30:59 +01:00
|
|
|
$user->nickname)),
|
|
|
|
303);
|
2008-11-18 17:48:57 +00:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-18 17:48:57 +00:00
|
|
|
}
|