rackr 0.0.50 → 0.0.52

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: 889c67a66431461f8ef941117b0195498135b5ee0c4b3b75c17f8c784f65678c
4
- data.tar.gz: 5482a863b01cf4637824ed7a054da8ac7a339154c8dc2b19faf11576e7585b77
3
+ metadata.gz: 279a41741ba1b761a98b837d7d27b92c8cce088c87f99bedb644e3bbae653b7a
4
+ data.tar.gz: a8d1193621683b375605ebc4807440560b4a45fff0d8240c1493dd2b060d4077
5
5
  SHA512:
6
- metadata.gz: 1f0fb3862cb8f3e50b3aef24c99e0ee9ee2252542d026c4d7d078063d30ccbbd8bed3b0964814d82f95d929cdcb33c29bd639209842666c2af173f17f9d70160
7
- data.tar.gz: f5a6835a8b80acd26e8e3ddf8cd38c84b23066319e65727688285c8b51ddcaccab401908e4dff64bcbabe3614ca45ab20a3cd3cc638b434c70cd94f76b33e321
6
+ metadata.gz: 0ae5954c85b11789fe66e14e1b9851036d2a9ca6a9b1ce61faf05515b3336204ae77521339b16d32b51ef0ee84914763918769dfe8c14ec078c32f41ee0a9e6d
7
+ data.tar.gz: 5d00b7e15751b6c2c7699bd169ade250a173082b98e2ee9621019678fa2498ab71426400b26094c4f044e550766e375e002b6d9f7ee6d550bd4b388f53056815
data/lib/rackr/action.rb CHANGED
@@ -16,251 +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
79
  def html(content = '', status: 200, headers: {}, &block)
49
- if block_given? && respond_to?(:html_slice)
80
+ if content == '' && block_given? && respond_to?(:html_slice)
50
81
  if respond_to?(:layout)
51
82
  content = layout(&block)
52
83
  else
53
- html_slice(:root, &block)
84
+ html_layout(&block)
54
85
  content = html_slice
55
86
  end
56
87
  end
57
88
 
58
- Rackr::Action.html(content, status: status, headers: headers, &block)
89
+ [status, { 'content-type' => 'text/html' }.merge(headers), [content]]
59
90
  end
60
91
 
61
- def html_response(content = '', status: 200, headers: {} &block)
62
- if block_given? && respond_to?(:html_slice)
92
+ def html_response(content = '', status: 200, headers: {}, &block)
93
+ if content == '' && block_given? && respond_to?(:html_slice)
63
94
  if respond_to?(:layout)
64
95
  content = layout(&block)
65
96
  else
66
- html_slice(:root, &block)
97
+ html_layout(&block)
67
98
  content = html_slice
68
99
  end
69
100
  end
70
101
 
71
- Rackr::Action.html_response(content, status: status, headers: headers, &block)
102
+ Rack::Response.new(content, status, { 'content-type' => 'text/html' }.merge(headers))
72
103
  end
73
104
 
74
105
  def json(content = {}, status: 200, headers: {})
75
- Rackr::Action.json(content, status: status, headers: headers)
106
+ [status, { 'content-type' => 'application/json' }.merge(headers), [Oj.dump(content, mode: :compat)]]
76
107
  end
77
108
 
78
109
  def json_response(content = {}, status: 200, headers: {})
79
- 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
+ )
80
115
  end
81
116
 
82
117
  def text(content, status: 200, headers: {})
83
- Rackr::Action.text(content, status: status, headers: headers)
118
+ [status, { 'content-type' => 'text/plain' }.merge(headers), [content]]
84
119
  end
85
120
 
86
121
  def text_response(content, status: 200, headers: {})
87
- 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
+ )
88
127
  end
89
128
 
90
- def erb(content, view_params = {})
91
- Rackr::Action.erb(content, view_params)
129
+ def erb(content, binding_context: nil, &block)
130
+ eval(Erubi::Engine.new(content).src, binding_context)
92
131
  end
93
132
 
94
133
  def head(status, headers: {})
95
- Rackr::Action.head(status, headers: headers)
134
+ [status, headers, []]
96
135
  end
97
136
 
98
137
  def head_response(status, headers: {})
99
- Rackr::Action.head_response(status, headers: headers)
138
+ Rack::Response.new(nil, status, headers)
100
139
  end
101
140
 
102
141
  def redirect_response(url, headers: {})
103
- Rackr::Action.redirect_response(url, headers: headers)
142
+ Rack::Response.new(
143
+ nil,
144
+ 302,
145
+ { 'location' => url }.merge(headers)
146
+ )
104
147
  end
105
148
 
106
149
  def redirect_to(url, headers: {})
107
- Rackr::Action.redirect_to(url, headers: headers)
150
+ [302, { 'location' => url }.merge(headers), []]
108
151
  end
