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

not_matches.rb « lexeme « expression « pipeline « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cd9e3f3572329e0b1d0419bcaf4c12aa4f4bfe8 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    module Pipeline
      module Expression
        module Lexeme
          class NotMatches < Lexeme::LogicalOperator
            PATTERN = /\!~/

            def evaluate(variables = {})
              text = @left.evaluate(variables)
              regexp = @right.evaluate(variables)

              return true unless regexp

              # All variables are evaluated as strings, even if they are regexp strings.
              # So, we need to convert them to regexp objects.
              regexp = Lexeme::Pattern.build_and_evaluate(regexp, variables)

              regexp.scan(text.to_s).empty?
            end

            def self.build(_value, behind, ahead)
              new(behind, ahead)
            end

            def self.precedence
              10 # See: https://ruby-doc.org/core-2.5.0/doc/syntax/precedence_rdoc.html
            end
          end
        end
      end
    end
  end
end