Coder Social home page Coder Social logo

uri-builder's Introduction

URI Builder

Latest Version PHP Version tests Scrutinizer Code Quality Total Downloads

A simple URI builder in PHP that is slightly opinionated

Purpose

The purpose of this package is to provide a fluent interface to build JSON:API compliant URI strings.

Usage

Using the built in parse_url in PHP will produce the following output:

[
    "scheme" => "https",
    "host" => "www.domain.com",
    "path" => "/api/v1/resource"
    "query" => "include=test,another&sort=-name",
]

This is fine for basic usage. To use this very opinionated package:

Building Pragmatically

$url = Uri::build()
           ->addScheme('https')
           ->addHost('www.domain.com')
           ->addPath('api/v1/resource')
           ->addQuery('include=test,another&sort=-name')
           ->addFragment('static-link-to-element');

Creating from a String

$url = Uri::fromString('https://www.domain.com/api/v1/resource?include=test,another&sort=-name')

Converting back to a String

$url = Uri::build()
           ->addScheme('https')
           ->addHost('www.domain.com')
           ->addPath('api/v1/resource')
           ->addQuery('include=test,another&sort=-name');

$string = $url->toString();

// optionally
echo (string) $url;

The toString method has an optional parameter which will allow you to urlencode the query parameters before returning the URI.

$url = Uri::build()
           ->addScheme('https')
           ->addHost('www.domain.com')
           ->addPath('api/v1/resource')
           ->addQuery('include=test,another&sort=-name');

$string = $url->toString(true)

Adding Query Parameters after creation

Creating query parameters after creation is pretty simple. You can pass through anything that isn't:

  • An Object
  • An Array

It has a helper option on the end of the function which will convert booleans to strings.

public function addQueryParam(string $key, $value, bool $covertBoolToString = false)

The following is how you use it:

$url = Uri::fromString('https://www.domain.com/api/v1/resource');
$url->addQueryParam('include', 'test,another,options')
    ->addQueryParam('published', true, true);

The output will be: https://www.domain.com/api/v1/resource?include=test,another,options&published=true

uri-builder's People

Contributors

binarykitten avatar juststeveking avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

uri-builder's Issues

Call to undefined function Safe\parse_url()

After install the package and when i try to use the Uri::fromString() to my laravel project it throws me an error.

Call to undefined function Safe\parse_url()

I have to install composer require thecodingmachine/safe to remove the error

Add ability to append path instead of replace

Hi Steve,

is Ok to add this to the package? this makes it more easy to use while building "dynamic" urls:

    /**
     * Set the Uri Path.
     *
     * @param  null|string $path
     * @return self
     */
    public function appendToPath(string $path): self
    {
        $shouldPrefixSlash = str_ends_with(
            haystack: $this->path,
            needle: '/',
        ) === false && str_starts_with(
                haystack: $path,
                needle: '/',
            ) === false;

        $this->path .= $shouldPrefixSlash ? "/$path" : "$path";

        return $this;
    }

I've already tested this code.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.