2008-05-14 10:54:36 -04:00
|
|
|
<?php
|
2010-02-23 08:38:23 -05:00
|
|
|
/**
|
2009-08-25 18:14:12 -04:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2011-07-15 12:13:57 -07:00
|
|
|
* Copyright (C) 2008-2011, StatusNet, Inc.
|
2010-02-23 08:38:23 -05:00
|
|
|
*
|
|
|
|
* Subscription action.
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04: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 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04: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 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04: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/>.
|
2010-02-23 08:38:23 -05:00
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2008-2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
|
|
|
|
* @link http://status.net/
|
2008-05-14 15:26:48 -04:00
|
|
|
*/
|
|
|
|
|
2010-02-23 08:38:23 -05:00
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscription action
|
|
|
|
*
|
2013-10-28 16:22:09 +01:00
|
|
|
* Subscribing to a profile. Likely to work for OStatus profiles.
|
2010-02-23 08:38:23 -05:00
|
|
|
*
|
|
|
|
* Takes parameters:
|
|
|
|
*
|
|
|
|
* - subscribeto: a profile ID
|
|
|
|
* - token: session token to prevent CSRF attacks
|
|
|
|
* - ajax: boolean; whether to return Ajax or full-browser results
|
|
|
|
*
|
|
|
|
* Only works if the current user is logged in.
|
|
|
|
*
|
|
|
|
* @category Action
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2008-2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
2008-12-23 14:49:23 -05:00
|
|
|
class SubscribeAction extends Action
|
|
|
|
{
|
2010-02-23 08:38:23 -05:00
|
|
|
var $user;
|
|
|
|
var $other;
|
2008-12-07 22:13:12 -05:00
|
|
|
|
2010-02-23 08:38:23 -05:00
|
|
|
/**
|
|
|
|
* Check pre-requisites and instantiate attributes
|
|
|
|
*
|
|
|
|
* @param Array $args array of arguments (URL, GET, POST)
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
2008-05-20 15:14:12 -04:00
|
|
|
|
2010-02-23 08:38:23 -05:00
|
|
|
// Only allow POST requests
|
2008-07-05 17:36:37 -04:00
|
|
|
|
2008-12-23 14:19:07 -05:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
|
2011-02-17 21:10:48 +01:00
|
|
|
// TRANS: Client error displayed trying to perform any request method other than POST.
|
|
|
|
// TRANS: Do not translate POST.
|
2010-02-23 08:38:23 -05:00
|
|
|
$this->clientError(_('This action only accepts POST requests.'));
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
2008-07-08 05:45:31 -04:00
|
|
|
|
2010-02-23 08:38:23 -05:00
|
|
|
// CSRF protection
|
2008-08-29 01:11:04 -04:00
|
|
|
|
2008-12-23 14:19:07 -05:00
|
|
|
$token = $this->trimmed('token');
|
2008-12-07 22:13:12 -05:00
|
|
|
|
2008-12-23 14:19:07 -05:00
|
|
|
if (!$token || $token != common_session_token()) {
|
2011-02-17 21:10:48 +01:00
|
|
|
// TRANS: Client error displayed when the session token is not okay.
|
2010-02-23 08:38:23 -05:00
|
|
|
$this->clientError(_('There was a problem with your session token.'.
|
|
|
|
' Try again, please.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only for logged-in users
|
|
|
|
|
|
|
|
$this->user = common_current_user();
|
|
|
|
|
|
|
|
if (empty($this->user)) {
|
2011-04-04 00:41:21 +02:00
|
|
|
// TRANS: Error message displayed when trying to perform an action that requires a logged in user.
|
2010-02-23 08:38:23 -05:00
|
|
|
$this->clientError(_('Not logged in.'));
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
2008-08-29 01:11:04 -04:00
|
|
|
|
2010-02-23 08:38:23 -05:00
|
|
|
// Profile to subscribe to
|
|
|
|
|
2008-12-23 14:19:07 -05:00
|
|
|
$other_id = $this->arg('subscribeto');
|
2008-12-07 22:13:12 -05:00
|
|
|
|
2013-08-18 13:04:58 +02:00
|
|
|
$this->other = Profile::getKV('id', $other_id);
|
2008-12-07 22:13:12 -05:00
|
|
|
|
2010-02-23 08:38:23 -05:00
|
|
|
if (empty($this->other)) {
|
2011-02-17 21:10:48 +01:00
|
|
|
// TRANS: Client error displayed trying to subscribe to a non-existing profile.
|
2010-02-23 08:38:23 -05:00
|
|
|
$this->clientError(_('No such profile.'));
|
2008-12-07 22:13:12 -05:00
|
|
|
}
|
|
|
|
|
2010-02-23 08:38:23 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle request
|
|
|
|
*
|
|
|
|
* Does the subscription and returns results.
|
|
|
|
*
|
|
|
|
* @param Array $args unused.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
// Throws exception on error
|
|
|
|
|
2011-03-23 17:05:55 -07:00
|
|
|
$sub = Subscription::start($this->user->getProfile(),
|
|
|
|
$this->other);
|
2010-02-23 08:38:23 -05:00
|
|
|
|
2008-12-23 14:19:07 -05: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');
|
2011-02-17 21:10:48 +01:00
|
|
|
// TRANS: Page title when subscription succeeded.
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('title', null, _('Subscribed'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
2011-03-23 17:05:55 -07:00
|
|
|
if ($sub instanceof Subscription) {
|
|
|
|
$form = new UnsubscribeForm($this, $this->other);
|
|
|
|
} else {
|
|
|
|
$form = new CancelSubscriptionForm($this, $this->other);
|
|
|
|
}
|
|
|
|
$form->show();
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('body');
|
2013-09-24 02:32:17 +02:00
|
|
|
$this->endHTML();
|
2008-12-23 14:19:07 -05:00
|
|
|
} else {
|
2010-02-23 08:38:23 -05:00
|
|
|
$url = common_local_url('subscriptions',
|
|
|
|
array('nickname' => $this->user->nickname));
|
|
|
|
common_redirect($url, 303);
|
2008-11-18 12:48:57 -05:00
|
|
|
}
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
2008-11-18 12:48:57 -05:00
|
|
|
}
|