2017-11-19 11:25:13 -05:00
< ? php
/**
2017-11-20 16:30:57 -05:00
* @ file src / Worker / GProbe . php
2017-11-19 11:25:13 -05:00
*/
2017-11-20 16:30:57 -05:00
namespace Friendica\Worker ;
2017-11-19 11:25:13 -05:00
use Friendica\Core\Cache ;
2018-10-29 17:20:46 -04:00
use Friendica\Core\Logger ;
2018-08-11 16:40:44 -04:00
use Friendica\Core\Protocol ;
2018-07-21 08:40:21 -04:00
use Friendica\Database\DBA ;
2017-12-07 09:09:28 -05:00
use Friendica\Model\GContact ;
2017-11-19 11:25:13 -05:00
use Friendica\Network\Probe ;
use Friendica\Protocol\PortableContact ;
2018-11-08 11:28:29 -05:00
use Friendica\Util\Strings ;
2017-11-19 11:25:13 -05:00
class GProbe {
2017-11-20 16:30:57 -05:00
public static function execute ( $url = '' )
2017-11-19 11:25:13 -05:00
{
if ( empty ( $url )) {
return ;
}
$r = q (
" SELECT `id`, `url`, `network` FROM `gcontact` WHERE `nurl` = '%s' ORDER BY `id` LIMIT 1 " ,
2018-11-08 11:28:29 -05:00
DBA :: escape ( Strings :: normaliseLink ( $url ))
2017-11-19 11:25:13 -05:00
);
2018-11-08 11:28:29 -05:00
Logger :: log ( " gprobe start for " . Strings :: normaliseLink ( $url ), Logger :: DEBUG );
2017-11-19 11:25:13 -05:00
2018-07-21 08:46:04 -04:00
if ( ! DBA :: isResult ( $r )) {
2017-11-19 11:25:13 -05:00
// Is it a DDoS attempt?
$urlparts = parse_url ( $url );
$result = Cache :: get ( " gprobe: " . $urlparts [ " host " ]);
if ( ! is_null ( $result )) {
2018-08-11 16:40:44 -04:00
if ( in_array ( $result [ " network " ], [ Protocol :: FEED , Protocol :: PHANTOM ])) {
2018-12-15 04:32:47 -05:00
Logger :: log ( " DDoS attempt detected for " . $urlparts [ " host " ] . " by " . defaults ( $_SERVER , " REMOTE_ADDR " , '' ) . " . server data: " . print_r ( $_SERVER , true ), Logger :: DEBUG );
2017-11-19 11:25:13 -05:00
return ;
}
}
$arr = Probe :: uri ( $url );
if ( is_null ( $result )) {
Cache :: set ( " gprobe: " . $urlparts [ " host " ], $arr );
}
2018-08-11 16:40:44 -04:00
if ( ! in_array ( $arr [ " network " ], [ Protocol :: FEED , Protocol :: PHANTOM ])) {
2017-12-07 09:09:28 -05:00
GContact :: update ( $arr );
2017-11-19 11:25:13 -05:00
}
$r = q (
" SELECT `id`, `url`, `network` FROM `gcontact` WHERE `nurl` = '%s' ORDER BY `id` LIMIT 1 " ,
2018-11-08 11:28:29 -05:00
DBA :: escape ( Strings :: normaliseLink ( $url ))
2017-11-19 11:25:13 -05:00
);
}
2018-07-21 08:46:04 -04:00
if ( DBA :: isResult ( $r )) {
2017-11-19 11:25:13 -05:00
// Check for accessibility and do a poco discovery
2018-08-11 16:40:44 -04:00
if ( PortableContact :: lastUpdated ( $r [ 0 ][ 'url' ], true ) && ( $r [ 0 ][ " network " ] == Protocol :: DFRN )) {
2017-11-19 11:25:13 -05:00
PortableContact :: loadWorker ( 0 , 0 , $r [ 0 ][ 'id' ], str_replace ( '/profile/' , '/poco/' , $r [ 0 ][ 'url' ]));
}
}
2018-11-08 11:28:29 -05:00
Logger :: log ( " gprobe end for " . Strings :: normaliseLink ( $url ), Logger :: DEBUG );
2017-11-19 11:25:13 -05:00
return ;
}
}