Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
= Active Resource Five
Active Resource (ARes) connects business objects and Representational State Transfer (REST) web services. It implements object-relational mapping for REST web services to provide transparent proxying capabilities between a client (ActiveResource) and a RESTful service (which is provided by Simply RESTful routing in ActionController::Resources).
There is currently no version 5 release in Ruby gems, so as an interim solution, this release brings 5 functionality to RubyGems so that it can be included in a dependency of other gems without causing dependency conflicts with ActiveResource/ActiveModel 5 etc.
== Philosophy
Active Resource attempts to provide a coherent wrapper object-relational mapping for REST web services. It follows the same philosophy as Active Record, in that one of its prime aims is to reduce the amount of code needed to map to these resources. This is made possible by relying on a number of code- and protocol-based conventions that make it easy for Active Resource to infer complex relations and structures. These conventions are outlined in detail in the documentation for ActiveResource::Base.
== Overview
Model classes are mapped to remote REST resources by Active Resource much the same way Active Record maps model classes to database tables. When a request is made to a remote resource, a REST JSON request is generated, transmitted, and the result received and serialized into a usable Ruby object.
== Download and installation
The latest version of Active Resource can be installed with RubyGems:
% [sudo] gem install activeresource-five
Or added to a Gemfile:
gem 'activeresource-five'
For compatibility with Rails 5, use:
gem 'activeresource-five', github: 'rails/activeresource', branch: 'master'
Source code can be downloaded on GitHub
=== Configuration and Usage
Putting Active Resource to use is very similar to Active Record. It's as simple as creating a model class that inherits from ActiveResource::Base and providing a site class variable to it:
class Person < ActiveResource::Base self.site = "http://api.people.com:3000" end
Now the Person class is REST enabled and can invoke REST services very similarly to how Active Record invokes life cycle methods that operate against a persistent store.
tyler = Person.find(1) Person.exists?(1) # => true
As you can see, the methods are quite similar to Active Record's methods for dealing with database records. But rather than dealing directly with a database record, you're dealing with HTTP resources (which may or may not be database records).
==== Authentication
Active Resource supports the token based authentication provided by Rails through the ActionController::HttpAuthentication::Token class using custom headers.
class Person < ActiveResource::Base self.headers['Authorization'] = 'Token token="abcd"' end
You can also set any specific HTTP header using the same way.
==== Protocol
Active Resource is built on a standard JSON or XML format for requesting and submitting resources over HTTP. It mirrors the RESTful routing built into Action Controller but will also work with any other REST service that properly implements the protocol. REST uses HTTP, but unlike "typical" web applications, it makes use of all the verbs available in the HTTP specification:
For more information on how this protocol works with Active Resource, see the ActiveResource::Base documentation; for more general information on REST web services, see the article here[http://en.wikipedia.org/wiki/Representational_State_Transfer].
==== Find
Find requests use the GET method and expect the JSON form of whatever resource/resources is/are being requested. So, for a request for a single element, the JSON of that item is expected in response:
tyler = Person.find(1)
The JSON document that is received is used to build a new object of type Person, with each JSON element becoming an attribute on the object.
tyler.is_a? Person # => true tyler.last # => 'Durden'
Any complex element (one that contains other elements) becomes its own object:
tyler = Person.find(1) tyler.address # => Person::Address::xxxxx tyler.address.street # => 'Paper St.'
Collections can also be requested in a similar fashion
people = Person.all people.first # => <Person::xxx 'first' => 'Tyler' ...> people.last # => <Person::xxx 'first' => 'Tony' ...>
==== Create
Creating a new resource submits the JSON form of the resource as the body of the request and expects a 'Location' header in the response with the RESTful URL location of the newly created resource. The id of the newly created resource is parsed out of the Location response header and automatically set as the id of the ARes object.
tyler = Person.new(:first => 'Tyler') tyler.new? # => true tyler.save # => true tyler.new? # => false tyler.id # => 2
==== Update
'save' is also used to update an existing resource and follows the same protocol as creating a resource with the exception that no response headers are needed -- just an empty response when the update on the server side was successful.
tyler = Person.find(1) tyler.first # => 'Tyler' tyler.first = 'Tyson' tyler.save # => true
==== Delete
Destruction of a resource can be invoked as a class and instance method of the resource.
tyler = Person.find(1) tyler.destroy # => true tyler.exists? # => false Person.delete(2) # => true Person.exists?(2) # => false
==== Associations
Relationships between resources can be declared using the standard association syntax that should be familiar to anyone who uses activerecord. For example, using the class definition below:
class Post < ActiveResource::Base self.site = "http://blog.io" has_many :comments end
post = Post.find(1) # issues GET http://blog.io/posts/1.json comments = post.comments # issues GET http://blog.io/posts/1/comments.json
If you control the server, you may wish to include nested resources thus avoiding a second network request. Given the resource above, if the response includes comments in the response, they will be automatically loaded into the activeresource object. The server-side model can be adjusted as follows to include comments in the response.
class Post < ActiveRecord::Base has_many :comments
def as_json(options)
super.merge(:include=>[:comments])
end
end
== License
Active Resource is released under the MIT license:
== Contributing to Active Resource
Active Resource is work of many contributors. You're encouraged to submit pull requests, propose features and discuss issues.
See {CONTRIBUTING}[https://github.com/rails/activeresource/blob/master/CONTRIBUTING.md].
== Support
API documentation is at
Bug reports and feature requests can be filed with the rest for the Ruby on Rails project here:
You can find more usage information in the ActiveResource::Base documentation.
FAQs
Unknown package
We found that activeresource-five demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.