2008-05-14 23:54:36 +09:00
|
|
|
<?php
|
2009-08-07 19:21:36 +09:00
|
|
|
/**
|
|
|
|
* Unsubscribe handler
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-26 07:12:20 +09:00
|
|
|
* @package StatusNet
|
2009-08-26 07:19:04 +09:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
2009-08-07 19:21:36 +09:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-26 07:16:46 +09:00
|
|
|
* @link http://status.net/
|
2009-08-07 19:21:36 +09:00
|
|
|
*
|
2009-08-26 07:14:12 +09:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-26 07:12:20 +09:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-05-21 04:14:12 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09: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-21 04:14:12 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09: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-21 04:14:12 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09: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/>.
|
|
|
|
*/
|
2008-05-14 23:54:36 +09:00
|
|
|
|
2009-08-26 23:41:36 +09:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-08-07 19:21:36 +09:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe handler
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-26 07:12:20 +09:00
|
|
|
* @package StatusNet
|
2009-08-26 07:19:04 +09:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
2009-08-07 19:21:36 +09:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-26 07:16:46 +09:00
|
|
|
* @link http://status.net/
|
2009-08-07 19:21:36 +09:00
|
|
|
*/
|
2008-12-24 04:49:23 +09:00
|
|
|
class UnsubscribeAction extends Action
|
|
|
|
{
|
2008-12-04 03:09:45 +09:00
|
|
|
|
2008-12-24 04:33:23 +09:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
parent::handle($args);
|
|
|
|
if (!common_logged_in()) {
|
2009-01-16 08:03:38 +09:00
|
|
|
$this->clientError(_('Not logged in.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-07-08 18:45:31 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$user = common_current_user();
|
2008-07-06 06:36:37 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
|
2009-08-07 19:21:36 +09:00
|
|
|
common_redirect(common_local_url('subscriptions',
|
|
|
|
array('nickname' => $user->nickname)));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-07-08 18:45:31 +09:00
|
|
|
|
2009-08-07 19:21:36 +09:00
|
|
|
/* Use a session token for CSRF protection. */
|
2008-08-29 14:11:04 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$token = $this->trimmed('token');
|
2008-12-04 03:09:45 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if (!$token || $token != common_session_token()) {
|
2009-08-07 19:21:36 +09:00
|
|
|
$this->clientError(_('There was a problem with your session token. ' .
|
|
|
|
'Try again, please.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-08-29 14:11:04 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$other_id = $this->arg('unsubscribeto');
|
2008-12-04 03:09:45 +09:00
|
|
|
|
|
|
|
if (!$other_id) {
|
2010-04-10 07:58:57 +09:00
|
|
|
$this->clientError(_('No profile ID in request.'));
|
2008-12-04 03:09:45 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$other = Profile::staticGet('id', $other_id);
|
|
|
|
|
2009-08-07 19:21:36 +09:00
|
|
|
if (!$other) {
|
2010-01-10 20:26:24 +09:00
|
|
|
$this->clientError(_('No profile with that ID.'));
|
2008-12-04 03:09:45 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$result = subs_unsubscribe_to($user, $other);
|
2008-12-04 03:09:45 +09:00
|
|
|
|
2010-01-13 20:01:22 +09:00
|
|
|
if (is_string($result)) {
|
2009-01-16 08:03:38 +09:00
|
|
|
$this->clientError($result);
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($this->boolean('ajax')) {
|
2009-02-03 05:47:57 +09:00
|
|
|
$this->startHTML('text/xml;charset=utf-8');
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->elementStart('head');
|
|
|
|
$this->element('title', null, _('Unsubscribed'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
2009-01-21 13:08:05 +09:00
|
|
|
$subscribe = new SubscribeForm($this, $other);
|
|
|
|
$subscribe->show();
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->elementEnd('body');
|
|
|
|
$this->elementEnd('html');
|
2008-12-24 04:19:07 +09:00
|
|
|
} else {
|
2009-08-07 19:21:36 +09:00
|
|
|
common_redirect(common_local_url('subscriptions',
|
|
|
|
array('nickname' => $user->nickname)),
|
2009-04-02 04:30:59 +09:00
|
|
|
303);
|
2008-11-19 02:48:57 +09:00
|
|
|
}
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-05-14 23:54:36 +09:00
|
|
|
}
|