Issues (5)

Security Analysis    not enabled

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/Http/AppServiceProviderTrait.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 namespace Neomerx\Limoncello\Http;
2
3
/**
4
 * Copyright 2015 [email protected] (www.neomerx.com)
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 * http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
19
use \Closure;
20
use \Neomerx\JsonApi\Factories\Factory;
21
use \Neomerx\JsonApi\Codec\CodecMatcher;
22
use \Neomerx\JsonApi\Responses\Responses;
23
use \Neomerx\JsonApi\Decoders\ArrayDecoder;
24
use \Neomerx\Limoncello\Config\Config as C;
25
use \Neomerx\JsonApi\Encoder\EncoderOptions;
26
use \Neomerx\Limoncello\Errors\ExceptionThrower;
27
use \Neomerx\Limoncello\Contracts\IntegrationInterface;
28
use \Neomerx\JsonApi\Contracts\Schema\ContainerInterface;
29
use \Neomerx\JsonApi\Contracts\Factories\FactoryInterface;
30
use \Neomerx\JsonApi\Contracts\Codec\CodecMatcherInterface;
31
use \Neomerx\JsonApi\Contracts\Responses\ResponsesInterface;
32
use \Neomerx\JsonApi\Contracts\Parameters\Headers\MediaTypeInterface;
33
use \Neomerx\JsonApi\Contracts\Integration\ExceptionThrowerInterface;
34
35
/**
36
 * @package Neomerx\Limoncello
37
 */
38
trait AppServiceProviderTrait
39
{
40
    /**
41
     * @param IntegrationInterface $integration
42
     */
43 1
    public function registerResponses(IntegrationInterface $integration)
44
    {
45 1
        $integration->setInContainer(ResponsesInterface::class, new Responses($integration));
46 1
    }
47
48
    /**
49
     * @param IntegrationInterface $integration
50
     */
51 1
    public function registerExceptionThrower(IntegrationInterface $integration)
52
    {
53 1
        $integration->setInContainer(ExceptionThrowerInterface::class, new ExceptionThrower());
54 1
    }
55
56
    /**
57
     * @param IntegrationInterface $integration
58
     */
59 2
    public function registerCodecMatcher(IntegrationInterface $integration)
60
    {
61
        // register factory
62 1
        $factory = $this->createFactory();
63 1
        $integration->setInContainer(FactoryInterface::class, $factory);
64
65
        // register config
66 1
        $config  = $integration->getConfig();
67 1
        $integration->setInContainer(C::class, $config);
68
69
        // register schemas
70 1
        $schemaContainer = $this->createSchemaContainer($config, $factory);
71 1
        $integration->setInContainer(ContainerInterface::class, $schemaContainer);
72
73
        // register codec matcher
74 1
        $codecMatcher = $this->createCodecMatcher($config, $factory, $schemaContainer);
75 1
        $integration->setInContainer(CodecMatcherInterface::class, $codecMatcher);
76 2
    }
77
78
    /**
79
     * @return FactoryInterface
0 ignored issues
show
Consider making the return type a bit more specific; maybe use Factory.

This check looks for the generic type array as a return type and suggests a more specific type. This type is inferred from the actual code.

Loading history...
80
     */
81 2
    protected function createFactory()
82
    {
83 2
        return new Factory();
84
    }
85
86
    /**
87
     * @param array            $config
88
     * @param FactoryInterface $factory
89
     *
90
     * @return ContainerInterface
91
     */
92 2
    protected function createSchemaContainer(array $config, FactoryInterface $factory)
93
    {
94 2
        $schemas         = isset($config[C::SCHEMAS]) === true ? $config[C::SCHEMAS] : [];
95 2
        $schemaContainer = $factory->createContainer($schemas);
96
97 2
        return $schemaContainer;
98
    }
99
100
    /**
101
     * @param array              $config
102
     * @param FactoryInterface   $factory
103
     * @param ContainerInterface $schemaContainer
104
     *
105
     * @return CodecMatcherInterface
0 ignored issues
show
Consider making the return type a bit more specific; maybe use CodecMatcher.

This check looks for the generic type array as a return type and suggests a more specific type. This type is inferred from the actual code.

Loading history...
106
     */
107 1
    protected function createCodecMatcher(array $config, FactoryInterface $factory, ContainerInterface $schemaContainer)
108
    {
109 1
        $options         = $this->getValue($config, C::JSON, C::JSON_OPTIONS, C::JSON_OPTIONS_DEFAULT);
110 1
        $depth           = $this->getValue($config, C::JSON, C::JSON_DEPTH, C::JSON_DEPTH_DEFAULT);
111 1
        $urlPrefix       = $this->getValue($config, C::JSON, C::JSON_URL_PREFIX, null);
112 1
        $encoderOptions  = new EncoderOptions($options, $urlPrefix, $depth);
113 1
        $decoderClosure  = $this->getDecoderClosure();
114 1
        $encoderClosure  = $this->getEncoderClosure($factory, $schemaContainer, $encoderOptions, $config);
115 1
        $codecMatcher    = new CodecMatcher();
116 1
        $jsonApiType     = $factory->createMediaType(
117 1
            MediaTypeInterface::JSON_API_TYPE,
118
            MediaTypeInterface::JSON_API_SUB_TYPE
119 1
        );
120 1
        $jsonApiTypeUtf8 = $factory->createMediaType(
121 1
            MediaTypeInterface::JSON_API_TYPE,
122 1
            MediaTypeInterface::JSON_API_SUB_TYPE,
123 1
            ['charset' => 'UTF-8']
124 1
        );
125 1
        $codecMatcher->registerEncoder($jsonApiType, $encoderClosure);
126 1
        $codecMatcher->registerDecoder($jsonApiType, $decoderClosure);
127 1
        $codecMatcher->registerEncoder($jsonApiTypeUtf8, $encoderClosure);
128 1
        $codecMatcher->registerDecoder($jsonApiTypeUtf8, $decoderClosure);
129
130 1
        return $codecMatcher;
131
    }
132
133
    /**
134
     * @return Closure
135
     */
136 2
    protected function getDecoderClosure()
137
    {
138
        return function () {
139 1
            return new ArrayDecoder();
140 2
        };
141
    }
142
143
    /**
144
     * @param FactoryInterface   $factory
145
     * @param ContainerInterface $container
146
     * @param EncoderOptions     $encoderOptions
147
     * @param array              $config
148
     *
149
     * @return Closure
150
     */
151
    private function getEncoderClosure(
152
        FactoryInterface $factory,
153
        ContainerInterface $container,
154
        EncoderOptions $encoderOptions,
155
        array $config
156
    ) {
157 2
        return function () use ($factory, $container, $encoderOptions, $config) {
158 1
            $isShowVer   = $this->getValue($config, C::JSON, C::JSON_IS_SHOW_VERSION, C::JSON_IS_SHOW_VERSION_DEFAULT);
159 1
            $versionMeta = $this->getValue($config, C::JSON, C::JSON_VERSION_META, null);
160 1
            $encoder     = $factory->createEncoder($container, $encoderOptions);
161
162 1
            $isShowVer === false ?: $encoder->withJsonApiVersion($versionMeta);
163
164 1
            return $encoder;
165 2
        };
166
    }
167
168
    /**
169
     * @param array  $array
170
     * @param string $key1
171
     * @param string $key2
172
     * @param mixed  $default
173
     *
174
     * @return mixed
175
     */
176 2
    private function getValue(array $array, $key1, $key2, $default)
177
    {
178 2
        return isset($array[$key1][$key2]) === true ? $array[$key1][$key2] : $default;
179
    }
180
}
181