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()) {
|
2008-08-29 06:16:28 +01:00
|
|
|
$this->client_error(_('There was a problem with your session token. Try again, please.'));
|
2008-08-29 06:11:04 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$other_nickname = $this->arg('subscribeto');
|
|
|
|
|
2008-08-16 09:34:22 +01:00
|
|
|
$other = User::staticGet('nickname', $other_nickname);
|
|
|
|
|
|
|
|
if (!$other) {
|
|
|
|
common_user_error(_('No such user.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($user->isSubscribed($other)) {
|
|
|
|
common_user_error(_('Already subscribed!.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$user->subscribeTo($other)) {
|
|
|
|
$this->server_error(_('Could not subscribe.'));
|
2008-05-14 15:54:36 +01:00
|
|
|
return;
|
|
|
|
}
|
2008-08-16 09:34:22 +01:00
|
|
|
|
|
|
|
$this->notify($other, $user);
|
|
|
|
|
|
|
|
if ($other->autosubscribe && !$other->isSubscribed($user)) {
|
|
|
|
if (!$other->subscribeTo($user)) {
|
|
|
|
$this->server_error(_('Could not subscribe other to you.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->notify($user, $other);
|
|
|
|
}
|
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-08-16 09:34:22 +01:00
|
|
|
function notify($listenee, $listener) {
|
|
|
|
# XXX: add other notifications (Jabber, SMS) here
|
|
|
|
# XXX: queue this and handle it offline
|
|
|
|
# XXX: Whatever happens, do it in Twitter-like API, too
|
|
|
|
$this->notify_email($listenee, $listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
function notify_email($listenee, $listener) {
|
|
|
|
mail_subscribe_notify($listenee, $listener);
|
|
|
|
}
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|