2019-01-14 22:55:01 +09:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\MetadataResolver;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
|
|
|
|
|
|
class FantiaResolver implements Resolver
|
|
|
|
|
{
|
|
|
|
|
public function resolve(string $url): Metadata
|
|
|
|
|
{
|
|
|
|
|
preg_match("~\d+~", $url, $match);
|
|
|
|
|
$postId = $match[0];
|
|
|
|
|
|
|
|
|
|
$client = new \GuzzleHttp\Client();
|
|
|
|
|
$res = $client->get($url);
|
|
|
|
|
if ($res->getStatusCode() === 200) {
|
|
|
|
|
$ogpResolver = new OGPResolver();
|
|
|
|
|
$metadata = $ogpResolver->parse($res->getBody());
|
|
|
|
|
|
|
|
|
|
$dom = new \DOMDocument();
|
|
|
|
|
@$dom->loadHTML(mb_convert_encoding($res->getBody(), 'HTML-ENTITIES', 'UTF-8'));
|
|
|
|
|
$xpath = new \DOMXPath($dom);
|
|
|
|
|
|
|
|
|
|
$node = $xpath->query("//meta[@property='twitter:image']")->item(0);
|
|
|
|
|
$ogpUrl = $node->getAttribute('content');
|
|
|
|
|
|
2019-01-14 23:08:37 +09:00
|
|
|
|
// 投稿に画像がない場合(ogp.jpgでない場合)のみ大きい画像に変換する
|
2019-01-15 00:05:01 +09:00
|
|
|
|
if ($ogpUrl != "http://fantia.jp/images/ogp.jpg") {
|
2019-01-14 23:50:15 +09:00
|
|
|
|
preg_match("~https://fantia\.s3\.amazonaws\.com/uploads/post/file/{$postId}/ogp_(.*?)\.(jpg|png)~", $ogpUrl, $match);
|
2019-01-14 23:08:37 +09:00
|
|
|
|
$uuid = $match[1];
|
2019-01-14 23:50:15 +09:00
|
|
|
|
$extension = $match[2];
|
2019-01-14 23:08:37 +09:00
|
|
|
|
|
|
|
|
|
// 大きい画像に変換
|
2019-01-14 23:50:15 +09:00
|
|
|
|
$metadata->image = "https://c.fantia.jp/uploads/post/file/{$postId}/main_{$uuid}.{$extension}";
|
2019-01-14 23:08:37 +09:00
|
|
|
|
}
|
2019-01-14 22:55:01 +09:00
|
|
|
|
|
|
|
|
|
return $metadata;
|
|
|
|
|
} else {
|
|
|
|
|
throw new \RuntimeException("{$res->getStatusCode()}: $url");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|