mirror of
https://github.com/YGGverse/YGGo.git
synced 2025-01-24 13:34:25 +00:00
add script tag support
This commit is contained in:
parent
b9ec787bbb
commit
1f33205236
@ -954,6 +954,25 @@ foreach ($db->getHostPageCrawlQueue(CRAWL_PAGE_LIMIT, time() - CRAWL_PAGE_SECOND
|
||||
];
|
||||
}
|
||||
|
||||
foreach (@$dom->getElementsByTagName('script') as $script) {
|
||||
|
||||
// Skip nodes without href attribute
|
||||
if (!$src = @$script->getAttribute('src')) {
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
// Add link to queue
|
||||
$links[] = [
|
||||
'title' => null,
|
||||
'description' => null,
|
||||
'keywords' => null,
|
||||
'data' => null,
|
||||
'mime' => null,
|
||||
'ref' => $src,
|
||||
];
|
||||
}
|
||||
|
||||
foreach (@$dom->getElementsByTagName('link') as $link) {
|
||||
|
||||
// Skip nodes without href attribute
|
||||
|
Loading…
x
Reference in New Issue
Block a user