2019-08-06 22:44:38 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\MetadataResolver;
|
|
|
|
|
|
|
|
use GuzzleHttp\Client;
|
2019-09-09 13:51:07 +09:00
|
|
|
use Symfony\Component\DomCrawler\Crawler;
|
2019-08-06 22:44:38 +09:00
|
|
|
|
|
|
|
class XtubeResolver implements Resolver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var Client
|
|
|
|
*/
|
|
|
|
private $client;
|
|
|
|
|
|
|
|
public function __construct(Client $client)
|
|
|
|
{
|
|
|
|
$this->client = $client;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function resolve(string $url): Metadata
|
|
|
|
{
|
2019-09-09 13:51:07 +09:00
|
|
|
if (preg_match('~www\.xtube\.com/video-watch/.*-(\d+)$~', $url) !== 1) {
|
2019-08-06 22:44:38 +09:00
|
|
|
throw new \RuntimeException("Unmatched URL Pattern: $url");
|
|
|
|
}
|
|
|
|
|
2019-09-09 13:51:07 +09:00
|
|
|
$res = $this->client->get($url);
|
2019-09-09 13:52:32 +09:00
|
|
|
$html = (string) $res->getBody();
|
|
|
|
$metadata = new Metadata();
|
|
|
|
$crawler = new Crawler($html);
|
|
|
|
|
|
|
|
// poster URL抽出
|
|
|
|
$playerConfig = explode("\n", trim($crawler->filter('#playerWrapper script')->last()->text()));
|
|
|
|
preg_match('~https:\\\/\\\/cdn\d+-s-hw-e5\.xtube\.com\\\/m=(?P<size>.{8})\\\/videos\\\/\d{6}\\\/\d{2}\\\/.{5}-.{4}-\\\/original\\\/\d+\.jpg~', $playerConfig[0], $matches);
|
|
|
|
$metadata->image = str_replace('\/', '/', $matches[0]);
|
|
|
|
|
|
|
|
$metadata->title = trim($crawler->filter('.underPlayerRateForm h1')->text(''));
|
|
|
|
$metadata->description = trim($crawler->filter('.fullDescription ')->text(''));
|
|
|
|
$metadata->tags = $crawler->filter('.tagsCategories a')->extract('_text');
|
|
|
|
|
|
|
|
return $metadata;
|
2019-08-06 22:44:38 +09:00
|
|
|
}
|
|
|
|
}
|