Download the PHP package tomkyle/kurzelinks without Composer
On this page you can find all versions of the php package tomkyle/kurzelinks. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tomkyle/kurzelinks
More information about tomkyle/kurzelinks
Files in tomkyle/kurzelinks
Package kurzelinks
Short Description Link shortener using the kurzelinks.de API. Supports PSR-6 caches and rate limits.
License MIT
Informations about the package kurzelinks
tomkyle/kurzelinks
tomkyle/kurzelinks is a PHP library designed to create short links using the kurzelinks.de service. This library provides different implementations of the KurzeLinksInterface
to allow developers to integrate and extend the short link creation functionality with ease.
Table of Contents
- Installation
- Usage
- GuzzleKurzeLinks
- Psr18KurzeLinks
- RateLimitKurzeLinks
- Psr6CacheKurzeLinks
- PassthroughKurzeLinks
- CallableKurzeLinks
- Best Practice: Usage Recommendation
- Interface
- KurzeLinksInterface
Installation
You can install this library via Composer:
Usage
GuzzleKurzeLinks
The GuzzleKurzeLinks
class is an implementation of KurzeLinksInterface
that uses GuzzleHTTP to interact with the KurzeLinks.de API.
Example
Psr18KurzeLinks
The Psr18KurzeLinks
class is an implementation of KurzeLinksInterface
that uses a PSR-18 compliant HTTP client to interact with the KurzeLinks.de API.
Example
RateLimitKurzeLinks
The RateLimitKurzeLinks
class is a decorator for any KurzeLinksInterface
implementation. It introduces a rate limit by pausing execution between requests.
Example
Psr6CacheKurzeLinks
The Psr6CacheKurzeLinks
class is a decorator that caches the results of the create
method using a PSR-6 compatible cache pool.
Example
PassthroughKurzeLinks
The PassthroughKurzeLinks
class is a simple implementation of KurzeLinksInterface
that returns the original URL without shortening it. This can be useful for testing or as a default behavior.
Example
CallableKurzeLinks
The CallableKurzeLinks
class is a decorator that allows a KurzeLinksInterface
implementation to be invoked directly as a callable.
Example
Best Practice: Usage Recommendation
To ensure efficient usage of the kurzelinks.de API, especially considering the restrictive rate limits, it is highly recommended to utilize the RateLimitKurzeLinks
and Psr6CacheKurzeLinks
decorators together. These wrappers help manage API requests effectively by limiting the rate at which requests are sent and caching responses to avoid unnecessary duplicate requests.
Why Use Rate Limiting?
The RateLimitKurzeLinks
decorator enforces a delay between API requests. This is crucial when working with services that impose strict limits on the number of requests allowed per hour. By introducing a delay, you reduce the risk of exceeding these limits and receiving errors from the API due to overuse.
Why Use Caching?
The Psr6CacheKurzeLinks
decorator caches the results of the create
method. This is particularly useful when the same URL is shortened multiple times within a short period. Instead of making multiple API requests, the cached result is returned, which saves on API quota and improves performance by reducing network latency.
Recommended Implementation
Below is a recommended setup that combines both RateLimitKurzeLinks
and Psr6CacheKurzeLinks
:
Interface
KurzeLinksInterface
The KurzeLinksInterface
defines the contract for creating short links.
Method
create(string $url): string
Creates a short link representation for the given URL.
Example
Any class implementing this interface must define the create
method:
License
This library is licensed under the MIT License. See the LICENSE file for more details.