![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magefan/module-blog-graph-ql/Model/Resolver/ |
<?php /** * Copyright © Magefan ([email protected]). All rights reserved. * Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement). */ declare(strict_types=1); namespace Magefan\BlogGraphQl\Model\Resolver; use Magento\Framework\Exception\NoSuchEntityException; use Magento\Framework\GraphQl\Config\Element\Field; use Magento\Framework\GraphQl\Exception\GraphQlInputException; use Magento\Framework\GraphQl\Exception\GraphQlNoSuchEntityException; use Magento\Framework\GraphQl\Query\ResolverInterface; use Magento\Framework\GraphQl\Schema\Type\ResolveInfo; /** * Class Author * @package Magefan\BlogGraphQl\Model\Resolver */ class Author implements ResolverInterface { /** * @var DataProvider\Author */ private $authorDataProvider; /** * Author constructor. * @param DataProvider\Author $authorDataProvider */ public function __construct(DataProvider\Author $authorDataProvider) { $this->authorDataProvider = $authorDataProvider; } /** * @inheritdoc */ public function resolve( Field $field, $context, ResolveInfo $info, array $value = null, array $args = null ) { $authorId = $this->getAuthorId($args); $authorData = $this->getAuthorData($authorId); return $authorData; } /** * @param array $args * @return string * @throws GraphQlInputException */ private function getAuthorId(array $args): string { if (!isset($args['id'])) { throw new GraphQlInputException(__('"Author id should be specified')); } return (string)$args['id']; } /** * @param string $authorId * @return array * @throws GraphQlNoSuchEntityException */ private function getAuthorData(string $authorId): array { try { $authorData = $this->authorDataProvider->getData($authorId); } catch (NoSuchEntityException $e) { throw new GraphQlNoSuchEntityException(__($e->getMessage()), $e); } return $authorData; } }