2011-08-26 14:29:22 +00:00
< ? php
2017-11-16 12:32:31 +00:00
/**
2022-01-02 07:27:47 +00:00
* @ copyright Copyright ( C ) 2010 - 2022 , the Friendica project
2020-02-09 15:18:46 +00: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 />.
*
2017-11-16 12:32:31 +00:00
*/
2020-02-09 15:18:46 +00:00
2022-12-30 21:20:28 +00:00
namespace Friendica\Protocol ;
2017-11-19 18:59:55 +00:00
2021-10-21 21:13:19 +00:00
use Friendica\Contact\FriendSuggest\Collection\FriendSuggests ;
use Friendica\Contact\FriendSuggest\Exception\FriendSuggestNotFoundException ;
2018-10-29 21:20:46 +00:00
use Friendica\Core\Logger ;
2018-08-11 20:40:44 +00:00
use Friendica\Core\Protocol ;
2022-09-12 21:12:11 +00:00
use Friendica\Core\Worker ;
2018-07-20 12:19:26 +00:00
use Friendica\Database\DBA ;
2019-12-15 21:34:11 +00:00
use Friendica\DI ;
2022-09-12 21:12:11 +00:00
use Friendica\Model\Contact ;
use Friendica\Model\GServer ;
use Friendica\Model\Item ;
use Friendica\Model\Post ;
use Friendica\Model\User ;
use Friendica\Protocol\Activity ;
2017-11-08 03:57:46 +00:00
use Friendica\Protocol\DFRN ;
2018-01-31 02:14:44 +00:00
use Friendica\Protocol\Diaspora ;
2017-12-01 19:41:27 +00:00
use Friendica\Protocol\Email ;
2020-11-15 23:28:05 +00:00
use Friendica\Protocol\Relay ;
2022-09-12 21:12:11 +00:00
use Friendica\Util\Network ;
2017-01-18 21:45:32 +00:00
2019-12-15 22:28:01 +00:00
class Delivery
2018-04-27 12:40:52 +00:00
{
2018-10-01 05:44:56 +00:00
const MAIL = 'mail' ;
const SUGGESTION = 'suggest' ;
const RELOCATION = 'relocate' ;
const DELETION = 'drop' ;
const POST = 'wall-new' ;
const REMOVAL = 'removeme' ;
const PROFILEUPDATE = 'profileupdate' ;
2018-04-27 02:52:12 +00:00
2022-12-30 21:20:28 +00:00
public static function deliver ( string $cmd , int $post_uriid , int $contact_id , int $sender_uid = 0 )
2018-04-27 12:40:52 +00:00
{
2021-02-14 14:24:48 +00:00
Logger :: info ( 'Invoked' , [ 'cmd' => $cmd , 'target' => $post_uriid , 'sender_uid' => $sender_uid , 'contact' => $contact_id ]);
2012-05-19 09:42:11 +00:00
$top_level = false ;
2015-12-13 23:39:20 +00:00
$followup = false ;
2018-04-26 05:45:05 +00:00
$public_message = false ;
2011-08-26 14:29:22 +00:00
2018-10-16 22:26:43 +00:00
$items = [];
2018-04-27 02:52:12 +00:00
if ( $cmd == self :: MAIL ) {
2021-02-19 06:30:38 +00:00
$target_item = DBA :: selectFirst ( 'mail' , [], [ 'id' => $post_uriid ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $target_item )) {
2015-12-13 23:39:20 +00:00
return ;
}
2018-04-25 21:18:21 +00:00
$uid = $target_item [ 'uid' ];
2018-04-27 02:52:12 +00:00
} elseif ( $cmd == self :: SUGGESTION ) {
2021-10-21 21:13:19 +00:00
try {
2021-10-23 18:17:12 +00:00
$target_item = DI :: fsuggest () -> selectOneById ( $post_uriid ) -> toArray ();
2021-10-21 21:13:19 +00:00
} catch ( FriendSuggestNotFoundException $e ) {
DI :: logger () -> info ( 'Cannot find FriendSuggestion' , [ 'id' => $post_uriid ]);
2015-12-13 23:39:20 +00:00
return ;
2017-01-10 16:11:08 +00:00
}
2021-10-23 18:17:12 +00:00
$uid = $target_item [ 'uid' ];
2018-04-27 02:52:12 +00:00
} elseif ( $cmd == self :: RELOCATION ) {
2021-02-19 06:30:38 +00:00
$uid = $post_uriid ;
2018-10-23 02:24:24 +00:00
$target_item = [];
2015-12-13 23:39:20 +00:00
} else {
2022-09-12 21:12:11 +00:00
$item = Post :: selectFirst ([ 'id' , 'parent' ], [ 'uri-id' => $post_uriid , 'uid' => $sender_uid ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $item ) || empty ( $item [ 'parent' ])) {
2021-02-19 06:30:38 +00:00
Logger :: warning ( 'Post not found' , [ 'uri-id' => $post_uriid , 'uid' => $sender_uid ]);
2017-11-19 18:59:55 +00:00
return ;
2012-05-19 09:42:11 +00:00
}
2021-02-19 06:30:38 +00:00
$target_id = intval ( $item [ 'id' ]);
2018-04-26 07:11:18 +00:00
$parent_id = intval ( $item [ 'parent' ]);
2011-08-29 02:22:27 +00:00
2021-02-13 19:56:03 +00:00
$condition = [ 'id' => [ $target_id , $parent_id ], 'visible' => true ];
2018-06-17 21:35:33 +00:00
$params = [ 'order' => [ 'id' ]];
2022-09-12 21:12:11 +00:00
$itemdata = Post :: select ( Item :: DELIVER_FIELDLIST , $condition , $params );
2018-06-17 21:35:33 +00:00
2022-09-12 21:12:11 +00:00
while ( $item = Post :: fetch ( $itemdata )) {
2020-08-31 02:46:24 +00:00
if ( $item [ 'verb' ] == Activity :: ANNOUNCE ) {
continue ;
}
2021-09-15 04:36:01 +00:00
2018-04-26 07:11:18 +00:00
if ( $item [ 'id' ] == $parent_id ) {
$parent = $item ;
2018-04-26 06:23:01 +00:00
}
2018-12-07 05:37:17 +00:00
if ( $item [ 'id' ] == $target_id ) {
2018-04-26 07:11:18 +00:00
$target_item = $item ;
}
$items [] = $item ;
2012-05-19 09:42:11 +00:00
}
2018-07-20 12:19:26 +00:00
DBA :: close ( $itemdata );
2018-04-26 07:11:18 +00:00
2018-07-31 05:54:25 +00:00
if ( empty ( $target_item )) {
2022-08-31 05:01:22 +00:00
Logger :: warning ( " No target item data. Quitting here. " , [ 'id' => $target_id ]);
2018-07-31 05:54:25 +00:00
return ;
}
if ( empty ( $parent )) {
2022-08-30 19:45:30 +00:00
Logger :: warning ( 'Parent ' . $parent_id . ' for item ' . $target_id . " wasn't found. Quitting here. " );
2020-05-02 19:34:02 +00:00
self :: setFailedQueue ( $cmd , $target_item );
2018-07-31 05:54:25 +00:00
return ;
}
2019-01-17 23:06:27 +00:00
if ( ! empty ( $target_item [ 'contact-uid' ])) {
$uid = $target_item [ 'contact-uid' ];
} elseif ( ! empty ( $target_item [ 'uid' ])) {
$uid = $target_item [ 'uid' ];
} else {
2021-11-03 23:19:24 +00:00
Logger :: info ( 'Only public users for item ' . $target_id );
2020-05-02 19:34:02 +00:00
self :: setFailedQueue ( $cmd , $target_item );
2019-01-17 23:06:27 +00:00
return ;
}
2011-08-26 14:29:22 +00:00
2019-10-07 04:19:12 +00:00
$condition = [ 'uri' => $target_item [ 'thr-parent' ], 'uid' => $target_item [ 'uid' ]];
2022-09-12 21:12:11 +00:00
$thr_parent = Post :: selectFirst ([ 'network' , 'object' ], $condition );
2019-10-07 04:19:12 +00:00
if ( ! DBA :: isResult ( $thr_parent )) {
// Shouldn't happen. But when this does, we just take the parent as thread parent.
// That's totally okay for what we use this variable here.
$thr_parent = $parent ;
}
2022-09-12 21:12:11 +00:00
if ( ! empty ( $contact_id ) && Contact :: isArchived ( $contact_id )) {
2019-08-27 19:01:11 +00:00
Logger :: info ( 'Contact is archived' , [ 'id' => $contact_id , 'cmd' => $cmd , 'item' => $target_item [ 'id' ]]);
2020-05-02 19:34:02 +00:00
self :: setFailedQueue ( $cmd , $target_item );
2019-08-27 19:01:11 +00:00
return ;
}
2012-05-19 09:42:11 +00:00
// avoid race condition with deleting entries
2016-03-13 18:47:02 +00:00
if ( $items [ 0 ][ 'deleted' ]) {
2017-01-10 16:11:08 +00:00
foreach ( $items as $item ) {
2012-05-19 09:42:11 +00:00
$item [ 'deleted' ] = 1 ;
2017-01-10 16:11:08 +00:00
}
2012-05-19 09:42:11 +00:00
}
2022-09-12 21:12:11 +00:00
$top_level = $target_item [ 'gravity' ] == Item :: GRAVITY_PARENT ;
2011-08-26 14:29:22 +00:00
2012-05-19 09:42:11 +00:00
// This is IMPORTANT!!!!
2011-08-26 14:29:22 +00:00
2012-05-19 09:42:11 +00:00
// We will only send a "notify owner to relay" or followup message if the referenced post
// originated on our system by virtue of having our hostname somewhere
// in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
// if $parent['wall'] == 1 we will already have the parent message in our array
// and we will relay the whole lot.
2014-08-07 05:59:43 +00:00
2019-12-15 23:47:24 +00:00
$localhost = DI :: baseUrl () -> getHostname ();
2018-04-26 05:45:05 +00:00
if ( strpos ( $localhost , ':' )) {
$localhost = substr ( $localhost , 0 , strpos ( $localhost , ':' ));
2017-01-10 16:11:08 +00:00
}
2015-12-13 23:39:20 +00:00
/**
*
* Be VERY CAREFUL if you make any changes to the following line . Seemingly innocuous changes
* have been known to cause runaway conditions which affected several servers , along with
* permissions issues .
*
*/
2014-08-07 05:59:43 +00:00
2018-01-17 23:22:01 +00:00
if ( ! $top_level && ( $parent [ 'wall' ] == 0 ) && stristr ( $target_item [ 'uri' ], $localhost )) {
2021-11-03 23:19:24 +00:00
Logger :: info ( 'Followup ' . $target_item [ " guid " ]);
2015-12-13 23:39:20 +00:00
// local followup to remote post
$followup = true ;
}
2018-04-26 05:45:05 +00:00
if ( empty ( $parent [ 'allow_cid' ])
&& empty ( $parent [ 'allow_gid' ])
&& empty ( $parent [ 'deny_cid' ])
&& empty ( $parent [ 'deny_gid' ])
2022-09-12 21:12:11 +00:00
&& ( $parent [ 'private' ] != Item :: PRIVATE )) {
2018-04-26 05:45:05 +00:00
$public_message = true ;
2015-12-13 23:39:20 +00:00
}
2012-05-19 09:42:11 +00:00
}
2011-08-26 14:29:22 +00:00
2018-07-15 18:36:20 +00:00
if ( empty ( $items )) {
2022-08-30 19:45:30 +00:00
Logger :: warning ( 'No delivery data' , [ 'command' => $cmd , 'uri-id' => $post_uriid , 'cid' => $contact_id ]);
2018-07-15 18:36:20 +00:00
}
2022-09-12 21:12:11 +00:00
$owner = User :: getOwnerDataById ( $uid );
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $owner )) {
2020-05-02 19:34:02 +00:00
self :: setFailedQueue ( $cmd , $target_item );
2018-04-26 05:45:05 +00:00
return ;
}
2020-11-23 19:25:22 +00:00
// We don't deliver our items to blocked, archived or pending contacts, and not to ourselves either
2018-07-20 12:19:26 +00:00
$contact = DBA :: selectFirst ( 'contact' , [],
2020-11-23 19:25:22 +00:00
[ 'id' => $contact_id , 'archive' => false , 'blocked' => false , 'pending' => false , 'self' => false ]
2012-05-19 09:42:11 +00:00
);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $contact )) {
2020-05-02 19:34:02 +00:00
self :: setFailedQueue ( $cmd , $target_item );
2017-11-19 18:59:55 +00:00
return ;
2017-01-10 16:11:08 +00:00
}
2018-02-14 05:05:00 +00:00
2018-11-22 22:09:22 +00:00
if ( Network :: isUrlBlocked ( $contact [ 'url' ])) {
2020-05-02 19:34:02 +00:00
self :: setFailedQueue ( $cmd , $target_item );
2018-11-22 22:09:22 +00:00
return ;
}
2022-09-12 21:12:11 +00:00
$protocol = GServer :: getProtocol ( $contact [ 'gsid' ] ? ? 0 );
2021-01-09 23:05:28 +00:00
2019-10-07 04:19:12 +00:00
// Transmit via Diaspora if the thread had started as Diaspora post.
// Also transmit via Diaspora if this is a direct answer to a Diaspora comment.
2018-04-26 05:45:05 +00:00
// This is done since the uri wouldn't match (Diaspora doesn't transmit it)
2020-12-11 06:35:38 +00:00
// Also transmit relayed posts from Diaspora contacts via Diaspora.
2022-12-26 14:11:37 +00:00
if (( $contact [ 'network' ] != Protocol :: DIASPORA ) && in_array ( Protocol :: DIASPORA , [ $parent [ 'network' ] ? ? '' , $thr_parent [ 'network' ] ? ? '' , $target_item [ 'network' ] ? ? '' ])) {
2021-09-04 04:51:20 +00:00
Logger :: info ( 'Enforcing the Diaspora protocol' , [ 'id' => $contact [ 'id' ], 'network' => $contact [ 'network' ], 'parent' => $parent [ 'network' ], 'thread-parent' => $thr_parent [ 'network' ], 'post' => $target_item [ 'network' ]]);
2018-08-11 20:40:44 +00:00
$contact [ 'network' ] = Protocol :: DIASPORA ;
2018-04-26 05:45:05 +00:00
}
2011-08-26 14:29:22 +00:00
2021-02-25 05:13:49 +00:00
Logger :: notice ( 'Delivering' , [ 'cmd' => $cmd , 'uri-id' => $post_uriid , 'followup' => $followup , 'network' => $contact [ 'network' ]]);
2015-12-13 23:39:20 +00:00
2018-01-04 19:48:56 +00:00
switch ( $contact [ 'network' ]) {
2018-08-11 20:40:44 +00:00
case Protocol :: DFRN :
2021-01-09 23:05:28 +00:00
self :: deliverDFRN ( $cmd , $contact , $owner , $items , $target_item , $public_message , $top_level , $followup , $protocol );
2018-04-25 21:18:21 +00:00
break ;
2016-11-19 20:10:29 +00:00
2018-08-11 20:40:44 +00:00
case Protocol :: DIASPORA :
2018-04-26 05:45:05 +00:00
self :: deliverDiaspora ( $cmd , $contact , $owner , $items , $target_item , $public_message , $top_level , $followup );
2011-08-26 14:29:22 +00:00
break ;
2018-08-11 20:40:44 +00:00
case Protocol :: MAIL :
2019-11-22 22:15:04 +00:00
self :: deliverMail ( $cmd , $contact , $owner , $target_item , $thr_parent );
2018-04-25 21:18:21 +00:00
break ;
2011-08-26 14:29:22 +00:00
2018-04-25 21:18:21 +00:00
default :
break ;
}
2011-08-26 14:29:22 +00:00
2018-04-25 21:18:21 +00:00
return ;
}
2019-09-03 03:59:46 +00:00
/**
* Increased the " failed " counter in the item delivery data
*
2020-05-02 19:34:02 +00:00
* @ param string $cmd Command
* @ param array $item Item array
2022-09-14 23:23:38 +00:00
*
* @ return void
2019-09-03 03:59:46 +00:00
*/
2020-05-02 19:34:02 +00:00
private static function setFailedQueue ( string $cmd , array $item )
2019-09-02 03:25:05 +00:00
{
2022-08-09 17:21:42 +00:00
if ( $cmd != Delivery :: POST ) {
2019-09-02 03:25:05 +00:00
return ;
}
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueFailed ( $item [ 'uri-id' ] ? ? $item [ 'id' ]);
2019-09-02 03:25:05 +00:00
}
2018-04-27 03:08:13 +00:00
/**
2020-01-19 06:05:23 +00:00
* Deliver content via DFRN
2018-04-27 03:08:13 +00:00
*
2022-06-25 02:37:53 +00:00
* @ param string $cmd Command
* @ param array $contact Contact record of the receiver
* @ param array $owner Owner record of the sender
* @ param array $items Item record of the content and the parent
* @ param array $target_item Item record of the content
* @ param boolean $public_message Is the content public ?
* @ param boolean $top_level Is it a thread starter ?
* @ param boolean $followup Is it an answer to a remote post ?
* @ param int | null $server_protocol The protocol of the server
2022-09-14 23:23:38 +00:00
*
* @ return void
2019-01-06 21:06:53 +00:00
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
* @ throws \ImagickException
2018-04-27 03:08:13 +00:00
*/
2022-06-25 02:37:53 +00:00
private static function deliverDFRN ( string $cmd , array $contact , array $owner , array $items , array $target_item , bool $public_message , bool $top_level , bool $followup , int $server_protocol = null )
2018-04-25 21:18:21 +00:00
{
2022-12-26 14:22:44 +00:00
$target_item_id = $target_item [ 'guid' ] ? ? '' ? : $target_item [ 'id' ] ? ? null ;
2019-12-08 08:59:21 +00:00
// Transmit Diaspora reshares via Diaspora if the Friendica contact support Diaspora
2022-12-26 14:22:44 +00:00
if ( Diaspora :: getReshareDetails ( $target_item ) && Diaspora :: isSupportedByContactUrl ( $contact [ 'addr' ])) {
Logger :: info ( 'Reshare will be transmitted via Diaspora' , [ 'url' => $contact [ 'url' ], 'guid' => $target_item_id ]);
2019-12-06 06:39:50 +00:00
self :: deliverDiaspora ( $cmd , $contact , $owner , $items , $target_item , $public_message , $top_level , $followup );
return ;
}
2022-12-26 14:22:44 +00:00
Logger :: info ( 'Deliver ' . ( $target_item_id ? ? 'relocation' ) . ' via DFRN to ' . ( $contact [ 'addr' ] ? ? '' ? : $contact [ 'url' ]));
2018-04-25 21:18:21 +00:00
2018-04-27 02:52:12 +00:00
if ( $cmd == self :: MAIL ) {
2018-04-25 21:18:21 +00:00
$item = $target_item ;
2022-09-12 21:12:11 +00:00
$item [ 'body' ] = Item :: fixPrivatePhotos ( $item [ 'body' ], $owner [ 'uid' ], null , $item [ 'contact-id' ]);
2018-04-25 21:18:21 +00:00
$atom = DFRN :: mail ( $item , $owner );
2018-04-27 02:52:12 +00:00
} elseif ( $cmd == self :: SUGGESTION ) {
2018-04-25 21:18:21 +00:00
$item = $target_item ;
$atom = DFRN :: fsuggest ( $item , $owner );
2021-10-21 21:13:19 +00:00
DI :: fsuggest () -> delete ( new FriendSuggests ([ DI :: fsuggest () -> selectOneById ( $item [ 'id' ])]));
2018-04-27 02:52:12 +00:00
} elseif ( $cmd == self :: RELOCATION ) {
2018-04-25 21:18:21 +00:00
$atom = DFRN :: relocate ( $owner , $owner [ 'uid' ]);
} elseif ( $followup ) {
2018-04-26 06:23:01 +00:00
$msgitems = [ $target_item ];
2018-04-25 21:18:21 +00:00
$atom = DFRN :: entries ( $msgitems , $owner );
} else {
2020-12-06 09:54:34 +00:00
if ( $target_item [ 'deleted' ]) {
$msgitems = [ $target_item ];
} else {
$msgitems = [];
foreach ( $items as $item ) {
// Only add the parent when we don't delete other items.
if (( $target_item [ 'id' ] == $item [ 'id' ]) || ( $cmd != self :: DELETION )) {
2022-09-14 23:23:38 +00:00
$item [ 'entry:comment-allow' ] = true ;
$item [ 'entry:cid' ] = ( $top_level ? $contact [ 'id' ] : 0 );
2020-12-06 09:54:34 +00:00
$msgitems [] = $item ;
}
2018-04-25 21:18:21 +00:00
}
}
2018-04-26 21:16:16 +00:00
$atom = DFRN :: entries ( $msgitems , $owner );
2018-04-25 21:18:21 +00:00
}
2012-02-01 04:03:46 +00:00
2022-12-26 14:22:44 +00:00
Logger :: debug ( 'Notifier entry: ' . $contact [ 'url' ] . ' ' . ( $target_item_id ? ? 'relocation' ) . ' entry: ' . $atom );
2012-02-01 04:03:46 +00:00
2022-09-12 21:12:11 +00:00
$protocol = Post\DeliveryData :: DFRN ;
2019-06-28 09:03:58 +00:00
2018-04-26 21:16:16 +00:00
// We don't have a relationship with contacts on a public post.
// Se we transmit with the new method and via Diaspora as a fallback
2018-07-15 18:36:20 +00:00
if ( ! empty ( $items ) && (( $items [ 0 ][ 'uid' ] == 0 ) || ( $contact [ 'uid' ] == 0 ))) {
2018-04-27 05:11:52 +00:00
// Transmit in public if it's a relay post
2022-09-12 21:12:11 +00:00
$public_dfrn = ( $contact [ 'contact-type' ] == Contact :: TYPE_RELAY );
2018-04-27 05:11:52 +00:00
$deliver_status = DFRN :: transmit ( $owner , $contact , $atom , $public_dfrn );
2018-04-30 05:56:40 +00:00
// We never spool failed relay deliveries
if ( $public_dfrn ) {
2022-09-14 23:23:38 +00:00
Logger :: info ( 'Relay delivery to ' . $contact [ 'url' ] . ' with guid ' . $target_item [ 'guid' ] . ' returns ' . $deliver_status );
2019-09-02 03:25:05 +00:00
2022-08-09 17:21:42 +00:00
if ( $cmd == Delivery :: POST ) {
2019-09-02 03:37:45 +00:00
if (( $deliver_status >= 200 ) && ( $deliver_status <= 299 )) {
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueDone ( $target_item [ 'uri-id' ], $protocol );
2021-01-09 19:18:22 +00:00
2022-09-12 21:12:11 +00:00
GServer :: setProtocol ( $contact [ 'gsid' ] ? ? 0 , $protocol );
2019-09-02 03:37:45 +00:00
} else {
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueFailed ( $target_item [ 'uri-id' ]);
2019-09-02 03:37:45 +00:00
}
2019-09-02 03:25:05 +00:00
}
2018-04-30 05:56:40 +00:00
return ;
}
2022-09-12 21:12:11 +00:00
if ((( $deliver_status < 200 ) || ( $deliver_status > 299 )) && ( empty ( $server_protocol ) || ( $server_protocol == Post\DeliveryData :: LEGACY_DFRN ))) {
2018-04-25 21:55:24 +00:00
// Transmit via Diaspora if not possible via Friendica
2018-04-26 05:45:05 +00:00
self :: deliverDiaspora ( $cmd , $contact , $owner , $items , $target_item , $public_message , $top_level , $followup );
2018-04-25 21:55:24 +00:00
return ;
}
2021-07-15 13:28:32 +00:00
} else {
2019-06-28 09:03:58 +00:00
// DFRN payload over Diaspora transport layer
$deliver_status = DFRN :: transmit ( $owner , $contact , $atom );
2018-04-25 21:18:21 +00:00
}
2011-08-26 14:29:22 +00:00
2022-12-26 14:22:44 +00:00
Logger :: info ( 'DFRN Delivery' , [ 'cmd' => $cmd , 'url' => $contact [ 'url' ], 'guid' => $target_item_id , 'return' => $deliver_status ]);
2011-08-26 14:29:22 +00:00
2018-04-25 21:18:21 +00:00
if (( $deliver_status >= 200 ) && ( $deliver_status <= 299 )) {
// We successfully delivered a message, the contact is alive
2022-09-12 21:12:11 +00:00
Contact :: unmarkForArchival ( $contact );
2019-06-01 06:54:47 +00:00
2022-09-12 21:12:11 +00:00
GServer :: setProtocol ( $contact [ 'gsid' ] ? ? 0 , $protocol );
2021-01-09 19:18:22 +00:00
2022-08-09 17:21:42 +00:00
if ( $cmd == Delivery :: POST ) {
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueDone ( $target_item [ 'uri-id' ], $protocol );
2019-06-01 06:54:47 +00:00
}
2018-04-25 21:18:21 +00:00
} else {
// The message could not be delivered. We mark the contact as "dead"
2022-09-12 21:12:11 +00:00
Contact :: markForArchival ( $contact );
2018-07-24 18:12:09 +00:00
2022-12-26 14:22:44 +00:00
Logger :: info ( 'Delivery failed: defer message' , [ 'id' => $target_item_id ]);
2022-08-09 17:21:42 +00:00
if ( ! Worker :: defer () && $cmd == Delivery :: POST ) {
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueFailed ( $target_item [ 'uri-id' ]);
2019-08-20 07:39:13 +00:00
}
2012-05-19 09:42:11 +00:00
}
2018-04-25 21:18:21 +00:00
}
2011-08-26 14:29:22 +00:00
2018-04-27 03:08:13 +00:00
/**
2020-01-19 06:05:23 +00:00
* Deliver content via Diaspora
2018-04-27 03:08:13 +00:00
*
* @ param string $cmd Command
* @ param array $contact Contact record of the receiver
* @ param array $owner Owner record of the sender
* @ param array $items Item record of the content and the parent
* @ param array $target_item Item record of the content
* @ param boolean $public_message Is the content public ?
* @ param boolean $top_level Is it a thread starter ?
* @ param boolean $followup Is it an answer to a remote post ?
2022-09-14 23:23:38 +00:00
*
* @ return void
2019-01-06 21:06:53 +00:00
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
* @ throws \ImagickException
2018-04-27 03:08:13 +00:00
*/
2022-06-16 14:38:58 +00:00
private static function deliverDiaspora ( string $cmd , array $contact , array $owner , array $items , array $target_item , bool $public_message , bool $top_level , bool $followup )
2018-04-25 21:18:21 +00:00
{
2018-04-26 05:45:05 +00:00
// We don't treat Forum posts as "wall-to-wall" to be able to post them via Diaspora
2022-09-12 21:12:11 +00:00
$walltowall = $top_level && ( $owner [ 'id' ] != $items [ 0 ][ 'contact-id' ]) & ( $owner [ 'account-type' ] != User :: ACCOUNT_TYPE_COMMUNITY );
2018-04-26 05:45:05 +00:00
2018-04-25 21:18:21 +00:00
if ( $public_message ) {
$loc = 'public batch ' . $contact [ 'batch' ];
} else {
2018-04-26 05:45:05 +00:00
$loc = $contact [ 'addr' ];
2018-04-25 21:18:21 +00:00
}
2019-10-06 21:59:23 +00:00
Logger :: notice ( 'Deliver via Diaspora' , [ 'target' => $target_item [ 'id' ], 'guid' => $target_item [ 'guid' ], 'to' => $loc ]);
2018-04-25 21:18:21 +00:00
2021-08-30 19:46:10 +00:00
if ( ! DI :: config () -> get ( 'system' , 'diaspora_enabled' )) {
2018-04-25 21:18:21 +00:00
return ;
}
2019-07-28 19:13:17 +00:00
2018-04-27 02:52:12 +00:00
if ( $cmd == self :: MAIL ) {
2018-04-25 21:18:21 +00:00
Diaspora :: sendMail ( $target_item , $owner , $contact );
return ;
}
2018-04-27 02:52:12 +00:00
if ( $cmd == self :: SUGGESTION ) {
2018-04-25 21:18:21 +00:00
return ;
}
2019-07-28 19:13:17 +00:00
2018-04-25 21:18:21 +00:00
if ( ! $contact [ 'pubkey' ] && ! $public_message ) {
return ;
}
2019-06-01 06:54:47 +00:00
2018-11-11 12:15:17 +00:00
if ( $cmd == self :: RELOCATION ) {
2019-06-01 06:54:47 +00:00
$deliver_status = Diaspora :: sendAccountMigration ( $owner , $contact , $owner [ 'uid' ]);
2018-11-11 12:15:17 +00:00
} elseif ( $target_item [ 'deleted' ] && (( $target_item [ 'uri' ] === $target_item [ 'parent-uri' ]) || $followup )) {
2018-04-25 21:18:21 +00:00
// top-level retraction
2021-11-03 23:19:24 +00:00
Logger :: notice ( 'diaspora retract: ' . $loc );
2019-06-01 06:54:47 +00:00
$deliver_status = Diaspora :: sendRetraction ( $target_item , $owner , $contact , $public_message );
2018-04-25 21:18:21 +00:00
} elseif ( $followup ) {
// send comments and likes to owner to relay
2021-11-03 23:19:24 +00:00
Logger :: notice ( 'diaspora followup: ' . $loc );
2019-06-01 06:54:47 +00:00
$deliver_status = Diaspora :: sendFollowup ( $target_item , $owner , $contact , $public_message );
2018-04-25 21:18:21 +00:00
} elseif ( $target_item [ 'uri' ] !== $target_item [ 'parent-uri' ]) {
// we are the relay - send comments, likes and relayable_retractions to our conversants
2021-11-03 23:19:24 +00:00
Logger :: notice ( 'diaspora relay: ' . $loc );
2019-06-01 06:54:47 +00:00
$deliver_status = Diaspora :: sendRelay ( $target_item , $owner , $contact , $public_message );
2018-04-25 21:18:21 +00:00
} elseif ( $top_level && ! $walltowall ) {
// currently no workable solution for sending walltowall
2021-11-03 23:19:24 +00:00
Logger :: notice ( 'diaspora status: ' . $loc );
2019-06-01 06:54:47 +00:00
$deliver_status = Diaspora :: sendStatus ( $target_item , $owner , $contact , $public_message );
} else {
2022-08-30 19:45:30 +00:00
Logger :: warning ( 'Unknown mode' , [ 'command' => $cmd , 'target' => $loc ]);
2018-04-25 21:18:21 +00:00
return ;
}
2019-06-01 06:54:47 +00:00
if (( $deliver_status >= 200 ) && ( $deliver_status <= 299 )) {
// We successfully delivered a message, the contact is alive
2022-09-12 21:12:11 +00:00
Contact :: unmarkForArchival ( $contact );
2019-06-01 06:54:47 +00:00
2022-09-12 21:12:11 +00:00
GServer :: setProtocol ( $contact [ 'gsid' ] ? ? 0 , Post\DeliveryData :: DIASPORA );
2021-01-09 19:18:22 +00:00
2022-08-09 17:21:42 +00:00
if ( $cmd == Delivery :: POST ) {
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueDone ( $target_item [ 'uri-id' ], Post\DeliveryData :: DIASPORA );
2019-06-01 06:54:47 +00:00
}
} else {
// The message could not be delivered. We mark the contact as "dead"
2022-09-12 21:12:11 +00:00
Contact :: markForArchival ( $contact );
2019-06-01 06:54:47 +00:00
2019-09-02 03:25:05 +00:00
// When it is delivered to the public endpoint, we do mark the relay contact for archival as well
if ( $public_message ) {
2020-11-15 23:28:05 +00:00
Relay :: markForArchival ( $contact );
2019-09-02 03:25:05 +00:00
}
2022-09-12 21:12:11 +00:00
if ( empty ( $contact [ 'contact-type' ]) || ( $contact [ 'contact-type' ] != Contact :: TYPE_RELAY )) {
2019-10-16 12:35:14 +00:00
Logger :: info ( 'Delivery failed: defer message' , [ 'id' => ( $target_item [ 'guid' ] ? ? '' ) ? : $target_item [ 'id' ]]);
2019-06-01 06:54:47 +00:00
// defer message for redelivery
2022-08-09 17:21:42 +00:00
if ( ! Worker :: defer () && $cmd == Delivery :: POST ) {
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueFailed ( $target_item [ 'uri-id' ]);
2019-08-20 07:39:13 +00:00
}
2022-08-09 17:21:42 +00:00
} elseif ( $cmd == Delivery :: POST ) {
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueFailed ( $target_item [ 'uri-id' ]);
2019-06-01 06:54:47 +00:00
}
}
2018-04-25 21:18:21 +00:00
}
2018-04-27 03:08:13 +00:00
/**
2020-01-19 06:05:23 +00:00
* Deliver content via mail
2018-04-27 03:08:13 +00:00
*
* @ param string $cmd Command
* @ param array $contact Contact record of the receiver
* @ param array $owner Owner record of the sender
* @ param array $target_item Item record of the content
2019-11-23 04:31:40 +00:00
* @ param array $thr_parent Item record of the direct parent in the thread
2022-09-14 23:23:38 +00:00
*
2022-06-22 10:43:56 +00:00
* @ return void
2019-01-06 21:06:53 +00:00
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
* @ throws \ImagickException
2018-04-27 03:08:13 +00:00
*/
2022-06-16 14:38:58 +00:00
private static function deliverMail ( string $cmd , array $contact , array $owner , array $target_item , array $thr_parent )
2018-04-25 21:18:21 +00:00
{
2022-06-22 10:43:56 +00:00
if ( DI :: config () -> get ( 'system' , 'imap_disabled' )) {
2018-04-25 21:18:21 +00:00
return ;
}
$addr = $contact [ 'addr' ];
if ( ! strlen ( $addr )) {
return ;
}
2022-08-09 17:21:42 +00:00
if ( $cmd != self :: POST ) {
2018-04-25 21:18:21 +00:00
return ;
}
2019-11-27 22:00:43 +00:00
2019-11-27 21:59:11 +00:00
if ( $target_item [ 'verb' ] != Activity :: POST ) {
return ;
}
2018-04-25 21:18:21 +00:00
2019-11-22 22:15:04 +00:00
if ( ! empty ( $thr_parent [ 'object' ])) {
$data = json_decode ( $thr_parent [ 'object' ], true );
if ( ! empty ( $data [ 'reply_to' ])) {
$addr = $data [ 'reply_to' ][ 0 ][ 'mailbox' ] . '@' . $data [ 'reply_to' ][ 0 ][ 'host' ];
Logger :: info ( 'Use "reply-to" address of the thread parent' , [ 'addr' => $addr ]);
} elseif ( ! empty ( $data [ 'from' ])) {
$addr = $data [ 'from' ][ 0 ][ 'mailbox' ] . '@' . $data [ 'from' ][ 0 ][ 'host' ];
Logger :: info ( 'Use "from" address of the thread parent' , [ 'addr' => $addr ]);
}
}
2018-07-20 12:19:26 +00:00
$local_user = DBA :: selectFirst ( 'user' , [], [ 'uid' => $owner [ 'uid' ]]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $local_user )) {
2018-04-25 21:18:21 +00:00
return ;
}
2019-11-22 22:15:04 +00:00
Logger :: info ( 'About to deliver via mail' , [ 'guid' => $target_item [ 'guid' ], 'to' => $addr ]);
2018-04-26 05:45:05 +00:00
2018-04-25 21:18:21 +00:00
$reply_to = '' ;
2018-07-20 12:19:26 +00:00
$mailacct = DBA :: selectFirst ( 'mailacct' , [ 'reply_to' ], [ 'uid' => $owner [ 'uid' ]]);
2018-07-21 12:46:04 +00:00
if ( DBA :: isResult ( $mailacct ) && ! empty ( $mailacct [ 'reply_to' ])) {
2018-04-25 21:18:21 +00:00
$reply_to = $mailacct [ 'reply_to' ];
}
2020-01-18 19:52:34 +00:00
$subject = ( $target_item [ 'title' ] ? Email :: encodeHeader ( $target_item [ 'title' ], 'UTF-8' ) : DI :: l10n () -> t ( " \x28 no subject \x29 " ));
2018-04-25 21:18:21 +00:00
// only expose our real email address to true friends
2022-09-12 21:12:11 +00:00
if (( $contact [ 'rel' ] == Contact :: FRIEND ) && ! $contact [ 'blocked' ]) {
2018-04-25 21:18:21 +00:00
if ( $reply_to ) {
2019-11-22 22:15:04 +00:00
$headers = 'From: ' . Email :: encodeHeader ( $local_user [ 'username' ], 'UTF-8' ) . ' <' . $reply_to . '>' . " \n " ;
2018-04-25 21:18:21 +00:00
$headers .= 'Sender: ' . $local_user [ 'email' ] . " \n " ;
} else {
2019-11-22 22:15:04 +00:00
$headers = 'From: ' . Email :: encodeHeader ( $local_user [ 'username' ], 'UTF-8' ) . ' <' . $local_user [ 'email' ] . '>' . " \n " ;
2018-04-25 21:18:21 +00:00
}
} else {
2020-04-04 20:26:09 +00:00
$sender = DI :: config () -> get ( 'config' , 'sender_email' , 'noreply@' . DI :: baseUrl () -> getHostname ());
$headers = 'From: ' . Email :: encodeHeader ( $local_user [ 'username' ], 'UTF-8' ) . ' <' . $sender . '>' . " \n " ;
2018-04-25 21:18:21 +00:00
}
$headers .= 'Message-Id: <' . Email :: iri2msgid ( $target_item [ 'uri' ]) . '>' . " \n " ;
if ( $target_item [ 'uri' ] !== $target_item [ 'parent-uri' ]) {
2019-11-22 22:15:04 +00:00
$headers .= 'References: <' . Email :: iri2msgid ( $target_item [ 'parent-uri' ]) . '>' ;
2018-04-25 21:18:21 +00:00
2019-11-23 04:31:40 +00:00
// Export more references on deeper nested threads
2019-11-22 22:15:04 +00:00
if (( $target_item [ 'thr-parent' ] != '' ) && ( $target_item [ 'thr-parent' ] != $target_item [ 'parent-uri' ])) {
$headers .= ' <' . Email :: iri2msgid ( $target_item [ 'thr-parent' ]) . '>' ;
2018-04-25 21:18:21 +00:00
}
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
2018-04-25 21:18:21 +00:00
$headers .= " \n " ;
if ( empty ( $target_item [ 'title' ])) {
$condition = [ 'uri' => $target_item [ 'parent-uri' ], 'uid' => $owner [ 'uid' ]];
2022-09-12 21:12:11 +00:00
$title = Post :: selectFirst ([ 'title' ], $condition );
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
2018-07-21 12:46:04 +00:00
if ( DBA :: isResult ( $title ) && ( $title [ 'title' ] != '' )) {
2018-04-25 21:18:21 +00:00
$subject = $title [ 'title' ];
} else {
$condition = [ 'parent-uri' => $target_item [ 'parent-uri' ], 'uid' => $owner [ 'uid' ]];
2022-09-12 21:12:11 +00:00
$title = Post :: selectFirst ([ 'title' ], $condition );
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
2018-07-21 12:46:04 +00:00
if ( DBA :: isResult ( $title ) && ( $title [ 'title' ] != '' )) {
2018-04-25 21:18:21 +00:00
$subject = $title [ 'title' ];
}
}
}
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
2018-04-26 21:16:16 +00:00
if ( strncasecmp ( $subject , 'RE:' , 3 )) {
2018-04-25 21:18:21 +00:00
$subject = 'Re: ' . $subject ;
}
}
Cleanups: isResult() more used, readability improved (#5608)
* [diaspora]: Maybe SimpleXMLElement is the right type-hint?
* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
BadMethodCallException in SPL)
* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.
* Ops, one more left ...
* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'
* Added empty lines for better readability
* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)
* Re-fixed DBM -> DBA switch
* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability
* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class
* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)
* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"
* Ops, one still there (return is no function)
* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
will do this for us
- renamed those proxy_*() functions to better names:
+ proxy_init() -> Proxy::init() (public)
+ proxy_url() -> Proxy::proxifyUrl() (public)
+ proxy_parse_html() -> Proxy::proxifyHtml() (public)
+ proxy_is_local_image() -> Proxy::isLocalImage() (private)
+ proxy_parse_query() -> Proxy::parseQuery() (private)
+ proxy_img_cb() -> Proxy::replaceUrl() (private)
* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes
* Ops, need to set $a here ...
* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule
* Ops, no need for own instance of $a when self::getApp() is around.
* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module
* No instances from utility classes
* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`
* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.
* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.
* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.
* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...
* Ops, was added accidentally ...
* Ops, why these wrong moves?
* Ops, one to much (thanks to MrPetovan)
* Ops, wrong moving ...
* moved back to original place ...
* spaces added
* empty lines add for better readability.
* convertered spaces -> tab for code indenting.
* CR request: Add space between if and brace.
* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability
2018-08-24 05:05:49 +00:00
2022-06-22 10:43:56 +00:00
// Try to send email
$success = Email :: send ( $addr , $subject , $headers , $target_item );
2019-11-22 22:15:04 +00:00
2022-06-22 10:43:56 +00:00
if ( $success ) {
// Success
2022-09-12 21:12:11 +00:00
Post\DeliveryData :: incrementQueueDone ( $target_item [ 'uri-id' ], Post\DeliveryData :: MAIL );
2022-06-22 10:43:56 +00:00
Logger :: info ( 'Delivered via mail' , [ 'guid' => $target_item [ 'guid' ], 'to' => $addr , 'subject' => $subject ]);
} else {
// Failed
Logger :: warning ( 'Delivery of mail has FAILED' , [ 'to' => $addr , 'subject' => $subject , 'guid' => $target_item [ 'guid' ]]);
}
2017-11-19 18:59:55 +00:00
}
2011-08-26 14:29:22 +00:00
}