Sha256: a9f10a4a6e157950edd9f23eb71161d1b5874e4f440ec890dffb4b77d05677d9

Contents?: true

Size: 1.72 KB

Versions: 4

Compression:

Stored size: 1.72 KB

Contents

require 'restpack-core-client'

module RestPack
  module Web
    class App
      def initialize(app, options = {})
        p "RestPack::Web::App.initialize"
        @app = app

        options[:core_domain] ||= ENV['RESTPACK_CORE_SERVICE']
        options[:access_key] ||= ENV['RESTPACK_ACCESS_KEY']
        
        raise "missing configuration" unless options[:core_domain] || options[:access_key]
        
        @core_cache = RestPack::Core::Client::Cache.create(options[:core_domain], options[:access_key])
      end

      def call(env)
        env[:restpack] ||= {}
        
        begin #TODO: GJ: cache should handle errors gracefully
          request = Rack::Request.new(env)
          env[:restpack][:request] = request
          
          host = env["SERVER_NAME"]
          env[:restpack][:host] = host
          
          channel = @core_cache.get_channel(host)
          domain = channel.get_domain_by_host(host)
          
          env[:restpack][:channel] = channel
          env[:restpack][:application] = domain.application
          env[:restpack][:domain] = domain
          
          add_user env
          
        rescue Exception => e
          p "---"
          p e.message
          p "===="
          p e.backtrace.inspect
          p "---"
        end

        @app.call(env)
      end
      
      private
      
      def add_user(env)
        user_id = env['rack.session'][:user_id]
        if user_id
          url = "http://:1234@localhost:1112/api/v1/users/#{user_id}.json" #TODO: GJ: build from config
          p url
          json = RestClient.get(url)
          user = JSON.parse(json)['user']
          env[:restpack][:user] = user
        end

        env[:restpack][:user_id] = user_id
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
restpack-web-0.1.45 lib/restpack-web/app.rb
restpack-web-0.1.44 lib/restpack-web/app.rb
restpack-web-0.1.43 lib/restpack-web/app.rb
restpack-web-0.1.42 lib/restpack-web/app.rb