Sha256: a581928e66e1e2c3b07873fc09af2c5703610b64c790c5615ec86ad07556dcaa

Contents?: true

Size: 1.04 KB

Versions: 7

Compression:

Stored size: 1.04 KB

Contents

=begin
    Copyright 2010-2014 Tasos Laskos <tasos.laskos@arachni-scanner.com>

    This file is part of the Arachni Framework project and is subject to
    redistribution and commercial restrictions. Please see the Arachni Framework
    web site for more information on licensing and terms of use.
=end

require_relative '../../../lib/arachni/processes/manager'
require_relative '../../../lib/arachni/processes/helpers'
require_relative '../../support/helpers/paths'
require_relative 'web_server_manager'
require 'arachni/rpc'

# @note Needs `ENV['WEB_SERVER_DISPATCHER']` in the format of `host:port`.
#
# Exposes the {WebServerManager} over RPC.
#
# @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
class WebServerDispatcher

    def initialize( options = {} )
        host, port = ENV['WEB_SERVER_DISPATCHER'].split( ':' )

        manager = WebServerManager.instance
        manager.address = host

        rpc = Arachni::RPC::Server.new( host: host, port: port.to_i )
        rpc.add_handler( 'server', manager )
        rpc.run
    end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
arachni-1.0.6 spec/support/lib/web_server_dispatcher.rb
arachni-1.0.5 spec/support/lib/web_server_dispatcher.rb
arachni-1.0.4 spec/support/lib/web_server_dispatcher.rb
arachni-1.0.3 spec/support/lib/web_server_dispatcher.rb
arachni-1.0.2 spec/support/lib/web_server_dispatcher.rb
arachni-1.0.1 spec/support/lib/web_server_dispatcher.rb
arachni-1.0 spec/support/lib/web_server_dispatcher.rb