2008-11-16 03:31:55 +00:00
|
|
|
<?php
|
2009-01-21 00:06:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* User by ID action class.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
2009-01-21 00:06:56 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-21 00:06:56 +00:00
|
|
|
*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-11-16 03:31:55 +00: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.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-21 00:06:56 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2008-11-16 03:31:55 +00:00
|
|
|
|
2009-01-21 00:06:56 +00:00
|
|
|
require_once INSTALLDIR.'/lib/mail.php';
|
2008-11-16 03:31:55 +00:00
|
|
|
|
2009-01-21 00:06:56 +00:00
|
|
|
/**
|
|
|
|
* Nudge a user action class.
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-01-21 00:06:56 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-21 00:06:56 +00:00
|
|
|
*/
|
2008-12-23 19:49:23 +00:00
|
|
|
class NudgeAction extends Action
|
|
|
|
{
|
2009-01-21 00:06:56 +00:00
|
|
|
/**
|
|
|
|
* Class handler.
|
2009-04-01 20:30:59 +01:00
|
|
|
*
|
2009-01-21 00:06:56 +00:00
|
|
|
* @param array $args array of arguments
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
2016-06-01 03:05:11 +01:00
|
|
|
function handle()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2016-06-01 03:05:11 +01:00
|
|
|
parent::handle();
|
2008-11-16 03:31:55 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!common_logged_in()) {
|
2011-04-03 23:41:21 +01:00
|
|
|
// TRANS: Error message displayed when trying to perform an action that requires a logged in user.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Not logged in.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-16 03:31:55 +00:00
|
|
|
|
2009-01-21 00:06:56 +00:00
|
|
|
$user = common_current_user();
|
2013-08-18 12:04:58 +01:00
|
|
|
$other = User::getKV('nickname', $this->arg('nickname'));
|
2008-11-18 15:56:43 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
|
2009-01-21 00:06:56 +00:00
|
|
|
common_redirect(common_local_url('showstream',
|
|
|
|
array('nickname' => $other->nickname)));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-18 15:56:43 +00:00
|
|
|
|
2009-01-21 00:06:56 +00:00
|
|
|
// CSRF protection
|
2008-12-23 19:19:07 +00:00
|
|
|
$token = $this->trimmed('token');
|
2009-04-01 20:30:59 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$token || $token != common_session_token()) {
|
2011-04-03 22:47:46 +01:00
|
|
|
// TRANS: Client error displayed when the session token does not match or is not given.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('There was a problem with your session token. Try again, please.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-18 15:56:43 +00:00
|
|
|
|
|
|
|
if (!$other->email || !$other->emailnotifynudge) {
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Client error displayed trying to nudge a user that cannot be nudged.
|
2010-10-19 23:49:12 +01:00
|
|
|
$this->clientError(_('This user doesn\'t allow nudges or hasn\'t confirmed or set their email address yet.'));
|
2008-11-18 15:56:43 +00:00
|
|
|
}
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->notify($user, $other);
|
2008-11-16 03:31:55 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($this->boolean('ajax')) {
|
2009-02-02 20:47:57 +00:00
|
|
|
$this->startHTML('text/xml;charset=utf-8');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('head');
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Page title after sending a nudge.
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('title', null, _('Nudge sent'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Confirmation text after sending a nudge.
|
2009-01-22 06:33:38 +00:00
|
|
|
$this->element('p', array('id' => 'nudge_response'), _('Nudge sent!'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('body');
|
2013-09-24 01:32:17 +01:00
|
|
|
$this->endHTML();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2008-11-17 15:41:47 +00:00
|
|
|
// display a confirmation to the user
|
2008-12-23 19:19:07 +00:00
|
|
|
common_redirect(common_local_url('showstream',
|
2009-04-01 20:30:59 +01:00
|
|
|
array('nickname' => $other->nickname)),
|
|
|
|
303);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-16 03:31:55 +00:00
|
|
|
|
2009-01-21 00:06:56 +00:00
|
|
|
/**
|
|
|
|
* Do the actual notification
|
|
|
|
*
|
|
|
|
* @param class $user nudger
|
|
|
|
* @param class $other nudgee
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
2008-12-23 19:33:23 +00:00
|
|
|
function notify($user, $other)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($other->id != $user->id) {
|
|
|
|
if ($other->email && $other->emailnotifynudge) {
|
|
|
|
mail_notify_nudge($user, $other);
|
|
|
|
}
|
2009-01-21 00:06:56 +00:00
|
|
|
// XXX: notify by IM
|
|
|
|
// XXX: notify by SMS
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-23 09:15:57 +00:00
|
|
|
|
2009-04-13 20:49:26 +01:00
|
|
|
function isReadOnly($args)
|
2009-01-23 09:15:57 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-11-16 03:31:55 +00:00
|
|
|
}
|