0

我有以下模型/Admin.rb 类,我想将其提取并转换为 lib/UserApi 类。我不熟悉创建 lib 类并能够从我的控制器中调用它们。任何建议表示赞赏。

class Admin
attr_accessor :id
attr_accessor :firstname
attr_accessor :lastname
attr_accessor :usergroups

def initialize json_attrs = {}
    @usergroups = []
    unless json_attrs.blank?
        @id = json_attrs["id"]
        @fname = json_attrs["fname"]
        @lname = json_attrs["lname"]
        @groups = json_attrs["groups"]
        @authenticated = true
    end
    if json_attrs.blank?
        @firstname = "blank"
    end
end

def is_authenticated?
    @authenticated ||= false
end

def in_groups? group_names
    return !(@usergroups & group_names).empty? if group_names.kind_of?(Array)
    @usergroups.include?(group_names)
end

def authenticate username, password
    options={:basic_auth => {:username => CONFIG[:API_CLIENT_NAME], 
                            :password => CONFIG[:API_CLIENT_PASSWORD]}}

    api_response = HTTParty.get("#{CONFIG[:API_HOST]}auth/oauth2?username=#{username}&password=#{password}", options)

    raise "API at #{CONFIG[:API_HOST]} is not responding" if api_response.code == 500 || api_response.code == 404

    if api_response.parsed_response.has_key? "error"
        return false
    else
        initialize(api_response.parsed_response["user"].select {|k,v| ["id", "fname", "lname", "groups"].include?(k) })
        @authenticated = true
        return true
    end
end

def full_name
    "#{@name} #{@name}"
end

结尾

这是我目前在 auth_controller 中使用的"

class Admin::AuthController < Admin::BaseController

def auth
    admin_user = Admin.new
    auth_result = admin_user.authenticate(params[:username], params[:password])
end 
4

1 回答 1

0

在 lib 目录下创建 UserApi 类:

# lib/user_api.rb
class UserApi
 ...

更新控制器:

class Admin::AuthController < Admin::BaseController

def auth
    admin_user = UserApi.new
    auth_result = admin_user.authenticate(params[:username], params[:password])
end 

加载您放在 lib/ 目录中的类,以便在控制器中访问它们:Best way to load module/class from lib folder in Rails 3?

我通常会创建一个config/initializers/00_requires.rb文件并需要我需要的 lib 文件。

于 2013-07-30T16:24:06.577 回答