rackr 0.0.49 → 0.0.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f92461b0ae4b6cab185bc30a250bc4155995b75509c66303abdf4cc1448770aa
4
- data.tar.gz: d5e3ac4c8555803763a3dcb9b1db3f0d6659e5b5be63dc23624cab75b15d8bb5
3
+ metadata.gz: 5349fb78d9228c927c1a13e4870dbe7797ed9dd9f2c6e6868c48ea21cb6a30d1
4
+ data.tar.gz: e343559e578fff15af1d85254d315f6999ca119fc9452899cc0b0d04835638be
5
5
  SHA512:
6
- metadata.gz: 37a468ee044c2628c810e783735d19bef979ed8ddbe1b62c52e856f992a9cf731b4e25f0785eb2570f47438ab43f4ed1842011aa570b85a5d786f65f1b0cfe7e
7
- data.tar.gz: 253aff88e9aa466796f7657477c1fef6fe43c2b743a8400e9fca31a66667144c52eca7a981b65fb07f58f4ff89e67ee79f569a6ac8f7ea535c774806d187152b
6
+ metadata.gz: 2485768ddeba8f7460bc3d1cef02e3b931f0d3ff611d2418601298e73c62d114e8c9fb559f1e75dbd3788c8a64b3cb170c6a1d8118aec0246c03bcc818a5f89d
7
+ data.tar.gz: 55a73f398a954e32c9c4b83f3ff131ce57b80ac1da445c199d32a413f47ab877ebbdba5b70e3a06d1cb7cf90ff4280cb7db59d6fbaefdcb5843cdb0727e3187e
data/lib/rackr/action.rb CHANGED
@@ -16,211 +16,142 @@ class Rackr
16
16
  @db = config[:db]
17
17
  end
18
18
 
