• Stars
    star
    124
  • Rank 288,207 (Top 6 %)
  • Language
    Ruby
  • License
    MIT License
  • Created over 9 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Ruby library to expand shortened URLs

Embiggen Build Status

A Ruby library to expand shortened URLs.

Current version: 1.5.0
Supported Ruby versions: 1.8.7, 1.9.2, 1.9.3, 2.0, 2.1, 2.2

Installation

gem install embiggen -v '~> 1.5'

Or, in your Gemfile:

gem 'embiggen', '~> 1.5'

Usage

require 'embiggen'

# Basic usage
Embiggen::URI('https://youtu.be/dQw4w9WgXcQ').expand
#=> #<URI::HTTPS https://www.youtube.com/watch?v=dQw4w9WgXcQ&feature=youtu.be>

# Longer-form usage
uri = Embiggen::URI.new(URI('https://youtu.be/dQw4w9WgXcQ'))
uri.shortened?
#=> true
uri.expand
#=> #<URI::HTTPS https://www.youtube.com/watch?v=dQw4w9WgXcQ&feature=youtu.be>

# Gracefully deals with unshortened URIs
uri = Embiggen::URI('http://www.altmetric.com')
uri.shortened?
#=> false
uri.expand
#=> #<URI::HTTP http://www.altmetric.com>

# Raises errors with bad shortened URIs
Embiggen::URI('http://bit.ly/bad').expand
#=> TooManyRedirects: http://bit.ly/bad redirected too many times
# or...
#=> BadShortenedURI: following http://bit.ly/bad did not redirect

# Optionally specify a timeout in seconds for expansion (default is 1)
Embiggen::URI('https://youtu.be/dQw4w9WgXcQ').expand(:timeout => 5)

# Optionally specify a number of redirects to follow (default is 5)
Embiggen::URI('https://youtu.be/dQw4w9WgXcQ').expand(:redirects => 2)

# Override the default configuration for all expansions and add your own
# shorteners
Embiggen.configure do |config|
  config.timeout = 5
  config.redirects = 2
  config.shorteners += %w(myshorten.er anoth.er)
end

Shorteners

Embiggen ships with a default list of URL shortening service domains (c.f. Acknowledgements) in shorteners.txt but as it is likely to be outdated and incomplete, you are strongly encouraged to supply your own via Embiggen.configure.

The list of shorteners is an object that responds to include? and will be passed a URI. By default, Embiggen ships with a ShortenerList class which takes a list of string domains and will return true if given a URI with a matching host.

You can supply your own values and logic like so:

Embiggen.configure do |config|
  config.shorteners = Embiggen::ShortenerList.new(%w(myshorten.er anoth.er))
  # or load from a file...
  config.shorteners = Embiggen::ShortenerList.new(File.readlines('shorteners.txt').map(&:chomp))
end

# Use the Bitly API to only expand URIs on Bitly Pro domains
require 'bitly'
require 'forwardable'

class BitlyDomains
  extend Forwardable
  attr_reader :client
  def_delegator :client, :pro?, :include?

  def initialize(client)
    @client = client
  end
end

Bitly.use_api_version_3
Bitly.configure do |config|
  config.api_version = 3
  config.access_token = ENV.fetch('BITLY_ACCESS_TOKEN')
end

Embiggen.configure do |config|
  config.shorteners = BitlyDomains.new(Bitly.client)
end

API Documentation

Embiggen::URI

uri = Embiggen::URI('https://youtu.be/dQw4w9WgXcQ')
uri = Embiggen::URI(URI('https://youtu.be/dQw4w9WgXcQ'))

Return a new Embiggen::URI instance which can be expanded and asked whether it is shortened or not.

Takes instances of Ruby's URI or anything with a string representation (through to_s) that can be parsed as a valid URI.

Embiggen::URI#expand

Embiggen::URI('https://youtu.be/dQw4w9WgXcQ').expand
#=> #<URI::HTTPS https://www.youtube.com/watch?v=dQw4w9WgXcQ&feature=youtu.be>

