2008-05-14 15:54:36 +01:00
|
|
|
<?php
|
2010-02-23 13:38:23 +00:00
|
|
|
/**
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2011-07-15 20:13:57 +01:00
|
|
|
* Copyright (C) 2008-2011, StatusNet, Inc.
|
2010-02-23 13:38:23 +00:00
|
|
|
*
|
|
|
|
* Subscription action.
|
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/>.
|
2010-02-23 13:38:23 +00: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 20:26:48 +01:00
|
|
|
*/
|
|
|
|
|
2010-02-23 13:38:23 +00:00
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscription action
|
|
|
|
*
|
2013-10-28 15:22:09 +00:00
|
|
|
* Subscribing to a profile. Likely to work for OStatus profiles.
|
2010-02-23 13:38:23 +00: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 19:49:23 +00:00
|
|
|
class SubscribeAction extends Action
|
|
|
|
{
|
2010-02-23 13:38:23 +00:00
|
|
|
var $user;
|
|
|
|
var $other;
|
2008-12-08 03:13:12 +00:00
|
|
|
|
2010-02-23 13:38:23 +00:00
|
|
|
/**
|
|
|
|
* Check pre-requisites and instantiate attributes
|
|
|
|
*
|
|
|
|
* @param Array $args array of arguments (URL, GET, POST)
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
2016-06-01 03:21:50 +01:00
|
|
|
function prepare(array $args = array())
|
2010-02-23 13:38:23 +00:00
|
|
|
{
|
|
|
|
parent::prepare($args);
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2010-02-23 13:38:23 +00:00
|
|
|
// Only allow POST requests
|
2008-07-05 22:36:37 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
|
2011-02-17 20:10:48 +00:00
|
|
|
// TRANS: Client error displayed trying to perform any request method other than POST.
|
|
|
|
// TRANS: Do not translate POST.
|
2010-02-23 13:38:23 +00:00
|
|
|
$this->clientError(_('This action only accepts POST requests.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2010-02-23 13:38:23 +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()) {
|
2011-02-17 20:10:48 +00:00
|
|
|
// TRANS: Client error displayed when the session token is not okay.
|
2010-02-23 13:38:23 +00: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-03 23:41:21 +01:00
|
|
|
// TRANS: Error message displayed when trying to perform an action that requires a logged in user.
|
2010-02-23 13:38:23 +00:00
|
|
|
$this->clientError(_('Not logged in.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-08-29 06:11:04 +01:00
|
|
|
|
2010-02-23 13:38:23 +00:00
|
|
|
// Profile to subscribe to
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$other_id = $this->arg('subscribeto');
|
2008-12-08 03:13:12 +00:00
|
|
|
|
2013-08-18 12:04:58 +01:00
|
|
|
$this->other = Profile::getKV('id', $other_id);
|
2008-12-08 03:13:12 +00:00
|
|
|
|
2010-02-23 13:38:23 +00:00
|
|
|
if (empty($this->other)) {
|
2011-02-17 20:10:48 +00:00
|
|
|
// TRANS: Client error displayed trying to subscribe to a non-existing profile.
|
2010-02-23 13:38:23 +00:00
|
|
|
$this->clientError(_('No such profile.'));
|
2008-12-08 03:13:12 +00:00
|
|
|
}
|
|
|
|
|
2010-02-23 13:38:23 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle request
|
|
|
|
*
|
|
|
|
* Does the subscription and returns results.
|
|
|
|
*
|
|
|
|
* @param Array $args unused.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-01 03:05:11 +01:00
|
|
|
function handle()
|
2010-02-23 13:38:23 +00:00
|
|
|
{
|
|
|
|
// Throws exception on error
|
|
|
|
|
2015-03-04 10:38:04 +00:00
|
|
|
$sub = Subscription::ensureStart($this->user->getProfile(),
|
2011-03-24 00:05:55 +00:00
|
|
|
$this->other);
|
2010-02-23 13:38:23 +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');
|
2011-02-17 20:10:48 +00: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-24 00:05:55 +00: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 01:32:17 +01:00
|
|
|
$this->endHTML();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2010-02-23 13:38:23 +00:00
|
|
|
$url = common_local_url('subscriptions',
|
|
|
|
array('nickname' => $this->user->nickname));
|
|
|
|
common_redirect($url, 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
|
|
|
}
|