friendica/mod/wallmessage.php

146 lines
4.2 KiB
PHP
Raw Normal View History

2012-04-01 09:59:35 +02:00
<?php
/**
2022-01-02 08:27:47 +01:00
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* 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 <https://www.gnu.org/licenses/>.
*
*/
use Friendica\App;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Mail;
use Friendica\Model\Profile;
2021-10-03 17:02:20 +02:00
use Friendica\Model\User;
use Friendica\Util\Strings;
function wallmessage_post(App $a) {
2012-04-01 09:59:35 +02:00
$replyto = Profile::getMyURL();
2018-01-22 15:16:25 +01:00
if (!$replyto) {
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('Permission denied.'));
2012-04-01 09:59:35 +02:00
return;
}
2021-11-06 21:25:21 +01:00
$subject = trim($_REQUEST['subject'] ?? '');
$body = Strings::escapeHtml(trim($_REQUEST['body'] ?? ''));
2012-04-01 09:59:35 +02:00
2021-11-06 21:25:21 +01:00
$recipient = ((DI::args()->getArgc() > 1) ? DI::args()->getArgv()[1] : '');
2018-01-22 15:16:25 +01:00
if ((! $recipient) || (! $body)) {
2012-04-01 09:59:35 +02:00
return;
}
2021-10-03 17:02:20 +02:00
$user = User::getByNickname($recipient);
if (empty($r)) {
Logger::notice('wallmessage: no recipient');
2012-04-01 09:59:35 +02:00
return;
}
2021-10-03 17:02:20 +02:00
if (!$user['unkmail']) {
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('Permission denied.'));
2012-04-01 09:59:35 +02:00
return;
}
2021-10-03 17:02:20 +02:00
$total = DBA::count('mail', ["`uid` = ? AND `created` > UTC_TIMESTAMP() - INTERVAL 1 DAY AND `unknown`", $user['uid']]);
if ($total > $user['cntunkmail']) {
notice(DI::l10n()->t('Number of daily wall messages for %s exceeded. Message failed.', $user['username']));
2012-04-01 09:59:35 +02:00
return;
}
$ret = Mail::sendWall($user, $body, $subject, $replyto);
2012-04-01 09:59:35 +02:00
2018-01-22 15:16:25 +01:00
switch ($ret) {
2012-04-01 09:59:35 +02:00
case -1:
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('No recipient selected.'));
2012-04-01 09:59:35 +02:00
break;
case -2:
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('Unable to check your home location.'));
2012-04-01 09:59:35 +02:00
break;
case -3:
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('Message could not be sent.'));
2012-04-01 09:59:35 +02:00
break;
case -4:
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('Message collection failure.'));
2012-04-01 09:59:35 +02:00
break;
}
DI::baseUrl()->redirect('profile/'.$user['nickname']);
}
2012-04-01 09:59:35 +02:00
function wallmessage_content(App $a) {
2012-04-01 09:59:35 +02:00
if (!Profile::getMyURL()) {
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('Permission denied.'));
2012-04-01 09:59:35 +02:00
return;
}
$recipient = ((DI::args()->getArgc() > 1) ? DI::args()->getArgv()[1] : '');
2012-04-01 09:59:35 +02:00
2018-01-22 15:16:25 +01:00
if (!$recipient) {
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('No recipient.'));
2012-04-01 09:59:35 +02:00
return;
}
2021-10-03 17:02:20 +02:00
$user = User::getByNickname($recipient);
2012-04-01 09:59:35 +02:00
2021-10-03 17:02:20 +02:00
if (empty($user)) {
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('No recipient.'));
2021-10-03 17:02:20 +02:00
Logger::notice('wallmessage: no recipient');
2012-04-01 09:59:35 +02:00
return;
}
2021-10-03 17:02:20 +02:00
if (!$user['unkmail']) {
2020-07-23 08:25:01 +02:00
notice(DI::l10n()->t('Permission denied.'));
2012-04-01 09:59:35 +02:00
return;
}
2021-10-03 17:02:20 +02:00
$total = DBA::count('mail', ["`uid` = ? AND `created` > UTC_TIMESTAMP() - INTERVAL 1 DAY AND `unknown`", $user['uid']]);
if ($total > $user['cntunkmail']) {
notice(DI::l10n()->t('Number of daily wall messages for %s exceeded. Message failed.', $user['username']));
2012-04-01 09:59:35 +02:00
return;
}
$tpl = Renderer::getMarkupTemplate('wallmsg-header.tpl');
DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
'$baseurl' => DI::baseUrl()->get(true),
'$nickname' => $user['nickname'],
'$linkurl' => DI::l10n()->t('Please enter a link URL:')
]);
$tpl = Renderer::getMarkupTemplate('wallmessage.tpl');
$o = Renderer::replaceMacros($tpl, [
'$header' => DI::l10n()->t('Send Private Message'),
'$subheader' => DI::l10n()->t('If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.', $user['username']),
'$to' => DI::l10n()->t('To:'),
'$subject' => DI::l10n()->t('Subject:'),
'$recipname' => $user['username'],
'$nickname' => $user['nickname'],
'$subjtxt' => $_REQUEST['subject'] ?? '',
'$text' => $_REQUEST['body'] ?? '',
'$readonly' => '',
'$yourmessage'=> DI::l10n()->t('Your message:'),
'$parent' => '',
'$upload' => DI::l10n()->t('Upload photo'),
'$insert' => DI::l10n()->t('Insert web link'),
'$wait' => DI::l10n()->t('Please wait')
]);
return $o;
}