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