Class: Proxy::ContainerGateway::Api::AuthorizationHeader

Inherits:
Object
  • Object
show all
Defined in:
lib/smart_proxy_container_gateway/container_gateway_api.rb

Constant Summary collapse

UNAUTHORIZED_TOKEN =
'unauthorized'.freeze

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ AuthorizationHeader

Returns a new instance of AuthorizationHeader.



161
162
163
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 161

def initialize(value)
  @value = value || ''
end

Instance Method Details

#basic_auth?Boolean

Returns:

  • (Boolean)


189
190
191
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 189

def basic_auth?
  @value.split(' ')[0] == 'Basic'
end

#blank?Boolean

Returns:

  • (Boolean)


193
194
195
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 193

def blank?
  Base64.decode64(@value.split(' ')[1]) == ':'
end

#present?Boolean

Returns:

  • (Boolean)


177
178
179
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 177

def present?
  !@value.nil? && @value != ""
end

#raw_headerObject



173
174
175
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 173

def raw_header
  @value
end

#token_auth?Boolean

Returns:

  • (Boolean)


185
186
187
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 185

def token_auth?
  @value.split(' ')[0] == 'Bearer'
end

#unauthorized_token?Boolean

Returns:

  • (Boolean)


181
182
183
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 181

def unauthorized_token?
  @value.split(' ')[1] == UNAUTHORIZED_TOKEN
end

#userObject



165
166
167
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 165

def user
  ContainerGateway.token_user(@value.split(' ')[1])
end

#v1_foreman_authorized_usernameObject

A special case for the V1 API. Defer authentication to Foreman and return the username. ‘nil` if not authorized.



198
199
200
201
202
203
204
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 198

def v1_foreman_authorized_username
  username = Base64.decode64(@value.split(' ')[1]).split(':')[0]
  auth_response = ForemanApi.new.fetch_token(raw_header, { 'account' => username })
  return username if auth_response.code.to_i == 200 && (JSON.parse(auth_response.body)['token'] != 'unauthenticated')

  nil
end

#valid_user_token?Boolean

Returns:

  • (Boolean)


169
170
171
# File 'lib/smart_proxy_container_gateway/container_gateway_api.rb', line 169

def valid_user_token?
  token_auth? && ContainerGateway.valid_token?(@value.split(' ')[1])
end