Embiggen::URI('http://www.altmetric.com/').expand
#=> #<URI::HTTP http://www.altmetric.com/>

Embiggen::URI('https://youtu.be/dQw4w9WgXcQ').expand(:timeout => 5)
Embiggen::URI('https://youtu.be/dQw4w9WgXcQ').expand(:redirects => 2)

Expand the given URI, returning the full version as a URI if it is shortened or the original if it is not. Can raise the following exceptions during expansion:

  • Embiggen::TooManyRedirects: when a URI redirects more than the configured number of times;
  • Embiggen::BadShortenedURI: when a URI appears to be shortened but following it does not result in a redirect;
  • Embiggen::NetworkError: when an error occurs during expansion (e.g. a network timeout, connection reset, unreachable host, etc.).

All of the above inherit from Embiggen::Error and have a uri method for determining the problematic URI.

Takes an optional hash of options for expansion:

  • :timeout: overrides the default timeout for following redirects;
  • :redirects: overrides the default number of redirects to follow.

Uses a whitelist of shortening domains (as configured through Embiggen.configure) to determine whether a URI is shortened or not. Be sure to configure this to suit your needs.

Embiggen::URI#shortened?

Embiggen::URI('https://youtu.be/dQw4w9WgXcQ').shortened?
#=> true

Embiggen::URI('http://www.altmetric.com').shortened?
#=> false

Return true if the URI appears to be shortened. Uses the configured whitelist of shorteners, c.f. Shorteners.

Embiggen.configure

Embiggen.configure do |config|
  config.timeout = 5
  config.redirects = 2
  config.shorteners += %w(myshorten.er anoth.er)
end

Override the following settings:

  • timeout: the default timeout for following any redirects (can be overridden by passing options to Embiggen::URI#expand);
  • redirects: the default number of redirects to follow (can be overridden by passing options to Embiggen::URI#expand);
  • shorteners: the list of domains of shortening services, c.f. Shorteners.

Acknowledgements

  • The extraction of shorteners.txt and performance improvements to the shortener list were contributed by Avner Cohen;
  • The default list of shorteners includes:

License

Copyright Β© 2015-2018 Altmetric LLP

Distributed under the MIT License.

More Repositories

1

decontaminator

Ruby HTML sanitizer based on a lightweight Oga parser.
Ruby
39
star
2

aho_corasick_matcher

Fast, pure-Ruby Aho-Corasick string search
Ruby
32
star
3

urn

Ruby library to validate and normalize URNs according to RFC 2141.
Ruby
21
star
4

house_style

A shared house style for Ruby projects
Ruby
20
star
5

til

Today I Learned...
15
star
6

devise-rails-api-authentication

Token-based rails-api authentication with Devise
Ruby
6
star
7

mongo-session-handler

A PHP session handler backed by MongoDB
PHP
6
star
8

golden-kestrel

The Golden Kestrel flies high in the sky, ensconced with donuts of blinding light
JavaScript
5
star
9

identifiers

Collection of utilities related to the extraction, validation and normalization of various scholarly identifiers.
Ruby
5
star
10

ip_ranger

A gem for converting an IP range to CIDR subnets
Ruby
3
star
11

identifiers-doi

Extract, validate and normalize DOIs (and ISBN-As).
JavaScript
2
star
12

php-identifiers

Collection of utilities related to the extraction, validation and normalization of various scholarly identifiers.
PHP
2
star
13

reliable-queue

A PHP library for reliable queueing backed by Redis
PHP
2
star
14

altmetric-explorer-api-client

Example API Client for the Explorer API
Python
2
star
15

mongo_batch

[UNMAINTAINED] Run Mongoid queries in batches
Ruby
1
star
16

douglas

A hackternoon project to build a functional text adventure
Ruby
1
star
17

Altmetric-WordPress-Plugin

A little WordPress plugin for easily using Altmetric's embedded badges
PHP
1
star
18

identifiers-urn

Extract, validate and normalize URNs
JavaScript
1
star
19

identifiers-arxiv

Extract, validate and normalize arXiv IDs.
JavaScript
1
star