Add logos for person and organisation

This commit is contained in:
Michael 2021-03-17 23:31:16 +00:00
parent 558189e9d1
commit e3409c72e2
1 changed files with 29 additions and 2 deletions

View File

@ -746,14 +746,33 @@ class ParseUrl
$brand = JsonLD::fetchElement($jsonld, 'publisher', 'brand', '@type', 'Organization');
if (!empty($brand) && is_array($brand)) {
$content = JsonLD::fetchElement($brand, 'name', '@type', 'brand');
$content = JsonLD::fetchElement($brand, 'name');
if (!empty($content) && is_string($content)) {
$jsonldinfo['publisher_name'] = trim($content);
}
$content = JsonLD::fetchElement($brand, 'url', '@type', 'brand');
$content = JsonLD::fetchElement($brand, 'sameAs');
if (!empty($content) && is_string($content)) {
$jsonldinfo['publisher_url'] = trim($content);
}
$content = JsonLD::fetchElement($brand, 'url');
if (!empty($content) && is_string($content)) {
$jsonldinfo['publisher_url'] = trim($content);
}
$content = JsonLD::fetchElement($brand, 'logo', 'url');
if (!empty($content) && is_string($content)) {
$jsonldinfo['publisher_img'] = trim($content);
}
}
$logo = JsonLD::fetchElement($jsonld, 'publisher', 'logo');
if (!empty($logo) && is_array($logo)) {
$content = JsonLD::fetchElement($logo, 'url');
if (!empty($content) && is_string($content)) {
$jsonldinfo['publisher_img'] = trim($content);
}
}
} elseif (!empty($jsonld['publisher']) && is_string($jsonld['publisher'])) {
$jsonldinfo['publisher_name'] = trim($jsonld['publisher']);
@ -774,6 +793,14 @@ class ParseUrl
if (!empty($content) && is_string($content)) {
$jsonldinfo['author_url'] = trim($content);
}
$logo = JsonLD::fetchElement($jsonld, 'author', 'logo');
if (!empty($logo) && is_array($logo)) {
$content = JsonLD::fetchElement($logo, 'url');
if (!empty($content) && is_string($content)) {
$jsonldinfo['author_img'] = trim($content);
}
}
} elseif (!empty($jsonld['author']) && is_string($jsonld['author'])) {
$jsonldinfo['author_name'] = trim($jsonld['author']);
}