mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-17 04:40:08 -07:00
Split Rebrickable to client and manager
This commit is contained in:
parent
05f8681b0c
commit
a7b68eb8d2
@ -2,26 +2,24 @@
|
||||
|
||||
namespace AppBundle\Api\Client\Rebrickable;
|
||||
|
||||
use AppBundle\Api\Client\Rebrickable\Entity\Color;
|
||||
use AppBundle\Api\Client\Rebrickable\Entity\Part;
|
||||
use AppBundle\Api\Client\Rebrickable\Entity\Set;
|
||||
use AppBundle\Api\Client\Rebrickable\Converter\PartPropertyNameConverter;
|
||||
use GuzzleHttp\Client;
|
||||
use GuzzleHttp\Exception\ClientException;
|
||||
use GuzzleHttp\Exception\ConnectException;
|
||||
use Symfony\Component\Asset\Exception\LogicException;
|
||||
use Symfony\Component\Serializer\Encoder\JsonEncoder;
|
||||
use Symfony\Component\Serializer\Normalizer\ArrayDenormalizer;
|
||||
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
|
||||
use Symfony\Component\Serializer\Serializer;
|
||||
|
||||
class Rebrickable
|
||||
{
|
||||
const BASE_URI = 'https://rebrickable.com/api/';
|
||||
const FORMAT = 'json';
|
||||
|
||||
/**
|
||||
* @var Client
|
||||
*/
|
||||
private $client;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $apiKey;
|
||||
|
||||
/**
|
||||
@ -39,7 +37,7 @@ class Rebrickable
|
||||
*
|
||||
* @return null|string
|
||||
*/
|
||||
private function call($method, $parameters = [])
|
||||
public function call($method, $parameters = [])
|
||||
{
|
||||
$parameters['query']['key'] = $this->apiKey;
|
||||
$parameters['query']['format'] = self::FORMAT;
|
||||
@ -69,138 +67,4 @@ class Rebrickable
|
||||
throw new LogicException($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
private function getSerializer()
|
||||
{
|
||||
$encoders = array(new JsonEncoder());
|
||||
$nameConverter = new PartPropertyNameConverter();
|
||||
$objectNormalizer = new ObjectNormalizer(null, $nameConverter);
|
||||
$normalizers = array($objectNormalizer, new ArrayDenormalizer());
|
||||
$serializer = new Serializer($normalizers, $encoders);
|
||||
|
||||
return $serializer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of all parts (normal + spare) used in a set.
|
||||
*
|
||||
* @param string $setName unique rebrickable set name
|
||||
*
|
||||
* @return Part[]|null
|
||||
*/
|
||||
public function getSetParts($setName)
|
||||
{
|
||||
$parameters = [
|
||||
'query' => [
|
||||
'set' => $setName,
|
||||
],
|
||||
];
|
||||
|
||||
$data = $this->call('get_set_parts', $parameters);
|
||||
|
||||
$serializer = $this->getSerializer();
|
||||
$partsSTD = json_decode($data, true)[0]['parts'];
|
||||
|
||||
if ($data) {
|
||||
$parts = $serializer->denormalize($partsSTD, Part::class.'[]', self::FORMAT);
|
||||
foreach ($parts as $key => &$part) {
|
||||
$part->setCategory($this->getPartTypes()[$partsSTD[$key]['part_type_id']]);
|
||||
$part->setColors([
|
||||
0 => [
|
||||
'color_name' => $partsSTD[$key]['color_name'],
|
||||
'rb_color_id' => $partsSTD[$key]['rb_color_id'],
|
||||
'ldraw_color_id' => $partsSTD[$key]['ldraw_color_id'],
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get details about a specific part.
|
||||
*
|
||||
* @param $partID
|
||||
*
|
||||
* @return Part|null
|
||||
*/
|
||||
public function getPart($partID)
|
||||
{
|
||||
$parameters = [
|
||||
'query' => [
|
||||
'part_id' => $partID,
|
||||
'inc_ext' => 1,
|
||||
],
|
||||
];
|
||||
|
||||
$data = $this->call('get_part', $parameters);
|
||||
$serializer = $this->getSerializer();
|
||||
|
||||
return $data ? $serializer->deserialize($data, Part::class, self::FORMAT) : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get associative array of colors used by all parts where key == rb_color_id.
|
||||
*
|
||||
* @return Color[]|null
|
||||
*/
|
||||
public function getColors()
|
||||
{
|
||||
$data = json_decode($this->call('get_colors'), true);
|
||||
|
||||
$serializer = $this->getSerializer();
|
||||
|
||||
$colors = [];
|
||||
|
||||
foreach ($data as $item) {
|
||||
$color = $serializer->denormalize($item, Color::class, self::FORMAT);
|
||||
$colors[$color->getRbColorId()] = $color;
|
||||
}
|
||||
|
||||
return $data ? $colors : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get associative array of themes used by all parts where key == part_type_id.
|
||||
*
|
||||
* @return string[]
|
||||
*/
|
||||
public function getPartTypes()
|
||||
{
|
||||
$data = json_decode($this->call('get_part_types'), true)['part_types'];
|
||||
|
||||
$types = [];
|
||||
foreach ($data as $item) {
|
||||
$types[$item['part_type_id']] = $item['desc'];
|
||||
}
|
||||
|
||||
return $data ? $types : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of sets that a specific part/color appears in.
|
||||
*
|
||||
* @param $partID
|
||||
* @param $colorID
|
||||
*
|
||||
* @return Set[]
|
||||
*/
|
||||
public function getPartSets($partID, $colorID)
|
||||
{
|
||||
$parameters = [
|
||||
'query' => [
|
||||
'part_id' => $partID,
|
||||
'color_id' => $colorID,
|
||||
],
|
||||
];
|
||||
|
||||
$serializer = $this->getSerializer();
|
||||
|
||||
$data = json_decode($this->call('get_part_sets', $parameters), true)[0]['sets'];
|
||||
|
||||
return $data ? $serializer->denormalize($data, Set::class.'[]', self::FORMAT) : null;
|
||||
}
|
||||
}
|
||||
|
@ -3,9 +3,19 @@
|
||||
namespace AppBundle\Api\Manager;
|
||||
|
||||
use AppBundle\Api\Client\Rebrickable\Rebrickable;
|
||||
use AppBundle\Api\Client\Rebrickable\Entity\Color;
|
||||
use AppBundle\Api\Client\Rebrickable\Entity\Part;
|
||||
use AppBundle\Api\Client\Rebrickable\Entity\Set;
|
||||
use AppBundle\Api\Client\Rebrickable\Converter\PartPropertyNameConverter;
|
||||
use Symfony\Component\Serializer\Encoder\JsonEncoder;
|
||||
use Symfony\Component\Serializer\Normalizer\ArrayDenormalizer;
|
||||
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
|
||||
use Symfony\Component\Serializer\Serializer;
|
||||
|
||||
class RebrickableManager
|
||||
{
|
||||
const FORMAT = 'json';
|
||||
|
||||
/**
|
||||
* @var Rebrickable
|
||||
*/
|
||||
@ -21,13 +31,137 @@ class RebrickableManager
|
||||
$this->rebrickableClient = $rebrickableClient;
|
||||
}
|
||||
|
||||
public function getSetParts($setNumber)
|
||||
private function getSerializer()
|
||||
{
|
||||
return $this->rebrickableClient->getSetParts($setNumber);
|
||||
$encoders = array(new JsonEncoder());
|
||||
$nameConverter = new PartPropertyNameConverter();
|
||||
$objectNormalizer = new ObjectNormalizer(null, $nameConverter);
|
||||
$normalizers = array($objectNormalizer, new ArrayDenormalizer());
|
||||
$serializer = new Serializer($normalizers, $encoders);
|
||||
|
||||
return $serializer;
|
||||
}
|
||||
|
||||
public function getPartById($id)
|
||||
/**
|
||||
* Get a list of all parts (normal + spare) used in a set.
|
||||
*
|
||||
* @param string $setName unique rebrickable set name
|
||||
*
|
||||
* @return Part[]|null
|
||||
*/
|
||||
public function getSetParts($setName)
|
||||
{
|
||||
return $this->rebrickableClient->getPart($id);
|
||||
$parameters = [
|
||||
'query' => [
|
||||
'set' => $setName,
|
||||
],
|
||||
];
|
||||
|
||||
$data = $this->rebrickableClient->call('get_set_parts', $parameters);
|
||||
|
||||
$serializer = $this->getSerializer();
|
||||
$partsSTD = json_decode($data, true)[0]['parts'];
|
||||
|
||||
if ($data) {
|
||||
$parts = $serializer->denormalize($partsSTD, Part::class.'[]', self::FORMAT);
|
||||
foreach ($parts as $key => &$part) {
|
||||
$part->setCategory($this->getPartTypes()[$partsSTD[$key]['part_type_id']]);
|
||||
$part->setColors([
|
||||
0 => [
|
||||
'color_name' => $partsSTD[$key]['color_name'],
|
||||
'rb_color_id' => $partsSTD[$key]['rb_color_id'],
|
||||
'ldraw_color_id' => $partsSTD[$key]['ldraw_color_id'],
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get details about a specific part.
|
||||
*
|
||||
* @param $partID
|
||||
*
|
||||
* @return Part|null
|
||||
*/
|
||||
public function getPart($partID)
|
||||
{
|
||||
$parameters = [
|
||||
'query' => [
|
||||
'part_id' => $partID,
|
||||
'inc_ext' => 1,
|
||||
],
|
||||
];
|
||||
|
||||
$data = $this->rebrickableClient->call('get_part', $parameters);
|
||||
$serializer = $this->getSerializer();
|
||||
|
||||
return $data ? $serializer->deserialize($data, Part::class, self::FORMAT) : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get associative array of colors used by all parts where key == rb_color_id.
|
||||
*
|
||||
* @return Color[]|null
|
||||
*/
|
||||
public function getColors()
|
||||
{
|
||||
$data = json_decode($this->rebrickableClient->call('get_colors'), true);
|
||||
|
||||
$serializer = $this->getSerializer();
|
||||
|
||||
$colors = [];
|
||||
|
||||
foreach ($data as $item) {
|
||||
$color = $serializer->denormalize($item, Color::class, self::FORMAT);
|
||||
$colors[$color->getRbColorId()] = $color;
|
||||
}
|
||||
|
||||
return $data ? $colors : [];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get associative array of themes used by all parts where key == part_type_id.
|
||||
*
|
||||
* @return string[]
|
||||
*/
|
||||
public function getPartTypes()
|
||||
{
|
||||
$data = json_decode($this->rebrickableClient->call('get_part_types'), true)['part_types'];
|
||||
|
||||
$types = [];
|
||||
foreach ($data as $item) {
|
||||
$types[$item['part_type_id']] = $item['desc'];
|
||||
}
|
||||
|
||||
return $data ? $types : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the list of sets that a specific part/color appears in.
|
||||
*
|
||||
* @param $partID
|
||||
* @param $colorID
|
||||
*
|
||||
* @return Set[]
|
||||
*/
|
||||
public function getPartSets($partID, $colorID)
|
||||
{
|
||||
$parameters = [
|
||||
'query' => [
|
||||
'part_id' => $partID,
|
||||
'color_id' => $colorID,
|
||||
],
|
||||
];
|
||||
|
||||
$serializer = $this->getSerializer();
|
||||
|
||||
$data = json_decode($this->rebrickableClient->call('get_part_sets', $parameters), true)[0]['sets'];
|
||||
|
||||
return $data ? $serializer->denormalize($data, Set::class.'[]', self::FORMAT) : null;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user