2011-12-08 10:28:27 +01:00
< ? php
2017-11-20 21:37:30 +01:00
/**
* @ file include / enotify . php
*/
2018-01-25 03:08:45 +01:00
2018-02-15 03:33:55 +01:00
use Friendica\Content\Text\BBCode ;
2018-12-26 07:06:24 +01:00
use Friendica\Core\Hook ;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger ;
2018-10-31 15:35:50 +01:00
use Friendica\Core\Renderer ;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System ;
2018-07-20 14:19:26 +02:00
use Friendica\Database\DBA ;
2019-12-16 00:47:24 +01:00
use Friendica\DI ;
2018-07-20 04:15:21 +02:00
use Friendica\Model\Item ;
2020-01-08 22:48:59 +01:00
use Friendica\Model\ItemContent ;
2019-01-21 17:38:01 +01:00
use Friendica\Model\User ;
2020-01-06 01:59:18 +01:00
use Friendica\Model\UserItem ;
2019-10-24 00:25:43 +02:00
use Friendica\Protocol\Activity ;
2018-01-27 03:38:34 +01:00
use Friendica\Util\DateTimeFormat ;
2017-11-20 21:37:30 +01:00
use Friendica\Util\Emailer ;
2017-04-30 06:07:00 +02:00
2016-05-21 13:19:30 +02:00
/**
2020-01-19 07:05:23 +01:00
* Creates a notification entry and possibly sends a mail
2016-05-21 13:19:30 +02:00
*
* @ param array $params Array with the elements :
2019-01-07 16:24:06 +01:00
* uid , item , parent , type , otype , verb , event ,
* link , subject , body , to_name , to_email , source_name ,
* source_link , activity , preamble , notify_flags ,
* language , show_in_notification_page
2019-01-21 17:36:01 +01:00
* @ return bool
2019-01-07 16:24:06 +01:00
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
2016-05-21 13:19:30 +02:00
*/
2018-01-04 03:12:19 +01:00
function notification ( $params )
{
2020-01-04 23:42:01 +01:00
$a = DI :: app ();
2012-03-26 10:43:26 +02:00
2018-08-02 07:21:01 +02:00
// Temporary logging for finding the origin
2019-02-23 05:00:16 +01:00
if ( ! isset ( $params [ 'uid' ])) {
Logger :: notice ( 'Missing parameters "uid".' , [ 'params' => $params , 'callstack' => System :: callstack ()]);
2018-08-02 07:21:01 +02:00
}
2018-08-23 10:00:25 +02:00
// Ensure that the important fields are set at any time
$fields = [ 'notify-flags' , 'language' , 'username' , 'email' ];
$user = DBA :: selectFirst ( 'user' , $fields , [ 'uid' => $params [ 'uid' ]]);
if ( ! DBA :: isResult ( $user )) {
2019-02-23 05:00:16 +01:00
Logger :: error ( 'Unknown user' , [ 'uid' => $params [ 'uid' ]]);
2019-01-21 17:36:01 +01:00
return false ;
2018-08-23 10:00:25 +02:00
}
2019-10-16 14:43:59 +02:00
$params [ 'notify_flags' ] = ( $params [ 'notify_flags' ] ? ? '' ) ? : $user [ 'notify-flags' ];
$params [ 'language' ] = ( $params [ 'language' ] ? ? '' ) ? : $user [ 'language' ];
$params [ 'to_name' ] = ( $params [ 'to_name' ] ? ? '' ) ? : $user [ 'username' ];
$params [ 'to_email' ] = ( $params [ 'to_email' ] ? ? '' ) ? : $user [ 'email' ];
2018-08-23 10:00:25 +02:00
2012-03-26 10:43:26 +02:00
// from here on everything is in the recipients language
2020-01-18 20:54:15 +01:00
$l10n = DI :: l10n () -> withLang ( $params [ 'language' ]);
2012-03-26 10:43:26 +02:00
2019-12-28 23:12:01 +01:00
$banner = $l10n -> t ( 'Friendica Notification' );
2014-09-06 18:15:18 +02:00
$product = FRIENDICA_PLATFORM ;
2019-12-30 23:02:20 +01:00
$siteurl = DI :: baseUrl () -> get ( true );
2019-12-28 23:12:01 +01:00
$thanks = $l10n -> t ( 'Thank You,' );
2020-01-19 21:21:13 +01:00
$sitename = DI :: config () -> get ( 'config' , 'sitename' );
if ( DI :: config () -> get ( 'config' , 'admin_name' )) {
$site_admin = $l10n -> t ( '%1$s, %2$s Administrator' , DI :: config () -> get ( 'config' , 'admin_name' ), $sitename );
2018-01-04 03:12:19 +01:00
} else {
2019-12-28 23:12:01 +01:00
$site_admin = $l10n -> t ( '%s Administrator' , $sitename );
2018-01-04 03:12:19 +01:00
}
2014-09-06 18:15:18 +02:00
2015-01-31 18:44:30 +01:00
$sender_name = $sitename ;
2019-12-16 00:47:24 +01:00
$hostname = DI :: baseUrl () -> getHostname ();
2018-01-04 03:12:19 +01:00
if ( strpos ( $hostname , ':' )) {
2016-05-21 13:19:30 +02:00
$hostname = substr ( $hostname , 0 , strpos ( $hostname , ':' ));
2018-01-04 03:12:19 +01:00
}
2015-04-16 07:18:06 +02:00
2018-04-07 03:47:42 +02:00
$sender_email = $a -> getSenderEmailAddress ();
2014-09-06 18:15:18 +02:00
2017-09-08 17:14:33 +02:00
if ( $params [ 'type' ] != SYSTEM_EMAIL ) {
2018-07-20 14:19:26 +02:00
$user = DBA :: selectFirst ( 'user' , [ 'nickname' , 'page-flags' ],
2018-01-10 19:04:00 +01:00
[ 'uid' => $params [ 'uid' ]]);
2017-08-12 07:08:45 +02:00
2017-09-08 17:14:33 +02:00
// There is no need to create notifications for forum accounts
2019-01-06 18:37:48 +01:00
if ( ! DBA :: isResult ( $user ) || in_array ( $user [ " page-flags " ], [ User :: PAGE_FLAGS_COMMUNITY , User :: PAGE_FLAGS_PRVGROUP ])) {
2019-01-21 17:36:01 +01:00
return false ;
2017-09-08 17:14:33 +02:00
}
2018-08-02 07:21:01 +02:00
$nickname = $user [ " nickname " ];
} else {
$nickname = '' ;
2017-08-12 07:08:45 +02:00
}
2014-12-23 00:55:36 +01:00
2014-09-06 18:15:18 +02:00
// with $params['show_in_notification_page'] == false, the notification isn't inserted into
// the database, and an email is sent if applicable.
// default, if not specified: true
2018-10-14 17:30:39 +02:00
$show_in_notification_page = isset ( $params [ 'show_in_notification_page' ]) ? $params [ 'show_in_notification_page' ] : true ;
2014-09-06 18:15:18 +02:00
$additional_mail_header = " " ;
$additional_mail_header .= " Precedence: list \n " ;
$additional_mail_header .= " X-Friendica-Host: " . $hostname . " \n " ;
2014-12-23 00:55:36 +01:00
$additional_mail_header .= " X-Friendica-Account: < " . $nickname . " @ " . $hostname . " > \n " ;
2014-09-06 18:15:18 +02:00
$additional_mail_header .= " X-Friendica-Platform: " . FRIENDICA_PLATFORM . " \n " ;
$additional_mail_header .= " X-Friendica-Version: " . FRIENDICA_VERSION . " \n " ;
$additional_mail_header .= " List-ID: <notification. " . $hostname . " > \n " ;
2019-12-30 23:00:08 +01:00
$additional_mail_header .= " List-Archive: < " . DI :: baseUrl () . " /notifications/system> \n " ;
2014-09-06 18:15:18 +02:00
2016-05-21 13:19:30 +02:00
if ( array_key_exists ( 'item' , $params )) {
2011-12-27 00:47:40 +01:00
$title = $params [ 'item' ][ 'title' ];
$body = $params [ 'item' ][ 'body' ];
2018-01-04 03:12:19 +01:00
} else {
2011-12-27 00:47:40 +01:00
$title = $body = '' ;
2018-01-04 03:12:19 +01:00
}
2011-12-24 08:07:05 +01:00
2018-01-04 03:12:19 +01:00
if ( isset ( $params [ 'item' ][ 'id' ])) {
2015-04-16 07:18:06 +02:00
$item_id = $params [ 'item' ][ 'id' ];
2018-01-04 03:12:19 +01:00
} else {
2015-04-16 07:18:06 +02:00
$item_id = 0 ;
2018-01-04 03:12:19 +01:00
}
2015-04-16 07:18:06 +02:00
2018-01-04 03:12:19 +01:00
if ( isset ( $params [ 'parent' ])) {
2015-04-14 06:54:41 +02:00
$parent_id = $params [ 'parent' ];
2018-01-04 03:12:19 +01:00
} else {
2015-04-14 06:54:41 +02:00
$parent_id = 0 ;
2018-01-04 03:12:19 +01:00
}
2015-04-14 06:54:41 +02:00
2018-08-02 07:21:01 +02:00
$epreamble = '' ;
2019-01-07 18:51:48 +01:00
$preamble = '' ;
$subject = '' ;
$sitelink = '' ;
$tsitelink = '' ;
$hsitelink = '' ;
$itemlink = '' ;
2018-08-02 07:21:01 +02:00
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_MAIL ) {
2018-07-10 14:27:56 +02:00
$itemlink = $siteurl . '/message/' . $params [ 'item' ][ 'id' ];
2018-07-31 18:39:23 +02:00
$params [ " link " ] = $itemlink ;
2018-07-10 14:27:56 +02:00
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] New mail received at %s' , $sitename );
2011-12-24 08:07:05 +01:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '%1$s sent you a new private message at %2$s.' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( '%1$s sent you %2$s.' , '[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]' , '[url=' . $itemlink . ']' . $l10n -> t ( 'a private message' ) . '[/url]' );
2011-12-24 08:07:05 +01:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to view and/or reply to your private messages.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl . '/message/' . $params [ 'item' ][ 'id' ]);
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '/message/' . $params [ 'item' ][ 'id' ] . '">' . $sitename . '</a>' );
2011-12-26 23:16:25 +01:00
}
2019-01-06 02:25:05 +01:00
if ( $params [ 'type' ] == NOTIFY_COMMENT || $params [ 'type' ] == NOTIFY_TAGSELF ) {
2019-09-10 07:44:09 +02:00
$thread = Item :: selectFirstThreadForUser ( $params [ 'uid' ], [ 'ignored' ], [ 'iid' => $parent_id , 'deleted' => false ]);
2019-01-06 02:25:05 +01:00
if ( DBA :: isResult ( $thread ) && $thread [ 'ignored' ]) {
Logger :: log ( 'Thread ' . $parent_id . ' will be ignored' , Logger :: DEBUG );
2019-01-21 17:36:01 +01:00
return false ;
2014-09-04 00:58:52 +02:00
}
2013-01-24 02:46:46 +01:00
// Check to see if there was already a tag notify or comment notify for this post.
2012-07-04 06:40:13 +02:00
// If so don't create a second notification
2020-01-08 22:48:59 +01:00
/// @todo In the future we should store the notification with the highest "value" and replace notifications
2018-08-19 14:46:11 +02:00
$condition = [ 'type' => [ NOTIFY_TAGSELF , NOTIFY_COMMENT , NOTIFY_SHARE ],
'link' => $params [ 'link' ], 'uid' => $params [ 'uid' ]];
if ( DBA :: exists ( 'notify' , $condition )) {
2019-01-21 17:36:01 +01:00
return false ;
2012-07-04 06:40:13 +02:00
}
2014-01-05 16:10:02 +01:00
2012-03-01 03:19:08 +01:00
// if it's a post figure out who's post it is.
2018-01-11 09:26:30 +01:00
$item = null ;
2016-05-21 13:19:30 +02:00
if ( $params [ 'otype' ] === 'item' && $parent_id ) {
2019-09-10 07:44:09 +02:00
$item = Item :: selectFirstForUser ( $params [ 'uid' ], Item :: ITEM_FIELDLIST , [ 'id' => $parent_id , 'deleted' => false ]);
2012-03-01 03:19:08 +01:00
}
2020-01-08 22:48:59 +01:00
if ( empty ( $item )) {
return false ;
}
2018-11-07 03:16:27 +01:00
$item_post_type = Item :: postType ( $item );
2012-03-01 04:23:01 +01:00
2020-01-08 22:48:59 +01:00
$content = ItemContent :: getPlaintextPost ( $item , 70 );
if ( ! empty ( $content [ 'text' ])) {
$title = '"' . trim ( str_replace ( " \n " , " " , $content [ 'text' ])) . '"' ;
2019-01-06 02:25:05 +01:00
} else {
2020-01-08 22:48:59 +01:00
$title = '' ;
2019-01-06 02:25:05 +01:00
}
2020-01-08 22:48:59 +01:00
// First go for the general message
2019-01-06 02:25:05 +01:00
// "George Bull's post"
2020-01-08 23:36:31 +01:00
if ( $params [ 'activity' ][ 'origin_comment' ]) {
2020-01-08 22:59:12 +01:00
$message = '%1$s replied to you on %2$s\'s %3$s %4$s' ;
2020-01-08 23:36:31 +01:00
} elseif ( $params [ 'activity' ][ 'explicit_tagged' ]) {
$message = '%1$s tagged you on %2$s\'s %3$s %4$s' ;
2020-01-08 22:48:59 +01:00
} else {
$message = '%1$s commented on %2$s\'s %3$s %4$s' ;
2018-01-04 03:12:19 +01:00
}
2014-01-05 16:10:02 +01:00
2020-01-08 22:48:59 +01:00
$dest_str = $l10n -> t ( $message , $params [ 'source_name' ], $item [ 'author-name' ], $item_post_type , $title );
// Then look for the special cases
2012-03-01 04:23:01 +01:00
// "your post"
2020-01-08 22:48:59 +01:00
if ( $params [ 'activity' ][ 'origin_thread' ]) {
2020-01-08 23:36:31 +01:00
if ( $params [ 'activity' ][ 'origin_comment' ]) {
2020-01-08 22:59:12 +01:00
$message = '%1$s replied to you on your %2$s %3$s' ;
2020-01-08 23:36:31 +01:00
} elseif ( $params [ 'activity' ][ 'explicit_tagged' ]) {
$message = '%1$s tagged you on your %2$s %3$s' ;
2019-01-06 02:25:05 +01:00
} else {
2020-01-08 22:48:59 +01:00
$message = '%1$s commented on your %2$s %3$s' ;
2019-01-06 02:25:05 +01:00
}
2020-01-08 22:48:59 +01:00
$dest_str = $l10n -> t ( $message , $params [ 'source_name' ], $item_post_type , $title );
2019-01-06 02:25:05 +01:00
// "their post"
2020-01-08 22:48:59 +01:00
} elseif ( $item [ 'author-link' ] == $params [ 'source_link' ]) {
2020-01-08 23:36:31 +01:00
if ( $params [ 'activity' ][ 'origin_comment' ]) {
2020-01-08 22:59:12 +01:00
$message = '%1$s replied to you on their %2$s %3$s' ;
2020-01-08 23:36:31 +01:00
} elseif ( $params [ 'activity' ][ 'explicit_tagged' ]) {
$message = '%1$s tagged you on their %2$s %3$s' ;
2019-01-06 02:25:05 +01:00
} else {
2020-01-08 22:48:59 +01:00
$message = '%1$s commented on their %2$s %3$s' ;
2019-01-06 02:25:05 +01:00
}
2020-01-08 22:48:59 +01:00
$dest_str = $l10n -> t ( $message , $params [ 'source_name' ], $item_post_type , $title );
2018-01-04 03:12:19 +01:00
}
2012-03-01 03:19:08 +01:00
2019-01-06 02:25:05 +01:00
// Some mail software relies on subject field for threading.
2012-02-26 01:56:14 +01:00
// So, we cannot have different subjects for notifications of the same thread.
2014-09-04 00:58:52 +02:00
// Before this we have the name of the replier on the subject rendering
2019-01-06 02:25:05 +01:00
// different subjects for messages on the same thread.
2020-01-08 22:48:59 +01:00
if ( $params [ 'activity' ][ 'explicit_tagged' ]) {
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] %s tagged you' , $params [ 'source_name' ]);
2012-02-28 02:18:19 +01:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '%1$s tagged you at %2$s' , $params [ 'source_name' ], $sitename );
2019-01-06 02:25:05 +01:00
} else {
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] Comment to conversation #%1$d by %2$s' , $parent_id , $params [ 'source_name' ]);
2019-01-06 02:25:05 +01:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '%s commented on an item/conversation you have been following.' , $params [ 'source_name' ]);
2019-01-06 02:25:05 +01:00
}
2016-05-21 13:19:30 +02:00
2014-01-05 16:10:02 +01:00
$epreamble = $dest_str ;
2012-02-18 12:18:20 +01:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to view and/or reply to the conversation.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
2019-01-06 02:25:05 +01:00
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2011-12-26 23:16:25 +01:00
$itemlink = $params [ 'link' ];
}
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_WALL ) {
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] %s posted to your profile wall' , $params [ 'source_name' ]);
2014-01-05 16:10:02 +01:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '%1$s posted to your profile wall at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( '%1$s posted to [url=%2$s]your wall[/url]' ,
2018-01-24 03:59:16 +01:00
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]' ,
$params [ 'link' ]
);
2014-01-05 16:10:02 +01:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to view and/or reply to the conversation.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2014-01-05 16:10:02 +01:00
$itemlink = $params [ 'link' ];
}
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_SHARE ) {
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] %s shared a new post' , $params [ 'source_name' ]);
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '%1$s shared a new post at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( '%1$s [url=%2$s]shared a post[/url].' ,
2018-01-24 03:59:16 +01:00
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]' ,
$params [ 'link' ]
);
2012-02-09 23:06:17 +01:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to view and/or reply to the conversation.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2012-07-20 05:13:40 +02:00
$itemlink = $params [ 'link' ];
}
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_POKE ) {
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] %1$s poked you' , $params [ 'source_name' ]);
2012-07-20 05:13:40 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '%1$s poked you at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( '%1$s [url=%2$s]poked you[/url].' ,
2018-01-24 03:59:16 +01:00
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]' ,
$params [ 'link' ]
);
2012-07-20 05:13:40 +02:00
2019-12-28 23:12:01 +01:00
$subject = str_replace ( 'poked' , $l10n -> t ( $params [ 'activity' ]), $subject );
$preamble = str_replace ( 'poked' , $l10n -> t ( $params [ 'activity' ]), $preamble );
$epreamble = str_replace ( 'poked' , $l10n -> t ( $params [ 'activity' ]), $epreamble );
2012-07-20 05:13:40 +02:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to view and/or reply to the conversation.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2012-02-09 23:06:17 +01:00
$itemlink = $params [ 'link' ];
}
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_TAGSHARE ) {
2018-07-10 14:27:56 +02:00
$itemlink = $params [ 'link' ];
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] %s tagged your post' , $params [ 'source_name' ]);
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '%1$s tagged your post at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( '%1$s tagged [url=%2$s]your post[/url]' ,
2018-01-24 03:59:16 +01:00
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]' ,
$itemlink
);
2012-02-09 23:06:17 +01:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to view and/or reply to the conversation.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2012-02-09 23:06:17 +01:00
}
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_INTRO ) {
2018-07-10 14:27:56 +02:00
$itemlink = $params [ 'link' ];
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] Introduction received' );
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( 'You\'ve received an introduction from \'%1$s\' at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( 'You\'ve received [url=%1$s]an introduction[/url] from %2$s.' ,
2018-01-24 03:59:16 +01:00
$itemlink ,
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]'
);
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$body = $l10n -> t ( 'You may visit their profile at %s' , $params [ 'source_link' ]);
2011-12-27 00:47:40 +01:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to approve or reject the introduction.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2014-09-06 18:15:18 +02:00
switch ( $params [ 'verb' ]) {
2019-10-24 00:25:43 +02:00
case Activity :: FRIEND :
2014-09-06 18:15:18 +02:00
// someone started to share with user (mostly OStatus)
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] A new person is sharing with you' );
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '%1$s is sharing with you at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( '%1$s is sharing with you at %2$s' ,
2018-01-24 03:59:16 +01:00
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]' ,
$sitename
);
2014-09-06 18:15:18 +02:00
break ;
2019-10-24 00:25:43 +02:00
case Activity :: FOLLOW :
2014-09-06 18:15:18 +02:00
// someone started to follow the user (mostly OStatus)
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] You have a new follower' );
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( 'You have a new follower at %2$s : %1$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( 'You have a new follower at %2$s : %1$s' ,
2018-01-24 03:59:16 +01:00
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]' ,
$sitename
);
2014-09-06 18:15:18 +02:00
break ;
default :
2014-09-07 10:27:39 +02:00
// ACTIVITY_REQ_FRIEND is default activity for notifications
2014-09-06 18:15:18 +02:00
break ;
}
2011-12-27 00:47:40 +01:00
}
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_SUGGEST ) {
2018-07-10 14:27:56 +02:00
$itemlink = $params [ 'link' ];
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] Friend suggestion received' );
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( 'You\'ve received a friend suggestion from \'%1$s\' at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( 'You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.' ,
2018-01-24 03:59:16 +01:00
$itemlink ,
'[url=' . $params [ 'item' ][ 'url' ] . ']' . $params [ 'item' ][ 'name' ] . '[/url]' ,
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]'
);
2014-08-21 00:53:01 +02:00
2019-12-28 23:12:01 +01:00
$body = $l10n -> t ( 'Name:' ) . ' ' . $params [ 'item' ][ 'name' ] . " \n " ;
$body .= $l10n -> t ( 'Photo:' ) . ' ' . $params [ 'item' ][ 'photo' ] . " \n " ;
$body .= $l10n -> t ( 'You may visit their profile at %s' , $params [ 'item' ][ 'url' ]);
2012-01-04 02:29:07 +01:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to approve or reject the suggestion.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2012-01-04 02:29:07 +01:00
}
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_CONFIRM ) {
2019-10-24 00:25:43 +02:00
if ( $params [ 'verb' ] == Activity :: FRIEND ) { // mutual connection
2018-07-10 14:27:56 +02:00
$itemlink = $params [ 'link' ];
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] Connection accepted' );
2014-09-06 18:15:18 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '\'%1$s\' has accepted your connection request at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( '%2$s has accepted your [url=%1$s]connection request[/url].' ,
2018-01-24 03:59:16 +01:00
$itemlink ,
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]'
);
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$body = $l10n -> t ( 'You are now mutual friends and may exchange status updates, photos, and email without restriction.' );
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s if you wish to make any changes to this relationship.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2014-09-06 18:15:18 +02:00
} else { // ACTIVITY_FOLLOW
2018-07-10 14:27:56 +02:00
$itemlink = $params [ 'link' ];
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica:Notify] Connection accepted' );
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( '\'%1$s\' has accepted your connection request at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( '%2$s has accepted your [url=%1$s]connection request[/url].' ,
2018-01-24 03:59:16 +01:00
$itemlink ,
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]'
);
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$body = $l10n -> t ( '\'%1$s\' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically.' , $params [ 'source_name' ]);
2014-09-06 18:15:18 +02:00
$body .= " \n \n " ;
2019-12-28 23:12:01 +01:00
$body .= $l10n -> t ( '\'%1$s\' may choose to extend this into a two-way or more permissive relationship in the future.' , $params [ 'source_name' ]);
2014-09-06 18:15:18 +02:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s if you wish to make any changes to this relationship.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $siteurl );
$hsitelink = sprintf ( $sitelink , '<a href="' . $siteurl . '">' . $sitename . '</a>' );
2014-09-06 18:15:18 +02:00
}
2012-03-25 13:37:09 +02:00
}
2016-05-21 13:19:30 +02:00
if ( $params [ 'type' ] == NOTIFY_SYSTEM ) {
2014-09-07 13:55:02 +02:00
switch ( $params [ 'event' ]) {
case " SYSTEM_REGISTER_REQUEST " :
2018-07-10 14:27:56 +02:00
$itemlink = $params [ 'link' ];
2019-12-28 23:12:01 +01:00
$subject = $l10n -> t ( '[Friendica System Notify]' ) . ' ' . $l10n -> t ( 'registration request' );
2016-05-21 13:19:30 +02:00
2019-12-28 23:12:01 +01:00
$preamble = $l10n -> t ( 'You\'ve received a registration request from \'%1$s\' at %2$s' , $params [ 'source_name' ], $sitename );
$epreamble = $l10n -> t ( 'You\'ve received a [url=%1$s]registration request[/url] from %2$s.' ,
2018-01-24 03:59:16 +01:00
$itemlink ,
'[url=' . $params [ 'source_link' ] . ']' . $params [ 'source_name' ] . '[/url]'
);
2019-12-28 23:12:01 +01:00
$body = $l10n -> t ( " Full Name: %s \n Site Location: %s \n Login Name: %s (%s) " ,
2018-01-24 03:59:16 +01:00
$params [ 'source_name' ],
$siteurl , $params [ 'source_mail' ],
$params [ 'source_nick' ]
);
2014-09-07 13:55:02 +02:00
2019-12-28 23:12:01 +01:00
$sitelink = $l10n -> t ( 'Please visit %s to approve or reject the request.' );
2016-05-21 13:19:30 +02:00
$tsitelink = sprintf ( $sitelink , $params [ 'link' ]);
$hsitelink = sprintf ( $sitelink , '<a href="' . $params [ 'link' ] . '">' . $sitename . '</a><br><br>' );
2014-09-07 13:55:02 +02:00
break ;
case " SYSTEM_DB_UPDATE_FAIL " :
break ;
}
2014-09-07 10:27:39 +02:00
}
2017-09-08 17:14:33 +02:00
if ( $params [ 'type' ] == SYSTEM_EMAIL ) {
2014-09-07 10:27:39 +02:00
// not part of the notifications.
// it just send a mail to the user.
// It will be used by the system to send emails to users (like
// password reset, invitations and so) using one look (but without
// add a notification to the user, with could be inexistent)
2019-03-13 20:44:07 +01:00
if ( ! isset ( $params [ 'subject' ])) {
Logger :: warning ( 'subject isn\'t set.' , [ 'type' => $params [ 'type' ]]);
}
2019-10-16 14:43:59 +02:00
$subject = $params [ 'subject' ] ? ? '' ;
2016-05-21 13:19:30 +02:00
2019-03-13 20:44:07 +01:00
if ( ! isset ( $params [ 'preamble' ])) {
Logger :: warning ( 'preamble isn\'t set.' , [ 'type' => $params [ 'type' ], 'subject' => $subject ]);
}
2019-10-16 14:43:59 +02:00
$preamble = $params [ 'preamble' ] ? ? '' ;
2016-05-21 13:19:30 +02:00
2019-03-13 20:44:07 +01:00
if ( ! isset ( $params [ 'body' ])) {
Logger :: warning ( 'body isn\'t set.' , [ 'type' => $params [ 'type' ], 'subject' => $subject , 'preamble' => $preamble ]);
}
2019-10-16 14:43:59 +02:00
$body = $params [ 'body' ] ? ? '' ;
2016-05-21 13:19:30 +02:00
$show_in_notification_page = false ;
2011-12-27 00:47:40 +01:00
}
2014-12-23 00:55:36 +01:00
$subject .= " ( " . $nickname . " @ " . $hostname . " ) " ;
2014-09-06 15:52:53 +02:00
2018-01-15 14:05:12 +01:00
$h = [
2014-09-04 00:58:52 +02:00
'params' => $params ,
2012-03-25 14:06:11 +02:00
'subject' => $subject ,
2014-09-04 00:58:52 +02:00
'preamble' => $preamble ,
'epreamble' => $epreamble ,
'body' => $body ,
2012-03-25 14:06:11 +02:00
'sitelink' => $sitelink ,
'tsitelink' => $tsitelink ,
'hsitelink' => $hsitelink ,
'itemlink' => $itemlink
2018-01-15 14:05:12 +01:00
];
2014-08-21 00:53:01 +02:00
2018-12-26 07:06:24 +01:00
Hook :: callAll ( 'enotify' , $h );
2012-03-25 14:06:11 +02:00
$subject = $h [ 'subject' ];
2016-05-21 13:19:30 +02:00
2012-03-25 14:06:11 +02:00
$preamble = $h [ 'preamble' ];
$epreamble = $h [ 'epreamble' ];
2016-05-21 13:19:30 +02:00
2012-03-25 14:06:11 +02:00
$body = $h [ 'body' ];
2016-05-21 13:19:30 +02:00
2012-03-25 14:06:11 +02:00
$tsitelink = $h [ 'tsitelink' ];
$hsitelink = $h [ 'hsitelink' ];
2014-03-11 23:52:32 +01:00
$itemlink = $h [ 'itemlink' ];
2012-03-25 14:06:11 +02:00
2019-01-07 18:51:48 +01:00
$notify_id = 0 ;
2014-09-07 10:27:39 +02:00
if ( $show_in_notification_page ) {
2018-10-30 14:58:45 +01:00
Logger :: log ( " adding notification entry " , Logger :: DEBUG );
2012-02-18 11:57:42 +01:00
2017-04-04 19:47:32 +02:00
/// @TODO One statement is enough
2018-01-15 14:05:12 +01:00
$datarray = [];
2014-09-06 18:15:18 +02:00
$datarray [ 'name' ] = $params [ 'source_name' ];
2018-02-15 03:33:55 +01:00
$datarray [ 'name_cache' ] = strip_tags ( BBCode :: convert ( $params [ 'source_name' ]));
2014-09-06 18:15:18 +02:00
$datarray [ 'url' ] = $params [ 'source_link' ];
$datarray [ 'photo' ] = $params [ 'source_photo' ];
2018-01-27 03:38:34 +01:00
$datarray [ 'date' ] = DateTimeFormat :: utcNow ();
2014-09-06 18:15:18 +02:00
$datarray [ 'uid' ] = $params [ 'uid' ];
$datarray [ 'link' ] = $itemlink ;
2015-04-16 07:18:06 +02:00
$datarray [ 'iid' ] = $item_id ;
2014-09-06 18:15:18 +02:00
$datarray [ 'parent' ] = $parent_id ;
$datarray [ 'type' ] = $params [ 'type' ];
$datarray [ 'verb' ] = $params [ 'verb' ];
$datarray [ 'otype' ] = $params [ 'otype' ];
$datarray [ 'abort' ] = false ;
2012-02-21 04:50:05 +01:00
2018-12-26 07:06:24 +01:00
Hook :: callAll ( 'enotify_store' , $datarray );
2013-02-08 08:43:55 +01:00
2016-05-21 13:19:30 +02:00
if ( $datarray [ 'abort' ]) {
2019-01-21 17:36:01 +01:00
return false ;
2013-02-08 08:43:55 +01:00
}
2014-09-06 18:15:18 +02:00
// create notification entry in DB
2019-11-09 21:46:50 +01:00
$fields = [ 'name' => $datarray [ 'name' ], 'url' => $datarray [ 'url' ],
2018-08-19 14:46:11 +02:00
'photo' => $datarray [ 'photo' ], 'date' => $datarray [ 'date' ], 'uid' => $datarray [ 'uid' ],
'link' => $datarray [ 'link' ], 'iid' => $datarray [ 'iid' ], 'parent' => $datarray [ 'parent' ],
'type' => $datarray [ 'type' ], 'verb' => $datarray [ 'verb' ], 'otype' => $datarray [ 'otype' ],
'name_cache' => $datarray [ " name_cache " ]];
DBA :: insert ( 'notify' , $fields );
2013-02-08 08:43:55 +01:00
2018-08-19 14:46:11 +02:00
$notify_id = DBA :: lastInsertId ();
2013-02-08 08:43:55 +01:00
2020-01-24 18:32:38 +01:00
$itemlink = DI :: baseUrl () . '/notification/view/' . $notify_id ;
2018-10-31 15:35:50 +01:00
$msg = Renderer :: replaceMacros ( $epreamble , [ '$itemlink' => $itemlink ]);
2018-02-15 03:33:55 +01:00
$msg_cache = format_notification_message ( $datarray [ 'name_cache' ], strip_tags ( BBCode :: convert ( $msg )));
2018-08-19 14:46:11 +02:00
$fields = [ 'msg' => $msg , 'msg_cache' => $msg_cache ];
$condition = [ 'id' => $notify_id , 'uid' => $params [ 'uid' ]];
DBA :: update ( 'notify' , $fields , $condition );
2014-09-06 18:15:18 +02:00
}
// send email notification if notification preferences permit
2018-08-23 10:00:25 +02:00
if (( intval ( $params [ 'notify_flags' ]) & intval ( $params [ 'type' ]))
2014-09-07 10:27:39 +02:00
|| $params [ 'type' ] == NOTIFY_SYSTEM
2017-09-08 17:14:33 +02:00
|| $params [ 'type' ] == SYSTEM_EMAIL ) {
2011-12-24 08:07:05 +01:00
2018-10-29 22:20:46 +01:00
Logger :: log ( 'sending notification email' );
2011-12-24 08:07:05 +01:00
2017-06-08 04:00:59 +02:00
if ( isset ( $params [ 'parent' ]) && ( intval ( $params [ 'parent' ]) != 0 )) {
2014-08-21 00:53:01 +02:00
$id_for_parent = $params [ 'parent' ] . " @ " . $hostname ;
2012-02-26 01:56:14 +01:00
2014-08-21 00:53:01 +02:00
// Is this the first email notification for this parent item and user?
2018-08-19 14:46:11 +02:00
if ( ! DBA :: exists ( 'notify-threads' , [ 'master-parent-item' => $params [ 'parent' ], 'receiver-uid' => $params [ 'uid' ]])) {
2018-10-30 14:58:45 +01:00
Logger :: log ( " notify_id: " . intval ( $notify_id ) . " , parent: " . intval ( $params [ 'parent' ]) . " uid: " . intval ( $params [ 'uid' ]), Logger :: DEBUG );
2018-08-19 14:46:11 +02:00
$fields = [ 'notify-id' => $notify_id , 'master-parent-item' => $params [ 'parent' ],
'receiver-uid' => $params [ 'uid' ], 'parent-item' => 0 ];
DBA :: insert ( 'notify-threads' , $fields );
2014-08-21 00:53:01 +02:00
$additional_mail_header .= " Message-ID: < ${ id_for_parent } > \n " ;
2016-05-21 13:19:30 +02:00
$log_msg = " include/enotify: No previous notification found for this parent: \n " .
" parent: ${ params['parent'] } \n " . " uid : ${ params['uid'] } \n " ;
2018-10-30 14:58:45 +01:00
Logger :: log ( $log_msg , Logger :: DEBUG );
2014-08-21 00:53:01 +02:00
} else {
// If not, just "follow" the thread.
$additional_mail_header .= " References: < ${ id_for_parent } > \n In-Reply-To: < ${ id_for_parent } > \n " ;
2018-10-30 14:58:45 +01:00
Logger :: log ( " There's already a notification for this parent. " , Logger :: DEBUG );
2014-08-21 00:53:01 +02:00
}
2012-02-26 01:56:14 +01:00
}
2018-06-15 05:42:08 +02:00
$textversion = BBCode :: toPlaintext ( $body );
$htmlversion = BBCode :: convert ( $body );
2014-09-07 10:27:39 +02:00
2018-01-15 14:05:12 +01:00
$datarray = [];
2012-02-27 08:54:04 +01:00
$datarray [ 'banner' ] = $banner ;
$datarray [ 'product' ] = $product ;
$datarray [ 'preamble' ] = $preamble ;
$datarray [ 'sitename' ] = $sitename ;
$datarray [ 'siteurl' ] = $siteurl ;
2012-02-28 02:18:19 +01:00
$datarray [ 'type' ] = $params [ 'type' ];
2018-07-10 14:27:56 +02:00
$datarray [ 'parent' ] = $parent_id ;
2019-10-16 14:43:59 +02:00
$datarray [ 'source_name' ] = $params [ 'source_name' ] ? ? '' ;
$datarray [ 'source_link' ] = $params [ 'source_link' ] ? ? '' ;
$datarray [ 'source_photo' ] = $params [ 'source_photo' ] ? ? '' ;
2012-02-28 02:18:19 +01:00
$datarray [ 'uid' ] = $params [ 'uid' ];
2019-10-16 14:43:59 +02:00
$datarray [ 'username' ] = $params [ 'to_name' ] ? ? '' ;
2012-02-27 08:54:04 +01:00
$datarray [ 'hsitelink' ] = $hsitelink ;
$datarray [ 'tsitelink' ] = $tsitelink ;
2016-05-21 13:19:30 +02:00
$datarray [ 'hitemlink' ] = '<a href="' . $itemlink . '">' . $itemlink . '</a>' ;
2012-02-27 08:54:04 +01:00
$datarray [ 'titemlink' ] = $itemlink ;
$datarray [ 'thanks' ] = $thanks ;
$datarray [ 'site_admin' ] = $site_admin ;
$datarray [ 'title' ] = stripslashes ( $title );
$datarray [ 'htmlversion' ] = $htmlversion ;
$datarray [ 'textversion' ] = $textversion ;
$datarray [ 'subject' ] = $subject ;
$datarray [ 'headers' ] = $additional_mail_header ;
2018-12-26 07:06:24 +01:00
Hook :: callAll ( 'enotify_mail' , $datarray );
2012-02-27 08:54:04 +01:00
2013-02-23 17:31:34 +01:00
// check whether sending post content in email notifications is allowed
2017-09-08 17:14:33 +02:00
// always true for SYSTEM_EMAIL
2020-01-19 21:21:13 +01:00
$content_allowed = (( ! DI :: config () -> get ( 'system' , 'enotify_no_content' )) || ( $params [ 'type' ] == SYSTEM_EMAIL ));
2013-02-23 17:31:34 +01:00
2011-12-24 08:07:05 +01:00
// load the template for private message notifications
2018-10-31 15:44:06 +01:00
$tpl = Renderer :: getMarkupTemplate ( 'email_notify_html.tpl' );
2018-10-31 15:35:50 +01:00
$email_html_body = Renderer :: replaceMacros ( $tpl , [
2012-02-27 08:54:04 +01:00
'$banner' => $datarray [ 'banner' ],
'$product' => $datarray [ 'product' ],
2016-05-21 13:19:30 +02:00
'$preamble' => str_replace ( " \n " , " <br> \n " , $datarray [ 'preamble' ]),
2012-02-27 08:54:04 +01:00
'$sitename' => $datarray [ 'sitename' ],
'$siteurl' => $datarray [ 'siteurl' ],
'$source_name' => $datarray [ 'source_name' ],
'$source_link' => $datarray [ 'source_link' ],
'$source_photo' => $datarray [ 'source_photo' ],
2018-07-10 14:27:56 +02:00
'$username' => $datarray [ 'username' ],
2012-02-27 08:54:04 +01:00
'$hsitelink' => $datarray [ 'hsitelink' ],
'$hitemlink' => $datarray [ 'hitemlink' ],
'$thanks' => $datarray [ 'thanks' ],
'$site_admin' => $datarray [ 'site_admin' ],
2016-05-21 13:19:30 +02:00
'$title' => $datarray [ 'title' ],
2013-02-23 17:31:34 +01:00
'$htmlversion' => $datarray [ 'htmlversion' ],
'$content_allowed' => $content_allowed ,
2018-01-15 14:05:12 +01:00
]);
2014-09-04 00:58:52 +02:00
2011-12-24 08:07:05 +01:00
// load the template for private message notifications
2018-10-31 15:44:06 +01:00
$tpl = Renderer :: getMarkupTemplate ( 'email_notify_text.tpl' );
2018-10-31 15:35:50 +01:00
$email_text_body = Renderer :: replaceMacros ( $tpl , [
2012-02-27 08:54:04 +01:00
'$banner' => $datarray [ 'banner' ],
'$product' => $datarray [ 'product' ],
'$preamble' => $datarray [ 'preamble' ],
'$sitename' => $datarray [ 'sitename' ],
'$siteurl' => $datarray [ 'siteurl' ],
'$source_name' => $datarray [ 'source_name' ],
'$source_link' => $datarray [ 'source_link' ],
'$source_photo' => $datarray [ 'source_photo' ],
2018-07-10 14:27:56 +02:00
'$username' => $datarray [ 'username' ],
2012-02-27 08:54:04 +01:00
'$tsitelink' => $datarray [ 'tsitelink' ],
'$titemlink' => $datarray [ 'titemlink' ],
'$thanks' => $datarray [ 'thanks' ],
'$site_admin' => $datarray [ 'site_admin' ],
2016-05-21 13:19:30 +02:00
'$title' => $datarray [ 'title' ],
2014-09-04 00:58:52 +02:00
'$textversion' => $datarray [ 'textversion' ],
2013-02-23 17:31:34 +01:00
'$content_allowed' => $content_allowed ,
2018-01-15 14:05:12 +01:00
]);
2011-12-24 08:07:05 +01:00
2014-09-06 15:52:53 +02:00
// use the Emailer class to send the message
2019-01-21 17:36:01 +01:00
return Emailer :: send ([
2014-12-29 16:04:51 +01:00
'uid' => $params [ 'uid' ],
2011-12-26 08:00:19 +01:00
'fromName' => $sender_name ,
'fromEmail' => $sender_email ,
'replyTo' => $sender_email ,
'toEmail' => $params [ 'to_email' ],
2012-02-27 08:54:04 +01:00
'messageSubject' => $datarray [ 'subject' ],
2011-12-26 08:00:19 +01:00
'htmlVersion' => $email_html_body ,
2012-02-26 01:56:14 +01:00
'textVersion' => $email_text_body ,
2019-01-21 17:36:01 +01:00
'additionalMailHeader' => $datarray [ 'headers' ]
]);
2011-12-24 08:07:05 +01:00
}
2012-02-18 11:57:42 +01:00
2017-11-20 21:37:30 +01:00
return false ;
2011-12-24 08:07:05 +01:00
}
2011-12-08 10:28:27 +01:00
2018-01-07 12:08:36 +01:00
/**
2020-01-19 07:05:23 +01:00
* Checks for users who should be notified
2018-01-07 12:08:36 +01:00
*
* @ param int $itemid ID of the item for which the check should be done
2019-01-07 16:24:06 +01:00
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
2018-01-07 12:08:36 +01:00
*/
function check_user_notification ( $itemid ) {
2020-01-06 01:59:18 +01:00
// fetch all users with notifications
$useritems = DBA :: select ( 'user-item' , [ 'uid' , 'notification-type' ], [ 'iid' => $itemid ]);
while ( $useritem = DBA :: fetch ( $useritems )) {
check_item_notification ( $itemid , $useritem [ 'uid' ], $useritem [ 'notification-type' ]);
2018-01-07 12:08:36 +01:00
}
2020-01-06 01:59:18 +01:00
DBA :: close ( $useritems );
2018-01-07 12:08:36 +01:00
}
2016-01-28 22:58:05 +01:00
/**
2020-01-19 07:05:23 +01:00
* Checks for item related notifications and sends them
2016-01-28 22:58:05 +01:00
*
2020-01-06 01:59:18 +01:00
* @ param int $itemid ID of the item for which the check should be done
* @ param int $uid User ID
* @ param int $notification_type Notification bits
2019-01-07 16:24:06 +01:00
* @ return bool
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
2016-01-28 22:58:05 +01:00
*/
2020-01-06 01:59:18 +01:00
function check_item_notification ( $itemid , $uid , $notification_type ) {
2018-06-30 15:54:01 +02:00
$fields = [ 'id' , 'mention' , 'tag' , 'parent' , 'title' , 'body' ,
'author-link' , 'author-name' , 'author-avatar' , 'author-id' ,
'guid' , 'parent-uri' , 'uri' , 'contact-id' , 'network' ];
2019-09-10 07:44:09 +02:00
$condition = [ 'id' => $itemid , 'gravity' => [ GRAVITY_PARENT , GRAVITY_COMMENT ], 'deleted' => false ];
2019-03-15 06:23:45 +01:00
$item = Item :: selectFirstForUser ( $uid , $fields , $condition );
2020-01-06 01:59:18 +01:00
if ( ! DBA :: isResult ( $item )) {
2019-01-21 17:36:01 +01:00
return false ;
2018-06-16 00:30:49 +02:00
}
2018-06-09 18:56:37 +02:00
2016-01-28 22:58:05 +01:00
// Generate the notification array
2018-01-15 14:05:12 +01:00
$params = [];
2020-01-06 01:59:18 +01:00
$params [ 'uid' ] = $uid ;
$params [ 'item' ] = $item ;
$params [ 'parent' ] = $item [ 'parent' ];
$params [ 'link' ] = DI :: baseUrl () . '/display/' . urlencode ( $item [ 'guid' ]);
$params [ 'otype' ] = 'item' ;
$params [ 'source_name' ] = $item [ 'author-name' ];
$params [ 'source_link' ] = $item [ 'author-link' ];
$params [ 'source_photo' ] = $item [ 'author-avatar' ];
2020-01-08 22:48:59 +01:00
// Set the activity flags
$params [ 'activity' ][ 'explicit_tagged' ] = ( $notification_type & UserItem :: NOTIF_EXPLICIT_TAGGED );
$params [ 'activity' ][ 'implicit_tagged' ] = ( $notification_type & UserItem :: NOTIF_IMPLICIT_TAGGED );
$params [ 'activity' ][ 'origin_comment' ] = ( $notification_type & UserItem :: NOTIF_DIRECT_COMMENT );
$params [ 'activity' ][ 'origin_thread' ] = ( $notification_type & UserItem :: NOTIF_THREAD_COMMENT );
$params [ 'activity' ][ 'thread_comment' ] = ( $notification_type & UserItem :: NOTIF_COMMENT_PARTICIPATION );
$params [ 'activity' ][ 'thread_activity' ] = ( $notification_type & UserItem :: NOTIF_ACTIVITY_PARTICIPATION );
2020-01-09 18:53:17 +01:00
// Tagging a user in a direct post (first comment level) means a direct comment
if ( $params [ 'activity' ][ 'explicit_tagged' ] && ( $notification_type & UserItem :: NOTIF_DIRECT_THREAD_COMMENT )) {
$params [ 'activity' ][ 'origin_comment' ] = true ;
}
2020-01-06 01:59:18 +01:00
if ( $notification_type & UserItem :: NOTIF_SHARED ) {
$params [ 'type' ] = NOTIFY_SHARE ;
2020-01-08 22:48:59 +01:00
$params [ 'verb' ] = Activity :: POST ;
2020-01-06 01:59:18 +01:00
} elseif ( $notification_type & UserItem :: NOTIF_EXPLICIT_TAGGED ) {
$params [ 'type' ] = NOTIFY_TAGSELF ;
$params [ 'verb' ] = Activity :: TAG ;
} elseif ( $notification_type & UserItem :: NOTIF_IMPLICIT_TAGGED ) {
2020-01-08 22:48:59 +01:00
$params [ 'type' ] = NOTIFY_COMMENT ;
$params [ 'verb' ] = Activity :: POST ;
2020-01-06 01:59:18 +01:00
} elseif ( $notification_type & UserItem :: NOTIF_THREAD_COMMENT ) {
$params [ 'type' ] = NOTIFY_COMMENT ;
$params [ 'verb' ] = Activity :: POST ;
} elseif ( $notification_type & UserItem :: NOTIF_DIRECT_COMMENT ) {
$params [ 'type' ] = NOTIFY_COMMENT ;
$params [ 'verb' ] = Activity :: POST ;
} elseif ( $notification_type & UserItem :: NOTIF_COMMENT_PARTICIPATION ) {
$params [ 'type' ] = NOTIFY_COMMENT ;
$params [ 'verb' ] = Activity :: POST ;
} elseif ( $notification_type & UserItem :: NOTIF_ACTIVITY_PARTICIPATION ) {
$params [ 'type' ] = NOTIFY_COMMENT ;
$params [ 'verb' ] = Activity :: POST ;
} else {
return false ;
2018-08-12 06:34:56 +02:00
}
2020-01-06 01:59:18 +01:00
notification ( $params );
2016-01-28 22:58:05 +01:00
}
2016-10-28 12:28:16 +02:00
/**
2020-01-19 07:05:23 +01:00
* Formats a notification message with the notification author
2016-10-28 12:28:16 +02:00
*
* Replace the name with { 0 } but ensure to make that only once . The { 0 } is used
* later and prints the name in bold .
*
* @ param string $name
* @ param string $message
* @ return string Formatted message
*/
function format_notification_message ( $name , $message ) {
if ( $name != '' ) {
$pos = strpos ( $message , $name );
} else {
$pos = false ;
}
if ( $pos !== false ) {
$message = substr_replace ( $message , '{0}' , $pos , strlen ( $name ));
}
return $message ;
2016-11-03 14:00:20 +01:00
}