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 {
|
|
|
|
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()) {
|
|
|
|
common_user_error(_t('Not logged in.'));
|
|
|
|
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-05-14 15:54:36 +01:00
|
|
|
$other_nickname = $this->arg('subscribeto');
|
|
|
|
|
|
|
|
$other = User::staticGet('nickname', $other_nickname);
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
if (!$other) {
|
|
|
|
common_user_error(_t('No such user.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
if ($user->isSubscribed($other)) {
|
|
|
|
common_user_error(_t('Already subscribed!.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$sub = new Subscription();
|
|
|
|
$sub->subscriber = $user->id;
|
|
|
|
$sub->subscribed = $other->id;
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-17 21:14:11 +01:00
|
|
|
$sub->created = DB_DataObject_Cast::dateTime(); # current time
|
2008-05-20 20:10:32 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
if (!$sub->insert()) {
|
|
|
|
common_server_error(_t('Couldn\'t create subscription.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-06-15 04:02:02 +01:00
|
|
|
$this->notify($other, $user);
|
|
|
|
|
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-06-15 04:02:02 +01:00
|
|
|
|
|
|
|
function notify($listenee, $listener) {
|
|
|
|
# XXX: add other notifications (Jabber, SMS) here
|
|
|
|
# XXX: queue this and handle it offline
|
|
|
|
$this->notify_email($listenee, $listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
function notify_email($listenee, $listener) {
|
|
|
|
if ($listenee->email) {
|
|
|
|
global $config;
|
|
|
|
$profile = $listenee->getProfile();
|
|
|
|
$other = $listener->getProfile();
|
|
|
|
$name = $profile->getBestName();
|
|
|
|
$other_name = $other->getBestName();
|
|
|
|
$recipients = $listenee->email;
|
|
|
|
$headers['From'] = mail_notify_from();
|
|
|
|
$headers['To'] = $name . ' <' . $listenee->email . '>';
|
|
|
|
$headers['Subject'] = $other_name . _t(' is now listening to your notices on ') . $config['site']['name'];
|
|
|
|
|
|
|
|
$body =
|
|
|
|
($other->fullname) ?
|
|
|
|
($other->fullname . ' (' . $other->nickname . ')') : $other->nickname;
|
|
|
|
|
|
|
|
$body .= _t(' is now listening to your notices on ') . $config['site']['name'] . '.';
|
|
|
|
$body .= "\n\n";
|
|
|
|
$body .= "\t".$other->profileurl;
|
|
|
|
$body .= "\n\n";
|
|
|
|
$body .= _t('Faithfully yours, ');
|
|
|
|
$body .= "\n";
|
|
|
|
$body .= $config['site']['name'];
|
|
|
|
$body .= "\n";
|
|
|
|
|
|
|
|
mail_send($recipients, $headers, $body);
|
|
|
|
}
|
|
|
|
}
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|