109
152
 
110
153
  def response(body = nil, status = 200, headers = {})
111
154
  Rack::Response.new(body, status, headers)
112
155
  end
113
-
114
- class << self
115
- def view_response(
116
- paths,
117
- view_params = {},
118
- status: 200,
119
- headers: {},
120
- config: {},
121
- routes: nil,
122
- db: nil
123
- )
124
- view(
125
- paths,
126
- view_params,
127
- status: status,
128
- config: config,
129
- routes: routes,
130
- headers: headers,
131
- db: db,
132
- response_instance: true
133
- )
134
- end
135
-
136
- def view(
137
- paths,
138
- view_params = {},
139
- status: 200,
140
- headers: {},
141
- config: {},
142
- routes: nil,
143
- db: nil,
144
- response_instance: false
145
- )
146
- base_path = config.dig(:views, :path) || 'views'
147
-
148
- file_or_nil = lambda do |path|
149
- ::File.read(path)
150
- rescue Errno::ENOENT
151
- nil
152
- end
153
-
154
- file_content = if paths.is_a?(Array)
155
- paths.map { |path| ::File.read("#{base_path}/#{path}.html.erb") }.join
156
- else
157
- ::File.read("#{base_path}/#{paths}.html.erb")
158
- end
159
-
160
- erb = erb(
161
- [
162
- file_or_nil.call("#{base_path}/layout/_header.html.erb"),
163
- file_content,
164
- file_or_nil.call("#{base_path}/layout/_footer.html.erb")
165
- ].join,
166
- view_params,
167
- config: config,
168
- routes: routes,
169
- db: db
170
- )
171
-
172
- if response_instance
173
- return Rack::Response.new(
174
- erb,
175
- status,
176
- { 'Content-Type' => 'text/html' }.merge(headers)
177
- )
178
- end
179
-
180
- [status, { 'Content-Type' => 'text/html' }.merge(headers), [erb]]
181
- end
182
-
183
- def html(content = '', status: 200, headers: {}, &block)
184
- if content == '' && block_given? && respond_to?(:html_slice)
185
- if respond_to?(:layout)
186
- content = layout(&block)
187
- else
188
- html_slice(:root, &block)
189
- content = html_slice
190
- end
191
- end
192
-
193
- [status, { 'Content-Type' => 'text/html' }.merge(headers), [content]]
194
- end
195
-
196
- def html_response(content = '', status: 200, headers: {}, &block)
197
- if content == '' && block_given? && respond_to?(:html_slice)
198
- if respond_to?(:layout)
199
- content = layout(&block)
200
- else
201
- html_slice(:root, &block)
202
- content = html_slice
203
- end
204
- end
205
-
206
- Rack::Response.new(content, status, { 'Content-Type' => 'text/html' }.merge(headers))
207
- end
208
-
209
- def json(content = {}, status: 200, headers: {})
210
- [status, { 'Content-Type' => 'application/json' }.merge(headers), [Oj.dump(content, mode: :compat)]]
211
- end
212
-
213
- def json_response(content = {}, status: 200, headers: {})
214
- Rack::Response.new(
215
- Oj.dump(content, mode: :compat),
216
- status,
217
- { 'Content-Type' => 'application/json' }.merge(headers)
218
- )
219
- end
220
-
221
- def text(content, status: 200, headers: {})
222
- [status, { 'Content-Type' => 'text/plain' }.merge(headers), [content]]
223
- end
224
-
225
- def text_response(content, status: 200, headers: {})
226
- Rack::Response.new(
227
- content,
228
- status,
229
- { 'Content-Type' => 'text/plain' }.merge(headers)
230
- )
231
- end
232
-
233
- # rubocop:disable Lint/UnusedMethodArgument
234
- def erb(content, view_params = {}, config: nil, routes: nil, db: nil)
235
- @view = OpenStruct.new(view_params)
236
-
237
- eval(Erubi::Engine.new(content).src)
238
- end
239
- # rubocop:enable Lint/UnusedMethodArgument
240
-
241
- def redirect_response(url, headers: {})
242
- Rack::Response.new(
243
- nil,
244
- 302,
245
- { 'Location' => url }.merge(headers)
246
- )
247
- end
248
-
249
- def redirect_to(url, headers: {})
250
- [302, { 'Location' => url }.merge(headers), []]
251
- end
252
-
253
- def head(status, headers: {})
254
- [status, headers, []]
255
- end
256
-
257
- def head_response(status, headers: {})
258
- Rack::Response.new(nil, status, headers)
259
- end
260
-
261
- def response(body = nil, status = 200, headers = {})
262
- Rack::Response.new(body, status, headers)
263
- end
264
- end
265
156
  end
266
157
  end
data/lib/rackr/html.rb CHANGED
@@ -1,139 +1,7 @@
1
1
  class Rackr
