/indieweb-endpoints-ruby

A Ruby gem for discovering a URL's IndieAuth, Micropub, Microsub, and Webmention endpoints.

Primary LanguageRubyMIT LicenseMIT

indieweb-endpoints-ruby

A Ruby gem for discovering a URL's IndieAuth, Micropub, Microsub, and Webmention endpoints.

Gem Downloads Build Maintainability Coverage

Key Features

Getting Started

Before installing and using indieweb-endpoints-ruby, you'll want to have Ruby 2.4 (or newer) installed. It's recommended that you use a Ruby version managment tool like rbenv, chruby, or rvm.

indieweb-endpoints-ruby is developed using Ruby 2.4.9 and is additionally tested against Ruby 2.5, 2.6, and 2.7 using Travis CI.

Installation

If you're using Bundler, add indieweb-endpoints-ruby to your project's Gemfile:

source 'https://rubygems.org'

gem 'indieweb-endpoints'

…and hop over to your command prompt and run…

$ bundle install

Usage

Basic Usage

With indieweb-endpoints-ruby added to your project's Gemfile and installed, you may discover a URL's IndieWeb-relevant endpoints by doing:

require 'indieweb/endpoints'

endpoints = IndieWeb::Endpoints.get('https://aaronparecki.com')

puts endpoints # => #<OpenStruct authorization_endpoint="https://aaronparecki.com/auth", micropub="https://aaronparecki.com/micropub", microsub="https://aperture.p3k.io/microsub/1", redirect_uri=nil, token_endpoint="https://aaronparecki.com/auth/token", webmention="https://webmention.io/aaronpk/webmention">

This example will search https://aaronparecki.com for valid IndieAuth, Micropub, and Webmention endpoints. In this case, the program returns an OpenStruct with the following attributes (represented below as a Hash):

{
  authorization_endpoint: 'https://aaronparecki.com/auth',
  micropub: 'https://aaronparecki.com/micropub',
  microsub: 'https://aperture.p3k.io/microsub/1',
  redirect_uri: nil,
  token_endpoint: 'https://aaronparecki.com/auth/token',
  webmention: 'https://webmention.io/aaronpk/webmention'
}

Each attribute will return either a String representing a URL or nil. The redirect_uri attribute will return either an Array or nil since a given URL may register multiple callback URLs.

Advanced Usage

Should the need arise, you may work with the IndieWeb::Endpoints::Client class:

require 'indieweb/endpoints'

client = IndieWeb::Endpoints::Client.new('https://aaronparecki.com')

puts client.response # => #<HTTP::Response/1.1 200 OK {…}>

endpoints = client.endpoints

puts endpoints.authorization_endpoint # => 'https://aaronparecki.com/auth'
puts endpoints.micropub               # => 'https://aaronparecki.com/micropub'
puts endpoints.microsub               # => 'https://aperture.p3k.io/microsub/1'
puts endpoints.redirect_uri           # => nil
puts endpoints.token_endpoint         # => 'https://aaronparecki.com/auth/token'
puts endpoints.webmention             # => 'https://webmention.io/aaronpk/webmention'

Exception Handling

There are several exceptions that may be raised by indieweb-endpoints-ruby's underlying dependencies. These errors are raised as subclasses of IndieWebEndpointsError (which itself is a subclass of StandardError).

From jgarber623/absolutely and sporkmonger/addressable:

  • IndieWeb::Endpoints::InvalidURIError

From httprb/http:

  • IndieWeb::Endpoints::ConnectionError
  • IndieWeb::Endpoints::TimeoutError
  • IndieWeb::Endpoints::TooManyRedirectsError

Contributing

Interested in helping improve indieweb-endpoints-ruby? Awesome! Your help is greatly appreciated. See CONTRIBUTING.md for details.

By contributing to and participating in the development of indieweb-endpoints-ruby, you acknowledge that you have read and agree to the IndieWeb Code of Conduct.

Acknowledgments

indieweb-endpoints-ruby wouldn't exist without IndieAuth, Micropub, and Webmention and the hard work put in by everyone involved in the IndieWeb movement. Additionally, the comprehensive Webmention Endpoint Discovery test suite at webmention.rocks was invaluable in the development of this Ruby gem.

indieweb-endpoints-ruby is written and maintained by Jason Garber.

License

indieweb-endpoints-ruby is freely available under the MIT License. Use it, learn from it, fork it, improve it, change it, tailor it to your needs.