19
- def view_response(a_path, a_view_params = {}, status: 200, headers: {})
20
- Rackr::Action.view_response(
21
- a_path,
22
- a_view_params,
19
+ def view_response(
20
+ paths,
21
+ status: 200,
22
+ headers: {},
23
+ layout_path: 'layout'
24
+ )
25
+ view(
26
+ paths,
23
27
  status: status,
24
28
  headers: headers,
25
- config: config,
26
- routes: routes,
27
- db: db
29
+ layout_path: layout_path,
30
+ response_instance: true
28
31
  )
29
32
  end
30
33
 
31
34
  def view(
32
- a_path, a_view_params = {}, status: 200, response_instance: false, headers: {}
35
+ paths,
36
+ status: 200,
37
+ headers: {},
38
+ layout_path: 'layout',
39
+ response_instance: false
33
40
  )
34
- Rackr::Action.view(
35
- a_path,
36
- a_view_params,
37
- status: status,
38
- headers: headers,
39
- config: config,
40
- routes: routes,
41
- db: db,
42
- response_instance: response_instance
43
- )
41
+ base_path = config.dig(:views, :path) || 'views'
42
+
43
+ file_or_nil = lambda do |path|
44
+ ::File.read(path)
45
+ rescue Errno::ENOENT
46
+ nil
47
+ end
48
+
49
+ file_content = if paths.is_a?(Array)
50
+ paths.map { |path| ::File.read("#{base_path}/#{path}.html.erb") }.join
51
+ else
52
+ ::File.read("#{base_path}/#{paths}.html.erb")
53
+ end
54
+
55
+ layout_content = file_or_nil.("#{base_path}/#{layout_path}.html.erb")
56
+
57
+ parsed_erb =
58
+ if layout_content
59
+ erb(layout_content) do
60
+ erb(file_content, binding_context: binding)
61
+ end
62
+ else
63
+ erb(file_content, binding_context: binding)
64
+ end
65
+
66
+ if response_instance
67
+ return Rack::Response.new(
68
+ parsed_erb,
69
+ status,
70
+ { 'content-type' => 'text/html' }.merge(headers)
71
+ )
72
+ end
73
+
74
+ [status, { 'content-type' => 'text/html' }.merge(headers), [parsed_erb]]
44
75
  end
45
76
  end
46
77
  end
47
78
 
48
- def layout(layout_path, file_path)
49
- Rackr::Action.layout(layout_path, file_path)
50
- end
79
+ def html(content = '', status: 200, headers: {}, &block)
80
+ if content == '' && block_given? && respond_to?(:html_slice)
81
+ if respond_to?(:layout)
82
+ content = layout(&block)
83
+ else
84
+ html_layout(&block)
85
+ content = html_slice
86
+ end
87
+ end
51
88
 
52
- def html(content, status: 200, headers: {})
53
- Rackr::Action.html(content, status: status, headers: headers)
89
+ [status, { 'content-type' => 'text/html' }.merge(headers), [content]]
54
90
  end
55
91
 
56
- def html_response(content, status: 200)
57
- Rackr::Action.html_response(content, status: status, headers: headers)
92
+ def html_response(content = '', status: 200, headers: {}, &block)
93
+ if content == '' && block_given? && respond_to?(:html_slice)
94
+ if respond_to?(:layout)
95
+ content = layout(&block)
96
+ else
97
+ html_layout(&block)
98
+ content = html_slice
99
+ end
100
+ end
101
+
102
+ Rack::Response.new(content, status, { 'content-type' => 'text/html' }.merge(headers))
58
103
  end
59
104
 
60
105
  def json(content = {}, status: 200, headers: {})
61
- Rackr::Action.json(content, status: status, headers: headers)
106
+ [status, { 'content-type' => 'application/json' }.merge(headers), [Oj.dump(content, mode: :compat)]]
62
107
  end
63
108
 
64
109
  def json_response(content = {}, status: 200, headers: {})
65
- Rackr::Action.json_response(content, status: status, headers: headers)
110
+ Rack::Response.new(
111
+ Oj.dump(content, mode: :compat),
112
+ status,
113
+ { 'content-type' => 'application/json' }.merge(headers)
114
+ )
66
115
  end
67
116
 
68
117
  def text(content, status: 200, headers: {})
69
- Rackr::Action.text(content, status: status, headers: headers)
118
+ [status, { 'content-type' => 'text/plain' }.merge(headers), [content]]
70
119
  end
71
120
 
72
121
  def text_response(content, status: 200, headers: {})
73
- Rackr::Action.text_response(content, status: status, headers: headers)
122
+ Rack::Response.new(
123
+ content,
124
+ status,
125
+ { 'content-type' => 'text/plain' }.merge(headers)
126
+ )
127
+ end
128
+
129
+ def erb(content, binding_context: nil, &block)
130
+ eval(Erubi::Engine.new(content).src, binding_context)
74
131
  end
75
132
 
76
- def erb(content, view_params = {})
77
- Rackr::Action.erb(content, view_params)
133
+ def head(status, headers: {})
134
+ [status, headers, []]
135
+ end
136
+
137
+ def head_response(status, headers: {})
138
+ Rack::Response.new(nil, status, headers)
78
139
  end
79
140
 
80
141
  def redirect_response(url, headers: {})
81
- Rackr::Action.redirect_response(url, headers: headers, headers: headers)
142
+ Rack::Response.new(
143
+ nil,
144
+ 302,
145
+ { 'location' => url }.merge(headers)
146
+ )
82
147
  end
83
148
 
84
149
  def redirect_to(url, headers: {})
85
- Rackr::Action.redirect_to(url, headers: headers, headers: headers)
150
+ [302, { 'location' => url }.merge(headers), []]
86
151
  end
87
152
 
88
153
  def response(body = nil, status = 200, headers = {})
89
154
  Rack::Response.new(body, status, headers)
90
155
  end
91
-
92
- class << self
93
- def view_response(
94
- paths,
95
- view_params = {},
96
- status: 200,
97
- headers: {},
98
- config: {},
99
- routes: nil,
100
- db: nil
101
- )
102
- view(
103
- paths,
104
- view_params,
105
- status: status,
106
- config: config,
107
- routes: routes,
108
- headers: headers,
109
- db: db,
110
- response_instance: true
111
- )
112
- end
113
-
114
- def view(
115
- paths,
116
- view_params = {},
117
- status: 200,
118
- headers: {},
119
- config: {},
120
- routes: nil,
121
- db: nil,
122
- response_instance: false
123
- )
124
- base_path = config.dig(:views, :path) || 'views'
125
-
126
- file_or_nil = lambda do |path|
127
- ::File.read(path)
128
- rescue Errno::ENOENT
129
- nil
130
- end
131
-
132
- file_content = if paths.is_a?(Array)
133
- paths.map { |path| ::File.read("#{base_path}/#{path}.html.erb") }.join
134
- else
135
- ::File.read("#{base_path}/#{paths}.html.erb")
136
- end
137
-
138
- erb = erb(
139
- [
140
- file_or_nil.call("#{base_path}/layout/_header.html.erb"),
141
- file_content,
142
- file_or_nil.call("#{base_path}/layout/_footer.html.erb")
143
- ].join,
144
- view_params,
145
- config: config,
146
- routes: routes,
147
- db: db
148
- )
149
-
150
- if response_instance
151
- return Rack::Response.new(
152
- erb,
153
- status,
154
- { 'Content-Type' => 'text/html' }.merge(headers)
155
- )
156
- end
157
-
158
- [status, { 'Content-Type' => 'text/html' }.merge(headers), [erb]]
159
- end
160
-
161
- def layout(layout_path, file_path)
162
- [
163
- "layout/#{layout_path}/_header",
164
- file_path,
165
- "layout/#{layout_path}/_footer"
166
- ]
167
- end
168
-
169
- def html(content, status: 200, headers: {})
170
- [status, { 'Content-Type' => 'text/html' }.merge(headers), [content]]
171
- end
172
-
173
- def html_response(content, status: 200, headers: {})
174
- Rack::Response.new(content, status, { 'Content-Type' => 'text/html' }.merge(headers))
175
- end
176
-
177
- def json(content = {}, status: 200, headers: {})
178
- [status, { 'Content-Type' => 'application/json' }.merge(headers), [Oj.dump(content, mode: :compat)]]
179
- end
180
-
181
- def json_response(content = {}, status: 200, headers: {})
182
- Rack::Response.new(
183
- Oj.dump(content, mode: :compat),
184
- status,
185
- { 'Content-Type' => 'application/json' }.merge(headers)
186
- )
187
- end
188
-
189
- def text(content, status: 200, headers: {})
190
- [status, { 'Content-Type' => 'text/plain' }.merge(headers), [content]]
191
- end
192
-
193
- def text_response(content, status: 200, headers: {})
194
- Rack::Response.new(
195
- content,
196
- status,
197
- { 'Content-Type' => 'text/plain' }.merge(headers)
198
- )
199
- end
200
-
201
- # rubocop:disable Lint/UnusedMethodArgument
202
- def erb(content, view_params = {}, config: nil, routes: nil, db: nil)
203
- @view = OpenStruct.new(view_params)
204
-
205
- eval(Erubi::Engine.new(content).src)
206
- end
207
- # rubocop:enable Lint/UnusedMethodArgument
208
-
209
- def redirect_response(url, headers: {})
210
- Rack::Response.new(
211
- nil,
212
- 302,
213
- { 'Location' => url }.merge(headers)
214
- )
215
- end
216
-
217
- def redirect_to(url, headers: {})
218
- [302, { 'Location' => url }.merge(headers), []]
219
- end
220
-
221
- def response(body = nil, status = 200, headers = {})
222
- Rack::Response.new(body, status, headers)
223
- end
224
- end
225
156
  end
226
157
  end
data/lib/rackr/html.rb ADDED
@@ -0,0 +1,7 @@
1
+ class Rackr
2
+ module HTML
3
+ def self.included(base)
4
+ base.class_eval { include ::HtmlSlice }
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,96 @@
1
+ class Rackr
2
+ class Router
3
+ module Errors
4
+ class DevHtml
5
+ include Rackr::Action
6
+ include Rackr::HTML
7
+
8
+ def call(env)
9
+ html do
10
+ tag :head do
11
+ title 'Application error'
12
+ tag :style, %q(
13
+ body {
14
+ margin: 0 auto;
15
+ width: 98.5%;
16
+ font-size: 1.1em;
17
+ background-color: #666666;
18
+ font-family: monospace;
19
+ margin-top: 1em;
20
+ }
21
+ p {
22
+ background-color: #000000;
23
+ padding: 1em;
24
+ font-size: 1.3em;
25
+ }
26
+ div {
27
+ background-color: #191919;
28
+ color: white;
29
+ padding: 0em 2em;
30
+ border: 5px solid #ffffff;
31
+ border-radius: 1em;
32
+ }
33
+ h1 {
34
+ background-color: #464646;
35
+ padding: 1em;
36
+ border-radius: 0.2em;
37
+ }
38
+ )
39
+ end
40
+ tag :body do
41
+ div do
42
+ h1 env['error'].inspect
43
+ backtrace(env)
44
+ end
45
+ end
46
+ end
47
+ end
48
+
49
+ def backtrace(env)
50
+ first, *tail = env['error'].backtrace
51
+
52
+ tag :p, first, class: "first-p"
53
+
54
+ line_number = extract_line_number(first)
55
+ match = first.match(%r{^(\/[\w\/.-]+)})
56
+ file_path = (match ? match[1] : nil)
57
+ if file_path != nil
58
+ lines = []
59
+ File.open(file_path) do |file|
60
+ lines = file.readlines
61
+ end
62
+
63
+ lines.map!.with_index do |line, i|
64
+ "#{i+1}: #{line} \n"
65
+ end
66
+
67
+ tag :pre, slice_around_index(lines, line_number).join("")
68
+ end
69
+
70
+ hr
71
+ tag :p, tail.join("\n")
72
+ end
73
+
74
+
75
+ def extract_line_number(input)
76
+ if match = input.match(/:(\d+):in/)
77
+ match[1].to_i
78
+ else
79
+ nil
80
+ end
81
+ end
82
+
83
+ def slice_around_index(array, index)
84
+ return array if index == nil || index < 1
85
+
86
+ index -= 1
87
+ start_index = [index - 2, 0].max
88
+ end_index = [index + 2, array.size - 1].min
89
+
90
+ # Slice the array
91
+ array[start_index..end_index]
92
+ end
93
+ end
94
+ end
95
+ end
96
+ end
@@ -12,10 +12,16 @@ class Rackr
12
12
  class InvalidBranchNameError < Error; end
13
13
 
14
14
  class << self
15
- def check_branch_name(path)
16
- return if path.is_a?(String) || path.is_a?(Symbol)
15
+ def check_scope_name(path)
16
+ return if path.is_a?(String) || path.is_a?(Symbol) || path == nil
17
17
 
18
- raise(InvalidBranchNameError, "Route branch name must be a `string` or a `symbol`, got: '#{path}'")
18
+ raise(InvalidBranchNameError, "Route scope name must be a `string` or a `symbol`, got: '#{path}'")
19
+ end
20
+
21
+ def check_scope_slashes(path)
22
+ if path.is_a?(String) && path.include?('/')
23
+ raise(InvalidBranchNameError, "Avoid slashes in scope name, use nested scopes instead, got: '#{path}'")
24
+ end
19
25
  end
20
26
 
21
27
  def check_path(path)
@@ -28,7 +34,7 @@ class Rackr
28
34
  return if as.is_a?(String) || as.is_a?(Symbol) || as.nil?
29
35
 
30
36
  raise(InvalidNamedRouteError,
31
- "as: argument in routes and branches must be a `string` or a `symbol`, got: '#{as}' for '#{path}'")
37
+ "as: argument in routes and scopes must be a `string` or a `symbol`, got: '#{as}' for '#{path}'")
32
38
  end
