Sha256: b0f65434056f94a9daae4b40d23ef6f7a64cd190291f46c49cb939e6d4ad8642

Contents?: true

Size: 1.69 KB

Versions: 15

Compression:

Stored size: 1.69 KB

Contents

begin
  require "posix-spawn"
rescue LoadError
  require "open3"
end

require "github/markup/implementation"

module GitHub
  module Markup
    class CommandError < RuntimeError
    end

    class CommandImplementation < Implementation
      attr_reader :command, :block, :name

      def initialize(regexp, command, name, &block)
        super regexp
        @command = command.to_s
        @block = block
        @name = name
      end

      def render(content)
        rendered = execute(command, content)
        rendered = rendered.to_s.empty? ? content : rendered
        call_block(rendered, content)
      end

    private
      def call_block(rendered, content)
        if block && block.arity == 2
          block.call(rendered, content)
        elsif block
          block.call(rendered)
        else
          rendered
        end
      end

      if defined?(POSIX::Spawn)
        def execute(command, target)
          spawn = POSIX::Spawn::Child.new(*command, :input => target)
          if spawn.status.success?
            sanitize(spawn.out, target.encoding)
          else
            raise CommandError.new(spawn.err.strip)
          end
        end
      else
        def execute(command, target)
          output = Open3.popen3(*command) do |stdin, stdout, stderr, wait_thr|
            stdin.puts target
            stdin.close
            if wait_thr.value.success?
              stdout.readlines
            else
              raise CommandError.new(stderr.readlines.join('').strip)
            end
          end
          sanitize(output.join(''), target.encoding)
        end
      end

      def sanitize(input, encoding)
        input.gsub("\r", '').force_encoding(encoding)
      end

    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
gitlab-markup-1.7.0 lib/github/markup/command_implementation.rb
gitlab-markup-1.6.5 lib/github/markup/command_implementation.rb
gitlab-markup-1.6.4 lib/github/markup/command_implementation.rb
gitlab-markup-1.6.3 lib/github/markup/command_implementation.rb
gitlab-markup-1.6.2 lib/github/markup/command_implementation.rb
gitlab-markup-1.6.1 lib/github/markup/command_implementation.rb
gitlab-markup-1.6.0 lib/github/markup/command_implementation.rb
github-markup-1.4.4 lib/github/markup/command_implementation.rb
github-markup-1.4.3 lib/github/markup/command_implementation.rb
github-markup-1.4.2 lib/github/markup/command_implementation.rb
github-markup-1.4.1 lib/github/markup/command_implementation.rb
gitlab-markup-1.5.1 lib/github/markup/command_implementation.rb
gitlab-markup-1.5.0 lib/github/markup/command_implementation.rb
gitlab-markup-1.5.0.pre lib/github/markup/command_implementation.rb
github-markup-1.4.0 lib/github/markup/command_implementation.rb