Skip to content

soleo/url-shortener

Repository files navigation

UrlShortener

Latest Version on Packagist Software License Build Status Coverage Status StyleCI Quality Score Total Downloads

A Simple, Self-Hosted URL Shortener with MongoDB.

Install

Via Composer

$ composer require soleo/url-shortener

Usage

use Soleo\UrlShortener\MongoConnection;
use Soleo\UrlShortener\Shorty;

require "vendor/autoload.php";

$mongoURI = "mongodb://demo:demodemo@ds045757.mlab.com:45757/url_shortener";
$mongoConn = new MongoConnection($mongoURI);
$shorty = new Shorty($mongoConn);
if (isset($_GET['longurl'])) {
    echo $shorty->getShortUrl($_GET['longurl']);
    exit;
}
// Get Long URL
$slug = preg_replace('[^A-Za-z0-9]', '', $_SERVER['REQUEST_URI']);
$longURL = $shorty->getLongUrl($slug, true);
header("Location: ".$longURL, true, 302);
exit;

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email shaoxinjiang@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

A Simple, Self-Hosted URL Shortener with MongoDB.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages