Compare commits

..

No commits in common. "9c9ceaf4f8e479bc24eff9cf42c281276a4ad9dc" and "9ba3bddc9645d245f440c6406da4fb58f6f2fc35" have entirely different histories.

11 changed files with 23 additions and 70 deletions

View File

@ -13,9 +13,9 @@ app = Hyde::Server.new do
postprocess do |request, response|
puts "Request: #{request}, response: #{response}"
end
index ["index.html"]
index ["index"]
root "#{ENV['PWD']}/assets"
serve "/**/*.(html|css|js)"
serve "*.(html|css|js)"
get "/wormhole/:test/*" do |suffix, test: nil|
<<~RESPONSE
You tried accessing #{suffix} at named param #{test}

View File

@ -1,13 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title> Cleverly done, mr. freeman </title>
</head>
<body>
<h1>Cleverly done, mr. freeman</h1>
<hr/>
<p>But you are not supposed to be here</p>
<p><b>Get back where you belong.</b></p>
</body>
</html>

View File

@ -21,13 +21,16 @@ module Hyde
# Set root path (appends matched part of the path).
# @param path [String
def root(path)
raise StandardError, "path should be a String" unless path.is_a? String
@origin.root = path
end
# Set root path (without appending matched part).
# @param path [String
def remap(path)
@origin.remap = path
root(path)
@origin.remap = true
end
# Add a preprocessor to the path.

View File

@ -9,29 +9,12 @@ module Hyde
# @abstract
class Node
# @param path [Object]
def initialize(path, parent:)
def initialize(path)
@pattern = Pattern.new(path).freeze
@properties = Hyde::Util::Lookup.new(parent&.properties)
@root = nil
@remap = false
end
# Set Node file root (like root in Nginx)
# @param path [String]
def root=(path)
raise StandardError, "path should be a String" unless path.is_a? String
@properties["path"] = File.expand_path(path)
@root = File.expand_path(path)
end
# Set Node absolute file path (like alias in Nginx)
# @param path [String]
def remap=(path)
self.root = path
@remap = true
end
# Try to navigate the path. Run method callback in response.
# @param [Hyde::Request]
# @return [Boolean]
@ -66,7 +49,7 @@ module Hyde
true
end
attr_reader :remap, :root
attr_accessor :remap, :root
private

View File

@ -25,9 +25,11 @@ module Hyde
# @param parent [Hyde::Node] Parent object to inherit properties to
# @param setup [#call] Setup block
def initialize(path, parent:, &setup)
super(path, parent: parent)
super(path)
# Child nodes array
@children = []
# Inherited properties array
@properties = Hyde::Util::Lookup.new(parent&.properties)
# Arrays of preprocessors, postprocessors and filters
@preprocessors = []
@postprocessors = []

View File

@ -100,12 +100,11 @@ module Hyde
private
# i shall name thee Norxondor Glorbulon
# Regexp pattern to match glob tokens
TOKENS = /
( # Glob-specific tokens
(?<=(?:\/|^))\*\*(?:\/|$) | # Freestanding globstar
\/\*\*\/ | # Freestanding globstar
\*\* | # Attached globstar
\* | # Regular glob
\[!?\w-\w\]\+ | # Character group
(?<=\/):[\w_]+(?=(?:\/|$)) | # Named glob
@ -154,7 +153,8 @@ module Hyde
def build_regexp(tokens)
Regexp.new(tokens.map do |filter|
case filter
when /(\/|^)\*\*(\/|$)/ then "(?:(.*)/|)" # FIXME: this may return nil
when "/**/" then "/(?:(.*)\/|)" # FIXME: this may return nil
when "**" then "(.*)"
when "*" then "([^/]*)"
when /^\([\w\/|_-]+\)$/ then filter.sub('-', '\\-')
when /^\[!?\w-\w\]\+$/ then filter.sub('!', '^')

View File

@ -21,7 +21,8 @@ module Hyde
# @param path [Object]
# @param parent [Hyde::Node]
def initialize(path, parent:)
super(path, parent: parent)
super(path)
@properties = Hyde::Util::Lookup.new(parent&.properties)
end
attr_reader :properties

View File

@ -20,10 +20,7 @@ module Hyde
# @param request [Hyde::Request]
# @return [Boolean] true if file was found
def process(request)
path = File.expand_path(request.filepath)
return unless path.start_with? @properties["path"]
File.open(path.delete_suffix("/"))
File.open(request.filepath.delete_suffix("/"))
rescue StandardError
false
end

View File

@ -15,7 +15,7 @@ module Hyde
@param = {}
@splat = []
# Traversal route. Public and writable.
@path = URI.decode_www_form_component(env["PATH_INFO"].dup)
@path = env["PATH_INFO"].dup
# File serving path. Public and writable.
@filepath = "/"
# Encapsulates all rack variables. Should not be public.

View File

@ -28,9 +28,10 @@ module Hyde
"content-type": "text/html"
}
[headers, page]
end,
"path" => "/"
}.each { |k, v| @properties[k] = v unless @properties[k] }
end
}.each do |k, v|
@properties[k] = v unless @properties[k]
end
end
# Rack ingress point.

View File

@ -69,27 +69,6 @@ class TestGlob < Test::Unit::TestCase
puts("Testing: #{test}")
assert_equal(result, unit.match?(test))
end
unit = Glob.new("**/*.php")
[
"archive.php", true,
"assets/thing.js", false,
"assetsthing.js", false,
"parts/thing.php", true,
"partsthing.php", true,
".php", true,
"parts/extra/test.php", true,
"archive.php", true,
"assets/thing.js", false,
"assetsthing.js", false,
"parts/thing.php", true,
"partsthing.php", true,
".php", true,
"parts/extra/test.php", true,
"parts/extra/test.php/literally/anything/here", true
].each_slice(2) do |test, result|
puts("Testing: #{test}")
assert_equal(result, unit.match?(test))
end
puts "Test group: char ranges"
unit = Glob.new("/test/[9-z]+")
[