friendica/mod/wallmessage.php

150 lines
3.8 KiB
PHP
Raw Normal View History

2012-04-01 09:59:35 +02:00
<?php
/**
* @file mod/wallmessage.php
*/
use Friendica\App;
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n;
use Friendica\Core\System;
2017-11-08 04:57:46 +01:00
use Friendica\Database\DBM;
use Friendica\Model\Mail;
use Friendica\Model\Profile;
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) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
2012-04-01 09:59:35 +02:00
return;
}
$subject = ((x($_REQUEST,'subject')) ? notags(trim($_REQUEST['subject'])) : '');
$body = ((x($_REQUEST,'body')) ? escape_tags(trim($_REQUEST['body'])) : '');
$recipient = (($a->argc > 1) ? notags($a->argv[1]) : '');
2018-01-22 15:16:25 +01:00
if ((! $recipient) || (! $body)) {
2012-04-01 09:59:35 +02:00
return;
}
$r = q("select * from user where nickname = '%s' limit 1",
dbesc($recipient)
);
2017-11-08 04:57:46 +01:00
if (! DBM::is_result($r)) {
2012-04-01 09:59:35 +02:00
logger('wallmessage: no recipient');
return;
}
$user = $r[0];
2018-01-22 15:16:25 +01:00
if (! intval($user['unkmail'])) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
2012-04-01 09:59:35 +02:00
return;
}
$r = q("select count(*) as total from mail where uid = %d and created > UTC_TIMESTAMP() - INTERVAL 1 day and unknown = 1",
intval($user['uid'])
);
2018-01-22 15:16:25 +01:00
if ($r[0]['total'] > $user['cntunkmail']) {
notice(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:
2018-01-22 15:16:25 +01:00
notice(L10n::t('No recipient selected.') . EOL);
2012-04-01 09:59:35 +02:00
break;
case -2:
2018-01-22 15:16:25 +01:00
notice(L10n::t('Unable to check your home location.') . EOL);
2012-04-01 09:59:35 +02:00
break;
case -3:
2018-01-22 15:16:25 +01:00
notice(L10n::t('Message could not be sent.') . EOL);
2012-04-01 09:59:35 +02:00
break;
case -4:
2018-01-22 15:16:25 +01:00
notice(L10n::t('Message collection failure.') . EOL);
2012-04-01 09:59:35 +02:00
break;
default:
2018-01-22 15:16:25 +01:00
info(L10n::t('Message sent.') . EOL);
2012-04-01 09:59:35 +02:00
}
goaway('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()) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
2012-04-01 09:59:35 +02:00
return;
}
$recipient = (($a->argc > 1) ? $a->argv[1] : '');
2018-01-22 15:16:25 +01:00
if (!$recipient) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('No recipient.') . EOL);
2012-04-01 09:59:35 +02:00
return;
}
$r = q("select * from user where nickname = '%s' limit 1",
dbesc($recipient)
);
2017-11-08 04:57:46 +01:00
if (! DBM::is_result($r)) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('No recipient.') . EOL);
2012-04-01 09:59:35 +02:00
logger('wallmessage: no recipient');
return;
}
$user = $r[0];
2018-01-22 15:16:25 +01:00
if (!intval($user['unkmail'])) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
2012-04-01 09:59:35 +02:00
return;
}
$r = q("select count(*) as total from mail where uid = %d and created > UTC_TIMESTAMP() - INTERVAL 1 day and unknown = 1",
2012-04-01 09:59:35 +02:00
intval($user['uid'])
);
2018-01-22 15:16:25 +01:00
if ($r[0]['total'] > $user['cntunkmail']) {
notice(L10n::t('Number of daily wall messages for %s exceeded. Message failed.', $user['username']));
2012-04-01 09:59:35 +02:00
return;
}
$tpl = get_markup_template('wallmsg-header.tpl');
$a->page['htmlhead'] .= replace_macros($tpl, [
2017-08-26 09:52:49 +02:00
'$baseurl' => System::baseUrl(true),
'$nickname' => $user['nickname'],
2018-01-22 15:16:25 +01:00
'$linkurl' => L10n::t('Please enter a link URL:')
]);
$tpl = get_markup_template('wallmsg-end.tpl');
$a->page['end'] .= replace_macros($tpl, [
2017-08-26 09:52:49 +02:00
'$baseurl' => System::baseUrl(true),
'$nickname' => $user['nickname'],
2018-01-22 15:16:25 +01:00
'$linkurl' => L10n::t('Please enter a link URL:')
]);
2012-04-01 09:59:35 +02:00
$tpl = get_markup_template('wallmessage.tpl');
$o = replace_macros($tpl, [
2018-01-22 15:16:25 +01:00
'$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']),
2018-01-22 15:16:25 +01:00
'$to' => L10n::t('To:'),
'$subject' => L10n::t('Subject:'),
'$recipname' => $user['username'],
'$nickname' => $user['nickname'],
2018-01-22 15:16:25 +01:00
'$subjtxt' => ((x($_REQUEST, 'subject')) ? strip_tags($_REQUEST['subject']) : ''),
'$text' => ((x($_REQUEST, 'body')) ? escape_tags(htmlspecialchars($_REQUEST['body'])) : ''),
'$readonly' => '',
2018-01-22 15:16:25 +01:00
'$yourmessage' => L10n::t('Your message:'),
'$parent' => '',
2018-01-22 15:16:25 +01:00
'$upload' => L10n::t('Upload photo'),
'$insert' => L10n::t('Insert web link'),
'$wait' => L10n::t('Please wait')
]);
return $o;
}