summaryrefslogtreecommitdiff
path: root/contrib/index.cgi
blob: d9dd132b0469d1bdeb03ccafff1e83ec0fc1a046 (plain)
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
#!/usr/bin/env ruby

###
### CGI script to handle *.rhtml with Erubis
###
### Licsense: same as Erubis
###

## add directory path where Erubis installed
#$LOAD_PATH << "/home/yourname/lib/ruby"

## load Erubis
begin
  require 'erubis'
  include Erubis::XmlHelper
rescue LoadError => ex
  print "Status: 500 Internal Server Error\r\n"
  print "Content-Type: text/plain\r\n"
  print "\r\n"
  print "ERROR: #{ex.message}"
  exit
end

## configuration
ERUBY = Erubis::Eruby   # or Erubis::EscapeEruby
@encoding = nil
@layout = '_layout.rhtml'

## helper class to represent http error
class HttpError < Exception
  attr_accessor :status
  def initialize(status, message)
    super(message)
    @status = status
  end
end


## main
begin

  ## check environment variables
  document_root = ENV['DOCUMENT_ROOT']  or raise "ENV['DOCUMENT_ROOT'] is not set."
  request_uri   = ENV['REQUEST_URI']    or raise "ENV['REQUEST_URI'] is not set."
  ## get filepath
  basepath = request_uri.split(/\?/, 2).first
  filepath = File.join(document_root, basepath)
  filepath.gsub!(/\.html\z/, '.rhtml')  or  # expected '*.html'
    raise HttpError.new('500 Internal Error', 'invalid .htaccess configuration.')
  File.file?(filepath)  or                  # file not found
    raise HttpError.new('404 Not Found', "#{basepath}: not found.")
  basepath != ENV['SCRIPT_NAME']  or        # can't access to index.cgi
    raise HttpError.new('403 Forbidden', "#{basepath}: not accessable.")
  ## process as eRuby file
  eruby = ERUBY.load_file(filepath)         # or ERUBY.new(File.read(filepath))
  html  = eruby.result()
  ## use layout template
  if @layout && File.file?(@layout)
    @content = html
    html = ERUBY.load_file(@layout).result()
  end
  ## send response
  print @encoding \
      ? "Content-Type: text/html; charset=#{@encoding}\r\n" \
      : "Content-Type: text/html\r\n"
  print "Content-Length: #{html.length}\r\n"
  print "\r\n"
  print html

rescue HttpError => ex
  ## handle http error (such as 404 Not Found)
  print "Status: #{ex.status}\r\n"
  print "Content-Type: text/html\r\n"
  print "\r\n"
  print "<h2>#{h(ex.status)}</h2>\n"
  print "<p>#{h(ex.message)}</p>"

rescue Exception => ex
  ## print exception backtrace
  print "Status: 500 Internal Server Error\r\n"
  print "Content-Type: text/html\r\n"
  print "\r\n"
  arr = ex.backtrace
  print   "<pre>\n"
  print   "<b>#{h(arr[0])}: #{h(ex.message)} (#{h(ex.class.name)})</b>\n"
  arr[1..-1].each do |item|
    print "        from #{h(item)}\n"
  end
  print   "</pre>\n"

end