summaryrefslogtreecommitdiff
path: root/app/models/pages_domain_acme_order.rb
blob: 8427176fa72068926d2d0f8f3a34a1f26f30eafd (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
# frozen_string_literal: true

class PagesDomainAcmeOrder < ApplicationRecord
  belongs_to :pages_domain

  scope :expired, -> { where("expires_at < ?", Time.current) }

  validates :pages_domain, presence: true
  validates :expires_at, presence: true
  validates :url, presence: true
  validates :challenge_token, presence: true
  validates :challenge_file_content, presence: true
  validates :private_key, presence: true

  attr_encrypted :private_key,
                 mode: :per_attribute_iv,
                 key: Settings.attr_encrypted_db_key_base_32,
                 algorithm: 'aes-256-gcm',
                 encode: true

  def self.find_by_domain_and_token(domain_name, challenge_token)
    joins(:pages_domain).find_by(pages_domains: { domain: domain_name }, challenge_token: challenge_token)
  end
end