. */ namespace App\Sources; use \App\Models\Game; use \App\Source; use \App\Models\Language; use \App\Models\Author; class Kvester extends Source { public $title = "Квестер"; public $keyword = 'kvester'; protected $baseUrl = 'http://kvester.ru'; public function parse() { $text = $this->get_text($this->baseUrl."/catalog?sort=date"); if (empty($text)) { // Квестер опять упал return; } $this->loadStr($text); unset($text); $this->dom->filter('.catalog-item')->each(function($gameBlock){ $date = trim($gameBlock->filter('.cell-2 .date')->text(), "() \t\n\r\0\x0B"); $date = \DateTime::createFromFormat("d.m.y", $date); if ($date === false) return; $game = new Game; $game->release_date = $date; $author = trim(strip_tags($gameBlock->filter('.cell-2 .author')->text())); $game->title = trim($gameBlock->filter('.cell-2 h3 a')->text()); $game->url = $this->baseUrl.trim($gameBlock->filter('.cell-2 h3 a')->attr('href')); $game->description = ""; $this->loadStr($this->get_text($game->url)); $game->description = $this->dom->filter('.description')->first()->text(); $game = $this->findGame($game); $game->save(); $language = Language::findByCode('ru'); if (!$game->languages()->where('code', 'ru')->exists()) { $game->languages()->attach($language); } if (!empty($author)) { $author_model = Author::findByName($author); if (empty($author_model)) { $author_model = new Author(); $author_model->name = $author; $author_model->save(); } if (!$game->authors()->where('name', $author)->exists()) { $game->authors()->attach($author_model); } } }); } public function checkPage($url) { return (strpos($url, $this->baseUrl.'/game/') !== FALSE); } public function page($url) { $game = new Game; $game->url = $url; $game_id = (int) str_replace($this->baseUrl.'/game/', '', $url); $game->platform = 'Квестер'; $game->title = trim($this->dom->filter(".qt-in-1 h2")->first()->text()); $game->author = trim($this->dom->filter('.quest-info .author a')->text()); $game->date = \DateTime::createFromFormat( 'd.m.y', trim($this->dom->filter('.quest-info .date')->first()->text()) ); $game->url_online = $this->baseUrl.trim($this->dom->filter(".play a")->first()->attr('href')); $game->url_online_description = 'Играть онлайн на Квестер.ру'; $game->description = trim($this->dom->filter('.quest-profile .description')->first()->text()); $game->image = $this->baseUrl.trim($this->dom->filter('.quest-profile .cell-1 img')->first()->attr('src')); if ($game->author === 'Совместный') { $this->loadStr($this->get_text($this->baseUrl.'/game/quest/team/'.$game_id.'?ts_mode=public')); $game->author = []; $this->dom->filter('.team-item a .txt')->each(function($author) use($game){ $game->author[] = $author->text(); }); } return $game; } }