Class: Io::Flow::V0::Models::PermissionCheck

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Used to test an integration’s permissions, including identifying the authentication technique that will be used for similar requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ PermissionCheck

Returns a new instance of PermissionCheck.



43846
43847
43848
43849
43850
43851
43852
43853
43854
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43846

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:authentication_technique, :roles, :behaviors, :routes], 'PermissionCheck')
  @authentication_technique = (x = opts.delete(:authentication_technique); x.is_a?(::Io::Flow::V0::Models::AuthenticationTechnique) ? x : ::Io::Flow::V0::Models::AuthenticationTechnique.apply(x))
  @user = (x = opts.delete(:user); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ExpandableUser) ? x : ::Io::Flow::V0::Models::ExpandableUser.from_json(x)))
  @roles = HttpClient::Preconditions.assert_class('roles', opts.delete(:roles), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::FlowRole) ? x : ::Io::Flow::V0::Models::FlowRole.apply(x)) }
  @behaviors = HttpClient::Preconditions.assert_class('behaviors', opts.delete(:behaviors), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::FlowBehavior) ? x : ::Io::Flow::V0::Models::FlowBehavior.apply(x)) }
  @routes = HttpClient::Preconditions.assert_class('routes', opts.delete(:routes), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::PermittedRoute) ? x : ::Io::Flow::V0::Models::PermittedRoute.new(x)) }
end

Instance Attribute Details

#authentication_techniqueObject (readonly)

Returns the value of attribute authentication_technique.



43844
43845
43846
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43844

def authentication_technique
  @authentication_technique
end

#behaviorsObject (readonly)

Returns the value of attribute behaviors.



43844
43845
43846
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43844

def behaviors
  @behaviors
end

#rolesObject (readonly)

Returns the value of attribute roles.



43844
43845
43846
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43844

def roles
  @roles
end

#routesObject (readonly)

Returns the value of attribute routes.



43844
43845
43846
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43844

def routes
  @routes
end

#userObject (readonly)

Returns the value of attribute user.



43844
43845
43846
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43844

def user
  @user
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



43860
43861
43862
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43860

def copy(incoming={})
  PermissionCheck.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



43864
43865
43866
43867
43868
43869
43870
43871
43872
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43864

def to_hash
  {
    :authentication_technique => authentication_technique.value,
    :user => user.nil? ? nil : user.to_hash,
    :roles => roles.map { |o| o.value },
    :behaviors => behaviors.map { |o| o.value },
    :routes => routes.map { |o| o.to_hash }
  }
end

#to_jsonObject



43856
43857
43858
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43856

def to_json
  JSON.dump(to_hash)
end