Issues (9)

Security Analysis    no request data  

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

src/Configurator.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace TomPHP\ContainerConfigurator;
4
5
use Assert\Assertion;
6
use InvalidArgumentException;
7
use TomPHP\ContainerConfigurator\Exception\NoMatchingFilesException;
8
use TomPHP\ContainerConfigurator\Exception\UnknownSettingException;
9
10
final class Configurator
11
{
12
    const SETTING_PREFIX                     = 'config_prefix';
13
    const SETTING_SEPARATOR                  = 'config_separator';
14
    const SETTING_SERVICES_KEY               = 'services_key';
15
    const SETTING_INFLECTORS_KEY             = 'inflectors_key';
16
    const SETTING_DEFAULT_SINGLETON_SERVICES = 'default_singleton_services';
17
18
    const FILE_READERS = [
19
        '.json' => FileReader\JSONFileReader::class,
20
        '.php'  => FileReader\PHPFileReader::class,
21
        '.yaml' => FileReader\YAMLFileReader::class,
22
        '.yml'  => FileReader\YAMLFileReader::class,
23
    ];
24
25
    const CONTAINER_ADAPTERS = [
26
        \League\Container\Container::class => League\LeagueContainerAdapter::class,
27
        \Pimple\Container::class           => Pimple\PimpleContainerAdapter::class,
28
    ];
29
30
    /**
31
     * @var ApplicationConfig
32
     */
33
    private $config;
34
35
    /**
36
     * @var FileReader\ReaderFactory
37
     */
38
    private $readerFactory;
39
40
    /**
41
     * @var mixed[]
42
     */
43
    private $settings = [
44
        self::SETTING_PREFIX                     => 'config',
45
        self::SETTING_SEPARATOR                  => '.',
46
        self::SETTING_SERVICES_KEY               => 'di.services',
47
        self::SETTING_INFLECTORS_KEY             => 'di.inflectors',
48
        self::SETTING_DEFAULT_SINGLETON_SERVICES => false,
49
    ];
50
51
    /**
52
     * @var string[]
53
     */
54
    private $fileReaders = self::FILE_READERS;
55
56
    /**
57
     * @var string[]
58
     */
59
    private $containerAdapters = self::CONTAINER_ADAPTERS;
60
61
    /**
62
     * @var string
63
     */
64
    private static $containerIdentifier;
65
66
    /**
67
     * @return Configurator
68
     */
69
    public static function apply()
70
    {
71
        return new self();
72
    }
73
74
    private function __construct()
75
    {
76
        $this->config = new ApplicationConfig([]);
77
    }
78
79
    /**
80
     * @return string
81
     */
82
    public static function container()
83
    {
84
        if (!self::$containerIdentifier) {
85
            self::$containerIdentifier = uniqid(__CLASS__ . '::CONTAINER_ID::');
86
        }
87
88
        return self::$containerIdentifier;
89
    }
90
91
    /**
92
     * @param array $config
93
     *
94
     * @return $this
95
     */
96
    public function configFromArray(array $config)
97
    {
98
        $this->config->merge($config);
99
100
        return $this;
101
    }
102
103
    /**
104
     * @param string $filename
105
     *
106
     * @throws InvalidArgumentException
107
     *
108
     * @return $this
109
     */
110
    public function configFromFile($filename)
111
    {
112
        Assertion::file($filename);
113
114
        $this->readFileAndMergeConfig($filename);
115
116
        return $this;
117
    }
118
119
    /**
120
     * @param string $pattern
121
     *
122
     * @throws NoMatchingFilesException
123
     * @throws InvalidArgumentException
124
     *
125
     * @return $this
126
     */
127
    public function configFromFiles($pattern)
128
    {
129
        Assertion::string($pattern);
130
131
        $locator = new FileReader\FileLocator();
132
133
        $files = $locator->locate($pattern);
134
135
        if (count($files) === 0) {
136
            throw NoMatchingFilesException::fromPattern($pattern);
137
        }
138
139
        foreach ($files as $filename) {
140
            $this->readFileAndMergeConfig($filename);
141
        }
142
143
        return $this;
144
    }
145
146
    /**
147
     * @param string $name
148
     * @param mixed  $value
149
     *
150
     * @throws UnknownSettingException
151
     * @throws InvalidArgumentException
152
     *
153
     * @return $this
154
     */
155
    public function withSetting($name, $value)
156
    {
157
        Assertion::string($name);
158
        Assertion::scalar($value);
159
160
        if (!array_key_exists($name, $this->settings)) {
161
            throw UnknownSettingException::fromSetting($name, array_keys($this->settings));
162
        }
163
164
        $this->settings[$name] = $value;
165
166
        return $this;
167
    }
168
169
    /**
170
     * @param string $extension
171
     * @param string $className
172
     *
173
     * @return $this
174
     */
175
    public function withFileReader($extension, $className)
176
    {
177
        $this->fileReaders[$extension] = $className;
178
179
        return $this;
180
    }
181
182
    /**
183
     * @param string $containerName
184
     * @param string $adapterName
185
     *
186
     * @return $this
187
     */
188
    public function withContainerAdapter($containerName, $adapterName)
189
    {
190
        $this->containerAdapters[$containerName] = $adapterName;
191
192
        return $this;
193
    }
194
195
    /**
196
     * @param object $container
197
     *
198
     * @return void
199
     */
200
    public function to($container)
201
    {
202
        $this->config->setSeparator($this->settings[self::SETTING_SEPARATOR]);
203
204
        $factory = new ContainerAdapterFactory($this->containerAdapters);
205
206
        $configurator = $factory->create($container);
207
208
        $configurator->addApplicationConfig($this->config, $this->settings[self::SETTING_PREFIX]);
209
210 View Code Duplication
        if (isset($this->config[$this->settings[self::SETTING_SERVICES_KEY]])) {
0 ignored issues
show
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...
211
            $configurator->addServiceConfig(new ServiceConfig(
212
                $this->config[$this->settings[self::SETTING_SERVICES_KEY]],
213
                $this->settings[self::SETTING_DEFAULT_SINGLETON_SERVICES]
214
            ));
215
        }
216
217 View Code Duplication
        if (isset($this->config[$this->settings[self::SETTING_INFLECTORS_KEY]])) {
0 ignored issues
show
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...
218
            $configurator->addInflectorConfig(new InflectorConfig(
219
                $this->config[$this->settings[self::SETTING_INFLECTORS_KEY]]
220
            ));
221
        }
222
    }
223
224
    /**
225
     * @param string $filename
226
     *
227
     * @return void
228
     */
229
    private function readFileAndMergeConfig($filename)
230
    {
231
        $reader = $this->getReaderFor($filename);
232
233
        $this->config->merge($reader->read($filename));
234
    }
235
236
    /**
237
     * @param string $filename
238
     *
239
     * @return FileReader\FileReader
240
     */
241
    private function getReaderFor($filename)
242
    {
243
        if (!$this->readerFactory) {
244
            $this->readerFactory = new FileReader\ReaderFactory($this->fileReaders);
245
        }
246
247
        return $this->readerFactory->create($filename);
248
    }
249
}
250