33
39
 
34
40
  def check_callbacks(callbacks, path)
@@ -9,7 +9,7 @@ class Rackr
9
9
  :has_afters,
10
10
  :afters
11
11
 
12
- def initialize(path, endpoint, befores: [], afters: [])
12
+ def initialize(path, endpoint, befores: [], afters: [], wildcard: false)
13
13
  @path = path
14
14
  @splitted_path = @path.split('/')
15
15
  @endpoint = endpoint
@@ -20,12 +20,14 @@ class Rackr
20
20
  @afters = afters
21
21
  @has_afters = afters != []
22
22
  @path_regex = /\A#{path.gsub(/(:\w+)/, '([^/]+)')}\z/
23
+ @wildcard = wildcard
23
24
  end
24
25
 
25
- def match?(env)
26
- return env['PATH_INFO'].match?(@path_regex) if @has_params
26
+ def match?(path_info)
27
+ return path_info.match?(@path_regex) if @has_params
28
+ return true if @wildcard
27
29
 
28
- env['PATH_INFO'] == @path
30
+ path_info == @path
29
31
  end
30
32
 
31
33
  private
data/lib/rackr/router.rb CHANGED
@@ -21,27 +21,29 @@ class Rackr
21
21
  raise(Errors::UndefinedNamedRouteError, "Undefined named route: '#{key}'")
