42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\MetadataResolver;
 | 
						|
 | 
						|
use GuzzleHttp\Client;
 | 
						|
 | 
						|
class KomifloResolver implements Resolver
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var Client
 | 
						|
     */
 | 
						|
    private $client;
 | 
						|
 | 
						|
    public function __construct(Client $client)
 | 
						|
    {
 | 
						|
        $this->client = $client;
 | 
						|
    }
 | 
						|
 | 
						|
    public function resolve(string $url): Metadata
 | 
						|
    {
 | 
						|
        if (preg_match('~komiflo\.com(?:/#!)?/comics/(\\d+)~', $url, $matches) !== 1) {
 | 
						|
            throw new \RuntimeException("Unmatched URL Pattern: $url");
 | 
						|
        }
 | 
						|
        $id = $matches[1];
 | 
						|
 | 
						|
        $res = $this->client->get('https://api.komiflo.com/content/id/' . $id);
 | 
						|
        if ($res->getStatusCode() === 200) {
 | 
						|
            $json = json_decode($res->getBody()->getContents(), true);
 | 
						|
            $metadata = new Metadata();
 | 
						|
 | 
						|
            $metadata->title = $json['content']['data']['title'] ?? '';
 | 
						|
            $metadata->description = ($json['content']['attributes']['artists']['children'][0]['data']['name'] ?? '?') .
 | 
						|
                ' - ' .
 | 
						|
                ($json['content']['parents'][0]['data']['title'] ?? '?');
 | 
						|
 | 
						|
            return $metadata;
 | 
						|
        } else {
 | 
						|
            throw new \RuntimeException("{$res->getStatusCode()}: $url");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |