mirror of
https://github.com/YGGverse/YGGo.git
synced 2025-01-08 22:07:56 +00:00
fix page/image mime content type detection
This commit is contained in:
parent
25b6bce2ec
commit
bf1eeb332c
@ -279,11 +279,19 @@ try {
|
||||
}
|
||||
|
||||
// Skip image processing on MIME type not allowed in settings
|
||||
if (false === strpos(CRAWL_IMAGE_MIME, $hostImageContentType)) {
|
||||
$hostImageBanned = true;
|
||||
foreach ((array) explode(',', CRAWL_IMAGE_MIME) as $mime) {
|
||||
|
||||
if (false !== strpos($hostImageContentType, trim($mime))) {
|
||||
|
||||
$hostImageBanned = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ($hostImageBanned) {
|
||||
|
||||
$hostImagesBanned += $db->updateHostImageTimeBanned($queueHostImage->hostImageId, time());
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
// Convert remote image data to base64 string
|
||||
@ -359,11 +367,19 @@ try {
|
||||
}
|
||||
|
||||
// Skip page processing on MIME type not allowed in settings
|
||||
if (false === strpos(CRAWL_PAGE_MIME, $contentType)) {
|
||||
$hostPageBanned = true;
|
||||
foreach ((array) explode(',', CRAWL_PAGE_MIME) as $mime) {
|
||||
|
||||
if (false !== strpos($contentType, trim($mime))) {
|
||||
|
||||
$hostPageBanned = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ($hostPageBanned) {
|
||||
|
||||
$hostPagesBanned += $db->updateHostPageTimeBanned($queueHostPage->hostPageId, time());
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
// Skip page processing without returned data
|
||||
|
Loading…
Reference in New Issue
Block a user