Remove unused parameter
This commit is contained in:
parent
d498d15200
commit
08771d96c2
|
@ -151,7 +151,7 @@ class OEmbed
|
||||||
|
|
||||||
// Improve the OEmbed data with data from OpenGraph, Twitter cards and other sources
|
// Improve the OEmbed data with data from OpenGraph, Twitter cards and other sources
|
||||||
if ($use_parseurl) {
|
if ($use_parseurl) {
|
||||||
$data = ParseUrl::getSiteinfoCached($embedurl, true, false);
|
$data = ParseUrl::getSiteinfoCached($embedurl, false);
|
||||||
|
|
||||||
if (($oembed->type == 'error') && empty($data['title']) && empty($data['text'])) {
|
if (($oembed->type == 'error') && empty($data['title']) && empty($data['text'])) {
|
||||||
return $oembed;
|
return $oembed;
|
||||||
|
|
|
@ -187,7 +187,7 @@ class PageInfo
|
||||||
*/
|
*/
|
||||||
public static function queryUrl(string $url, string $photo = '', bool $keywords = false, string $keyword_denylist = '')
|
public static function queryUrl(string $url, string $photo = '', bool $keywords = false, string $keyword_denylist = '')
|
||||||
{
|
{
|
||||||
$data = ParseUrl::getSiteinfoCached($url, true);
|
$data = ParseUrl::getSiteinfoCached($url);
|
||||||
|
|
||||||
if ($photo != '') {
|
if ($photo != '') {
|
||||||
$data['images'][0]['src'] = $photo;
|
$data['images'][0]['src'] = $photo;
|
||||||
|
|
|
@ -322,14 +322,14 @@ class BBCode
|
||||||
$data = ['url' => $url, 'type' => 'photo'];
|
$data = ['url' => $url, 'type' => 'photo'];
|
||||||
} else {
|
} else {
|
||||||
// Checking, if the link goes to a picture
|
// Checking, if the link goes to a picture
|
||||||
$data = ParseUrl::getSiteinfoCached($pictures[0][1], true);
|
$data = ParseUrl::getSiteinfoCached($pictures[0][1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Workaround:
|
// Workaround:
|
||||||
// Sometimes photo posts to the own album are not detected at the start.
|
// Sometimes photo posts to the own album are not detected at the start.
|
||||||
// So we seem to cannot use the cache for these cases. That's strange.
|
// So we seem to cannot use the cache for these cases. That's strange.
|
||||||
if (($data['type'] != 'photo') && strstr($pictures[0][1], "/photos/")) {
|
if (($data['type'] != 'photo') && strstr($pictures[0][1], "/photos/")) {
|
||||||
$data = ParseUrl::getSiteinfo($pictures[0][1], true);
|
$data = ParseUrl::getSiteinfo($pictures[0][1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($data['type'] == 'photo') {
|
if ($data['type'] == 'photo') {
|
||||||
|
@ -416,7 +416,7 @@ class BBCode
|
||||||
$post['text'] = trim($body);
|
$post['text'] = trim($body);
|
||||||
}
|
}
|
||||||
} elseif (isset($post['url']) && ($post['type'] == 'video')) {
|
} elseif (isset($post['url']) && ($post['type'] == 'video')) {
|
||||||
$data = ParseUrl::getSiteinfoCached($post['url'], true);
|
$data = ParseUrl::getSiteinfoCached($post['url']);
|
||||||
|
|
||||||
if (isset($data['images'][0])) {
|
if (isset($data['images'][0])) {
|
||||||
$post['image'] = $data['images'][0]['src'];
|
$post['image'] = $data['images'][0]['src'];
|
||||||
|
|
|
@ -484,7 +484,7 @@ class Feed
|
||||||
$item["body"] = trim($item["title"]);
|
$item["body"] = trim($item["title"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
$data = ParseUrl::getSiteinfoCached($item['plink'], true);
|
$data = ParseUrl::getSiteinfoCached($item['plink']);
|
||||||
if (!empty($data['text']) && !empty($data['title']) && (mb_strlen($item['body']) < mb_strlen($data['text']))) {
|
if (!empty($data['text']) && !empty($data['title']) && (mb_strlen($item['body']) < mb_strlen($data['text']))) {
|
||||||
// When the fetched page info text is longer than the body, we do try to enhance the body
|
// When the fetched page info text is longer than the body, we do try to enhance the body
|
||||||
if (!empty($item['body']) && (strpos($data['title'], $item['body']) === false) && (strpos($data['text'], $item['body']) === false)) {
|
if (!empty($item['body']) && (strpos($data['title'], $item['body']) === false) && (strpos($data['text'], $item['body']) === false)) {
|
||||||
|
|
|
@ -75,8 +75,6 @@ class ParseUrl
|
||||||
* Search for chached embeddable data of an url otherwise fetch it
|
* Search for chached embeddable data of an url otherwise fetch it
|
||||||
*
|
*
|
||||||
* @param string $url The url of the page which should be scraped
|
* @param string $url The url of the page which should be scraped
|
||||||
* @param bool $no_guessing If true the parse doens't search for
|
|
||||||
* preview pictures
|
|
||||||
* @param bool $do_oembed The false option is used by the function fetch_oembed()
|
* @param bool $do_oembed The false option is used by the function fetch_oembed()
|
||||||
* to avoid endless loops
|
* to avoid endless loops
|
||||||
*
|
*
|
||||||
|
@ -85,7 +83,7 @@ class ParseUrl
|
||||||
* string 'type' => Content type
|
* string 'type' => Content type
|
||||||
* string 'title' => (optional) The title of the content
|
* string 'title' => (optional) The title of the content
|
||||||
* string 'text' => (optional) The description for the content
|
* string 'text' => (optional) The description for the content
|
||||||
* string 'image' => (optional) A preview image of the content (only available if $no_geuessing = false)
|
* string 'image' => (optional) A preview image of the content
|
||||||
* array 'images' => (optional) Array of preview pictures
|
* array 'images' => (optional) Array of preview pictures
|
||||||
* string 'keywords' => (optional) The tags which belong to the content
|
* string 'keywords' => (optional) The tags which belong to the content
|
||||||
*
|
*
|
||||||
|
@ -93,7 +91,7 @@ class ParseUrl
|
||||||
* @see ParseUrl::getSiteinfo() for more information about scraping
|
* @see ParseUrl::getSiteinfo() for more information about scraping
|
||||||
* embeddable content
|
* embeddable content
|
||||||
*/
|
*/
|
||||||
public static function getSiteinfoCached($url, $no_guessing = false, $do_oembed = true): array
|
public static function getSiteinfoCached($url, $do_oembed = true): array
|
||||||
{
|
{
|
||||||
if (empty($url)) {
|
if (empty($url)) {
|
||||||
return [
|
return [
|
||||||
|
@ -105,14 +103,14 @@ class ParseUrl
|
||||||
$urlHash = hash('sha256', $url);
|
$urlHash = hash('sha256', $url);
|
||||||
|
|
||||||
$parsed_url = DBA::selectFirst('parsed_url', ['content'],
|
$parsed_url = DBA::selectFirst('parsed_url', ['content'],
|
||||||
['url_hash' => $urlHash, 'guessing' => !$no_guessing, 'oembed' => $do_oembed]
|
['url_hash' => $urlHash, 'oembed' => $do_oembed]
|
||||||
);
|
);
|
||||||
if (!empty($parsed_url['content'])) {
|
if (!empty($parsed_url['content'])) {
|
||||||
$data = unserialize($parsed_url['content']);
|
$data = unserialize($parsed_url['content']);
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
$data = self::getSiteinfo($url, $no_guessing, $do_oembed);
|
$data = self::getSiteinfo($url, $do_oembed);
|
||||||
|
|
||||||
$expires = $data['expires'];
|
$expires = $data['expires'];
|
||||||
|
|
||||||
|
@ -122,7 +120,6 @@ class ParseUrl
|
||||||
'parsed_url',
|
'parsed_url',
|
||||||
[
|
[
|
||||||
'url_hash' => $urlHash,
|
'url_hash' => $urlHash,
|
||||||
'guessing' => !$no_guessing,
|
|
||||||
'oembed' => $do_oembed,
|
'oembed' => $do_oembed,
|
||||||
'url' => $url,
|
'url' => $url,
|
||||||
'content' => serialize($data),
|
'content' => serialize($data),
|
||||||
|
@ -146,8 +143,6 @@ class ParseUrl
|
||||||
* \<meta name="description" content="An awesome description"\>
|
* \<meta name="description" content="An awesome description"\>
|
||||||
*
|
*
|
||||||
* @param string $url The url of the page which should be scraped
|
* @param string $url The url of the page which should be scraped
|
||||||
* @param bool $no_guessing If true the parse doens't search for
|
|
||||||
* preview pictures
|
|
||||||
* @param bool $do_oembed The false option is used by the function fetch_oembed()
|
* @param bool $do_oembed The false option is used by the function fetch_oembed()
|
||||||
* to avoid endless loops
|
* to avoid endless loops
|
||||||
* @param int $count Internal counter to avoid endless loops
|
* @param int $count Internal counter to avoid endless loops
|
||||||
|
@ -157,7 +152,7 @@ class ParseUrl
|
||||||
* string 'type' => Content type (error, link, photo, image, audio, video)
|
* string 'type' => Content type (error, link, photo, image, audio, video)
|
||||||
* string 'title' => (optional) The title of the content
|
* string 'title' => (optional) The title of the content
|
||||||
* string 'text' => (optional) The description for the content
|
* string 'text' => (optional) The description for the content
|
||||||
* string 'image' => (optional) A preview image of the content (only available if $no_guessing = false)
|
* string 'image' => (optional) A preview image of the content
|
||||||
* array 'images' => (optional) Array of preview pictures
|
* array 'images' => (optional) Array of preview pictures
|
||||||
* string 'keywords' => (optional) The tags which belong to the content
|
* string 'keywords' => (optional) The tags which belong to the content
|
||||||
*
|
*
|
||||||
|
@ -175,7 +170,7 @@ class ParseUrl
|
||||||
* </body>
|
* </body>
|
||||||
* @endverbatim
|
* @endverbatim
|
||||||
*/
|
*/
|
||||||
public static function getSiteinfo($url, $no_guessing = false, $do_oembed = true, $count = 1)
|
public static function getSiteinfo($url, $do_oembed = true, $count = 1)
|
||||||
{
|
{
|
||||||
if (empty($url)) {
|
if (empty($url)) {
|
||||||
return [
|
return [
|
||||||
|
@ -343,7 +338,7 @@ class ParseUrl
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($content != '') {
|
if ($content != '') {
|
||||||
$siteinfo = self::getSiteinfo($content, $no_guessing, $do_oembed, ++$count);
|
$siteinfo = self::getSiteinfo($content, $do_oembed, ++$count);
|
||||||
return $siteinfo;
|
return $siteinfo;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user