Archived
1
0
Fork 0
This repository has been archived on 2020-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
news-script/Source_en/Textadventures.php
2017-04-27 14:27:25 +07:00

42 lines
1.5 KiB
PHP

<?php
namespace Source;
use \Game;
class Textadventures extends Source {
public $title = "Textadventures.co.uk";
protected function parse() {
$this->dom->loadFromUrl('http://textadventures.co.uk/games/latest');
$games = $this->dom->find('.games-item');
foreach ($games as $gameBlock) {
$game = new Game;
$game->url = 'http://textadventures.co.uk'.$gameBlock->find('.games-title a')->getAttribute('href');
$lines = $this->dom->find('.game_info_panel_widget tr');
$game->title = $gameBlock->find('.games-title a')->innerHtml;
$date = strtotime($gameBlock->find('.games-date')->innerHtml);
if ($date < $this->period) continue;
$game_page = new \PHPHtmlParser\Dom;
$game_page->loadFromUrl($game->url);
try {
$game->author = str_replace('by ', '', $game_page->find('h1 small')->innerHtml);
$desc = $game_page->find('.col-md-12 .col-md-10 .col-md-7')[0];
if ($desc) {
$desc = strip_tags($desc->innerHtml);
$game->description = trim(str_replace(
'You are not logged in. If you log in before playing, you\'ll be able to save your progress - which means you can come back later and pick up where you left off. Log in Play online',
'',
$desc
));
$game->description = trim(str_replace(
' Play online',
'',
$desc
));
}
} catch (Exception $e) {} // probably a 18+ game, no info on game page
$this->output .= $game->print();
}
}
}