Completed
Push — master ( 03a3fc...10d0d9 )
by Gilmar
42:34 queued 17:38
created

SkuCommand::view()   A

Complexity

Conditions 2
Paths 1

Size

Total Lines 17
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 17
rs 9.4285
cc 2
eloc 11
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of gpupo/netshoes-sdk
5
 * Created by Gilmar Pupo <[email protected]>
6
 * For the information of copyright and license you should read the file
7
 * LICENSE which is distributed with this source code.
8
 * Para a informação dos direitos autorais e de licença você deve ler o arquivo
9
 * LICENSE que é distribuído com este código-fonte.
10
 * Para obtener la información de los derechos de autor y la licencia debe leer
11
 * el archivo LICENSE que se distribuye con el código fuente.
12
 * For more information, see <http://www.g1mr.com/>.
13
 */
14
15
namespace Gpupo\NetshoesSdk\Console\Command;
16
17
use Symfony\Component\Console\Input\InputArgument;
18
use Symfony\Component\Console\Input\InputInterface;
19
use Symfony\Component\Console\Output\OutputInterface;
20
21
/**
22
 * @codeCoverageIgnore
23
 */
24
class SkuCommand extends AbstractCommand
25
{
26
    protected $list = ['view', 'details', 'update'];
27
28
    public function view($app)
29
    {
30
        $this->getApp()->appendCommand('product:sku:view', 'Mostra os SKUs de um Produto')
31
          ->addArgument('productId', InputArgument::REQUIRED, 'Product ID')
32
          ->setCode(function (InputInterface $input, OutputInterface $output) use ($app) {
33
              $list = $app->processInputParameters([], $input, $output);
34
              $id = $input->getArgument('productId');
35
              $output->writeln('Exibindo informações do SKU #<info>'.$id.'</info>');
36
              $p = $app->factorySdk($list)->factoryManager('sku')->findById($id);
37
38
              if(empty($p)) {
39
                  return $output->writeln('<error>Sku não encontrado!</error>');
40
              }
41
42
              $app->displayTableResults($output, $p);
43
          });
44
    }
45
46
    public function details($app)
47
    {
48
        $this->getApp()->appendCommand('product:sku:details', 'Mostra preço, estoque e situação de um SKU')
49
           ->addArgument('skuId', InputArgument::REQUIRED, 'Sku ID')
50
           ->setCode(function (InputInterface $input, OutputInterface $output) use ($app) {
51
               $list = $app->processInputParameters([], $input, $output);
52
53
               $sku = $app->factorySdk($list)
54
                   ->factoryManager('sku')
55
                   ->findSkuById($input->getArgument('skuId'));
56
57
               $output->writeln('Price: R$<info>'.$sku->getPrice()->getPrice().'</info>');
58
               $output->writeln('Price Schedule: R$<info>'.$sku->getPriceSchedule()->getPriceTo().'</info>');
59
               $output->writeln('Stock: <info>'.$sku->getStock()->getAvailable().'</info>');
60
               $output->writeln('Status: <info>'.$sku->getStatus()->getActive().'</info>');
61
           });
62
    }
63
64
    public function update($app)
65
    {
66
        $insertOptions = [
67
            ['key' => 'file'],
68
            ];
69
70
        $this->getApp()->appendCommand('product:sku:update', 'Atualiza um SKU')
71
            ->setDefinition($this->getApp()->factoryDefinition($insertOptions))
72
            ->setCode(function (InputInterface $input, OutputInterface $output) use ($app, $insertOptions) {
73
                $list = $app->processInputParameters($insertOptions, $input, $output);
74
75 View Code Duplication
                if (!file_exists($list['file'])) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
76
                    throw new \InvalidArgumentException('O arquivo ['.$list['file'].'] não existe!');
77
                }
78
79
                $data = json_decode(file_get_contents($list['file']), true);
80
81
                $sdk = $app->factorySdk($list);
82
                $sku = $sdk->createSku($data);
83
                $manager = $sdk->factoryManager('sku');
84
                $previous = $manager->findSkuById($sku->getId());
85
86
                try {
87
                    $operation = $manager->update($sku, $previous);
88
                    $app->displayTableResults($output, [$operation]);
89
                } catch (\Exception $e) {
90
                    $output->writeln('<error>Erro na criação</error>');
91
                    $output->writeln('Message: <comment>'.$e->getMessage().'</comment>');
92
                    $output->writeln('Error Code: <comment>'.$e->getCode().'</comment>');
93
                }
94
            });
95
    }
96
}
97