summaryrefslogtreecommitdiff
path: root/src/Request.php
blob: 586134dfbe51b5e204f1733f21bcffc4dfa00dc2 (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
<?php

namespace GeminiFoundation;

class Request
{
  protected string $scheme;
  protected string $host;
  protected string $path;
  protected array $query;

  public function __construct(string $url)
  {
    $requestUrl = parse_url($url);

    $this->scheme = $requestUrl['scheme'];
    $this->host = $requestUrl['host'];
    $this->path = $requestUrl['path'] ?? '/';

    $this->query = [];
    if (isset($requestUrl['query'])) {
      foreach (explode('&', $requestUrl['query']) as $queryString) {
        $query = explode('=', $queryString);
        $this->query[$query[0]] = $query[1] ?? null;
      }
    }
  }

  /**
   * @param resource $resource
   */
  public static function fromResource($resource): static
  {
    return Request::fromString(fread($resource, 1024));
  }

  public static function fromString(string $string): static
  {
    $requestUrl = explode("\r\n", $string)[0] ?? '';

    return new Request($requestUrl);
  }

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