emrahtoy/url-shortener-and-expander

Url shortener and expander library

1.0.3 2017-04-29 07:37 UTC

This package is not auto-updated.

Last update: 2024-04-23 23:31:53 UTC


README

Url shortener/expander library.

Benefits

  • Produces short codes depending on the (integer) id of the record
  • Supports legacy or custom short urls. So you can move your old system without changing short urls or short codes
  • Uses low server resources
  • Reports errors in json format via responseJson static function
  • Can count redirects ( on Mysql )
  • Supports Doctrine Cache Clients ( example includes redis usage via predis )
  • Uses alphanumeric characters and supports all browsers
  • Uses PDO in order to prevent SQL injection hacks
  • Supports URL check before shorten and after expanded ( checks for http 200 code )
  • Redirection after expand is optional ( redirects with 301 for SEO compliance )
  • You can change allowed characters used in shortened urls code. This may reduce count of possible shortened url code.

Installation

Requirements:

  • PHP
  • Mysql DB or Maria DB
  • PDO Extension must be enabled
  • Credentials will be needed to connect and run SQL queries on database server
  • Sql files under sql directory must be applied on database server
  • Composer

Install ( via Composer )

$ composer require emrahtoy/url-shortener

Using URL shortener service

$urlShortener = new \UrlCompressor\Shortener($connection, $config);

// returns true or false depending on success and error.
$result = $urlShortener->shorten($url); 

// responseJson is a tool to return json with proper headers. This function also redirect with 301 code if you send true as secondary parameter.
// You can send "donotredirect" in order to prevent redirection even it is set "true"
\UrlCompressor\Common::responseJson($urlShortener->getResult(), false);

Using URL expander service

$urlExpander = new \UrlCompressor\Expander($connection, $config);

// returns true or false depending on success and error.
$result = $urlExpander->expand($shortened_code); 

// responseJson is a tool to return json with proper headers. This function also redirect with 301 code if you send true as secondary parameter.
// You can send "donotredirect" in order to prevent redirection even it is set "true" 
\UrlCompressor\Common::responseJson($urlExpander->getResult(),(isset($_REQUEST['donotredirect']))?false:true);

Available configuration options

$config = [
    'CheckUrl' => false, // check url before shortening or after expand
    'ShortUrlTableName' => 'shortenedurls', // Database table name where shortened url codes are stored
    'CustomShortUrlTableName' => 'customshortenedurls', // Database table name where your legacy shortened codes are stored
    'TrackTableName' => 'track', // Database table name where the visit/redirect counts are stored
    'DefaultLocation' => '', // where to redirect if expanded url could not find
    'Track'=>false // Determines if visit/redirects will be stored
];

Using cache

You can use any cache library supported by Doctrine Cache.

This example uses Predis Client with Redis

$urlShortener = new \UrlCompressor\Shortener($connection, $config);
$urlExpander = new \UrlCompressor\Expander($connection, $config);

// using Predis Client with Doctrine Cache
try{
    $cacheConfig = [
        'scheme' => 'tcp',
        'host' => '127.0.0.1',
        'port' => 6379,
        'password' => 'supersecretauthentication' // if you have set authentication on redis
    ];
    
    //lets create redis client
    $cacheClient = new Predis\Client($cacheConfig);
    // and try to connect
    $cacheClient->connect();
    
    // we can encapsulate cache cilent with doctrine cache if any exception not fired 
    $cache = new \Doctrine\Common\Cache\PredisCache($cacheClient);

    // set cache provider for url shortener service 
    $urlShortener->setCache($cache);
    
    // set cache provider for url expander service 
    $urlExpander->setCache($cache);
    
} catch(Exception $e){
    $result=new \UrlCompressor\Result();
    $result->error($e->getMessage());
    \UrlCompressor\Common::responseJson($result->result());
    die();
}