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

redact_links.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5d3bcdd517241fb18618cd58f9df280d1e510a5 (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
# frozen_string_literal: true
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    class RedactLinks
      module Redactable
        extend ActiveSupport::Concern

        def redact_field!(field)
          self[field].gsub!(%r{/sent_notifications/\h{32}/unsubscribe}, '/sent_notifications/REDACTED/unsubscribe')

          if self.changed?
            self.update_columns(field => self[field],
                                "#{field}_html" => nil)
          end
        end
      end

      class Note < ActiveRecord::Base
        include EachBatch
        include Redactable

        self.table_name = 'notes'
        self.inheritance_column = :_type_disabled
      end

      class Issue < ActiveRecord::Base
        include EachBatch
        include Redactable

        self.table_name = 'issues'
        self.inheritance_column = :_type_disabled
      end

      class MergeRequest < ActiveRecord::Base
        include EachBatch
        include Redactable

        self.table_name = 'merge_requests'
        self.inheritance_column = :_type_disabled
      end

      class Snippet < ActiveRecord::Base
        include EachBatch
        include Redactable

        self.table_name = 'snippets'
        self.inheritance_column = :_type_disabled
      end

      def perform(model_name, field, start_id, stop_id)
        link_pattern = "%/sent_notifications/" + ("_" * 32) + "/unsubscribe%"
        model = "Gitlab::BackgroundMigration::RedactLinks::#{model_name}".constantize

        model.where("#{field} like ?", link_pattern).where(id: start_id..stop_id).each do |resource|
          resource.redact_field!(field)
        end
      end
    end
  end
end