summaryrefslogtreecommitdiff
path: root/src/Http/Request.php
blob: ded1c95bdd5a69cfc7f6f824d5f42306e2768cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php

namespace Engelsystem\Http;

use ErrorException;

class Request
{
    /** @var self */
    protected static $instance;

    /** @var array of GET data */
    protected $query;

    /** @var array of POST data */
    protected $request;

    /** @var array of SERVER data */
    protected $server;

    /** @var string */
    protected $scheme;

    /** @var string */
    protected $host;

    /** @var string */
    protected $baseUrl = '';

    /** @var string */
    protected $path;

    /**
     * Initialize request
     *
     * @param array  $query   The GET data
     * @param array  $request the POST data
     * @param array  $server  the SERVER data
     * @param string $baseUrl base url to use for links
     */
    public function create(array $query, array $request, array $server, $baseUrl = null)
    {
        $this->query = $query;
        $this->request = $request;
        $this->server = array_merge([
            'SERVER_NAME' => 'localhost',
            'HTTP_HOST'   => 'localhost',
            'SERVER_PORT' => 80,
            'REQUEST_URI' => '/',
        ], $server);

        if (isset($this->server['HTTPS']) && $this->server['HTTPS'] == 'off') {
            unset($this->server['HTTPS']);
        }

        $uri = $this->server['REQUEST_URI'];
        $uri = '/' . ltrim($uri, '/');
        $uri = explode('?', $uri);
        $this->path = array_shift($uri);

        $components = parse_url($baseUrl);
        if (!$components) {
            $components = [];
        }

        $this->scheme = (isset($components['scheme']) ? $components['scheme'] : ($this->isSecure() ? 'https' : 'http'));
        $this->host = (isset($components['host']) ? $components['host'] : $this->server['SERVER_NAME']);

        if (isset($components['path'])) {
            $this->baseUrl = '/' . ltrim($components['path'], '/');
            $this->path = preg_replace('~^' . preg_quote($this->baseUrl, '~') . '~i', '', $this->path);
            $this->path = '/' . ltrim($this->path, '/');
        }
    }

    public function isSecure()
    {
        return isset($this->server['HTTPS']);
    }

    /**
     * Get GET input
     *
     * @param string $key
     * @param mixed  $default
     * @return mixed
     */
    public function get($key, $default = null)
    {
        if (!empty($this->query[$key])) {
            return $this->query[$key];
        }

        return $default;
    }

    /**
     * Get POST input
     *
     * @param string $key
     * @param mixed  $default
     * @return mixed
     */
    public function post($key, $default = null)
    {
        if (!empty($this->request[$key])) {
            return $this->request[$key];
        }

        return $default;
    }

    /**
     * Get input data
     *
     * @param string $key
     * @param mixed  $default
     * @return mixed
     */
    public function input($key, $default = null)
    {
        $data = $this->request + $this->query;

        if (!empty($data[$key])) {
            return $data[$key];
        }

        return $default;
    }

    /**
     * Checks if the input exists
     *
     * @param string $key
     * @return bool
     */
    public function has($key)
    {
        $value = $this->input($key);

        return !empty($value);
    }

    /**
     * Get the requested path
     *
     * @return string
     */
    public function path()
    {
        // @TODO: base uri?
        return $this->path;
    }

    public function url()
    {
        return $this->getSchemeAndHttpHost() . $this->getBaseUrl() . '/' . $this->path();
    }

    /**
     * @return string
     */
    public function root()
    {
        return $this->baseUrl;
    }

    public function getSchemeAndHttpHost()
    {
        return $this->getScheme() . '://' . $this->getHttpHost();
    }

    public function getScheme()
    {
        return $this->scheme;
    }

    public function getHttpHost()
    {
        return $this->host;
    }

    public function getBaseUrl()
    {
        return $this->baseUrl;
    }

    /**
     * @return self
     * @throws ErrorException
     */
    public static function getInstance()
    {
        if (!self::$instance instanceof self) {
            throw new ErrorException('Request not initialized');
        }

        return self::$instance;
    }

    /**
     * @param self $instance
     */
    public static function setInstance($instance)
    {
        self::$instance = $instance;
    }
}