2008-05-14 15:54:36 +01:00
|
|
|
<?php
|
2008-05-20 20:14:12 +01:00
|
|
|
/*
|
2008-05-14 20:26:48 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-17 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-14 15:54:36 +01:00
|
|
|
|
|
|
|
class SubscribeAction extends Action {
|
2008-07-22 18:15:01 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function handle($args) {
|
|
|
|
parent::handle($args);
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
if (!common_logged_in()) {
|
2008-07-08 10:45:31 +01:00
|
|
|
common_user_error(_('Not logged in.'));
|
2008-05-14 15:54:36 +01:00
|
|
|
return;
|
|
|
|
}
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-07-05 22:36:37 +01:00
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
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-08-29 06:11:04 +01:00
|
|
|
# CSRF protection
|
|
|
|
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
|
|
|
|
if (!$token || $token != common_session_token()) {
|
|
|
|
common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$other_nickname = $this->arg('subscribeto');
|
|
|
|
|
2008-08-22 20:10:32 +01:00
|
|
|
$result=subs_subscribe_user($user, $other_nickname);
|
|
|
|
if($result != true) {
|
|
|
|
common_user_error($result);
|
2008-05-14 15:54:36 +01:00
|
|
|
return;
|
|
|
|
}
|
2008-07-20 21:16:20 +01:00
|
|
|
|
2008-05-21 19:56:02 +01:00
|
|
|
common_redirect(common_local_url('subscriptions', array('nickname' =>
|
|
|
|
$user->nickname)));
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|