Giter VIP home page Giter VIP logo

fog-json's Introduction

fog

fog is the Ruby cloud services library, top to bottom:

  • Collections provide a simplified interface, making clouds easier to work with and switch between.
  • Requests allow power users to get the most out of the features of each individual cloud.
  • Mocks make testing and integrating a breeze.

Build Status Code Climate Gem Version SemVer

Dependency Notice

Currently all fog providers are getting separated into metagems to lower the load time and dependency count.

If there's a metagem available for your cloud provider, e.g. fog-aws, you should be using it instead of requiring the full fog collection to avoid unnecessary dependencies.

'fog' should be required explicitly only if the provider you use doesn't yet have a metagem available.

Getting Started

The easiest way to learn fog is to install the gem and use the interactive console. Here is an example of wading through server creation for Amazon Elastic Compute Cloud:

$ sudo gem install fog
[...]

$ fog

  Welcome to fog interactive!
  :default provides [...]

>> server = Compute[:aws].servers.create
ArgumentError: image_id is required for this operation

>> server = Compute[:aws].servers.create(:image_id => 'ami-5ee70037')
<Fog::AWS::EC2::Server [...]>

>> server.destroy # cleanup after yourself or regret it, trust me
true

Ruby version

Fog requires Ruby 2.0.0 or later.

Ruby 1.8 and 1.9 support was dropped in fog-v2.0.0 as a backwards incompatible change. Please use the later fog 1.x versions if you require 1.8.7 or 1.9.x support.

Collections

A high level interface to each cloud is provided through collections, such as images and servers. You can see a list of available collections by calling collections on the connection object. You can try it out using the fog command:

>> Compute[:aws].collections
[:addresses, :directories, ..., :volumes, :zones]

Some collections are available across multiple providers:

  • compute providers have flavors, images and servers
  • dns providers have zones and records
  • storage providers have directories and files

Collections share basic CRUD type operations, such as:

  • all - fetch every object of that type from the provider.
  • create - initialize a new record locally and a remote resource with the provider.
  • get - fetch a single object by its identity from the provider.
  • new - initialize a new record locally, but do not create a remote resource with the provider.

As an example, we'll try initializing and persisting a Rackspace Cloud server:

require 'fog'

compute = Fog::Compute.new(
  :provider           => 'Rackspace',
  :rackspace_api_key  => key,
  :rackspace_username => username
)

# boot a gentoo server (flavor 1 = 256, image 3 = gentoo 2008.0)
server = compute.servers.create(:flavor_id => 1, :image_id => 3, :name => 'my_server')
server.wait_for { ready? } # give server time to boot

# DO STUFF

server.destroy # cleanup after yourself or regret it, trust me

Models

Many of the collection methods return individual objects, which also provide common methods:

  • destroy - will destroy the persisted object from the provider
  • save - persist the object to the provider
  • wait_for - takes a block and waits for either the block to return true for the object or for a timeout (defaults to 10 minutes)

Mocks

As you might imagine, testing code using Fog can be slow and expensive, constantly turning on and shutting down instances. Mocking allows skipping this overhead by providing an in memory representation of resources as you make requests. Enabling mocking is easy to use: before you run other commands, simply run:

Fog.mock!

Then proceed as usual, if you run into unimplemented mocks, fog will raise an error and as always contributions are welcome!

Requests

Requests allow you to dive deeper when the models just can't cut it. You can see a list of available requests by calling #requests on the connection object.

For instance, ec2 provides methods related to reserved instances that don't have any models (yet). Here is how you can lookup your reserved instances:

$ fog
>> Compute[:aws].describe_reserved_instances
#<Excon::Response [...]>

It will return an excon response, which has body, headers and status. Both return nice hashes.

Go forth and conquer

Play around and use the console to explore or check out fog.io and the provider documentation for more details and examples. Once you are ready to start scripting fog, here is a quick hint on how to make connections without the command line thing to help you.

# create a compute connection
compute = Fog::Compute.new(:provider => 'AWS', :aws_access_key_id => ACCESS_KEY_ID, :aws_secret_access_key => SECRET_ACCESS_KEY)
# compute operations go here

# create a storage connection
storage = Fog::Storage.new(:provider => 'AWS', :aws_access_key_id => ACCESS_KEY_ID, :aws_secret_access_key => SECRET_ACCESS_KEY)
# storage operations go here

geemus says: "That should give you everything you need to get started, but let me know if there is anything I can do to help!"

Versioning

Fog library aims to adhere to Semantic Versioning 2.0.0, although it does not address challenges of multi-provider libraries. Semantic versioning is only guaranteed for the common API, not any provider-specific extensions. You may also need to update your configuration from time to time (even between Fog releases) as providers update or deprecate services.

However, we still aim for forwards compatibility within Fog major versions. As a result of this policy, you can (and should) specify a dependency on this gem using the Pessimistic Version Constraint with two digits of precision. For example:

spec.add_dependency 'fog', '~> 1.0'

This means your project is compatible with Fog 1.0 up until 2.0. You can also set a higher minimum version:

spec.add_dependency 'fog', '~> 1.16'

Getting Help

