2020-08-06 06:27:06 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-08-06 06:27:06 -04: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Model;
|
|
|
|
|
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\Protocol;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\Network\Probe;
|
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
class FContact
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Fetches data for a given handle
|
|
|
|
*
|
|
|
|
* @param string $handle The handle
|
|
|
|
* @param boolean $update true = always update, false = never update, null = update when not found or outdated
|
|
|
|
*
|
|
|
|
* @return array the queried data
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
2022-06-17 04:44:13 -04:00
|
|
|
public static function getByURL(string $handle, $update = null): array
|
2020-08-06 06:27:06 -04:00
|
|
|
{
|
2021-12-30 17:11:52 -05:00
|
|
|
$person = DBA::selectFirst('fcontact', [], ['network' => Protocol::DIASPORA, 'addr' => $handle]);
|
2020-08-06 06:27:06 -04:00
|
|
|
if (!DBA::isResult($person)) {
|
|
|
|
$urls = [$handle, str_replace('http://', 'https://', $handle), Strings::normaliseLink($handle)];
|
2021-12-30 17:11:52 -05:00
|
|
|
$person = DBA::selectFirst('fcontact', [], ['network' => Protocol::DIASPORA, 'url' => $urls]);
|
2020-08-06 06:27:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (DBA::isResult($person)) {
|
|
|
|
Logger::debug('In cache', ['person' => $person]);
|
|
|
|
|
|
|
|
if (is_null($update)) {
|
|
|
|
// update record occasionally so it doesn't get stale
|
2022-07-20 11:04:08 -04:00
|
|
|
$d = strtotime($person['updated'] . ' +00:00');
|
|
|
|
if ($d < strtotime('now - 14 days')) {
|
2020-08-06 06:27:06 -04:00
|
|
|
$update = true;
|
|
|
|
}
|
|
|
|
|
2021-07-09 04:46:42 -04:00
|
|
|
if (empty($person['guid']) || empty($person['uri-id'])) {
|
2020-08-06 06:27:06 -04:00
|
|
|
$update = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} elseif (is_null($update)) {
|
|
|
|
$update = !DBA::isResult($person);
|
|
|
|
} else {
|
|
|
|
$person = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($update) {
|
|
|
|
Logger::info('create or refresh', ['handle' => $handle]);
|
2021-12-30 17:11:52 -05:00
|
|
|
$data = Probe::uri($handle, Protocol::DIASPORA);
|
2020-08-06 06:27:06 -04:00
|
|
|
|
|
|
|
// Note that Friendica contacts will return a "Diaspora person"
|
|
|
|
// if Diaspora connectivity is enabled on their server
|
2021-12-30 17:11:52 -05:00
|
|
|
if ($data['network'] ?? '' === Protocol::DIASPORA) {
|
2021-12-30 17:40:52 -05:00
|
|
|
self::updateFromProbeArray($data);
|
2020-08-06 06:27:06 -04:00
|
|
|
|
2021-12-30 17:11:52 -05:00
|
|
|
$person = self::getByURL($handle, false);
|
2020-08-06 06:27:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $person;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the fcontact table
|
|
|
|
*
|
|
|
|
* @param array $arr The fcontact data
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-06-17 04:44:13 -04:00
|
|
|
public static function updateFromProbeArray(array $arr)
|
2020-08-06 06:27:06 -04:00
|
|
|
{
|
2021-12-30 17:11:52 -05:00
|
|
|
$uriid = ItemURI::insert(['uri' => $arr['url'], 'guid' => $arr['guid']]);
|
|
|
|
|
|
|
|
$contact = Contact::getByUriId($uriid, ['id']);
|
|
|
|
if (!empty($contact['id'])) {
|
|
|
|
$last_interaction = DateTimeFormat::utc('now - 180 days');
|
|
|
|
|
|
|
|
$interacted = DBA::count('contact-relation', ["`cid` = ? AND NOT `follows` AND `last-interaction` > ?", $contact['id'], $last_interaction]);
|
|
|
|
$interacting = DBA::count('contact-relation', ["`relation-cid` = ? AND NOT `follows` AND `last-interaction` > ?", $contact['id'], $last_interaction]);
|
2022-08-15 09:23:01 -04:00
|
|
|
$posts = DBA::count('post', ['author-id' => $contact['id'], 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]]);
|
2021-12-30 17:11:52 -05:00
|
|
|
}
|
|
|
|
|
2022-06-23 22:42:35 -04:00
|
|
|
$fields = [
|
|
|
|
'name' => $arr['name'],
|
|
|
|
'photo' => $arr['photo'],
|
|
|
|
'request' => $arr['request'],
|
|
|
|
'nick' => $arr['nick'],
|
|
|
|
'addr' => strtolower($arr['addr']),
|
|
|
|
'guid' => $arr['guid'],
|
|
|
|
'batch' => $arr['batch'],
|
|
|
|
'notify' => $arr['notify'],
|
|
|
|
'poll' => $arr['poll'],
|
|
|
|
'confirm' => $arr['confirm'],
|
|
|
|
'alias' => $arr['alias'],
|
|
|
|
'pubkey' => $arr['pubkey'],
|
|
|
|
'uri-id' => $uriid,
|
|
|
|
'interacting_count' => $interacting ?? 0,
|
|
|
|
'interacted_count' => $interacted ?? 0,
|
|
|
|
'post_count' => $posts ?? 0,
|
|
|
|
'updated' => DateTimeFormat::utcNow(),
|
|
|
|
];
|
|
|
|
|
|
|
|
$condition = ['url' => $arr['url'], 'network' => $arr['network']];
|
2020-08-06 06:27:06 -04:00
|
|
|
|
|
|
|
DBA::update('fcontact', $fields, $condition, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get a url (scheme://domain.tld/u/user) from a given Diaspora*
|
|
|
|
* fcontact guid
|
|
|
|
*
|
2022-06-17 04:44:13 -04:00
|
|
|
* @param string $fcontact_guid Hexadecimal string guid
|
|
|
|
* @return string|null the contact url or null
|
2020-08-06 06:27:06 -04:00
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-06-17 04:44:13 -04:00
|
|
|
public static function getUrlByGuid(string $fcontact_guid)
|
2020-08-06 06:27:06 -04:00
|
|
|
{
|
|
|
|
Logger::info('fcontact', ['guid' => $fcontact_guid]);
|
|
|
|
|
2021-10-03 11:02:20 -04:00
|
|
|
$fcontact = DBA::selectFirst('fcontact', ['url'], ["`url` != ? AND `network` = ? AND `guid` = ?", '', Protocol::DIASPORA, $fcontact_guid]);
|
|
|
|
if (DBA::isResult($fcontact)) {
|
|
|
|
return $fcontact['url'];
|
2020-08-06 06:27:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|