22
22
  end)
23
23
  end
24
-
24
+ @dev_mode = ENV['RACK_ENV'] == 'development'
25
25
  @config = config
26
- @branches = []
26
+ @scopes = []
27
27
  @befores = ensure_array(before)
28
- @branches_befores = {}
28
+ @scopes_befores = {}
29
29
  @afters = ensure_array(after)
30
- @branches_afters = {}
30
+ @scopes_afters = {}
31
31
  @error = proc { |_req, e| raise e }
32
32
  @not_found = proc { [404, {}, ['Not found']] }
33
- @splitted_request_path = []
33
+ @splitted_request_path_info = []
34
+ @current_request_path_info = nil
34
35
  end
35
36
 
36
37
  def call(env)
37
- @splitted_request_path = env['PATH_INFO'].split('/')
38
+ @splitted_request_path_info = env['PATH_INFO'].split('/')
39
+ @current_request_path_info =
40
+ (env['PATH_INFO'] == '/') ? env['PATH_INFO'] : env['PATH_INFO'].sub(/\/\z/, '') # remove trailing "/"
38
41
 
39
- request_builder = BuildRequest.new(env, @splitted_request_path)
42
+ request_builder = BuildRequest.new(env, @splitted_request_path_info)
40
43
  env['REQUEST_METHOD'] = 'GET' if env['REQUEST_METHOD'] == 'HEAD'
