Sha256: f1e0405d419899b128838e1e78389923a730a9655ea490c5f07a564a38225b92

Contents?: true

Size: 1.59 KB

Versions: 26

Compression:

Stored size: 1.59 KB

Contents

module Troy
  class Server
    attr_reader :root, :request

    def initialize(root)
      @root = Pathname.new(root)
    end

    def call(env)
      @request = Rack::Request.new(env)
      process
    end

    def render(status, content_type, path)
      last_modified = path.mtime.httpdate
      return [304, {}, []] if request.env["HTTP_IF_MODIFIED_SINCE"] == last_modified

      headers = {
        "Content-Type" => content_type,
        "Last-Modified" => last_modified
      }

      content = request.head? ? [] : [path.read]

      [status, headers, content]
    end

    def normalized_path
      path = request.path.gsub(%r[/$], "")
      path << "?#{request.query_string}" unless request.query_string.empty?
      path
    end

    def redirect(path)
      [301, {"Content-Type" => "text/html", "Location" => path}, []]
    end

    def process
      path = request.path[%r[^/(.*?)/?$], 1]
      path = "index" if path == ""
      path = root.join(path)

      if request.path != "/" && request.path.end_with?("/")
        redirect normalized_path
      elsif (_path = Pathname.new("#{path}.html")).file?
        render(200, "text/html; charset=utf-8", _path)
      elsif (_path = Pathname.new("#{path}.xml")).file?
        render(200, "text/xml; charset=utf-8", _path)
      elsif path.file? && path.extname !~ /\.(html?|xml)$/
        render(200, Rack::Mime.mime_type(path.extname, "text/plain"), path)
      else
        render(404, "text/html; charset=utf-8", root.join("404.html"))
      end
    rescue Exception => error
      render(500, "text/html; charset=utf-8", root.join("500.html"))
    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
troy-0.0.11 lib/troy/server.rb
troy-0.0.10 lib/troy/server.rb
troy-0.0.9 lib/troy/server.rb
troy-0.0.8 lib/troy/server.rb
troy-0.0.7 lib/troy/server.rb
troy-0.0.6 lib/troy/server.rb