This commit is contained in:
2021-01-04 15:06:13 +05:00
parent bf157c793d
commit 31404d2f48

View File

@@ -1,4 +1,5 @@
<?php
namespace App\Services\Scrapers;
use Goutte\Client;
@@ -23,19 +24,24 @@ class DhenScraper
$title = $crawler->filter('h1')->first()->text();
if($crawler->filter('article .article-visual img')->count() == 1)
{
if ($crawler->filter('article .article-visual img')->count() == 1) {
$image = $crawler->filter('article .article-visual img')->first()->attr('src');
}
if ($crawler->filter('article .article-entry p')->count() > 0) {
$crawler->filter('article .article-entry p')->each(function ($node) {
$this->content[] = preg_replace("/[a-zA-Z]/", "", $node->text());
});
} else {
$crawler->filter('.im_message_body .im_message_text')->each(function ($node) {
$this->content[] = preg_replace("/[a-zA-Z]/", "", $node->text());
});
}
if($crawler->filter(".story-item--meta a")->count() == 1)
{
if ($crawler->filter(".story-item--meta a")->count() == 1) {
$this->author = $crawler->filter('.story-item--meta a')->first()->text();
}