Contributing

Please refer to CONTRIBUTING.md.

License

Please refer to LICENSE.md.

fog-json's People

Contributors

datapimp avatar geemus avatar icco avatar plribeiro3000 avatar tokengeek avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fog-json's Issues

Sanitize ignore timezone

sanitize print all dates as UTC without converting:

irb(main):011:0> p Time.now
2018-03-30 22:53:19 +0800
=> 2018-03-30 22:53:19 +0800
irb(main):012:0> puts Fog::JSON.encode(Fog::JSON.sanitize(a: Time.now))
{"a":"2018-03-30T22:53:22Z"}
=> nil
irb(main):013:0> puts JSON.generate(a: Time.now)
{"a":"2018-03-30 22:53:25 +0800"}
=> nil

my time is 22:53 in GMT+8, but sanitize will print it as 22:53 in GMT+0

Can be solved by using data.iso8601 or data.strftime("%Y-%m-%dT%H:%M:%S%:z")

Development dependency Rake 10.2+ drops support for Ruby 1.8.7

This is more to register a known issue than anything.

fog-json has a development dependency on rake so now that 10.2 requires Ruby 1.9.3 it will fail to bundle.

It will therefore error on the Ruby 1.8.7 based rubies on Travis when new code is pushed.

I'd rather not get in to duplicate Gemfile's like fog and fog-core are using for such a simple wrapper library but don't want issues sneaking in down here that only surface in fog

Update fog-core Version in Gemspec

I recently upgraded to the latest version of fog-core which is v2.0.0 but this is causing my fog-json gem to break down as it has a pessimistic dependency on fog-core ~> 1.0.
Is it possible to bump the fog-core version in fog-json and release a new version of fog-json?

json encoding test is failing with ruby 2.0.0

Same test gets a pass when run with ruby 2.1

$ ruby2.0 --version
ruby 2.0.0p457 (2014-03-03) [x86_64-linux-gnu]

Running tests for ruby2.0 with test file list from debian/ruby-test-files.yaml ...
Run options: --seed 6152

Running:

..F.....

Finished in 0.107370s, 74.5087 runs/s, 74.5087 assertions/s.

  1. Failure:
    TestJSONEncoding#test_encode_with_bad_input [/home/pravi/forge/debian/diaspora/ruby-fog-json-1.0.0/test/json_encode_test.rb:15]:
    Fog::JSON::EncodeError expected but nothing was raised.

8 runs, 8 assertions, 1 failures, 0 errors, 0 skips

Test "ruby2.0" failed. Continue building the package? (Y/N) y
Running tests for ruby2.1 with test file list from debian/ruby-test-files.yaml ...
Run options: --seed 29850

Running:

........

Finished in 0.249668s, 32.0425 runs/s, 32.0425 assertions/s.

8 runs, 8 assertions, 0 failures, 0 errors, 0 skips

uninitialized constant Fog::Errors (NameError)

I'm getting this error when running rails s

/home/helal/.rvm/gems/ruby-2.1.6/gems/fog-json-1.0.2/lib/fog/json.rb:13:in `<module:JSON>': uninitialized constant Fog::Errors (NameError)
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/fog-json-1.0.2/lib/fog/json.rb:12:in `<module:Fog>'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/fog-json-1.0.2/lib/fog/json.rb:5:in `<top (required)>'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/fog-1.37.0/lib/fog.rb:14:in `<top (required)>'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/asset_sync-1.1.0/lib/asset_sync.rb:1:in `<top (required)>'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/bundler-1.10.6/lib/bundler/runtime.rb:76:in `require'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/bundler-1.10.6/lib/bundler/runtime.rb:76:in `block (2 levels) in require'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/bundler-1.10.6/lib/bundler/runtime.rb:72:in `each'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/bundler-1.10.6/lib/bundler/runtime.rb:72:in `block in require'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/bundler-1.10.6/lib/bundler/runtime.rb:61:in `each'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/bundler-1.10.6/lib/bundler/runtime.rb:61:in `require'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/bundler-1.10.6/lib/bundler.rb:134:in `require'
        from /home/helal/work/GIT/fatigue_serverside/config/application.rb:12:in `<top (required)>'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/railties-4.2.4/lib/rails/commands/commands_tasks.rb:78:in `require'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/railties-4.2.4/lib/rails/commands/commands_tasks.rb:78:in `block in server'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/railties-4.2.4/lib/rails/commands/commands_tasks.rb:75:in `tap'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/railties-4.2.4/lib/rails/commands/commands_tasks.rb:75:in `server'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/railties-4.2.4/lib/rails/commands/commands_tasks.rb:39:in `run_command!'
        from /home/helal/.rvm/gems/ruby-2.1.6/gems/railties-4.2.4/lib/rails/commands.rb:17:in `<top (required)>'
        from bin/rails:4:in `require'
        from bin/rails:4:in `<main>'

Remove Duplicated LICENSE

cc/ @geemus @tokengeek

I was going to create a pull request but i'm afraid i would miss who contributed to the json piece of code.

What i'm doing in the providers is to use: git shortlog -sne tests/provider to get the contributors.

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.