File: fcgi_patch.rb

package info (click to toggle)
tdiary 5.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,088 kB
  • sloc: ruby: 23,031; javascript: 1,029; xml: 325; makefile: 26; sh: 4
file content (89 lines) | stat: -rw-r--r-- 2,174 bytes parent folder | download | duplicates (6)
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
=begin

Patched version of FCGI::each_cgi from fcgi-0.8.8.
* if encoding error happens with UTF-8, try Shift_JIS.

Original copyright notices:
  fastcgi.rb Copyright (C) 2001 Eli Green
  fcgi.rb    Copyright (C) 2002-2003 MoonWolf <moonwolf@moonwolf.com>
  fcgi.rb    Copyright (C) 2004 Minero Aoki

Patch written by:
  Copyright (C) 2011 Kazuhiko <kazuhiko@fdiary.net>

=end

class FCGI
  def self::each_cgi(*args)
    require 'cgi'

    eval(<<-EOS,TOPLEVEL_BINDING)
    class CGI
      public :env_table
      def self::remove_params
        if (const_defined?(:CGI_PARAMS))
          remove_const(:CGI_PARAMS)
          remove_const(:CGI_COOKIES)
        end
      end
    end # ::CGI class

    class FCGI
      class CGI < ::CGI
        def initialize(request, *args)
          ::CGI.remove_params
          @request = request
          # PATCH BEGIN : if encoding error happens with UTF-8, try
          #               Shift_JIS.
          encoding_error = {}
          super(*(args+[:accept_charset => "UTF-8"]))  do |name, value|
            encoding_error[name] = value
          end
          params = @params
          unless encoding_error.empty?
            super(*(args+[:accept_charset => "Shift_JIS"]))
            @params = params
          end
          # PATCH END : if encoding error happens with UTF-8, try
          #             Shift_JIS.
          @args = *args
        end
        def args
          @args
        end
        def env_table
          @request.env
        end
        def stdinput
          @request.in
        end
        def stdoutput
          @request.out
        end
      end # FCGI::CGI class
    end # FCGI class
    EOS

    if FCGI::is_cgi?
      yield ::CGI.new(*args)
    else
      FCGI::each {|request|
        $stdout, $stderr = request.out, request.err

        yield CGI.new(request, *args)

        request.finish
      }
    end
  end
end

# The following indentation rule is not same as tDiary's by intention.
# It is same as the original (fcgi-0.8.8/lib/fcgi.rb) so that we can
# easily see the difference by diff command.

# Local Variables:
# mode: ruby
# indent-tabs-mode: nil
# ruby-indent-level: 2
# End: