Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

3scale-3scale_ws_api_for_ruby

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

3scale-3scale_ws_api_for_ruby


Version published
Maintainers
2
Created
Source

= Interface for 3scale web service API monitoring system

This plugin provides interface for communication with 3scale monitoring system.

== Configuration

If you are using rails 2.1 or newer, put this into your config/environment.rb file:

config.gem "3scale_interface"

If you are using older version, put there this instead:

require "3scale_interface"

== Usage

First, create new interface object with 3scale backed hostname and Your private authentication key:

interface = ThreeScale::Interface.new(backend_host, provider_key)

You can find the backend hostname on http://www.3scale.net/support/api.

Because the object is stateless, you can create just one and store it globally.

Then for each request to Your service:

  1. Start the transaction with user key and (optionally) estimated resource usage (in this example it is: 1 hit and 42000 kilobytes of storage space),

transaction = interface.start(user_key, 'hits' => 1, 'storage' => 42000)

This will return transaction data (if successful). It is a hash containing these fields:

:id:: transaction id necessary for confirmation or cancellation of transaction (see following steps).

:provider_verification_key:: the provider should send this key back to user so he/she can verify the authenticity of the response.

:contract_name:: name of contract the user is signed for. This can be used to send different response according to contract type, if that is desired.

  1. Process the request.

2a. If the processing was successful: Call +confirm+:

interface.confirm(transaction[:id])

Or call it with actual resource usage, if it differs from predicted one:

interface.confirm(transaction[:id], 'hits' => 1, 'storage' => 40500)

2b. If there was some error, call +cancel+:

interface.cancel(transaction[:id])

  1. Send response back to the user together with +provider_verification_key+.

== Legal:

Copyright (c) 2008 3scale networks S.L., released under the MIT license.

FAQs

Package last updated on 11 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc