2011-03-29 01:06:02 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
2014-05-05 22:58:55 +01:00
|
|
|
* Cancel the subscription of a profile
|
2011-03-29 01:06:02 +01:00
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: 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/>.
|
|
|
|
*
|
|
|
|
* @category Group
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2014-05-05 22:58:55 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2011-03-29 01:06:02 +01:00
|
|
|
|
|
|
|
/**
|
2014-05-05 22:58:55 +01:00
|
|
|
* Cancel the subscription of a profile
|
2011-03-29 01:06:02 +01:00
|
|
|
*
|
2014-05-05 22:58:55 +01:00
|
|
|
* @category Subscription
|
2011-03-29 01:06:02 +01:00
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2014-05-05 22:58:55 +01:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2011-03-29 01:06:02 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
2014-05-05 22:58:55 +01:00
|
|
|
class CancelsubscriptionAction extends FormAction
|
2011-03-29 01:06:02 +01:00
|
|
|
{
|
2014-05-05 22:58:55 +01:00
|
|
|
protected $needPost = true;
|
2011-03-29 01:06:02 +01:00
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
protected function doPreparation()
|
2011-03-29 01:06:02 +01:00
|
|
|
{
|
2014-05-05 22:58:55 +01:00
|
|
|
$profile_id = $this->int('unsubscribeto');
|
|
|
|
$this->target = Profile::getKV('id', $profile_id);
|
|
|
|
if (!$this->target instanceof Profile) {
|
|
|
|
throw new NoProfileException($profile_id);
|
2011-03-29 01:06:02 +01:00
|
|
|
}
|
2014-05-05 22:58:55 +01:00
|
|
|
}
|
2011-03-29 01:06:02 +01:00
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
protected function doPost()
|
2014-05-05 22:58:55 +01:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
$request = Subscription_queue::pkeyGet(array('subscriber' => $this->scoped->id,
|
|
|
|
'subscribed' => $this->target->id));
|
|
|
|
if ($request instanceof Subscription_queue) {
|
|
|
|
$request->abort();
|
|
|
|
}
|
|
|
|
} catch (AlreadyFulfilledException $e) {
|
|
|
|
common_debug('Tried to cancel a non-existing pending subscription');
|
2011-03-29 01:06:02 +01:00
|
|
|
}
|
|
|
|
|
2015-02-27 11:44:15 +00:00
|
|
|
if (GNUsocial::isAjax()) {
|
2011-03-29 01:06:02 +01:00
|
|
|
$this->startHTML('text/xml;charset=utf-8');
|
|
|
|
$this->elementStart('head');
|
2011-03-29 22:00:29 +01:00
|
|
|
// TRANS: Title after unsubscribing from a group.
|
|
|
|
$this->element('title', null, _m('TITLE','Unsubscribed'));
|
2011-03-29 01:06:02 +01:00
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
2014-05-05 22:58:55 +01:00
|
|
|
$subscribe = new SubscribeForm($this, $this->target);
|
2011-03-29 01:06:02 +01:00
|
|
|
$subscribe->show();
|
|
|
|
$this->elementEnd('body');
|
2013-09-24 01:32:17 +01:00
|
|
|
$this->endHTML();
|
2014-05-05 22:58:55 +01:00
|
|
|
exit();
|
2011-03-29 01:06:02 +01:00
|
|
|
}
|
2015-03-08 19:41:42 +00:00
|
|
|
common_redirect(common_local_url('subscriptions', array('nickname' => $this->scoped->getNickname())), 303);
|
2011-03-29 01:06:02 +01:00
|
|
|
}
|
|
|
|
}
|