X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fwallmessage.php;h=e5b482a65e94ed4eb3f9a1e09187e6a2421a0c3b;hb=ca9f8e7420d925fb316f8841f338a4583d94fe51;hp=75aca1f68dad1e1041a74823cebcdb1a7a6ac996;hpb=29f7ebe307c22b275466390937b82ccb3820fb1c;p=friendica.git diff --git a/mod/wallmessage.php b/mod/wallmessage.php index 75aca1f68d..e5b482a65e 100644 --- a/mod/wallmessage.php +++ b/mod/wallmessage.php @@ -1,43 +1,62 @@ . + * */ + use Friendica\App; -use Friendica\Core\L10n; -use Friendica\Core\System; -use Friendica\Database\DBM; +use Friendica\Core\Logger; +use Friendica\Core\Renderer; +use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Mail; use Friendica\Model\Profile; +use Friendica\Util\Strings; function wallmessage_post(App $a) { $replyto = Profile::getMyURL(); if (!$replyto) { - notice(L10n::t('Permission denied.') . EOL); + notice(DI::l10n()->t('Permission denied.') . EOL); return; } - $subject = ((x($_REQUEST,'subject')) ? notags(trim($_REQUEST['subject'])) : ''); - $body = ((x($_REQUEST,'body')) ? escape_tags(trim($_REQUEST['body'])) : ''); + $subject = (!empty($_REQUEST['subject']) ? Strings::escapeTags(trim($_REQUEST['subject'])) : ''); + $body = (!empty($_REQUEST['body']) ? Strings::escapeHtml(trim($_REQUEST['body'])) : ''); - $recipient = (($a->argc > 1) ? notags($a->argv[1]) : ''); + $recipient = (($a->argc > 1) ? Strings::escapeTags($a->argv[1]) : ''); if ((! $recipient) || (! $body)) { return; } $r = q("select * from user where nickname = '%s' limit 1", - dbesc($recipient) + DBA::escape($recipient) ); - if (! DBM::is_result($r)) { - logger('wallmessage: no recipient'); + if (! DBA::isResult($r)) { + Logger::log('wallmessage: no recipient'); return; } $user = $r[0]; if (! intval($user['unkmail'])) { - notice(L10n::t('Permission denied.') . EOL); + notice(DI::l10n()->t('Permission denied.') . EOL); return; } @@ -46,7 +65,7 @@ function wallmessage_post(App $a) { ); if ($r[0]['total'] > $user['cntunkmail']) { - notice(L10n::t('Number of daily wall messages for %s exceeded. Message failed.', $user['username'])); + notice(DI::l10n()->t('Number of daily wall messages for %s exceeded. Message failed.', $user['username'])); return; } @@ -54,53 +73,53 @@ function wallmessage_post(App $a) { switch ($ret) { case -1: - notice(L10n::t('No recipient selected.') . EOL); + notice(DI::l10n()->t('No recipient selected.') . EOL); break; case -2: - notice(L10n::t('Unable to check your home location.') . EOL); + notice(DI::l10n()->t('Unable to check your home location.') . EOL); break; case -3: - notice(L10n::t('Message could not be sent.') . EOL); + notice(DI::l10n()->t('Message could not be sent.') . EOL); break; case -4: - notice(L10n::t('Message collection failure.') . EOL); + notice(DI::l10n()->t('Message collection failure.') . EOL); break; default: - info(L10n::t('Message sent.') . EOL); + info(DI::l10n()->t('Message sent.') . EOL); } - goaway('profile/'.$user['nickname']); + DI::baseUrl()->redirect('profile/'.$user['nickname']); } function wallmessage_content(App $a) { if (!Profile::getMyURL()) { - notice(L10n::t('Permission denied.') . EOL); + notice(DI::l10n()->t('Permission denied.') . EOL); return; } $recipient = (($a->argc > 1) ? $a->argv[1] : ''); if (!$recipient) { - notice(L10n::t('No recipient.') . EOL); + notice(DI::l10n()->t('No recipient.') . EOL); return; } $r = q("select * from user where nickname = '%s' limit 1", - dbesc($recipient) + DBA::escape($recipient) ); - if (! DBM::is_result($r)) { - notice(L10n::t('No recipient.') . EOL); - logger('wallmessage: no recipient'); + if (! DBA::isResult($r)) { + notice(DI::l10n()->t('No recipient.') . EOL); + Logger::log('wallmessage: no recipient'); return; } $user = $r[0]; if (!intval($user['unkmail'])) { - notice(L10n::t('Permission denied.') . EOL); + notice(DI::l10n()->t('Permission denied.') . EOL); return; } @@ -109,40 +128,33 @@ function wallmessage_content(App $a) { ); if ($r[0]['total'] > $user['cntunkmail']) { - notice(L10n::t('Number of daily wall messages for %s exceeded. Message failed.', $user['username'])); + notice(DI::l10n()->t('Number of daily wall messages for %s exceeded. Message failed.', $user['username'])); return; } - $tpl = get_markup_template('wallmsg-header.tpl'); - $a->page['htmlhead'] .= replace_macros($tpl, [ - '$baseurl' => System::baseUrl(true), + $tpl = Renderer::getMarkupTemplate('wallmsg-header.tpl'); + DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [ + '$baseurl' => DI::baseUrl()->get(true), '$nickname' => $user['nickname'], - '$linkurl' => L10n::t('Please enter a link URL:') + '$linkurl' => DI::l10n()->t('Please enter a link URL:') ]); - $tpl = get_markup_template('wallmsg-end.tpl'); - $a->page['end'] .= replace_macros($tpl, [ - '$baseurl' => System::baseUrl(true), - '$nickname' => $user['nickname'], - '$linkurl' => L10n::t('Please enter a link URL:') - ]); - - $tpl = get_markup_template('wallmessage.tpl'); - $o = replace_macros($tpl, [ - '$header' => L10n::t('Send Private Message'), - '$subheader' => 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' => L10n::t('To:'), - '$subject' => L10n::t('Subject:'), - '$recipname' => $user['username'], - '$nickname' => $user['nickname'], - '$subjtxt' => ((x($_REQUEST, 'subject')) ? strip_tags($_REQUEST['subject']) : ''), - '$text' => ((x($_REQUEST, 'body')) ? escape_tags(htmlspecialchars($_REQUEST['body'])) : ''), - '$readonly' => '', - '$yourmessage' => L10n::t('Your message:'), - '$parent' => '', - '$upload' => L10n::t('Upload photo'), - '$insert' => L10n::t('Insert web link'), - '$wait' => L10n::t('Please wait') + $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;