2017-11-12 18:50:35 +00:00
< ? php
2017-11-15 15:53:16 +00:00
/**
2023-01-01 14:36:24 +00:00
* @ copyright Copyright ( C ) 2010 - 2023 , 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-15 15:53:16 +00:00
*/
2020-02-09 15:18:46 +00:00
2017-11-12 18:50:35 +00:00
namespace Friendica\Worker ;
2018-10-29 21:20:46 +00:00
use Friendica\Core\Logger ;
2018-08-11 20:40:44 +00:00
use Friendica\Core\Protocol ;
2021-11-04 20:29:59 +00:00
use Friendica\Core\System ;
2018-07-20 12:19:26 +00:00
use Friendica\Database\DBA ;
2020-01-18 15:50:57 +00:00
use Friendica\DI ;
2017-12-07 14:04:24 +00:00
use Friendica\Model\Contact ;
2022-07-31 15:54:35 +00:00
use Friendica\Model\Conversation ;
2018-01-28 11:18:08 +00:00
use Friendica\Model\Item ;
2021-01-16 04:14:58 +00:00
use Friendica\Model\Post ;
2019-06-27 13:30:26 +00:00
use Friendica\Model\User ;
2022-04-02 18:26:11 +00:00
use Friendica\Network\HTTPClient\Client\HttpClientAccept ;
2021-10-23 10:50:31 +00:00
use Friendica\Network\HTTPClient\Client\HttpClientOptions ;
2019-10-23 22:25:43 +00:00
use Friendica\Protocol\Activity ;
2018-10-13 18:13:01 +00:00
use Friendica\Protocol\ActivityPub ;
2018-10-21 05:53:47 +00:00
use Friendica\Protocol\Email ;
2020-07-14 14:14:05 +00:00
use Friendica\Protocol\Feed ;
2018-02-03 17:25:58 +00:00
use Friendica\Util\DateTimeFormat ;
2018-11-08 15:14:37 +00:00
use Friendica\Util\Strings ;
2017-11-12 18:50:35 +00:00
2018-01-16 01:16:14 +00:00
class OnePoll
2017-11-15 14:47:28 +00:00
{
2022-06-24 02:42:35 +00:00
public static function execute ( int $contact_id = 0 , string $command = '' )
2018-07-10 02:39:59 +00:00
{
2022-09-14 23:23:38 +00:00
Logger :: notice ( 'Start polling/probing contact' , [ 'id' => $contact_id , 'command' => $command ]);
2017-11-12 18:50:35 +00:00
2022-06-24 02:42:35 +00:00
$force = ( $command == 'force' );
2017-11-12 18:50:35 +00:00
2020-11-22 14:42:24 +00:00
if ( empty ( $contact_id )) {
Logger :: notice ( 'no contact provided' );
2017-11-12 18:50:35 +00:00
return ;
}
2018-07-20 12:19:26 +00:00
$contact = DBA :: selectFirst ( 'contact' , [], [ 'id' => $contact_id ]);
2018-07-21 12:46:04 +00:00
if ( ! DBA :: isResult ( $contact )) {
2020-11-22 14:42:24 +00:00
Logger :: warning ( 'Contact not found' , [ 'id' => $contact_id ]);
2017-11-12 18:50:35 +00:00
return ;
}
2020-11-22 14:56:38 +00:00
// We never probe mail contacts since their probing demands a mail from the contact in the inbox.
// We don't probe feed accounts by default since they are polled in a higher frequency, but forced probes are okay.
2020-12-04 05:53:11 +00:00
if ( $force && ( $contact [ 'network' ] == Protocol :: FEED )) {
2020-11-22 14:42:24 +00:00
$success = Contact :: updateFromProbe ( $contact_id );
2019-05-02 19:22:43 +00:00
} else {
2020-11-22 14:42:24 +00:00
$success = true ;
2019-05-02 19:22:43 +00:00
}
2017-11-12 18:50:35 +00:00
$importer_uid = $contact [ 'uid' ];
2019-05-02 19:22:43 +00:00
$updated = DateTimeFormat :: utcNow ();
2019-06-27 05:38:16 +00:00
// Possibly switch the remote contact to AP
2020-11-22 14:42:24 +00:00
if ( $success && ( $contact [ 'network' ] === Protocol :: OSTATUS )) {
2019-06-27 05:38:16 +00:00
ActivityPub\Receiver :: switchContact ( $contact [ 'id' ], $importer_uid , $contact [ 'url' ]);
2019-01-16 21:39:56 +00:00
}
2020-11-22 14:42:24 +00:00
$contact = DBA :: selectFirst ( 'contact' , [], [ 'id' => $contact_id ]);
2017-11-12 18:50:35 +00:00
2020-11-22 14:42:24 +00:00
if ( $success && ( $importer_uid != 0 ) && in_array ( $contact [ 'rel' ], [ Contact :: SHARING , Contact :: FRIEND ])
&& in_array ( $contact [ 'network' ], [ Protocol :: FEED , Protocol :: MAIL , Protocol :: OSTATUS ])) {
$importer = User :: getOwnerDataById ( $importer_uid );
if ( empty ( $importer )) {
Logger :: warning ( 'No self contact for user' , [ 'uid' => $importer_uid ]);
2017-11-12 18:50:35 +00:00
2020-11-22 14:42:24 +00:00
// set the last-update so we don't keep polling
2021-09-10 18:21:19 +00:00
Contact :: update ([ 'last-update' => $updated ], [ 'id' => $contact [ 'id' ]]);
2017-11-12 18:50:35 +00:00
return ;
}
2020-11-22 14:42:24 +00:00
Logger :: info ( 'Start polling/subscribing' , [ 'protocol' => $contact [ 'network' ], 'id' => $contact [ 'id' ]]);
if ( $contact [ 'network' ] === Protocol :: FEED ) {
$success = self :: pollFeed ( $contact , $importer );
} elseif ( $contact [ 'network' ] === Protocol :: MAIL ) {
$success = self :: pollMail ( $contact , $importer_uid , $updated );
} else {
$success = self :: subscribeToHub ( $contact [ 'url' ], $importer , $contact , $contact [ 'blocked' ] ? 'unsubscribe' : 'subscribe' );
2017-11-12 18:50:35 +00:00
}
2020-11-22 14:42:24 +00:00
if ( ! $success ) {
Logger :: notice ( 'Probing had been successful, polling/subscribing failed' , [ 'protocol' => $contact [ 'network' ], 'id' => $contact [ 'id' ], 'url' => $contact [ 'url' ]]);
2017-11-12 18:50:35 +00:00
}
2020-11-22 14:42:24 +00:00
}
2017-11-12 18:50:35 +00:00
2020-11-22 14:42:24 +00:00
if ( $success ) {
2020-07-19 01:15:57 +00:00
self :: updateContact ( $contact , [ 'failed' => false , 'last-update' => $updated , 'success_update' => $updated ]);
2021-11-05 19:59:18 +00:00
Contact :: unmarkForArchival ( $contact );
2020-11-22 14:42:24 +00:00
} else {
2020-07-19 01:15:57 +00:00
self :: updateContact ( $contact , [ 'failed' => true , 'last-update' => $updated , 'failure_update' => $updated ]);
2017-12-04 06:54:08 +00:00
Contact :: markForArchival ( $contact );
2017-11-12 18:50:35 +00:00
}
2020-11-22 14:42:24 +00:00
Logger :: notice ( 'End' );
2017-11-12 18:50:35 +00:00
return ;
}
2017-12-05 07:08:20 +00:00
/**
2020-01-19 06:05:23 +00:00
* Updates a personal contact entry and the public contact entry
2017-12-05 07:08:20 +00:00
*
* @ param array $contact The personal contact entry
2019-01-06 21:06:53 +00:00
* @ param array $fields The fields that are updated
2022-09-14 23:23:38 +00:00
*
2022-06-24 02:42:35 +00:00
* @ return void
2019-01-06 21:06:53 +00:00
* @ throws \Exception
2017-12-05 07:08:20 +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
private static function updateContact ( array $contact , array $fields )
2018-07-10 02:39:59 +00:00
{
2020-11-22 14:42:24 +00:00
if ( in_array ( $contact [ 'network' ], [ Protocol :: FEED , Protocol :: MAIL , Protocol :: OSTATUS ])) {
// Update the user's contact
2021-09-10 18:21:19 +00:00
Contact :: update ( $fields , [ 'id' => $contact [ 'id' ]]);
2019-06-28 02:46:56 +00:00
2020-11-22 14:42:24 +00:00
// Update the public contact
2021-09-10 18:21:19 +00:00
Contact :: update ( $fields , [ 'uid' => 0 , 'nurl' => $contact [ 'nurl' ]]);
2019-06-27 20:38:09 +00:00
2020-11-22 14:42:24 +00:00
// Update the rest of the contacts that aren't polled
2021-09-10 18:21:19 +00:00
Contact :: update ( $fields , [ 'rel' => Contact :: FOLLOWER , 'nurl' => $contact [ 'nurl' ]]);
2019-06-27 20:38:09 +00:00
} else {
2020-11-22 14:42:24 +00:00
// Update all contacts
2021-09-10 18:21:19 +00:00
Contact :: update ( $fields , [ 'nurl' => $contact [ 'nurl' ]]);
2019-06-27 20:38:09 +00:00
}
}
/**
2020-11-22 14:42:24 +00:00
* Poll Feed contacts
*
* @ param array $contact The personal contact entry
* @ param array $importer
2019-06-27 20:38:09 +00:00
*
2020-11-22 14:42:24 +00:00
* @ return bool Success
2019-06-27 20:38:09 +00:00
* @ throws \Exception
*/
2022-09-14 23:23:38 +00:00
private static function pollFeed ( array $contact , array $importer ) : bool
2019-06-27 20:38:09 +00:00
{
// Are we allowed to import from this person?
if ( $contact [ 'rel' ] == Contact :: FOLLOWER || $contact [ 'blocked' ]) {
2020-11-22 14:42:24 +00:00
Logger :: notice ( 'Contact is blocked or only a follower' );
2019-06-27 20:38:09 +00:00
return false ;
}
2021-11-04 20:29:59 +00:00
$cookiejar = tempnam ( System :: getTempPath (), 'cookiejar-onepoll-' );
2022-04-02 19:16:22 +00:00
$curlResult = DI :: httpClient () -> get ( $contact [ 'poll' ], HttpClientAccept :: FEED_XML , [ HttpClientOptions :: COOKIEJAR => $cookiejar ]);
2019-06-27 20:38:09 +00:00
unlink ( $cookiejar );
if ( $curlResult -> isTimeout ()) {
2020-11-22 14:42:24 +00:00
Logger :: notice ( 'Polling timed out' , [ 'id' => $contact [ 'id' ], 'url' => $contact [ 'poll' ]]);
return false ;
}
$xml = $curlResult -> getBody ();
if ( empty ( $xml )) {
Logger :: notice ( 'Empty content' , [ 'id' => $contact [ 'id' ], 'url' => $contact [ 'poll' ]]);
return false ;
}
if ( ! strstr ( $xml , '<' )) {
Logger :: notice ( 'response did not contain XML.' , [ 'id' => $contact [ 'id' ], 'url' => $contact [ 'poll' ]]);
2019-06-27 20:38:09 +00:00
return false ;
}
2022-03-28 10:33:06 +00:00
Logger :: notice ( 'Consume feed of contact' , [ 'id' => $contact [ 'id' ], 'url' => $contact [ 'poll' ], 'Content-Type' => $curlResult -> getHeader ( 'Content-Type' )]);
2020-11-22 14:42:24 +00:00
return ! empty ( Feed :: import ( $xml , $importer , $contact ));
2019-06-27 20:38:09 +00:00
}
/**
2020-01-19 06:05:23 +00:00
* Poll Mail contacts
2019-06-27 20:38:09 +00:00
*
* @ param array $contact The personal contact entry
* @ param integer $importer_uid The UID of the importer
* @ param string $updated The updated date
2022-09-14 23:23:38 +00:00
*
* @ return bool Success
2019-06-27 20:38:09 +00:00
* @ throws \Exception
*/
2022-09-14 23:23:38 +00:00
private static function pollMail ( array $contact , int $importer_uid , string $updated ) : bool
2019-06-27 20:38:09 +00:00
{
2020-11-22 14:42:24 +00:00
Logger :: info ( 'Fetching mails' , [ 'addr' => $contact [ 'addr' ]]);
2019-06-27 20:38:09 +00:00
2020-01-19 20:21:13 +00:00
$mail_disabled = (( function_exists ( 'imap_open' ) && ! DI :: config () -> get ( 'system' , 'imap_disabled' )) ? 0 : 1 );
2019-06-27 20:38:09 +00:00
if ( $mail_disabled ) {
2020-11-22 14:42:24 +00:00
Logger :: notice ( 'Mail is disabled' );
return false ;
2019-06-27 20:38:09 +00:00
}
2020-11-22 14:42:24 +00:00
Logger :: info ( 'Mail is enabled' );
2019-06-27 20:38:09 +00:00
$mbox = null ;
$user = DBA :: selectFirst ( 'user' , [ 'prvkey' ], [ 'uid' => $importer_uid ]);
$condition = [ " `server` != '' AND `uid` = ? " , $importer_uid ];
$mailconf = DBA :: selectFirst ( 'mailacct' , [], $condition );
if ( DBA :: isResult ( $user ) && DBA :: isResult ( $mailconf )) {
$mailbox = Email :: constructMailboxName ( $mailconf );
$password = '' ;
openssl_private_decrypt ( hex2bin ( $mailconf [ 'pass' ]), $password , $user [ 'prvkey' ]);
$mbox = Email :: connect ( $mailbox , $mailconf [ 'user' ], $password );
unset ( $password );
2020-11-22 14:42:24 +00:00
Logger :: notice ( 'Connect' , [ 'user' => $mailconf [ 'user' ]]);
2019-06-27 20:38:09 +00:00
if ( $mbox ) {
$fields = [ 'last_check' => $updated ];
DBA :: update ( 'mailacct' , $fields , [ 'id' => $mailconf [ 'id' ]]);
2020-11-22 14:42:24 +00:00
Logger :: notice ( 'Connected' , [ 'user' => $mailconf [ 'user' ]]);
2019-06-27 20:38:09 +00:00
} else {
2020-11-22 14:42:24 +00:00
Logger :: notice ( 'Connection error' , [ 'user' => $mailconf [ 'user' ], 'error' => imap_errors ()]);
return false ;
2019-06-27 20:38:09 +00:00
}
}
2020-11-22 14:42:24 +00:00
if ( empty ( $mbox )) {
return false ;
2019-06-27 20:38:09 +00:00
}
$msgs = Email :: poll ( $mbox , $contact [ 'addr' ]);
if ( count ( $msgs )) {
2020-11-22 14:42:24 +00:00
Logger :: info ( 'Parsing mails' , [ 'count' => count ( $msgs ), 'addr' => $contact [ 'addr' ], 'user' => $mailconf [ 'user' ]]);
2019-06-27 20:38:09 +00:00
$metas = Email :: messageMeta ( $mbox , implode ( ',' , $msgs ));
if ( count ( $metas ) != count ( $msgs )) {
2021-11-03 23:19:24 +00:00
Logger :: info ( " for " . $mailconf [ 'user' ] . " there are " . count ( $msgs ) . " messages but received " . count ( $metas ) . " metas " );
2019-06-27 20:38:09 +00:00
} else {
$msgs = array_combine ( $msgs , $metas );
foreach ( $msgs as $msg_uid => $meta ) {
2020-11-22 14:42:24 +00:00
Logger :: info ( 'Parsing mail' , [ 'message-uid' => $msg_uid ]);
2019-06-27 20:38:09 +00:00
2022-09-14 23:23:38 +00:00
$datarray = [
'uid' => $importer_uid ,
'contact-id' => $contact [ 'id' ],
'verb' => Activity :: POST ,
'object-type' => Activity\ObjectType :: NOTE ,
'network' => Protocol :: MAIL ,
'protocol' => Conversation :: PARCEL_IMAP ,
'direction' => Conversation :: PULL ,
];
2021-01-29 10:39:55 +00:00
$datarray [ 'thr-parent' ] = $datarray [ 'uri' ] = Email :: msgid2iri ( trim ( $meta -> message_id , '<>' ));
2019-06-27 20:38:09 +00:00
2022-09-14 23:23:38 +00:00
// $meta = Email::messageMeta($mbox, $msg_uid);
2019-06-27 20:38:09 +00:00
// Have we seen it before?
$fields = [ 'deleted' , 'id' ];
$condition = [ 'uid' => $importer_uid , 'uri' => $datarray [ 'uri' ]];
2021-01-16 04:14:58 +00:00
$item = Post :: selectFirst ( $fields , $condition );
2019-06-27 20:38:09 +00:00
if ( DBA :: isResult ( $item )) {
2022-09-14 23:23:38 +00:00
Logger :: info ( 'Mail: Seen before ' . $msg_uid . ' for ' . $mailconf [ 'user' ] . ' UID: ' . $importer_uid . ' URI: ' . $datarray [ 'uri' ]);
2019-06-27 20:38:09 +00:00
// Only delete when mails aren't automatically moved or deleted
if (( $mailconf [ 'action' ] != 1 ) && ( $mailconf [ 'action' ] != 3 ))
if ( $meta -> deleted && ! $item [ 'deleted' ]) {
$fields = [ 'deleted' => true , 'changed' => $updated ];
Item :: update ( $fields , [ 'id' => $item [ 'id' ]]);
}
switch ( $mailconf [ 'action' ]) {
case 0 :
2022-09-14 23:23:38 +00:00
Logger :: info ( 'Mail: Seen before ' . $msg_uid . ' for ' . $mailconf [ 'user' ] . '. Doing nothing.' );
2019-06-27 20:38:09 +00:00
break ;
2022-09-14 23:23:38 +00:00
2019-06-27 20:38:09 +00:00
case 1 :
2022-09-14 23:23:38 +00:00
Logger :: notice ( 'Mail: Deleting ' . $msg_uid . ' for ' . $mailconf [ 'user' ]);
2019-06-27 20:38:09 +00:00
imap_delete ( $mbox , $msg_uid , FT_UID );
break ;
2022-09-14 23:23:38 +00:00
2019-06-27 20:38:09 +00:00
case 2 :
2022-09-14 23:23:38 +00:00
Logger :: notice ( 'Mail: Mark as seen ' . $msg_uid . ' for ' . $mailconf [ 'user' ]);
2019-06-27 20:38:09 +00:00
imap_setflag_full ( $mbox , $msg_uid , " \\ Seen " , ST_UID );
break ;
2022-09-14 23:23:38 +00:00
2019-06-27 20:38:09 +00:00
case 3 :
2022-09-14 23:23:38 +00:00
Logger :: notice ( 'Mail: Moving ' . $msg_uid . ' to ' . $mailconf [ 'movetofolder' ] . ' for ' . $mailconf [ 'user' ]);
2019-06-27 20:38:09 +00:00
imap_setflag_full ( $mbox , $msg_uid , " \\ Seen " , ST_UID );
2022-09-14 23:23:38 +00:00
if ( $mailconf [ 'movetofolder' ] != '' ) {
2019-06-27 20:38:09 +00:00
imap_mail_move ( $mbox , $msg_uid , $mailconf [ 'movetofolder' ], FT_UID );
}
break ;
}
continue ;
}
// look for a 'references' or an 'in-reply-to' header and try to match with a parent item we have locally.
2019-11-21 15:28:18 +00:00
$raw_refs = ( property_exists ( $meta , 'references' ) ? str_replace ( " \t " , '' , $meta -> references ) : '' );
2019-06-27 20:38:09 +00:00
if ( ! trim ( $raw_refs )) {
2019-11-21 15:28:18 +00:00
$raw_refs = ( property_exists ( $meta , 'in_reply_to' ) ? str_replace ( " \t " , '' , $meta -> in_reply_to ) : '' );
2019-06-27 20:38:09 +00:00
}
$raw_refs = trim ( $raw_refs ); // Don't allow a blank reference in $refs_arr
if ( $raw_refs ) {
$refs_arr = explode ( ' ' , $raw_refs );
if ( count ( $refs_arr )) {
for ( $x = 0 ; $x < count ( $refs_arr ); $x ++ ) {
$refs_arr [ $x ] = Email :: msgid2iri ( str_replace ([ '<' , '>' , ' ' ],[ '' , '' , '' ], $refs_arr [ $x ]));
}
}
$condition = [ 'uri' => $refs_arr , 'uid' => $importer_uid ];
2021-01-16 04:14:58 +00:00
$parent = Post :: selectFirst ([ 'uri' ], $condition );
2019-06-27 20:38:09 +00:00
if ( DBA :: isResult ( $parent )) {
2020-11-13 09:54:01 +00:00
$datarray [ 'thr-parent' ] = $parent [ 'uri' ];
2019-06-27 20:38:09 +00:00
}
}
// Decoding the header
2019-12-20 21:47:10 +00:00
$subject = imap_mime_header_decode ( $meta -> subject ? ? '' );
2019-06-27 20:38:09 +00:00
$datarray [ 'title' ] = " " ;
foreach ( $subject as $subpart ) {
if ( $subpart -> charset != " default " ) {
$datarray [ 'title' ] .= iconv ( $subpart -> charset , 'UTF-8//IGNORE' , $subpart -> text );
} else {
$datarray [ 'title' ] .= $subpart -> text ;
}
}
2021-11-05 19:59:18 +00:00
$datarray [ 'title' ] = trim ( $datarray [ 'title' ]);
2019-06-27 20:38:09 +00:00
//$datarray['title'] = Strings::escapeTags(trim($meta->subject));
$datarray [ 'created' ] = DateTimeFormat :: utc ( $meta -> date );
// Is it a reply?
2022-09-14 23:23:38 +00:00
$reply = (( substr ( strtolower ( $datarray [ 'title' ]), 0 , 3 ) == 're:' ) ||
( substr ( strtolower ( $datarray [ 'title' ]), 0 , 3 ) == 're-' ) ||
( $raw_refs != '' ));
2019-06-27 20:38:09 +00:00
// Remove Reply-signs in the subject
2022-09-14 23:23:38 +00:00
$datarray [ 'title' ] = self :: removeReply ( $datarray [ 'title' ]);
2019-06-27 20:38:09 +00:00
// If it seems to be a reply but a header couldn't be found take the last message with matching subject
2020-11-13 09:54:01 +00:00
if ( empty ( $datarray [ 'thr-parent' ]) && $reply ) {
2019-06-27 20:38:09 +00:00
$condition = [ 'title' => $datarray [ 'title' ], 'uid' => $importer_uid , 'network' => Protocol :: MAIL ];
$params = [ 'order' => [ 'created' => true ]];
2021-01-16 04:14:58 +00:00
$parent = Post :: selectFirst ([ 'uri' ], $condition , $params );
2019-06-27 20:38:09 +00:00
if ( DBA :: isResult ( $parent )) {
2020-11-13 09:54:01 +00:00
$datarray [ 'thr-parent' ] = $parent [ 'uri' ];
2019-06-27 20:38:09 +00:00
}
}
2019-11-21 15:28:18 +00:00
$headers = imap_headerinfo ( $mbox , $meta -> msgno );
2019-11-23 11:42:03 +00:00
2019-11-21 15:28:18 +00:00
$object = [];
2019-06-27 20:38:09 +00:00
2019-11-21 15:28:18 +00:00
if ( ! empty ( $headers -> from )) {
$object [ 'from' ] = $headers -> from ;
2019-06-27 20:38:09 +00:00
}
2019-11-21 15:28:18 +00:00
if ( ! empty ( $headers -> to )) {
$object [ 'to' ] = $headers -> to ;
}
2019-06-27 20:38:09 +00:00
2019-11-21 15:28:18 +00:00
if ( ! empty ( $headers -> reply_to )) {
$object [ 'reply_to' ] = $headers -> reply_to ;
}
if ( ! empty ( $headers -> sender )) {
$object [ 'sender' ] = $headers -> sender ;
}
if ( ! empty ( $object )) {
$datarray [ 'object' ] = json_encode ( $object );
}
2019-06-27 20:38:09 +00:00
2019-11-21 15:28:18 +00:00
$fromname = $frommail = $headers -> from [ 0 ] -> mailbox . '@' . $headers -> from [ 0 ] -> host ;
if ( ! empty ( $headers -> from [ 0 ] -> personal )) {
$fromname = $headers -> from [ 0 ] -> personal ;
2019-06-27 20:38:09 +00:00
}
$datarray [ 'author-name' ] = $fromname ;
2022-09-14 23:23:38 +00:00
$datarray [ 'author-link' ] = 'mailto:' . $frommail ;
2019-06-27 20:38:09 +00:00
$datarray [ 'author-avatar' ] = $contact [ 'photo' ];
$datarray [ 'owner-name' ] = $contact [ 'name' ];
2022-09-14 23:23:38 +00:00
$datarray [ 'owner-link' ] = 'mailto:' . $contact [ 'addr' ];
2019-06-27 20:38:09 +00:00
$datarray [ 'owner-avatar' ] = $contact [ 'photo' ];
2020-11-19 21:27:08 +00:00
if ( empty ( $datarray [ 'thr-parent' ]) || ( $datarray [ 'thr-parent' ] === $datarray [ 'uri' ])) {
2020-03-02 07:57:23 +00:00
$datarray [ 'private' ] = Item :: PRIVATE ;
2019-06-27 20:38:09 +00:00
}
2019-11-23 11:42:03 +00:00
2020-01-18 15:50:57 +00:00
if ( ! DI :: pConfig () -> get ( $importer_uid , 'system' , 'allow_public_email_replies' )) {
2020-03-02 07:57:23 +00:00
$datarray [ 'private' ] = Item :: PRIVATE ;
2019-06-27 20:38:09 +00:00
$datarray [ 'allow_cid' ] = '<' . $contact [ 'id' ] . '>' ;
}
2019-11-23 11:42:03 +00:00
$datarray = Email :: getMessage ( $mbox , $msg_uid , $reply , $datarray );
if ( empty ( $datarray [ 'body' ])) {
2022-08-30 19:45:30 +00:00
Logger :: warning ( 'Cannot fetch mail' , [ 'msg-id' => $msg_uid , 'uid' => $mailconf [ 'user' ]]);
2019-11-23 11:42:03 +00:00
continue ;
}
2022-09-14 23:23:38 +00:00
Logger :: notice ( 'Mail: Importing ' . $msg_uid . ' for ' . $mailconf [ 'user' ]);
2019-11-23 11:42:03 +00:00
2019-06-27 20:38:09 +00:00
Item :: insert ( $datarray );
switch ( $mailconf [ 'action' ]) {
case 0 :
2022-09-14 23:23:38 +00:00
Logger :: info ( 'Mail: Seen before ' . $msg_uid . ' for ' . $mailconf [ 'user' ] . '. Doing nothing.' );
2019-06-27 20:38:09 +00:00
break ;
2022-09-14 23:23:38 +00:00
2019-06-27 20:38:09 +00:00
case 1 :
2022-09-14 23:23:38 +00:00
Logger :: notice ( 'Mail: Deleting ' . $msg_uid . ' for ' . $mailconf [ 'user' ]);
2019-06-27 20:38:09 +00:00
imap_delete ( $mbox , $msg_uid , FT_UID );
break ;
2022-09-14 23:23:38 +00:00
2019-06-27 20:38:09 +00:00
case 2 :
2022-09-14 23:23:38 +00:00
Logger :: notice ( 'Mail: Mark as seen ' . $msg_uid . ' for ' . $mailconf [ 'user' ]);
2019-06-27 20:38:09 +00:00
imap_setflag_full ( $mbox , $msg_uid , " \\ Seen " , ST_UID );
break ;
2022-09-14 23:23:38 +00:00
2019-06-27 20:38:09 +00:00
case 3 :
2022-09-14 23:23:38 +00:00
Logger :: notice ( 'Mail: Moving ' . $msg_uid . ' to ' . $mailconf [ 'movetofolder' ] . ' for ' . $mailconf [ 'user' ]);
2019-06-27 20:38:09 +00:00
imap_setflag_full ( $mbox , $msg_uid , " \\ Seen " , ST_UID );
2022-09-14 23:23:38 +00:00
if ( $mailconf [ 'movetofolder' ] != '' ) {
2019-06-27 20:38:09 +00:00
imap_mail_move ( $mbox , $msg_uid , $mailconf [ 'movetofolder' ], FT_UID );
}
break ;
}
}
}
} else {
2020-11-22 14:42:24 +00:00
Logger :: notice ( 'No mails' , [ 'user' => $mailconf [ 'user' ]]);
2019-06-27 20:38:09 +00:00
}
2020-08-20 08:37:56 +00:00
2020-11-22 14:42:24 +00:00
Logger :: info ( 'Closing connection' , [ 'user' => $mailconf [ 'user' ]]);
2019-06-27 20:38:09 +00:00
imap_close ( $mbox );
2020-11-22 14:42:24 +00:00
return true ;
2017-12-05 07:08:20 +00:00
}
2020-06-17 08:52:23 +00:00
2022-09-14 23:23:38 +00:00
private static function removeReply ( string $subject ) : string
2020-11-22 14:42:24 +00:00
{
2022-09-14 23:23:38 +00:00
while ( in_array ( strtolower ( substr ( $subject , 0 , 3 )), [ 're:' , 'aw:' ])) {
2020-11-22 14:42:24 +00:00
$subject = trim ( substr ( $subject , 4 ));
}
return $subject ;
}
2020-06-17 08:52:23 +00:00
/**
* @ param string $url
* @ param array $importer
* @ param array $contact
* @ param string $hubmode
2022-09-14 23:23:38 +00:00
*
* @ return bool Success
2020-06-17 08:52:23 +00:00
* @ throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
2022-09-14 23:23:38 +00:00
private static function subscribeToHub ( string $url , array $importer , array $contact , string $hubmode = 'subscribe' ) : bool
2020-06-17 08:52:23 +00:00
{
2020-11-22 14:42:24 +00:00
$push_url = DI :: baseUrl () . '/pubsub/' . $importer [ 'nick' ] . '/' . $contact [ 'id' ];
2020-06-17 08:52:23 +00:00
// Use a single verify token, even if multiple hubs
2020-11-22 14:42:24 +00:00
$verify_token = $contact [ 'hub-verify' ] ? : Strings :: getRandomHex ();
2020-06-17 08:52:23 +00:00
$params = 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode ( $push_url ) . '&hub.topic=' . urlencode ( $contact [ 'poll' ]) . '&hub.verify=async&hub.verify_token=' . $verify_token ;
2020-11-22 14:42:24 +00:00
Logger :: info ( 'Hub subscription start' , [ 'mode' => $hubmode , 'name' => $contact [ 'name' ], 'hub' => $url , 'endpoint' => $push_url , 'verifier' => $verify_token ]);
2020-06-17 08:52:23 +00:00
if ( ! strlen ( $contact [ 'hub-verify' ]) || ( $contact [ 'hub-verify' ] != $verify_token )) {
2021-09-10 18:21:19 +00:00
Contact :: update ([ 'hub-verify' => $verify_token ], [ 'id' => $contact [ 'id' ]]);
2020-06-17 08:52:23 +00:00
}
2021-08-25 19:54:54 +00:00
$postResult = DI :: httpClient () -> post ( $url , $params );
2020-06-17 08:52:23 +00:00
2020-11-22 14:42:24 +00:00
Logger :: info ( 'Hub subscription done' , [ 'result' => $postResult -> getReturnCode ()]);
2020-06-17 08:52:23 +00:00
2020-11-22 14:42:24 +00:00
return $postResult -> isSuccess ();
2020-06-17 08:52:23 +00:00
}
2017-11-12 18:50:35 +00:00
}