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

group_builder.rb « hook_data « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f76144eb836caa120d9ade874a8aceab6a10a46 (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
# frozen_string_literal: true

module Gitlab
  module HookData
    class GroupBuilder < BaseBuilder
      alias_method :group, :object

      # Sample data
      # {
      #  :created_at=>"2021-01-20T09:40:12Z",
      #  :updated_at=>"2021-01-20T09:40:12Z",
      #  :event_name=>"group_rename",
      #  :name=>"group1",
      #  :path=>"group1",
      #  :full_path=>"group1",
      #  :group_id=>1,
      #  :old_path=>"old-path",
      #  :old_full_path=>"old-path"
      # }

      def build(event)
        [
          timestamps_data,
          event_data(event),
          group_data,
          event_specific_group_data(event)
        ].reduce(:merge)
      end

      private

      def group_data
        {
          name: group.name,
          path: group.path,
          full_path: group.full_path,
          group_id: group.id
        }
      end

      def event_specific_group_data(event)
        return {} unless event == :rename

        {
          old_path: group.path_before_last_save,
          old_full_path: group.full_path_before_last_save
        }
      end
    end
  end
end