41
44
 
42
45
  route_instance = match_route(env)
43
-
44
- return render_not_found(request_builder.call) if route_instance.nil?
46
+ return call_endpoint(@not_found, request_builder.call) if route_instance.nil?
45
47
 
46
48
  rack_request = request_builder.call(route_instance)
47
49
 
@@ -68,9 +70,11 @@ class Rackr
68
70
 
69
71
  endpoint_result
70
72
  rescue Rackr::NotFound
71
- render_not_found(request_builder.call)
73
+ call_endpoint(@not_found, request_builder.call)
72
74
  rescue Exception => e
73
- @error.call(request_builder.call, e)
75
+ return @error.call(request_builder.call, e) unless @dev_mode
76
+
77
+ call_endpoint(Errors::DevHtml, env.merge({'error' => e}))
74
78
  end
75
79
 
76
80
  def add(method, path, endpoint, as: nil, route_befores: [], route_afters: [])
@@ -82,18 +86,21 @@ class Rackr
82
86
 
83
87
  method = :get if method == :head
84
88
 
85
- path_with_branches = "/#{@branches.join('/')}#{put_path_slash(path)}"
86
- add_named_route(method, path_with_branches, as)
89
+ wildcard = (path == '*') ? true : false
90
+ path = path.sub(/\A\//, '')
91
+ path_with_scopes = "/#{not_empty_scopes.join('/')}#{put_path_slash(path)}"
92
+ add_named_route(method, path_with_scopes, as)
87
93
 
88
94
  route_instance =
89
95
  Route.new(
90
- path_with_branches,
96
+ path_with_scopes,
91
97
  endpoint,
92
98
  befores: @befores + ensure_array(route_befores),
93
- afters: @afters + ensure_array(route_afters)
99
+ afters: @afters + ensure_array(route_afters),
100
+ wildcard: wildcard
94
101
  )
95
102
 
96
- return push_to_branch(method.to_s.upcase, route_instance) if @branches.size >= 1
103
+ return push_to_scope(method.to_s.upcase, route_instance) if @scopes.size >= 1
97
104
 
98
105
  @instance_routes[method.to_s.upcase][:__instances].push(route_instance)
99
106
  end
@@ -110,28 +117,29 @@ class Rackr
110
117
  @error = endpoint
111
118
  end
112
119
 
113
- def append_branch(name, branch_befores: [], branch_afters: [])
114
- Errors.check_branch_name(name)
115
- Errors.check_callbacks(branch_befores, name)
116
- Errors.check_callbacks(branch_afters, name)
120
+ def append_scope(name, scope_befores: [], scope_afters: [])
121
+ Errors.check_scope_name(name)
122
+ Errors.check_scope_slashes(name)
123
+ Errors.check_callbacks(scope_befores, name)
124
+ Errors.check_callbacks(scope_afters, name)
117
125
 
118
126
  name = ":#{name}" if name.is_a? Symbol
119
127
 
120
- @branches.push(name)
128
+ @scopes.push(name)
121
129
 
122
- branch_befores = ensure_array(branch_befores)
123
- @befores.concat(branch_befores)
124
- @branches_befores[name] = branch_befores
130
+ scope_befores = ensure_array(scope_befores)
131
+ @befores.concat(scope_befores)
132
+ @scopes_befores[name] = scope_befores
125
133
 
126
- branch_afters = ensure_array(branch_afters)
127
- @afters.concat(branch_afters)
128
- @branches_afters[name] = branch_afters
134
+ scope_afters = ensure_array(scope_afters)
135
+ @afters.concat(scope_afters)
136
+ @scopes_afters[name] = scope_afters
129
137
  end
130
138
 
131
- def clear_last_branch
132
- @befores -= @branches_befores[@branches.last]
133
- @afters -= @branches_afters[@branches.last]
134
- @branches = @branches.first(@branches.size - 1)
139
+ def clear_last_scope
140
+ @befores -= @scopes_befores[@scopes.last]
141
+ @afters -= @scopes_afters[@scopes.last]
142
+ @scopes = @scopes.first(@scopes.size - 1)
135
143
  end
136
144
 
137
145
  private
@@ -153,17 +161,17 @@ class Rackr
153
161
  [list]
154
162
  end
155
163
 
156
- def add_named_route(method, path_with_branches, as)
157
- return @routes.send(method.downcase)[:root] = path_with_branches if path_with_branches == '/'
158
- return @routes.send(method.downcase)[as] = path_with_branches unless as.nil?
164
+ def add_named_route(method, path_with_scopes, as)
165
+ return @routes.send(method.downcase)[:root] = path_with_scopes if path_with_scopes == '/'
166
+ return @routes.send(method.downcase)[as] = path_with_scopes unless as.nil?
159
167
 
160
- key = path_with_branches.sub("/","").gsub(":","").gsub("/","_")
161
- @routes.send(method.downcase)["#{key}".to_sym] = path_with_branches
168
+ key = path_with_scopes.sub("/","").gsub(":","").gsub("/","_")
169
+ @routes.send(method.downcase)["#{key}".to_sym] = path_with_scopes
162
170
  end
163
171
 
164
- def push_to_branch(method, route_instance)
165
- branches_with_slash = @branches + %i[__instances]
166
- push_it(@instance_routes[method], *branches_with_slash, route_instance)
172
+ def push_to_scope(method, route_instance)
173
+ scopes_with_slash = not_empty_scopes + %i[__instances]
174
+ push_it(@instance_routes[method], *scopes_with_slash, route_instance)
167
175
  end
168
176
 
169
177
  def push_it(hash, first_key, *rest_keys, val)
@@ -176,47 +184,47 @@ class Rackr
176
184
  end
177
185
 
178
186
  def put_path_slash(path)
179
- return '' if ['/', ''].include?(path) && @branches != []
180
- return "/#{path}" if @branches != []
187
+ if not_empty_scopes != []
188
+ return '' if ['/', ''].include?(path)
189
+ return "/#{path}"
190
+ end
181
191
 
182
192
  path
183
193
  end
184
194
 
185
- def render_not_found(env)
186
- return @not_found.call(env) if @not_found.respond_to?(:call)
187
-
188
- @not_found.new.call(env)
195
+ def not_empty_scopes
196
+ @scopes.reject { |v| (v == '') }
189
197
  end
190
198
 
191
- def match_route(env, last_tail = nil, found_branches = [])
199
+ def match_route(env, last_tail = nil, found_scopes = [])
192
200
  instance_routes =
193
201
  if last_tail.nil?
194
- last_tail = @splitted_request_path.drop(1)
202
+ last_tail = @splitted_request_path_info.drop(1)
195
203
 
196
204
  @instance_routes[env['REQUEST_METHOD']]
197
205
  else
198
- @instance_routes[env['REQUEST_METHOD']].dig(*found_branches)
206
+ @instance_routes[env['REQUEST_METHOD']].dig(*found_scopes)
199
207
  end
200
208
 
201
209
  segment, *tail = last_tail
202
210
 
203
- instance_routes.each do |branch, _v|
204
- next if branch == :__instances
211
+ instance_routes.each do |scope, _v|
212
+ next if scope == :__instances
205
213
 
206
- if segment == branch || branch.start_with?(':')
207
- found_branches.push(branch)
214
+ if segment == scope || scope.start_with?(':')
215
+ found_scopes.push(scope)
208
216
  break
209
217
  end
210
218
  end
211
219
 
212
- if tail.empty? || found_branches == []
220
+ if tail.empty? || found_scopes == []
213
221
  return @instance_routes[env['REQUEST_METHOD']].dig(
214
- *(found_branches << :__instances)
222
+ *(found_scopes << :__instances)
215
223
  )
216
- &.detect { |route_instance| route_instance.match?(env) }
224
+ &.detect { |route_instance| route_instance.match?(@current_request_path_info) }
217
225
  end
218
226
 
219
- match_route(env, tail, found_branches)
227
+ match_route(env, tail, found_scopes)
220
228
  end
221
229
  end
222
230
  end
data/lib/rackr.rb CHANGED
@@ -1,8 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative 'rackr/router'
4
3
  require_relative 'rackr/action'
5
4
  require_relative 'rackr/callback'
5
+ require 'html_slice'
6
+ require_relative 'rackr/html'
7
+ require_relative 'rackr/router/errors/dev_html'
8
+ require_relative 'rackr/router'
6
9
 
7
10
  class Rackr
8
11
  class NotFound < StandardError; end
@@ -10,6 +13,7 @@ class Rackr
10
13
  HTTP_METHODS = %w[GET POST DELETE PUT TRACE OPTIONS PATCH]
11
14
 
12
15
  include Action
16
+ include HTML
13
17
 
14
18
  def initialize(config = {}, before: [], after: [])
15
19
  @router = Router.new(config, before: before, after: after)
@@ -33,15 +37,15 @@ class Rackr
33
37
  @router.config[:db]
34
38
  end
35
39
 
36
- def r(name, before: [], after: [], &block)
37
- @router.append_branch(
40
+ def scope(name = '', before: [], after: [], &block)
41
+ @router.append_scope(
38
42
  name,
39
- branch_befores: before,
40
- branch_afters: after,
43
+ scope_befores: before,
44
+ scope_afters: after,
41
45
  )
42
46
  instance_eval(&block)
43
47
 
44
- @router.clear_last_branch
48
+ @router.clear_last_scope
45
49
  end
46
50
 
47
51
  def not_found(endpoint = -> {}, &block)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rackr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.49
4
+ version: 0.0.51
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henrique F. Teixeira
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
11
+ date: 2025-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: erubi
@@ -58,6 +58,26 @@ dependencies:
58
58
  - - "<"
59
59
  - !ruby/object:Gem::Version
60
60
  version: '4.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: html_slice
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0.0'
68
+ - - "<"
69
+ - !ruby/object:Gem::Version
70
+ version: '1.0'
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0.0'
78
+ - - "<"
79
+ - !ruby/object:Gem::Version
80
+ version: '1.0'
61
81
  description: A complete http router solution that fit well with pure rack apps.
62
82
  email: hriqueft@gmail.com
63
83
  executables: []
@@ -67,9 +87,11 @@ files:
67
87
  - lib/rackr.rb
68
88
  - lib/rackr/action.rb
69
89
  - lib/rackr/callback.rb
90
+ - lib/rackr/html.rb
70
91
  - lib/rackr/router.rb
71
92
  - lib/rackr/router/build_request.rb
72
93
  - lib/rackr/router/errors.rb
94
+ - lib/rackr/router/errors/dev_html.rb
73
95
  - lib/rackr/router/route.rb
74
96
  homepage: https://github.com/henrique-ft/rackr
75
97
  licenses: