AP: Create a GUID out of an URL

Dieser Commit ist enthalten in:
Michael 2020-01-19 14:33:16 +00:00
Ursprung af88c2daa3
Commit bb253ceeaa
1 geänderte Dateien mit 21 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -389,6 +389,26 @@ class Processor
return $item;
}
/**
* Generate a GUID out of an URL
*
* @param string $url message URL
* @return string with GUID
*/
private static function getGUIDByURL(string $url)
{
$parsed = parse_url($url);
$host_hash = hash('crc32', $parsed['host']);
unset($parsed["scheme"]);
unset($parsed["host"]);
$path = implode("/", $parsed);
return $host_hash . '-'. hash('fnv164', $path) . '-'. hash('joaat', $path);
}
/**
* Creates an item post
*
@ -431,7 +451,7 @@ class Processor
$item['created'] = DateTimeFormat::utc($activity['published']);
$item['edited'] = DateTimeFormat::utc($activity['updated']);
$item['guid'] = $activity['diaspora:guid'];
$item['guid'] = $activity['diaspora:guid'] ?: self::getGUIDByURL($item['uri']);
$item = self::processContent($activity, $item);
if (empty($item)) {