2
2
  module HTML
3
- # HTML as a first-class citizen in ruby code
4
- # Faster than ERB.
5
-
6
- TAGS = %i[
7
- div
8
- title
9
- embed
10
- meta
11
- br
12
- a
13
- em
14
- b
15
- i
16
- ul
17
- ol
18
- li
19
- img
20
- table
21
- tbody
22
- thead
23
- tr
24
- th
25
- td
26
- form
27
- input
28
- button
29
- link
30
- h1
31
- h2
32
- h3
33
- h4
34
- h5
35
- h6
36
- hr
37
- span
38
- label
39
- iframe
40
- template
41
- main
42
- footer
43
- aside
44
- source
45
- section
46
- small
47
- script
48
- nav
49
- area
50
- ]
51
-
52
- EMPTY_TAGS = %i[
53
- area
54
- br
55
- embed
56
- hr
57
- img
58
- input
59
- link
60
- meta
61
- source
62
- ].freeze
63
-
64
- def html_layout(&block)
65
- html_slice(:root, &block)
66
- end
67
-
68
- def html_slice(type = nil, &block)
69
- if block_given?
70
- if type == :root
71
- wrap = ['<!DOCTYPE html><html>', '</html>']
72
- else
73
- wrap = ['','']
74
- end
75
- @html_slice = wrap[0]
76
- instance_eval(&block)
77
- @html_slice << wrap[1]
78
- else
79
- @html_slice
80
- end
81
- end
82
-
83
- TAGS.each do |name|
84
- define_method name do |*args, &block|
85
- tag(name, *args, &block)
86
- end
87
- end
88
-
89
- def _(content)
90
- @html_slice << content.to_s
91
- end
92
-
93
- def tag(tag_name, *args, &block)
94
- content, attributes = parse_html_tag_arguments(args)
95
- generate_and_append_html_tag(tag_name, content, attributes, &block)
96
- end
97
-
98
- private
99
-
100
- def parse_html_tag_arguments(args)
101
- content = ''
102
- attributes = {}
103
-
104
- first_argument = args.shift
105
- if first_argument.is_a?(String)
106
- content = CGI.escapeHTML(first_argument)
107
- attributes = args.pop || {}
108
- elsif first_argument.is_a?(Hash)
109
- attributes = first_argument
110
- end
111
-
112
- [content, attributes]
113
- end
114
-
115
- def generate_and_append_html_tag(tag_name, content, attributes, &block)
116
- open_tag = build_html_open_tag(tag_name, attributes)
117
-
118
- if block_given?
119
- @html_slice << open_tag << ">"
120
- instance_eval(&block)
121
- @html_slice << "</#{tag_name}>"
122
- else
123
- if content.empty? && EMPTY_TAGS.include?(tag_name)
124
- @html_slice << open_tag << "/>"
125
- else
126
- @html_slice << open_tag << ">" << content << "</#{tag_name}>"
127
- end
128
- end
129
- end
130
-
131
- def build_html_open_tag(tag_name, attributes)
132
- open_tag = "<#{tag_name}"
133
- attributes.each do |key, value|
134
- open_tag << " #{key.to_s.gsub('_', '-')}='#{value}'"
135
- end
136
- open_tag
3
+ def self.included(base)
4
+ base.class_eval { include ::HtmlSlice }
137
5
  end
138
6
  end
139
7
  end
@@ -27,13 +27,11 @@ class Rackr
27
27
  background-color: #191919;
28
28
  color: white;
29
29
  padding: 0em 2em;
30
- border: 5px solid #ffffff;
31
- border-radius: 1em;
30
+ border: 5px solid #191919;
32
31
  }
33
32
  h1 {
34
33
  background-color: #464646;
35
34
  padding: 1em;
36
- border-radius: 0.2em;
37
35
  }
38
36
  )
39
37
  end
data/lib/rackr/router.rb CHANGED
@@ -72,7 +72,7 @@ class Rackr
72
72
  rescue Rackr::NotFound
73
73
  call_endpoint(@not_found, request_builder.call)
74
74
  rescue Exception => e
75
- return @error.call(request_builder.call, e) unless @dev_mode
75
+ return @error.call(request_builder.call, e) if !@dev_mode || ENV['RACKR_ERROR_DEV']
76
76
 
77
77
  call_endpoint(Errors::DevHtml, env.merge({'error' => e}))
78
78
  end
data/lib/rackr.rb CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  require_relative 'rackr/action'
4
4
  require_relative 'rackr/callback'
5
+ require 'html_slice'
5
6
  require_relative 'rackr/html'
6
7
  require_relative 'rackr/router/errors/dev_html'
7
8
  require_relative 'rackr/router'
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.50
4
+ version: 0.0.52
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-28 00:00:00.000000000 Z
11
+ date: 2025-01-04 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: []