2012-04-01 09:59:35 +02:00
< ? php
2018-01-15 03:22:39 +01:00
/**
2021-03-29 08:40:20 +02:00
* @ copyright Copyright ( C ) 2010 - 2021 , the Friendica project
2020-02-09 16:18:46 +01:00
*
* @ 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 />.
*
2018-01-15 03:22:39 +01:00
*/
2020-02-09 16:18:46 +01:00
2017-04-30 06:07:00 +02:00
use Friendica\App ;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger ;
2018-10-31 15:35:50 +01:00
use Friendica\Core\Renderer ;
2018-07-21 14:40:21 +02:00
use Friendica\Database\DBA ;
2019-12-16 00:28:31 +01:00
use Friendica\DI ;
2018-01-15 18:14:09 +01:00
use Friendica\Model\Mail ;
2018-01-15 03:22:39 +01:00
use Friendica\Model\Profile ;
2018-11-08 16:14:37 +01:00
use Friendica\Util\Strings ;
2017-04-30 06:07:00 +02:00
2017-01-09 13:14:55 +01:00
function wallmessage_post ( App $a ) {
2012-04-01 09:59:35 +02:00
2018-01-15 03:22:39 +01: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 ;
}
2018-11-30 15:06:22 +01:00
$subject = ( ! empty ( $_REQUEST [ 'subject' ]) ? Strings :: escapeTags ( trim ( $_REQUEST [ 'subject' ])) : '' );
$body = ( ! empty ( $_REQUEST [ 'body' ]) ? Strings :: escapeHtml ( trim ( $_REQUEST [ 'body' ])) : '' );
2012-04-01 09:59:35 +02:00
2021-07-25 15:08:22 +02:00
$recipient = (( DI :: args () -> getArgc () > 1 ) ? Strings :: escapeTags ( DI :: args () -> getArgv ()[ 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 " ,
2018-07-21 15:10:13 +02:00
DBA :: escape ( $recipient )
2012-04-01 09:59:35 +02:00
);
2018-07-21 14:46:04 +02:00
if ( ! DBA :: isResult ( $r )) {
2018-10-29 22:20:46 +01:00
Logger :: log ( 'wallmessage: no recipient' );
2012-04-01 09:59:35 +02:00
return ;
}
$user = $r [ 0 ];
2018-01-22 15:16:25 +01:00
if ( ! intval ( $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 ;
}
$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' ]) {
2020-01-18 20:52:34 +01:00
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 ;
}
2018-01-15 18:14:09 +01:00
$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 ;
}
2012-05-26 03:29:06 +02:00
2019-12-16 00:28:31 +01:00
DI :: baseUrl () -> redirect ( 'profile/' . $user [ 'nickname' ]);
2016-02-05 21:52:39 +01:00
}
2012-04-01 09:59:35 +02:00
2016-02-07 15:11:34 +01:00
2017-01-09 13:14:55 +01:00
function wallmessage_content ( App $a ) {
2012-04-01 09:59:35 +02:00
2018-01-15 03:22:39 +01: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 ;
}
2021-07-25 15:08:22 +02:00
$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 ;
}
$r = q ( " select * from user where nickname = '%s' limit 1 " ,
2018-07-21 15:10:13 +02:00
DBA :: escape ( $recipient )
2012-04-01 09:59:35 +02:00
);
2018-07-21 14:46:04 +02:00
if ( ! DBA :: isResult ( $r )) {
2020-07-23 08:25:01 +02:00
notice ( DI :: l10n () -> t ( 'No recipient.' ));
2018-10-29 22:20:46 +01:00
Logger :: log ( 'wallmessage: no recipient' );
2012-04-01 09:59:35 +02:00
return ;
}
$user = $r [ 0 ];
2018-01-22 15:16:25 +01:00
if ( ! intval ( $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 ;
}
2017-03-21 17:02:59 +01:00
$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' ]) {
2020-01-18 20:52:34 +01:00
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 ;
}
2018-10-31 15:44:06 +01:00
$tpl = Renderer :: getMarkupTemplate ( 'wallmsg-header.tpl' );
2019-12-30 20:02:09 +01:00
DI :: page ()[ 'htmlhead' ] .= Renderer :: replaceMacros ( $tpl , [
2019-12-30 23:00:08 +01:00
'$baseurl' => DI :: baseUrl () -> get ( true ),
2012-07-28 17:57:16 +02:00
'$nickname' => $user [ 'nickname' ],
2020-01-18 20:52:34 +01:00
'$linkurl' => DI :: l10n () -> t ( 'Please enter a link URL:' )
2018-01-15 14:05:12 +01:00
]);
2012-07-28 17:57:16 +02:00
2018-10-31 15:44:06 +01:00
$tpl = Renderer :: getMarkupTemplate ( 'wallmessage.tpl' );
2018-10-31 15:35:50 +01:00
$o = Renderer :: replaceMacros ( $tpl , [
2020-01-18 20:52:34 +01:00
'$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:' ),
2018-12-25 17:37:32 +01:00
'$recipname' => $user [ 'username' ],
'$nickname' => $user [ 'nickname' ],
2019-10-15 15:01:17 +02:00
'$subjtxt' => $_REQUEST [ 'subject' ] ? ? '' ,
'$text' => $_REQUEST [ 'body' ] ? ? '' ,
2018-12-25 17:37:32 +01:00
'$readonly' => '' ,
2020-01-18 20:52:34 +01:00
'$yourmessage' => DI :: l10n () -> t ( 'Your message:' ),
2018-12-25 17:37:32 +01:00
'$parent' => '' ,
2020-01-18 20:52:34 +01:00
'$upload' => DI :: l10n () -> t ( 'Upload photo' ),
'$insert' => DI :: l10n () -> t ( 'Insert web link' ),
'$wait' => DI :: l10n () -> t ( 'Please wait' )
2018-01-15 14:05:12 +01:00
]);
2012-07-28 17:57:16 +02:00
return $o ;
}