summaryrefslogtreecommitdiff
path: root/vendor/acme-client/lib/acme/client/resources/challenges/base.rb
blob: c78c74ec5e5ac0fd6af429939f47999485b1fa51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class Acme::Client::Resources::Challenges::Base
  attr_reader :authorization, :status, :uri, :token, :error

  def initialize(authorization)
    @authorization = authorization
  end

  def client
    authorization.client
  end

  def verify_status
    authorization.verify_status

    status
  end

  def request_verification
    response = client.connection.post(@uri, resource: 'challenge', type: challenge_type, keyAuthorization: authorization_key)
    response.success?
  end

  def assign_attributes(attributes)
    @status = attributes.fetch('status', 'pending')
    @uri = attributes.fetch('uri')
    @token = attributes.fetch('token')
    @error = attributes['error']
  end

  private

  def challenge_type
    self.class::CHALLENGE_TYPE
  end

  def authorization_key
    "#{token}.#{crypto.thumbprint}"
  end

  def crypto
    @crypto ||= Acme::Client::Crypto.new(client.private_key)
  end
end