Class: OpenID::PAPE::Response

Inherits:
Extension show all
Defined in:
lib/openid/extensions/pape.rb

Overview

A Provider Authentication Policy response, sent from a provider to a relying party

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Extension

#to_message

Constructor Details

#initialize(auth_policies = [], auth_time = nil, nist_auth_level = nil) ⇒ Response

Returns a new instance of Response.



90
91
92
93
94
95
96
# File 'lib/openid/extensions/pape.rb', line 90

def initialize(auth_policies=[], auth_time=nil, nist_auth_level=nil)
  @ns_alias = 'pape'
  @ns_uri = NS_URI
  @auth_policies = auth_policies
  @auth_time = auth_time
  @nist_auth_level = nist_auth_level
end

Instance Attribute Details

#auth_policiesObject

Returns the value of attribute auth_policies.



89
90
91
# File 'lib/openid/extensions/pape.rb', line 89

def auth_policies
  @auth_policies
end

#auth_timeObject

Returns the value of attribute auth_time.



89
90
91
# File 'lib/openid/extensions/pape.rb', line 89

def auth_time
  @auth_time
end

#nist_auth_levelObject

Returns the value of attribute nist_auth_level.



89
90
91
# File 'lib/openid/extensions/pape.rb', line 89

def nist_auth_level
  @nist_auth_level
end

#ns_aliasObject

Returns the value of attribute ns_alias.



89
90
91
# File 'lib/openid/extensions/pape.rb', line 89

def ns_alias
  @ns_alias
end

Class Method Details

.from_success_response(success_response) ⇒ Object

Create a Response object from an OpenID::Consumer::SuccessResponse



105
106
107
108
109
110
111
# File 'lib/openid/extensions/pape.rb', line 105

def self.from_success_response(success_response)
  args = success_response.get_signed_ns(NS_URI)
  return nil if args.nil?
  pape_resp = new
  pape_resp.parse_extension_args(args)
  return pape_resp
end

Instance Method Details

#add_policy_uri(policy_uri) ⇒ Object



100
101
102
# File 'lib/openid/extensions/pape.rb', line 100

def add_policy_uri(policy_uri)
  @auth_policies << policy_uri unless @auth_policies.member?(policy_uri)
end

#get_extension_argsObject



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# File 'lib/openid/extensions/pape.rb', line 153

def get_extension_args
  ns_args = {}
  if @auth_policies.empty?
    ns_args['auth_policies'] = 'none'
  else
    ns_args['auth_policies'] = @auth_policies.join(' ')
  end
  if @nist_auth_level
    unless (0..4).member? @nist_auth_level
      raise ArgumentError, "nist_auth_level must be an integer 0 through 4, not #{@nist_auth_level.inspect}"
    end
    ns_args['nist_auth_level'] = @nist_auth_level.to_s
  end

  if @auth_time
    unless @auth_time =~ TIME_VALIDATOR
      raise ArgumentError, "auth_time must be in RFC3339 format"
    end
    ns_args['auth_time'] = @auth_time
  end
  return ns_args
end

#parse_extension_args(args, strict = false) ⇒ Object

parse the provider authentication policy arguments into the internal state of this object if strict is specified, raise an exception when bad data is encountered



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/openid/extensions/pape.rb', line 117

def parse_extension_args(args, strict=false)
  policies_str = args['auth_policies']
  if policies_str and policies_str != 'none'
    @auth_policies = policies_str.split(' ')
  end

  nist_level_str = args['nist_auth_level']
  if nist_level_str
    # special handling of zero to handle to_i behavior
    if nist_level_str.strip == '0'
      nist_level = 0
    else
      nist_level = nist_level_str.to_i
      # if it's zero here we have a bad value
      if nist_level == 0
        nist_level = nil
      end
    end
    if nist_level and nist_level >= 0 and nist_level < 5
      @nist_auth_level = nist_level
    elsif strict
      raise ArgumentError, "nist_auth_level must be an integer 0 through 4, not #{nist_level_str.inspect}"
    end
  end

  auth_time_str = args['auth_time']
  if auth_time_str
    # validate time string
    if auth_time_str =~ TIME_VALIDATOR
      @auth_time = auth_time_str
    elsif strict
      raise ArgumentError, "auth_time must be in RFC3339 format"
    end
  end
end