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

design_action.rb « design_management « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22baa916296a4e17328d8bb6f048d9354fc3b41f (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# frozen_string_literal: true

module DesignManagement
  # Parameter object which is a tuple of the database record and the
  # last gitaly call made to change it. This serves to perform the
  # logical mapping from git action to database representation.
  class DesignAction
    include ActiveModel::Validations

    EVENT_FOR_GITALY_ACTION = {
      create: DesignManagement::Action.events[:creation],
      update: DesignManagement::Action.events[:modification],
      delete: DesignManagement::Action.events[:deletion]
    }.freeze

    attr_reader :design, :action, :content

    delegate :issue_id, to: :design

    validates :design, presence: true
    validates :action, presence: true, inclusion: { in: EVENT_FOR_GITALY_ACTION.keys }
    validates :content,
      absence: { if: :forbids_content?,
                  message: 'this action forbids content' },
      presence: { if: :needs_content?,
                  message: 'this action needs content' }

    # Parameters:
    # - design [DesignManagement::Design]: the design that was changed
    # - action [Symbol]: the action that gitaly performed
    def initialize(design, action, content = nil)
      @design, @action, @content = design, action, content
      validate!
    end

    def row_attrs(version)
      { design_id: design.id, version_id: version.id, event: event }
    end

    def gitaly_action
      { action: action, file_path: design.full_path, content: content }.compact
    end

    # This action has been performed - do any post-creation actions
    # such as clearing method caches.
    def performed
      design.clear_version_cache
    end

    private

    def needs_content?
      action != :delete
    end

    def forbids_content?
      action == :delete
    end

    def event
      EVENT_FOR_GITALY_ACTION[action]
    end
  end
end