Download the PHP package abovesky/url-auth without Composer
On this page you can find all versions of the php package abovesky/url-auth. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download abovesky/url-auth
More information about abovesky/url-auth
Files in abovesky/url-auth
Package url-auth
Short Description Generate a url with an expiration date and signature to prevent unauthorized access
License MIT
Homepage https://github.com/abovesky/url-auth
Informations about the package url-auth
Create secured URLs with a limited lifetime
This package can create URLs with a limited lifetime. This is done by adding an expiration date and a signature to the URL.
This will output an URL that looks like https://myapp.com/?expires=xxxx&signature=xxxx
.
Imagine mailing this URL out to the users of your application. When a user clicks on a signed URL your application can validate it with:
Installation
The package can installed via Composer:
Usage
A signer-object can sign URLs and validate signed URLs. A secret key is used to generate signatures.
Generating URLs
Signed URLs can be generated by providing a regular URL and an expiration date to the sign
method.
If an integer is provided as expiration date, the url will be valid for that amount of days.
Validating URLs
To validate a signed URL, simply call the validate()
method. This will return a boolean.
Writing custom signers
This packages provides a signer that uses md5 to generate signature. You can create your own
signer by implementing the abovesky\UrlAuth\iUrlAuth
-interface. If you let your signer extend
abovesky\UrlAuth\Base
you'll only need to provide the createSignature
-method.
Tests
The tests can be run with:
License
The MIT License (MIT). Please see License File for more information.