Sha256: b114cfdaee7ae8ea1cdea053b8aa7a497ff4b4b05cb82949c20b5bd0ddaa6fb2

Contents?: true

Size: 1.27 KB

Versions: 10

Compression:

Stored size: 1.27 KB

Contents

require "English"

module Dotenv
  module Substitutions
    # Substitute shell commands in a value.
    #
    #   SHA=$(git rev-parse HEAD)
    #
    module Command
      class << self
        INTERPOLATED_SHELL_COMMAND = /
          (?<backslash>\\)?   # is it escaped with a backslash?
          \$                  # literal $
          (?<cmd>             # collect command content for eval
            \(                # require opening paren
            (?:[^()]|\g<cmd>)+  # allow any number of non-parens, or balanced
                              # parens (by nesting the <cmd> expression
                              # recursively)
            \)                # require closing paren
          )
        /x

        def call(value, _env, overwrite: false)
          # Process interpolated shell commands
          value.gsub(INTERPOLATED_SHELL_COMMAND) do |*|
            # Eliminate opening and closing parentheses
            command = $LAST_MATCH_INFO[:cmd][1..-2]

            if $LAST_MATCH_INFO[:backslash]
              # Command is escaped, don't replace it.
              $LAST_MATCH_INFO[0][1..]
            else
              # Execute the command and return the value
              `#{command}`.chomp
            end
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
dotenv-3.1.4 lib/dotenv/substitutions/command.rb
dotenv-3.1.3 lib/dotenv/substitutions/command.rb
dotenv-3.1.2 lib/dotenv/substitutions/command.rb
dotenv-3.1.1 lib/dotenv/substitutions/command.rb
dotenv-3.1.0 lib/dotenv/substitutions/command.rb
dotenv-3.0.3 lib/dotenv/substitutions/command.rb
dotenv-3.0.2 lib/dotenv/substitutions/command.rb
dotenv-3.0.1 lib/dotenv/substitutions/command.rb
dotenv-3.0.0 lib/dotenv/substitutions/command.rb
dotenv-3.0.0.beta lib/dotenv/substitutions/command.rb