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

reply_by_email.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3fe6778f0630165714c1d6b10c554adae38e06f (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
module Gitlab
  module ReplyByEmail
    class << self
      def enabled?
        config.enabled && address_formatted_correctly?
      end

      def address_formatted_correctly?
        config.address &&
          config.address.include?("%{reply_key}")
      end

      def reply_key
        return nil unless enabled?

        SecureRandom.hex(16)
      end

      def reply_address(reply_key)
        config.address.gsub('%{reply_key}', reply_key)
      end

      def reply_key_from_address(address)
        regex = address_regex
        return unless regex

        match = address.match(regex)
        return unless match

        match[1]
      end

      private

      def config
        Gitlab.config.reply_by_email
      end

      def address_regex
        wildcard_address = config.address
        return nil unless wildcard_address

        regex = Regexp.escape(wildcard_address)
        regex = regex.gsub(Regexp.escape('%{reply_key}'), "(.+)")
        Regexp.new(regex).freeze
      end
    end
  end
end