summaryrefslogtreecommitdiffstats
path: root/library/vendor/iplx/Http/Uri.php
blob: 044fb17c3cb380ca42922ea5a2d6757812485d95 (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
<?php

namespace iplx\Http;

use InvalidArgumentException;
use Psr\Http\Message\UriInterface;

class Uri implements UriInterface
{
    protected $scheme;

    protected $host;

    protected $port;

    protected $user;

    protected $pass;

    protected $path;

    protected $query;

    protected $fragment;

    public function __construct($uri = null)
    {
        $parts = parse_url($uri);

        if ($parts === false) {
            throw new InvalidArgumentException();
        }

        foreach ($parts as $component => $value) {
            $this->$component = $value;
        }
    }

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

    public function getAuthority()
    {
        // Weak type check to also check null
        if ($this->host == '') {
            return '';
        }

        $authority = $this->host;

        $userInfo = $this->getUserInfo();
        $port = $this->getPort();

        if ($userInfo) {
            $authority = "$userInfo@$authority";
        }

        if ($port !== null) {
            $authority .= ":$port";
        }

        return $authority;
    }

    public function getUserInfo()
    {
        $userInfo = $this->user;

        if ($this->pass !== null) {
            $userInfo .= ":{$this->pass}";
        }

        return $userInfo;
    }

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

    public function getPort()
    {
        return $this->port;
    }

    public function getPath()
    {
        return $this->path;
    }

    public function getQuery()
    {
        return $this->query;
    }

    public function getFragment()
    {
        return $this->fragment;
    }

    public function withScheme($scheme)
    {
        $uri = clone $this;
        $uri->scheme = $scheme;

        return $uri;
    }

    public function withUserInfo($user, $password = null)
    {
        $uri = clone $this;
        $uri->user = $user;
        $uri->pass = $password;

        return $uri;
    }

    public function withHost($host)
    {
        $uri = clone $this;
        $uri->host = $host;

        return $uri;
    }

    public function withPort($port)
    {
        $uri = clone $this;
        $uri->port = $port;

        return $uri;
    }

    public function withPath($path)
    {
        $uri = clone $this;
        $uri->path = $path;

        return $uri;
    }

    public function withQuery($query)
    {
        $uri = clone $this;
        $uri->query = $query;

        return $uri;
    }

    public function withFragment($fragment)
    {
        $uri = clone $this;
        $uri->fragment = $fragment;

        return $uri;
    }

    public function __toString()
    {
        $scheme = $this->getScheme();
        $authority = $this->getAuthority();
        $path = $this->getPath();
        $query = $this->getQuery();
        $fragment = $this->getFragment();

        $uri = '';

        // Weak type checks to also check null

        if ($scheme != '') {
            $uri = "$scheme:";
        }

        if ($authority != '') {
            $uri .= "//$authority";
        }

        if ($path != '') {
            if ($path[0] === '/') {
                if ($authority == '') {
                    $path = ltrim($path, '/');
                }
            } else {
                $path = "/$path";
            }

            $uri .= $path;
        }

        if ($query != '') {
            $uri .= "?$query";
        }

        if ($fragment != '') {
            $uri .= "#$fragment";
        }

        return $uri;
    }
}