Welcome to mirror list, hosted at ThFree Co, Russian Federation.

state.rb « terraform « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ed074b21909f31058b7e70f17469c5cf75e9ab6 (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
# frozen_string_literal: true

module Terraform
  class State < ApplicationRecord
    include UsageStatistics

    DEFAULT = '{"version":1}'.freeze
    HEX_REGEXP = %r{\A\h+\z}.freeze
    UUID_LENGTH = 32

    belongs_to :project
    belongs_to :locked_by_user, class_name: 'User'

    validates :project_id, presence: true
    validates :uuid, presence: true, uniqueness: true, length: { is: UUID_LENGTH },
              format: { with: HEX_REGEXP, message: 'only allows hex characters' }

    default_value_for(:uuid, allows_nil: false) { SecureRandom.hex(UUID_LENGTH / 2) }

    after_save :update_file_store, if: :saved_change_to_file?

    mount_uploader :file, StateUploader

    default_value_for(:file) { CarrierWaveStringFile.new(DEFAULT) }

    def update_file_store
      # The file.object_store is set during `uploader.store!`
      # which happens after object is inserted/updated
      self.update_column(:file_store, file.object_store)
    end

    def file_store
      super || StateUploader.default_store
    end

    def locked?
      self.lock_xid.present?
    end
  end
end