module Roust::User
Public Instance Methods
user_create(attrs)
click to toggle source
Requires RT > 3.8.0
# File lib/roust/user.rb, line 44 def user_create(attrs) default_attrs = { 'id' => 'user/new' } attrs = default_attrs.merge(attrs).stringify_keys! content = compose_content('user', attrs['id'], attrs) response = self.class.post( '/user/new', :body => { :content => content } ) body, _ = explode_response(response) case body when /^# User (.+) created/ id = $1 # Return the whole user, not just the id. user_show(id) when /^# Could not create user/ raise BadRequest, body when /^# Syntax error/ raise SyntaxError, body else raise UnhandledResponse, body end end
user_show(id)
click to toggle source
id can be numeric (e.g. 28) or textual (e.g. john)
# File lib/roust/user.rb, line 4 def user_show(id) response = self.class.get("/user/#{id}") body, _ = explode_response(response) if body =~ /No user named/ nil else hash = body_to_hash(body) convert_response_boolean_attrs(hash) end end
Also aliased as: user
user_update(id, attrs)
click to toggle source
# File lib/roust/user.rb, line 16 def user_update(id, attrs) convert_request_boolean_attrs(attrs) content = compose_content('user', id, attrs) response = self.class.post( "/user/#{id}/edit", :body => { :content => content } ) body, _ = explode_response(response) case body when /^# User (.+) updated/ id = $1 user_show(id) when /^# You are not allowed to modify user \d+/ raise Unauthorized, body when /^# Syntax error/ raise SyntaxError, body else raise UnhandledResponse end end
Private Instance Methods
convert_request_boolean_attrs(attrs)
click to toggle source
# File lib/roust/user.rb, line 79 def convert_request_boolean_attrs(attrs) %w(Disabled Privileged).each do |key| if attrs.has_key?(key) attrs[key] = case attrs[key] when true 1 when false 0 end end end attrs end
convert_response_boolean_attrs(attrs)
click to toggle source
# File lib/roust/user.rb, line 94 def convert_response_boolean_attrs(attrs) %w(Disabled Privileged).each do |key| if attrs.has_key?(key) attrs[key] = case attrs[key] when '1' true when '0' false end end end attrs end