c3338c920d
Extract acme double to helper Create ACME challanges for pages domains * Create order & challange through API * save them to database * request challenge validation We're saving order and challenge as one entity, that wouldn't be correct if we would order certificates for several domains simultaneously, but we always order certificate per domain Add controller for processing acme challenges redirected from pages Don't save acme challenge url - we don't use it Validate acme challenge attributes Encrypt private_key in acme orders
17 lines
392 B
Ruby
17 lines
392 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :pages_domain_acme_order do
|
|
pages_domain
|
|
url { 'https://example.com/' }
|
|
expires_at { 1.day.from_now }
|
|
challenge_token { 'challenge_token' }
|
|
challenge_file_content { 'filecontent' }
|
|
|
|
private_key { OpenSSL::PKey::RSA.new(4096).to_pem }
|
|
|
|
trait :expired do
|
|
expires_at { 1.day.ago }
|
|
end
|
|
end
|
|
end
|