2009-01-14 07:13:22 +00:00
|
|
|
<?php
|
2019-08-19 22:51:51 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-01-14 07:13:22 +00:00
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* GNUsocial implementation of Direct Messages
|
2009-01-14 07:13:22 +00:00
|
|
|
*
|
2019-08-19 22:51:51 +01:00
|
|
|
* @package GNUsocial
|
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
* @author Bruno Casteleiro <brunoccast@fc.up.pt>
|
|
|
|
* @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-14 07:13:22 +00:00
|
|
|
*/
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2009-01-14 07:13:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form for posting a direct message
|
|
|
|
*
|
2019-08-19 22:51:51 +01:00
|
|
|
* @category Plugin
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
|
|
|
* @author Bruno Casteleiro <brunoccast@fc.up.pt>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-14 07:13:22 +00:00
|
|
|
*/
|
|
|
|
class MessageForm extends Form
|
|
|
|
{
|
2019-08-19 22:51:51 +01:00
|
|
|
protected $to = null;
|
|
|
|
protected $content = null;
|
2009-01-14 07:13:22 +00:00
|
|
|
|
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Constructor.
|
2009-01-14 07:13:22 +00:00
|
|
|
*
|
2019-08-19 22:51:51 +01:00
|
|
|
* @param HTMLOutputter $out output channel
|
|
|
|
* @param array|null $formOpts
|
2009-01-14 07:13:22 +00:00
|
|
|
*/
|
2019-08-19 22:51:51 +01:00
|
|
|
function __construct(HTMLOutputter $out = null, ?array $formOpts = null)
|
2009-01-14 07:13:22 +00:00
|
|
|
{
|
|
|
|
parent::__construct($out);
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
if (isset($formOpts['to'])) {
|
|
|
|
$this->to = $formOpts['to'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->content = $formOpts['content'] ?? '';
|
2009-01-14 07:13:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* ID of the form.
|
2009-01-14 07:13:22 +00:00
|
|
|
*
|
2009-10-31 16:16:37 +00:00
|
|
|
* @return string ID of the form
|
2009-01-14 07:13:22 +00:00
|
|
|
*/
|
2019-08-19 22:51:51 +01:00
|
|
|
function id(): string
|
2009-10-31 16:16:37 +00:00
|
|
|
{
|
|
|
|
return 'form_notice-direct';
|
|
|
|
}
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
/**
|
|
|
|
* Class of the form.
|
2009-10-31 16:16:37 +00:00
|
|
|
*
|
|
|
|
* @return string class of the form
|
|
|
|
*/
|
2019-08-19 22:51:51 +01:00
|
|
|
function formClass(): string
|
2009-01-14 07:13:22 +00:00
|
|
|
{
|
2011-03-10 00:55:52 +00:00
|
|
|
return 'form_notice ajax-notice';
|
2009-01-14 07:13:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Action of the form.
|
2009-01-14 07:13:22 +00:00
|
|
|
*
|
|
|
|
* @return string URL of the action
|
|
|
|
*/
|
2019-08-19 22:51:51 +01:00
|
|
|
function action(): string
|
2009-01-14 07:13:22 +00:00
|
|
|
{
|
|
|
|
return common_local_url('newmessage');
|
|
|
|
}
|
|
|
|
|
2009-01-21 03:38:50 +00:00
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Legend of the Form.
|
2009-01-21 03:38:50 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formLegend()
|
|
|
|
{
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Form legend for direct notice.
|
2019-08-19 22:51:51 +01:00
|
|
|
$this->out->element('legend', null, _m('Send a direct notice'));
|
2009-01-21 03:38:50 +00:00
|
|
|
}
|
|
|
|
|
2009-01-14 07:13:22 +00:00
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Data elements.
|
2009-01-14 07:13:22 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formData()
|
|
|
|
{
|
|
|
|
$user = common_current_user();
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
$recipients = [];
|
|
|
|
$default = 'default';
|
|
|
|
|
|
|
|
$subs = $user->getSubscribed();
|
|
|
|
$n_subs = 0;
|
|
|
|
|
|
|
|
// Add local-subscriptions
|
|
|
|
while ($subs->fetch()) {
|
|
|
|
$n_subs++;
|
|
|
|
if ($subs->isLocal()) {
|
|
|
|
$value = 'profile:'.$subs->getID();
|
|
|
|
try {
|
|
|
|
$recipients[$value] = substr($subs->getAcctUri(), 5) . " [{$subs->getBestName()}]";
|
|
|
|
} catch (ProfileNoAcctUriException $e) {
|
|
|
|
$recipients[$value] = "[?@?] " . $e->profile->getBestName();
|
|
|
|
}
|
2009-01-14 07:13:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
if (sizeof($recipients) < $n_subs) {
|
|
|
|
// some subscriptions aren't local and therefore weren't added,
|
|
|
|
// worth checking if others want to add them
|
|
|
|
Event::handle('FillDirectMessageRecipients', [$user, &$recipients]);
|
|
|
|
}
|
2009-01-14 07:13:22 +00:00
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
// if we came from a profile page, then lets make the message receiver visible
|
|
|
|
if (!is_null($this->to)) {
|
|
|
|
if (isset($recipients['profile:'.$this->to->getID()])) {
|
|
|
|
$default = 'profile' . $this->to->getID();
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
if ($this->to->isLocal()) {
|
|
|
|
$this->content = "@{$this->to->getNickname()} {$this->content}";
|
|
|
|
} else {
|
|
|
|
$this->content = substr($this->to->getAcctUri(), 5) . " {$this->content}";
|
|
|
|
}
|
|
|
|
} catch (ProfileNoAcctUriException $e) {
|
|
|
|
// well, I'm no magician
|
|
|
|
}
|
|
|
|
}
|
2010-11-19 19:56:03 +00:00
|
|
|
}
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
if ($default === 'default') {
|
|
|
|
// TRANS: Label entry in drop-down selection box in direct-message inbox/outbox.
|
|
|
|
// TRANS: This is the default entry in the drop-down box, doubling as instructions
|
|
|
|
// TRANS: and a brake against accidental submissions with the first user in the list.
|
|
|
|
$recipients[$default] = empty($recipients) ? _m('No subscriptions') : _m('Select recipient:');
|
|
|
|
}
|
2009-01-14 07:13:22 +00:00
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
asort($recipients);
|
2009-07-16 20:58:43 +01:00
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
// TRANS: Dropdown label in direct notice form.
|
|
|
|
$this->out->dropdown('to-box',
|
|
|
|
_m('To'),
|
|
|
|
$recipients,
|
|
|
|
null,
|
|
|
|
false,
|
|
|
|
$default);
|
|
|
|
|
|
|
|
$this->out->element('textarea',
|
|
|
|
['class' => 'notice_data-text',
|
|
|
|
'cols' => 35,
|
|
|
|
'rows' => 4,
|
|
|
|
'name' => 'content'],
|
|
|
|
$this->content);
|
|
|
|
|
|
|
|
$contentLimit = MessageModel::maxContent();
|
2009-08-21 12:23:27 +01:00
|
|
|
|
|
|
|
if ($contentLimit > 0) {
|
2011-01-14 20:36:06 +00:00
|
|
|
$this->out->element('span',
|
2019-08-19 22:51:51 +01:00
|
|
|
['class' => 'count'],
|
2009-08-21 12:23:27 +01:00
|
|
|
$contentLimit);
|
|
|
|
}
|
2009-01-14 07:13:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Action elements.
|
2009-01-14 07:13:22 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function formActions()
|
|
|
|
{
|
2019-08-19 22:51:51 +01:00
|
|
|
$this->out->element('input',
|
|
|
|
['id' => 'notice_action-submit',
|
|
|
|
'class' => 'submit',
|
|
|
|
'name' => 'message_send',
|
|
|
|
'type' => 'submit',
|
|
|
|
// TRANS: Button text for sending a direct notice.
|
|
|
|
'value' => _m('Send button for direct notice', 'Send')]);
|
2009-01-14 07:13:22 +00:00
|
|
|
}
|
2011-04-12 19:54:12 +01:00
|
|
|
|
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Show the form.
|
2011-04-12 19:54:12 +01:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function show()
|
|
|
|
{
|
|
|
|
$this->elementStart('div', 'input_forms');
|
2019-08-19 22:51:51 +01:00
|
|
|
$this->elementStart('div',
|
|
|
|
['id' => 'input_form_direct',
|
|
|
|
'class' => 'input_form current nonav']);
|
2011-04-12 19:54:12 +01:00
|
|
|
|
|
|
|
parent::show();
|
|
|
|
|
|
|
|
$this->elementEnd('div');
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
2009-01-21 03:38:50 +00:00
|
|
|
}
|