Created
September 28, 2011 19:01
-
-
Save reagent/1248884 to your computer and use it in GitHub Desktop.
Sample code from my Using OO to Manage Control Flow post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Credential | |
include ActiveModel::Validations | |
attr_accessor :screen_name, :oauth_token, :oauth_secret, :token, :description | |
validates_presence_of :screen_name, :oauth_token, :oauth_secret, :message => 'required' | |
validate :user_exists, :unless => :errors? | |
def initialize(attributes = {}) | |
attributes.each {|k, v| set_recognized_attribute(k, v) } | |
end | |
def save | |
valid? && create_device | |
end | |
def as_json(options = {}) | |
{:api_key => @device.api_key} | |
end | |
private | |
def errors? | |
errors.any? | |
end | |
def set_recognized_attribute(name, value) | |
setter_method = "#{name}=" | |
self.send(setter_method, value) if respond_to?(setter_method) | |
end | |
def user | |
@user ||= User.by_screen_name(screen_name).where({ | |
:oauth_token => oauth_token, | |
:oauth_secret => oauth_secret | |
}).first | |
end | |
def create_device | |
@device = Device.find_or_create_by_token!({ | |
:token => token, | |
:description => description, | |
:user_id => user.id | |
}) | |
[email protected]? | |
end | |
def user_exists | |
errors.add(:user, 'not found') unless user.present? | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CredentialsController < ApplicationController | |
def create | |
credential = Credential.new(params) | |
if credential.save | |
render :json => credential | |
else | |
render :json => {:error => errors_for(credential)}, :status => :unprocessable_entity | |
end | |
end | |
private | |
def errors_for(object) | |
object.errors.map {|k, m| "#{k} #{m}" } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I really love this technique.
One additional thing you can do is move the
errors_for
andas_json
logic to separate object - CredentialsSerializer:https://gist.github.com/2016981/289e50c4c20996486015e02b6f0b95059d0db3c0