Git Product home page Git Product logo

url-unshort's Introduction

url-unshort

Build Status NPM version

This library expands urls provided by url shortening services like tinyurl or bit.ly.

Why should I use it?

It has been argued that “shorteners are bad for the ecosystem as a whole”. In particular, if you're running a forum or a blog, such services might cause trouble for your users:

  • such links load slower than usual (shortening services require an extra DNS and HTTP request)
  • it adds another point of failure (should this service go down, the links will die; 301works tries to solve this, but it's better to avoid the issue in the first place)
  • users don't see where the link points to (tinyurl previews don't really solve this)
  • it can be used for user activity tracking
  • certain shortening services are displaying ads before redirect
  • shortening services can be malicious or be hacked so they could redirect to a completely different place next month

Also, short links are used to bypass the spam filters. So if you're implementing a domain black list for your blog comments, you might want to check where all those short links actually point to.

Installation

$ npm install url-unshort

Basic usage

var uu = require('url-unshort')();

uu.unshorten('http://goo.gl/HwUfwd', function (err, url) {
  console.log(`Original url is: ${url}`);
});

API

Creating an instance

When you create an instance, you can pass an options object to fine-tune unshortener behavior.

var uu = require('url-unshort')({
  depth:   2,
  offline: false,

  cache: {
    get: function (key, callback) {},
    set: function (key, value, callback) {}
  },
});

Available options are:

  • depth (Number, default: 2) - stop resolving urls when depth amount of redirects is reached.

    It happens if one shortening service refers to a link belonging to another shortening service which in turn points to yet another one and so on.

    If this limit is reached, unshorten() will return an error.

  • cache (Object) - override a built-in in-memory cache with a custom cache implementation (see Cache section below).

  • offline (Boolean, default: false) - only use information available in cache, don't call any external services.

uu.unshorten(url, callback)

Expand an URL supplied. If we don't know how to expand it, callback returns null.

uu.unshorten('http://goo.gl/HwUfwd', function (err, url) {
  if (err) throw err;
  
  if (url) {
    console.log(`Original url is: ${url}`);
  } else {
    // no shortening service or an unknown one is used
    console.log(`This url can't be expanded`);
  }
});

uu.addDomain(domain [, options])

Add a domain name (or an array of names) to the white list of domains we know how to expand.

If domain name is already added, its configuration gets overwritten.

uu.addDomain([ 'tinyurl.com', 'bit.ly' ]);

The default behavior will be to follow the URL with a HEAD request and check the status code. If it's 3xx, return the Location header. You can override this behavior by supplying your own function in options.

If you want to enable this behavior for all links (i.e. fetch all links no matter what domain it is), you can add * instead:

uu.addDomain('*');

Options:

  • match (RegExp) - perform an additional pattern match on path (default: /^\/[^#]/)
  • fetch (Function) - specify a custom function to retrieve expanded url

So a full-featured example of adding a domain would look like this:

uu.addDomain('goo.gl', {
  match: /^\/[a-z0-9]+$/i,
  fetch: function (url, callback) {
    require('request')({
      method: 'HEAD',
      url: url,
      followRedirect: false,
    }, function (err, res, body) {
      if (err) return callback(err);

      if (res.statusCode >= 300 && res.statusCode < 400) {
        return callback(null, res.headers.location);
      } else {
        return callback();
      }
    });
  },
});

Cache

TODO

Security considerations

  • allowed protocols
  • redirect loop
  • well-formed urls

License

MIT

url-unshort's People

Contributors

rlidwka avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.