AbstractEnumType::getValues()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 1
ccs 0
cts 0
cp 0
nc 1
1
<?php
2
/**
3
 * Date: 07.12.15
4
 *
5
 * @author Portey Vasil <[email protected]>
6
 */
7
8
namespace Youshido\GraphQL\Type\Enum;
9
10
11
use Youshido\GraphQL\Config\Object\EnumTypeConfig;
12
use Youshido\GraphQL\Config\Traits\ConfigAwareTrait;
13
use Youshido\GraphQL\Type\AbstractType;
14
use Youshido\GraphQL\Type\Traits\AutoNameTrait;
15
use Youshido\GraphQL\Type\TypeMap;
16
17
abstract class AbstractEnumType extends AbstractType
18
{
19
20
    use AutoNameTrait, ConfigAwareTrait;
21
22
    /**
23
     * ObjectType constructor.
24
     * @param $config
25
     */
26 25
    public function __construct($config = [])
27
    {
28 25
        if (empty($config)) {
29 25
            $config['name']   = $this->getName();
30 25
            $config['values'] = $this->getValues();
31 25
        }
32
33 25
        $this->config = new EnumTypeConfig($config, $this);
34 25
    }
35
36
    /**
37
     * @return String predefined type kind
38
     */
39 18
    public function getKind()
40
    {
41 18
        return TypeMap::KIND_ENUM;
42
    }
43
44
    /**
45
     * @param $value mixed
46
     *
47
     * @return bool
48
     */
49 8
    public function isValidValue($value)
50
    {
51 8
        if (is_null($value)) return true;
52 8
        foreach ($this->getConfig()->get('values') as $item) {
53 8
            if ($value === $item['name'] || $value === $item['value']) {
54 8
                return true;
55
            }
56 8
        }
57
58 3
        return false;
59
    }
60
61
    public function getValidationError($value = null)
62
    {
63 2
        $allowedValues             = array_map(function (array $value) {
64 2
            return sprintf('%s (%s)', $value['name'], $value['value']);
65 2
        }, $this->getConfig()->get('values'));
66 2
        return sprintf('Value must be one of the allowed ones: %s', implode(', ', $allowedValues));
67
    }
68
69
    /**
70
     * @return array
71
     */
72
    abstract public function getValues();
73
74 6 View Code Duplication
    public function serialize($value)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in 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...
75
    {
76 6
        foreach ($this->getConfig()->get('values') as $valueItem) {
77 6
            if ($value === $valueItem['value']) {
78 4
                return $valueItem['name'];
79
            }
80 5
        }
81
82 2
        return null;
83
    }
84
85 5 View Code Duplication
    public function parseValue($value)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in 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...
86
    {
87 5
        foreach ($this->getConfig()->get('values') as $valueItem) {
88 5
            if ($value === $valueItem['name']) {
89 4
                return $valueItem['value'];
90
            }
91 4
        }
92
93 2
        return null;
94
    }
95
96 1 View Code Duplication
    public function parseInputValue($value)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in 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...
97
    {
98 1
        foreach ($this->getConfig()->get('values') as $valueItem) {
99 1
            if ($value === $valueItem['value']) {
100 1
                return $valueItem['name'];
101
            }
102
        }
103
104
        return null;
105
    }
106
107
}
108