Giter Site home page Giter Site logo

keycdn-ruby's Introduction

A simple Ruby wrapper for the KeyCDN API

Just a tiny wrapper for the KeyCDN API. This one differs from the vendor maintained lib in following:

  • raises exceptions in case of HTTP or response issues - now you can safely wrap the API calls in ActiveRecord transactions
  • based on the excon HTTP lib - fast and performant, also easily allowing extending the wrapper to API call retries and other cool stuff
  • returns only the relevant data part of the responses (i.e. response['data']['zones'] when getting all zones, etc)
  • leaves relevant places for extending the lib with specific calls, not included in the API - e.g. find_zone_by_name

Usage

Requires Ruby 1.9.2+

Initialize

require 'keycdn'

keycdn = KeyCDN::API.new(:api_key => YOURAPIKEY)

Get zones

zones = keycdn.get('zones')
zones.each do |zone|
  # Do something fun and profitable with the zone
end

Create zone

zone_params = {
  'name' => 'test',
  'type' => 'push'
}

keycdn.post('zones', zone_params)

Delete a zones

keycdn.delete('zones/5')

Exception handling

Let's take it for example that you need to tie the zone with an ActiveRecord model being updated + an API call to another service

begin
  SomeModel.transaction do
    self.save

    other_api.make_call()

    keycdn.create(..)
  end
rescue KeyCDN::API::Errors:Error
  other_api.revert_call()
end

Extra functionality

Since zones are often referenced by name, a call to find the zone object by name

zone = keycdn.find_zone_by_name(..)
zone['id']

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.