Skip to content

Commit

Permalink
feat: add SiteURI class
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Feb 14, 2023
1 parent 40be63e commit 2d602ea
Show file tree
Hide file tree
Showing 3 changed files with 538 additions and 0 deletions.
302 changes: 302 additions & 0 deletions system/HTTP/SiteURI.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,302 @@
<?php

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

namespace CodeIgniter\HTTP;

use CodeIgniter\HTTP\Exceptions\HTTPException;
use Config\App;

/**
* URI for the application site
*/
class SiteURI extends URI
{
/**
* The baseURL.
*/
private string $baseURL;

/**
* The Index File.
*/
private string $indexPage;

/**
* List of URI segments in baseURL and indexPage.
*
* If the URI is "http://localhost:8888/ci431/public/index.php/test?a=b",
* and the baseUR is "http://localhost:8888/ci431/public/", then:
* $baseSegments = [
* 0 => 'ci431',
* 1 => 'public',
* 2 => 'index.php',
* ];
*/
private array $baseSegments;

/**
* List of URI segments after indexPage.
*
* The word "URI Segments" originally means only the URI path part relative
* to the baseURL.
*
* If the URI is "http://localhost:8888/ci431/public/index.php/test?a=b",
* and the baseUR is "http://localhost:8888/ci431/public/", then:
* $segments = [
* 0 => 'test',
* ];
*
* @var array
*
* @deprecated This property will be private.
*/
protected $segments;

/**
* URI path relative to baseURL.
*
* If the baseURL contains sub folders, this value will be different from
* the current URI path.
*/
private string $routePath;

public function __construct(App $configApp)
{
// It's possible the user forgot a trailing slash on their
// baseURL, so let's help them out.
$baseURL = rtrim($configApp->baseURL, '/ ') . '/';

$this->baseURL = $baseURL;
$this->indexPage = $configApp->indexPage;

$this->setBaseSeegments();

// Check for an index page
$indexPage = '';
if ($configApp->indexPage !== '') {
$indexPage = $configApp->indexPage . '/';
}

$tempUri = $this->baseURL . $indexPage;
$uri = new URI($tempUri);

if ($configApp->forceGlobalSecureRequests) {
$uri->setScheme('https');
}

parent::__construct((string) $uri);

$this->setPath('/');
}

/**
* Sets baseSegments.
*/
private function setBaseSeegments(): void
{
$basePath = (new URI($this->baseURL))->getPath();
$this->baseSegments = $this->convertToSegments($basePath);

if ($this->indexPage) {
$this->baseSegments[] = $this->indexPage;
}
}

/**
* Returns the URI path relative to baseURL.
*
* @return string The Route path.
*/
public function getRoutePath(): string
{
return $this->routePath;
}

/**
* Returns the URI segments of the path as an array.
*/
public function getSegments(): array
{
return $this->segments;
}

/**
* Returns the value of a specific segment of the URI path relative to baseURL.
*
* @param int $number Segment number
* @param string $default Default value
*
* @return string The value of the segment. If no segment is found,
* throws HTTPException
*/
public function getSegment(int $number, string $default = ''): string
{
if ($number < 1) {
throw HTTPException::forURISegmentOutOfRange($number);
}

if ($number > count($this->segments) && ! $this->silent) {
throw HTTPException::forURISegmentOutOfRange($number);
}

// The segment should treat the array as 1-based for the user
// but we still have to deal with a zero-based array.
$number--;

return $this->segments[$number] ?? $default;
}

/**
* Set the value of a specific segment of the URI path relative to baseURL.
* Allows to set only existing segments or add new one.
*
* @param int $number The segment number. Starting with 1.
* @param string $value The segment value.
*
* @return $this
*/
public function setSegment(int $number, $value)
{
if ($number < 1) {
throw HTTPException::forURISegmentOutOfRange($number);
}

if ($number > count($this->segments) + 1) {
if ($this->silent) {
return $this;
}

throw HTTPException::forURISegmentOutOfRange($number);
}

// The segment should treat the array as 1-based for the user,
// but we still have to deal with a zero-based array.
$number--;

$this->segments[$number] = $value;

$this->refreshPath();

return $this;
}

/**
* Returns the total number of segments.
*/
public function getTotalSegments(): int
{
return count($this->segments);
}

/**
* Formats the URI as a string.
*/
public function __toString(): string
{
return static::createURIString(
$this->getScheme(),
$this->getAuthority(),
$this->getPath(), // Absolute URIs should use a "/" for an empty path
$this->getQuery(),
$this->getFragment()
);
}

/**
* Sets the route path (and segments).
*
* @return $this
*/
public function setPath(string $path)
{
$this->routePath = $this->filterPath($path);

$this->segments = $this->convertToSegments($this->routePath);

$this->refreshPath();

return $this;
}

/**
* Converts path to segments
*/
private function convertToSegments(string $path): array
{
$tempPath = trim($path, '/');

return ($tempPath === '') ? [] : explode('/', $tempPath);
}

/**
* Sets the path portion of the URI based on segments.
*
* @return $this
*
* @deprecated This method will be private.
*/
public function refreshPath()
{
$allSegments = array_merge($this->baseSegments, $this->segments);
$this->path = '/' . $this->filterPath(implode('/', $allSegments));

$this->routePath = $this->filterPath(implode('/', $this->segments));

if ($this->routePath === '') {
$this->routePath = '/';

if ($this->indexPage !== '') {
$this->path .= '/';
}
}

return $this;
}

/**
* Saves our parts from a parse_url() call.
*/
protected function applyParts(array $parts)
{
if (! empty($parts['host'])) {
$this->host = $parts['host'];
}
if (! empty($parts['user'])) {
$this->user = $parts['user'];
}
if (isset($parts['path']) && $parts['path'] !== '') {
$this->path = $this->filterPath($parts['path']);
}
if (! empty($parts['query'])) {
$this->setQuery($parts['query']);
}
if (! empty($parts['fragment'])) {
$this->fragment = $parts['fragment'];
}

// Scheme
if (isset($parts['scheme'])) {
$this->setScheme(rtrim($parts['scheme'], ':/'));
} else {
$this->setScheme('http');
}

// Port
if (isset($parts['port']) && $parts['port'] !== null) {
// Valid port numbers are enforced by earlier parse_url() or setPort()
$this->port = $parts['port'];
}

if (isset($parts['pass'])) {
$this->password = $parts['pass'];
}
}
}
2 changes: 2 additions & 0 deletions system/HTTP/URI.php
Original file line number Diff line number Diff line change
Expand Up @@ -785,6 +785,8 @@ public function getBaseURL(): string
* Sets the path portion of the URI based on segments.
*
* @return $this
*
* @deprecated This method will be private.
*/
public function refreshPath()
{
Expand Down
Loading

0 comments on commit 2d602ea

Please sign in to comment.