public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
Search Repo:
commit  22436fe4056bf4ab7e293d0f1a66cff54538f442
tree    0b59a839a84152a0452998df8de20091f19352e0
parent  312181aade867323834c5031b7e9707f931e9ded
merb-core / lib / merb-core / dispatch / request.rb
100644 561 lines (497 sloc) 16.125 kb
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
module Merb
  
  class Request
    # def env def session def route_params
    attr_accessor :env, :session, :route_params
    
    # by setting these to false, auto-parsing is disabled; this way you can do your own parsing instead
    cattr_accessor :parse_multipart_params, :parse_json_params, :parse_xml_params
    self.parse_multipart_params = true
    self.parse_json_params = true
    self.parse_xml_params = true
    
    # Initial the request object.
    #
    # ==== Parameters
    # http_request<~params:~[], ~body:IO>::
    # An object like an HTTP Request.
    def initialize(rack_env)
      @env = rack_env
      @body = rack_env['rack.input']
      @route_params = {}
    end
    
    METHODS = %w{get post put delete head}
 
    # ==== Returns
    # Symbol:: The name of the request method, e.g. :get.
    #
    # ==== Notes
    # If the method is post, then the +_method+ param will be checked for
    # masquerading method.
    def method
      @method ||= begin
        request_method = @env['REQUEST_METHOD'].downcase.to_sym
        case request_method
        when :get, :head, :put, :delete
          request_method
        when :post
          if self.class.parse_multipart_params
            m = body_and_query_params.merge(multipart_params)['_method']
          else
            m = body_and_query_params['_method']
          end
          m.downcase! if m
          METHODS.include?(m) ? m.to_sym : :post
        else
          raise "Unknown REQUEST_METHOD: #{@env['REQUEST_METHOD']}"
        end
      end
    end
    
    # create predicate methods for querying the REQUEST_METHOD
    # get? post? head? put? etc
    METHODS.each do |m|
      class_eval "def #{m}?() method == :#{m} end"
    end
    
    private
    
    # ==== Returns
    # Hash:: Parameters passed from the URL like ?blah=hello.
    def query_params
      @query_params ||= self.class.query_parse(query_string || '')
    end
    
    # Parameters passed in the body of the request. Ajax calls from
    # prototype.js and other libraries pass content this way.
    #
    # ==== Returns
    # Hash:: The parameters passed in the body.
    def body_params
      @body_params ||= begin
        if content_type && content_type.match(Merb::Const::FORM_URL_ENCODED_REGEXP) # or content_type.nil?
          self.class.query_parse(raw_post)
        end
      end
    end
 
    # ==== Returns
    # Hash::
    # The parameters gathered from the query string and the request body,
    # with parameters in the body taking precedence.
    def body_and_query_params
      # ^-- FIXME a better name for this method
      @body_and_query_params ||= begin
        h = query_params
        h.merge!(body_params) if body_params
        h.to_mash
      end
    end
 
    # ==== Raises
    # ControllerExceptions::MultiPartParseError::
    # Unable to parse the multipart form data.
    #
    # ==== Returns
    # Hash:: The parsed multipart parameters.
    def multipart_params
      @multipart_params ||=
        begin
          # if the content-type is multipart and there's stuff in the body,
          # parse the multipart. Otherwise return {}
          if (Merb::Const::MULTIPART_REGEXP =~ content_type && @body.size > 0)
            self.class.parse_multipart(@body, $1, content_length)
          else
            {}
          end
        rescue ControllerExceptions::MultiPartParseError => e
          @multipart_params = {}
          raise e
        end
    end
 
    # ==== Returns
    # Hash:: Parameters from body if this is a JSON request.
    def json_params
      @json_params ||= begin
        if Merb::Const::JSON_MIME_TYPE_REGEXP.match(content_type)
          JSON.parse(raw_post)
        end
      end
    end
 
    # ==== Returns
    # Hash:: Parameters from body if this is an XML request.
    def xml_params
      @xml_params ||= begin
        if Merb::Const::XML_MIME_TYPE_REGEXP.match(content_type)
          Hash.from_xml(raw_post) rescue Mash.new
        end
      end
    end
    
    public
    # ==== Returns
    # Hash:: All request parameters.
    #
    # ==== Notes
    # The order of precedence for the params is XML, JSON, multipart, body and
    # request string.
    def params
      @params ||= begin
        h = body_and_query_params.merge(route_params)
        h.merge!(multipart_params) if self.class.parse_multipart_params && multipart_params
        h.merge!(json_params) if self.class.parse_json_params && json_params
        h.merge!(xml_params) if self.class.parse_xml_params && xml_params
        h
      end
    end
 
    # Resets the params to a nil value.
    def reset_params!
      @params = nil
    end
 
    # ==== Returns
    # Hash:: The cookies for this request.
    def cookies
      @cookies ||= self.class.query_parse(@env[Merb::Const::HTTP_COOKIE], ';,')
    end
 
    # ==== Returns
    # String:: The raw post.
    def raw_post
      @body.rewind if @body.respond_to?(:rewind)
      @body.read
    end
    
    # ==== Returns
    # Boolean:: If the request is an XML HTTP request.
    def xml_http_request?
      not /XMLHttpRequest/i.match(@env['HTTP_X_REQUESTED_WITH']).nil?
    end
    alias xhr? :xml_http_request?
    alias ajax? :xml_http_request?
    
    # ==== Returns
    # String:: The remote IP address.
    def remote_ip
      return @env['HTTP_CLIENT_IP'] if @env.include?('HTTP_CLIENT_IP')
    
      if @env.include?(Merb::Const::HTTP_X_FORWARDED_FOR) then
        remote_ips = @env[Merb::Const::HTTP_X_FORWARDED_FOR].split(',').reject do |ip|
          ip =~ /^unknown$|^(127|10|172\.16|192\.168)\./i
        end
    
        return remote_ips.first.strip unless remote_ips.empty?
      end
    
      return @env[Merb::Const::REMOTE_ADDR]
    end
    
    # ==== Returns
    # String::
    # The protocol, i.e. either "https://" or "http://" depending on the
    # HTTPS header.
    def protocol
      ssl? ? 'https://' : 'http://'
    end
    
    # ==== Returns
    # Boolean::: True if the request is an SSL request.
    def ssl?
      @env['HTTPS'] == 'on' || @env['HTTP_X_FORWARDED_PROTO'] == 'https'
    end
    
    # ==== Returns
    # String:: The HTTP referer.
    def referer
      @env['HTTP_REFERER']
    end
    
    # ==== Returns
    # String:: The request URI.
    def uri
      @env['REQUEST_URI'] || @env['REQUEST_PATH']
    end
 
    # ==== Returns
    # String:: The HTTP user agent.
    def user_agent
      @env['HTTP_USER_AGENT']
    end
 
    # ==== Returns
    # String:: The server name.
    def server_name
      @env['SERVER_NAME']
    end
 
    # ==== Returns
    # String:: The accepted encodings.
    def accept_encoding
      @env['HTTP_ACCEPT_ENCODING']
    end
 
    # ==== Returns
    # String:: The script name.
    def script_name
      @env['SCRIPT_NAME']
    end
 
    # ==== Returns
    # String:: HTTP cache control.
    def cache_control
      @env['HTTP_CACHE_CONTROL']
    end
 
    # ==== Returns
    # String:: The accepted language.
    def accept_language
      @env['HTTP_ACCEPT_LANGUAGE']
    end
 
    # ==== Returns
    # String:: The server software.
    def server_software
      @env['SERVER_SOFTWARE']
    end
 
    # ==== Returns
    # String:: Value of HTTP_KEEP_ALIVE.
    def keep_alive
      @env['HTTP_KEEP_ALIVE']
    end
 
    # ==== Returns
    # String:: The accepted character sets.
    def accept_charset
      @env['HTTP_ACCEPT_CHARSET']
    end
 
    # ==== Returns
    # String:: The HTTP version
    def version
      @env['HTTP_VERSION']
    end
 
    # ==== Returns
    # String:: The gateway.
    def gateway
      @env['GATEWAY_INTERFACE']
    end
 
    # ==== Returns
    # String:: The accepted response types. Defaults to "*/*".
    def accept
      @env['HTTP_ACCEPT'].blank? ? "*/*" : @env['HTTP_ACCEPT']
    end
 
    # ==== Returns
    # String:: The HTTP connection.
    def connection
      @env['HTTP_CONNECTION']
    end
 
    # ==== Returns
    # String:: The query string.
    def query_string
      @env['QUERY_STRING']
    end
 
    # ==== Returns
    # String:: The request content type.
    def content_type
      @env['CONTENT_TYPE']
    end
 
    # ==== Returns
    # Fixnum:: The request content length.
    def content_length
      @content_length ||= @env[Merb::Const::CONTENT_LENGTH].to_i
    end
    
    # ==== Returns
    # String::
    # The URI without the query string. Strips trailing "/" and reduces
    # duplicate "/" to a single "/".
    def path
      path = (uri.empty? ? '/' : uri.split('?').first).squeeze("/")
      path = path[0..-2] if (path[-1] == ?/) && path.size > 1
      path
    end
    
    # ==== Returns
    # String:: The path info.
    def path_info
      @path_info ||= self.class.unescape(@env['PATH_INFO'])
    end
    
    # ==== Returns
    # Fixnum:: The server port.
    def port
      @env['SERVER_PORT'].to_i
    end
    
    # ==== Returns
    # String:: The full hostname including the port.
    def host
      @env['HTTP_X_FORWARDED_HOST'] || @env['HTTP_HOST']
    end
    
    # ==== Parameters
    # tld_length<Fixnum>::
    # Number of domains levels to inlclude in the top level domain. Defaults
    # to 1.
    #
    # ==== Returns
    # Array:: All the subdomain parts of the host.
    def subdomains(tld_length = 1)
      parts = host.split('.')
      parts[0..-(tld_length+2)]
    end
    
    # ==== Parameters
    # tld_length<Fixnum>::
    # Number of domains levels to inlclude in the top level domain. Defaults
    # to 1.
    #
    # ==== Returns
    # String:: The full domain name without the port number.
    def domain(tld_length = 1)
      host.split('.').last(1 + tld_length).join('.').sub(/:\d+$/,'')
    end
    
    class << self
      
      # ==== Parameters
      # value<Array, Hash, ~to_s>:: The value for the query string.
      # prefix<~to_s>:: The prefix to add to the query string keys.
      #
      # ==== Returns
      # String:: The query string.
      #
      # ==== Alternatives
      # If the value is a string, the prefix will be used as the key.
      #
      # ==== Examples
      # params_to_query_string(10, "page")
      # # => "page=10"
      # params_to_query_string({ :page => 10, :word => "ruby" })
      # # => "page=10&word=ruby"
      # params_to_query_string({ :page => 10, :word => "ruby" }, "search")
      # # => "search[page]=10&search[word]=ruby"
      # params_to_query_string([ "ice-cream", "cake" ], "shopping_list")
      # # => "shopping_list[]=ice-cream&shopping_list[]=cake"
      def params_to_query_string(value, prefix = nil)
        case value
        when Array
          value.map { |v|
            params_to_query_string(v, "#{prefix}[]")
          } * "&"
        when Hash
          value.map { |k, v|
            params_to_query_string(v, prefix ? "#{prefix}[#{Merb::Request.escape(k)}]" : Merb::Request.escape(k))
          } * "&"
        else
          "#{prefix}=#{Merb::Request.escape(value)}"
        end
      end
      
      # ==== Parameters
      # s<String>:: String to URL escape.
      #
      # ==== returns
      # String:: The escaped string.
      def escape(s)
        s.to_s.gsub(/([^ a-zA-Z0-9_.-]+)/n) {
          '%'+$1.unpack('H2'*$1.size).join('%').upcase
        }.tr(' ', '+')
      end
 
      # ==== Parameter
      # s<String>:: String to URL unescape.
      #
      # ==== returns
      # String:: The unescaped string.
      def unescape(s)
        s.tr('+', ' ').gsub(/((?:%[0-9a-fA-F]{2})+)/n){
          [$1.delete('%')].pack('H*')
        }
      end
      
      # ==== Parameters
      # qs<String>:: The query string.
      # d<String>:: The query string divider. Defaults to "&".
      #
      # ==== Returns
      # Mash:: The parsed query string.
      #
      # ==== Examples
      # query_parse("bar=nik&post[body]=heya")
      # # => { :bar => "nik", :post => { :body => "heya" } }
      def query_parse(qs, d = '&;')
        (qs||'').split(/[#{d}] */n).inject({}) { |h,p|
          key, value = unescape(p).split('=',2)
          normalize_params(h, key, value)
        }.to_mash
      end
    
      NAME_REGEX = /Content-Disposition:.* name="?([^\";]*)"?/ni.freeze
      CONTENT_TYPE_REGEX = /Content-Type: (.*)\r\n/ni.freeze
      FILENAME_REGEX = /Content-Disposition:.* filename="?([^\";]*)"?/ni.freeze
      CRLF = "\r\n".freeze
      EOL = CRLF
 
      # ==== Parameters
      # request<IO>:: The raw request.
      # boundary<String>:: The boundary string.
      # content_length<Fixnum>:: The length of the content.
      #
      # ==== Raises
      # ControllerExceptions::MultiPartParseError:: Failed to parse request.
      #
      # ==== Returns
      # Hash:: The parsed request.
      def parse_multipart(request, boundary, content_length)
        boundary = "--#{boundary}"
        paramhsh = {}
        buf = ""
        input = request
        input.binmode if defined? input.binmode
        boundary_size = boundary.size + EOL.size
        bufsize = 16384
        content_length -= boundary_size
        status = input.read(boundary_size)
        raise ControllerExceptions::MultiPartParseError, "bad content body:\n'#{status}' should == '#{boundary + EOL}'" unless status == boundary + EOL
        rx = /(?:#{EOL})?#{Regexp.quote(boundary,'n')}(#{EOL}|--)/
        loop {
          head = nil
          body = ''
          filename = content_type = name = nil
          read_size = 0
          until head && buf =~ rx
            i = buf.index("\r\n\r\n")
            if( i == nil && read_size == 0 && content_length == 0 )
              content_length = -1
              break
            end
            if !head && i
              head = buf.slice!(0, i+2) # First \r\n
              buf.slice!(0, 2) # Second \r\n
              filename = head[FILENAME_REGEX, 1]
              content_type = head[CONTENT_TYPE_REGEX, 1]
              name = head[NAME_REGEX, 1]
            
              if filename && !filename.empty?
                body = Tempfile.new(:Merb)
                body.binmode if defined? body.binmode
              end
              next
            end
          
            # Save the read body part.
            if head && (boundary_size+4 < buf.size)
              body << buf.slice!(0, buf.size - (boundary_size+4))
            end
          
            read_size = bufsize < content_length ? bufsize : content_length
            if( read_size > 0 )
              c = input.read(read_size)
              raise ControllerExceptions::MultiPartParseError, "bad content body" if c.nil? || c.empty?
              buf << c
              content_length -= c.size
            end
          end
        
          # Save the rest.
          if i = buf.index(rx)
            body << buf.slice!(0, i)
            buf.slice!(0, boundary_size+2)
          
            content_length = -1 if $1 == "--"
          end
        
          if filename && !filename.empty?
            body.rewind
            data = {
              :filename => File.basename(filename),
              :content_type => content_type,
              :tempfile => body,
              :size => File.size(body.path)
            }
          else
            data = body
          end
          paramhsh = normalize_params(paramhsh,name,data)
          break if buf.empty? || content_length == -1
        }
        paramhsh
      end
 
      # Converts a query string snippet to a hash and adds it to existing
      # parameters.
      #
      # ==== Parameters
      # parms<Hash>:: Parameters to add the normalized parameters to.
      # name<String>:: The key of the parameter to normalize.
      # val<String>:: The value of the parameter.
      #
      # ==== Returns
      # Hash:: Normalized parameters
      def normalize_params(parms, name, val=nil)
        name =~ %r([\[\]]*([^\[\]]+)\]*)
        key = $1 || ''
        after = $' || ''
        
        if after == ""
          parms[key] = val
        elsif after == "[]"
          (parms[key] ||= []) << val
        else
          parms[key] ||= {}
          parms[key] = normalize_params(parms[key], after, val)
        end
        parms
      end
    end
  end
end