Merge pull request #30 from eai04191/feature-KomifloResolver

KomifloResolverに画像の取得を追加
This commit is contained in:
shibafu 2019-01-19 02:05:54 +09:00 committed by GitHub
commit b6bf1f99d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,8 @@
namespace App\MetadataResolver;
use Carbon\Carbon;
class KomifloResolver implements Resolver
{
public function resolve(string $url): Metadata
@ -21,6 +23,8 @@ class KomifloResolver implements Resolver
$metadata->description = ($json['content']['attributes']['artists']['children'][0]['data']['name'] ?? '?') .
' - ' .
($json['content']['parents'][0]['data']['title'] ?? '?');
$metadata->image = $json['content']['cdn_public'] . "/564_mobile_large_3x/" . $json['content']['named_imgs']['cover']['filename'] . $json['content']['signature'];
$metadata->expires_at = Carbon::parse($json['content']['signature_expires'])->setTimezone(config('app.timezone'));
return $metadata;
} else {