一部サイトに対するサムネイルURL解決の特殊処理を仕込んだ

This commit is contained in:
shibafu
2018-01-05 23:34:49 +09:00
parent f2ed4f85ee
commit 7a386d4d89
3 changed files with 71 additions and 9 deletions

View File

@@ -21,9 +21,10 @@ Route::get('/checkin/card', function (Request $request) {
$request->validate([
'url:required|url'
]);
$url = $request->input('url');
$client = new GuzzleHttp\Client();
$res = $client->get($request->input('url'));
$res = $client->get($url);
if ($res->getStatusCode() === 200) {
$dom = new DOMDocument();
@$dom->loadHTML(mb_convert_encoding($res->getBody(), 'HTML-ENTITIES', 'UTF-8'));
@@ -59,6 +60,25 @@ Route::get('/checkin/card', function (Request $request) {
}
}
// 一部サイトについては別のサムネイルの取得を試みる
if (mb_strpos($url, 'nico.ms/im') !== false ||
mb_strpos($url, 'seiga.nicovideo.jp/seiga/im') !== false ||
mb_strpos($url, 'sp.seiga.nicovideo.jp/seiga/#!/im') !== false) {
// ニコニコ静画用の処理
preg_match('~http://(?:(?:sp\\.)?seiga\\.nicovideo\\.jp/seiga(?:/#!)?|nico\\.ms)/im(\\d+)~', $url, $matches);
$result['image'] = "http://lohas.nicoseiga.jp/thumb/${matches[1]}l?";
} elseif (mb_strpos($url, 'nijie.info/view.php')) {
// ニジエ用の処理
$dataNode = $xpath->query('//script[substring(@type, string-length(@type) - 3, 4) = "json"]');
foreach ($dataNode as $node) {
$imageData = json_decode($node->nodeValue, true);
if (isset($imageData['thumbnailUrl'])) {
$result['image'] = preg_replace('~nijie\\.info/.*/nijie_picture/~', 'nijie.info/nijie_picture/', $imageData['thumbnailUrl']);
break;
}
}
}
$response = response()->json($result);
if (!config('app.debug')) {
$response = $response->setCache(['public' => true, 'max_age' => 86400]);