rackr 0.0.50 → 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 +4 -4
- data/lib/rackr/action.rb +78 -187
- data/lib/rackr/html.rb +2 -134
- data/lib/rackr.rb +1 -0
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5349fb78d9228c927c1a13e4870dbe7797ed9dd9f2c6e6868c48ea21cb6a30d1
|
4
|
+
data.tar.gz: e343559e578fff15af1d85254d315f6999ca119fc9452899cc0b0d04835638be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2485768ddeba8f7460bc3d1cef02e3b931f0d3ff611d2418601298e73c62d114e8c9fb559f1e75dbd3788c8a64b3cb170c6a1d8118aec0246c03bcc818a5f89d
|
7
|
+
data.tar.gz: 55a73f398a954e32c9c4b83f3ff131ce57b80ac1da445c199d32a413f47ab877ebbdba5b70e3a06d1cb7cf90ff4280cb7db59d6fbaefdcb5843cdb0727e3187e
|
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(
|
20
|
-
|
21
|
-
|
22
|
-
|
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
|
-
|
26
|
-
|
27
|
-
db: db
|
29
|
+
layout_path: layout_path,
|
30
|
+
response_instance: true
|
28
31
|
)
|
29
32
|
end
|
30
33
|
|
31
34
|
def view(
|
32
|
-
|
35
|
+
paths,
|
36
|
+
status: 200,
|
37
|
+
headers: {},
|
38
|
+
layout_path: 'layout',
|
39
|
+
response_instance: false
|
33
40
|
)
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
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
|
-
|
84
|
+
html_layout(&block)
|
54
85
|
content = html_slice
|
55
86
|
end
|
56
87
|
end
|
57
88
|
|
58
|
-
|
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
|
-
|
97
|
+
html_layout(&block)
|
67
98
|
content = html_slice
|
68
99
|
end
|
69
100
|
end
|
70
101
|
|
71
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
118
|
+
[status, { 'content-type' => 'text/plain' }.merge(headers), [content]]
|
84
119
|
end
|
85
120
|
|
86
121
|
def text_response(content, status: 200, headers: {})
|
87
|
-
|
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,
|
91
|
-
|
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
|
-
|
134
|
+
[status, headers, []]
|
96
135
|
end
|
97
136
|
|
98
137
|
def head_response(status, headers: {})
|
99
|
-
|
138
|
+
Rack::Response.new(nil, status, headers)
|
100
139
|
end
|
101
140
|
|
102
141
|
def redirect_response(url, headers: {})
|
103
|
-
|
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
|
-
|
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
|
-
|
4
|
-
|
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
|
data/lib/rackr.rb
CHANGED
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.
|
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:
|
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: []
|