LaravelPackages.net
Acme Inc.
Toggle sidebar
ejetar/accept-header-interpreter

Accept Header toolbox 🧰 to Laravel. Validation and interpretation based on RFC 7231, section 5.3.1 and 5.3.2. Conversion of the list of media types to ordered Laravel Collections (by priority, according to RFC).

20
4
1.1.0-alpha
About ejetar/accept-header-interpreter

ejetar/accept-header-interpreter is a Laravel package for accept header toolbox 🧰 to laravel. validation and interpretation based on rfc 7231, section 5.3.1 and 5.3.2. conversion of the list of media types to ordered laravel collections (by priority, according to rfc).. It currently has 4 GitHub stars and 20 downloads on Packagist (latest version 1.1.0-alpha). Install it with composer require ejetar/accept-header-interpreter. Discover more Laravel packages by ejetar or browse all Laravel packages to compare alternatives.

Last updated

Accept Header Interpreter

Table of Contents

About

Accept Header toolbox 🧰 to Laravel. Validation and interpretation based on RFC 7231, section 5.3.1 and 5.3.2. Conversion of the list of media types to ordered Laravel Collections (by priority, according to RFC).

Features

  • Validation: Validates if Accept Header content is valid, according to specification;
  • Conversion: Converts the list of media types to a Laravel Collection (automatically sorted by priority according to specification);

Installation

composer require ejetar/accept-header-interpreter

Examples

First Example: Entering valid content

use Ejetar\AcceptHeaderInterpreter\AcceptHeaderInterpreter;

try {
  $content = request()->headers->get('Accept'); //return accept header content
  //let's assume that $content is now: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
  
  $acceptHeaderInterpreter = new AcceptHeaderInterpreter($content);
  dd($acceptHeaderInterpreter->toCollection());
  
} catch (\Exception $ex) {
  echo $ex->getMessage();
}

/* the code above will print
Collection {#756 â–¼
  #items: array:6 [â–¼
    0 => array:3 [â–¼
      "type" => "text"
      "subtype" => "html"
      "parameters" => array:1 [â–¼
        "q" => 1
      ]
    ]
    1 => array:3 [â–¼
      "type" => "application"
      "subtype" => "xhtml+xml"
      "parameters" => array:1 [â–¼
        "q" => 1
      ]
    ]
    3 => array:3 [â–¼
      "type" => "image"
      "subtype" => "webp"
      "parameters" => array:1 [â–¼
        "q" => 1
      ]
    ]
    4 => array:3 [â–¼
      "type" => "image"
      "subtype" => "apng"
      "parameters" => array:1 [â–¼
        "q" => 1
      ]
    ]
    2 => array:3 [â–¼
      "type" => "application"
      "subtype" => "xml"
      "parameters" => array:1 [â–¼
        "q" => "0.9"
      ]
    ]
    5 => array:3 [â–¼
      "type" => "*"
      "subtype" => "*"
      "parameters" => array:1 [â–¼
        "q" => "0.8"
      ]
    ]
  ]
}

REALIZE THAT THE ORDER OF MEDIA TYPES HAS BEEN MODIFIED
*/

Second Example: Entering invalid content

use Ejetar\AcceptHeaderInterpreter\AcceptHeaderInterpreter;

try {
  $content = request()->headers->get('Accept'); //return accept header content
  //let's assume that $content is now: text/html,application/xhtml+xml,application/xml;q=1.1,image/webp,image/apng,*/*;q=0.8
  //It is only allowed to inform values from 0 to 1 for the parameter Q, that is, the contents of this Accept Header is invalid
  
  $acceptHeaderInterpreter = new AcceptHeaderInterpreter($content);
  dd($acceptHeaderInterpreter->toCollection());
  
} catch (\Exception $ex) {
  echo $ex->getMessage();
}

/* the code above will print
Accept header value is invalid!
*/

Third Example: Priority

use Ejetar\AcceptHeaderInterpreter\AcceptHeaderInterpreter;

try {
  $content = request()->headers->get('Accept'); //return accept header content
  //let's assume that $content is now: */*, application/*, text/html, application/xhtml+xml
  
  $acceptHeaderInterpreter = new AcceptHeaderInterpreter($content);
  dd($acceptHeaderInterpreter->toCollection());
  
} catch (\Exception $ex) {
  echo $ex->getMessage();
}

/* the code above will print
Collection {#756 â–¼
  #items: array:4 [â–¼
    2 => array:3 [â–¼
      "type" => " text"
      "subtype" => "html"
      "parameters" => array:1 [â–¼
        "q" => 1
      ]
    ]
    3 => array:3 [â–¼
      "type" => " application"
      "subtype" => "xhtml+xml"
      "parameters" => array:1 [â–¼
        "q" => 1
      ]
    ]
    1 => array:3 [â–¼
      "type" => " application"
      "subtype" => "*"
      "parameters" => array:1 [â–¼
        "q" => 1
      ]
    ]
    0 => array:3 [â–¼
      "type" => "*"
      "subtype" => "*"
      "parameters" => array:1 [â–¼
        "q" => 1
      ]
    ]
  ]
}

NOTE THAT ORDER OF THE MEDIA TYPES IS NO LONGER THE SAME, IT WAS MODIFIED AS A PRIORITY, ACCORDING TO THE SPECIFICATION.
*/

Fourth Example: Displaying the original content of the Accept Header

use Ejetar\AcceptHeaderInterpreter\AcceptHeaderInterpreter;

try {
  $content = request()->headers->get('Accept'); //return accept header content
  //let's assume that $content is now: application/json
  
  $acceptHeaderInterpreter = new AcceptHeaderInterpreter($content);
  echo $acceptHeaderInterpreter->getOriginalContent();
  
} catch (\Exception $ex) {
  echo $ex->getMessage();
}

/* the code above will print
application/json
*/

Changelog

Nothing for now...

Contributing

Contribute to this wonderful project, it will be a pleasure to have you with us. Let's help the free software community. You are invited to incorporate new features, make corrections, report bugs, and any other form of support. Don't forget to star in this repository! 😀

License

This library is a open-source software licensed under the MIT license.

Star History Chart