rackr 0.0.56 → 0.0.58
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 +71 -80
- data/lib/rackr/router/errors/dev_html.rb +4 -2
- data/lib/rackr.rb +0 -3
- metadata +3 -7
- data/lib/rackr/html.rb +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5014c37c092dde5f043f96ff04bef8c53fdd9bc2df76233a23a0a8dd957be3f1
|
4
|
+
data.tar.gz: 0cab424f6b8edb7f5e12ea2cfd05c7ac00be0df6c240affaacb57df2ca972040
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7664d3fa655aea2dcbde6b9456bfd2e6ea0c2876cf47d060cc808519276b8e8e7244493360a2912449573fc422c15390a4afbe201c90c46311879065e9b4227a
|
7
|
+
data.tar.gz: 1582549edba2bbca7dca30635106faed13cf28b01ef6941b31ebe745711494d91fab86ce3d4a76e115e56f9a5a141e73860a4f67ab3fc7b6836342d1a255363a
|
data/lib/rackr/action.rb
CHANGED
@@ -1,11 +1,25 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'byebug'
|
3
4
|
require 'erubi'
|
4
5
|
require 'oj'
|
5
6
|
require 'rack'
|
6
7
|
|
7
8
|
class Rackr
|
8
9
|
module Action
|
10
|
+
RENDER = {
|
11
|
+
html: lambda do |val, **opts|
|
12
|
+
[opts[:status] || 200, { 'content-type' => 'text/html' }.merge(opts[:headers] || {}), [val]]
|
13
|
+
end,
|
14
|
+
text: lambda do |val, **opts|
|
15
|
+
[opts[:status] || 200, { 'content-type' => 'text/plain' }.merge(opts[:headers] || {}), [val]]
|
16
|
+
end,
|
17
|
+
json: lambda do |val, **opts|
|
18
|
+
val = Oj.dump(val, mode: :compat) unless val.is_a?(String)
|
19
|
+
[opts[:status] || 200, { 'content-type' => 'application/json' }.merge(opts[:headers] || {}), [val]]
|
20
|
+
end
|
21
|
+
}
|
22
|
+
|
9
23
|
def self.included(base)
|
10
24
|
base.class_eval do
|
11
25
|
attr_reader :routes, :config, :db if self != Rackr
|
@@ -16,13 +30,20 @@ class Rackr
|
|
16
30
|
@db = config[:db]
|
17
31
|
end
|
18
32
|
|
33
|
+
def render(**opts)
|
34
|
+
type = opts.keys.first
|
35
|
+
content = opts[type]
|
36
|
+
|
37
|
+
Rackr::Action::RENDER[type]&.(content, **opts) || _render_view(content, **opts)
|
38
|
+
end
|
39
|
+
|
19
40
|
def view_response(
|
20
41
|
paths,
|
21
42
|
status: 200,
|
22
43
|
headers: {},
|
23
44
|
layout_path: 'layout'
|
24
45
|
)
|
25
|
-
|
46
|
+
_render_view(
|
26
47
|
paths,
|
27
48
|
status: status,
|
28
49
|
headers: headers,
|
@@ -31,12 +52,13 @@ class Rackr
|
|
31
52
|
)
|
32
53
|
end
|
33
54
|
|
34
|
-
def
|
55
|
+
def _render_view(
|
35
56
|
paths,
|
36
57
|
status: 200,
|
37
58
|
headers: {},
|
38
59
|
layout_path: 'layout',
|
39
|
-
response_instance: false
|
60
|
+
response_instance: false,
|
61
|
+
view: nil
|
40
62
|
)
|
41
63
|
base_path = config.dig(:views, :path) || 'views'
|
42
64
|
|
@@ -56,11 +78,11 @@ class Rackr
|
|
56
78
|
|
57
79
|
parsed_erb =
|
58
80
|
if layout_content
|
59
|
-
|
60
|
-
|
81
|
+
load_erb(layout_content) do
|
82
|
+
load_erb(file_content, binding_context: binding)
|
61
83
|
end
|
62
84
|
else
|
63
|
-
|
85
|
+
load_erb(file_content, binding_context: binding)
|
64
86
|
end
|
65
87
|
|
66
88
|
if response_instance
|
@@ -73,93 +95,62 @@ class Rackr
|
|
73
95
|
|
74
96
|
[status, { 'content-type' => 'text/html' }.merge(headers), [parsed_erb]]
|
75
97
|
end
|
76
|
-
end
|
77
|
-
end
|
78
98
|
|
79
|
-
|
80
|
-
|
99
|
+
def load_json(val)
|
100
|
+
return Oj.load(val.body.read) if val.is_a?(Rack::Request)
|
81
101
|
|
82
|
-
|
83
|
-
end
|
84
|
-
|
85
|
-
def html(content = '', status: 200, headers: {}, &block)
|
86
|
-
if content == '' && block_given? && respond_to?(:html_slice)
|
87
|
-
if respond_to?(:layout)
|
88
|
-
content = layout(&block)
|
89
|
-
else
|
90
|
-
html_layout(&block)
|
91
|
-
content = html_slice
|
102
|
+
Oj.load(val)
|
92
103
|
end
|
93
|
-
end
|
94
104
|
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
def html_response(content = '', status: 200, headers: {}, &block)
|
99
|
-
if content == '' && block_given? && respond_to?(:html_slice)
|
100
|
-
if respond_to?(:layout)
|
101
|
-
content = layout(&block)
|
102
|
-
else
|
103
|
-
html_layout(&block)
|
104
|
-
content = html_slice
|
105
|
+
def html_response(content = '', status: 200, headers: {})
|
106
|
+
Rack::Response.new(content, status, { 'content-type' => 'text/html' }.merge(headers))
|
105
107
|
end
|
106
|
-
end
|
107
|
-
|
108
|
-
Rack::Response.new(content, status, { 'content-type' => 'text/html' }.merge(headers))
|
109
|
-
end
|
110
|
-
|
111
|
-
def json(content = {}, status: 200, headers: {})
|
112
|
-
content = Oj.dump(content, mode: :compat) unless content.is_a?(String)
|
113
|
-
[status, { 'content-type' => 'application/json' }.merge(headers), [content]]
|
114
|
-
end
|
115
|
-
|
116
|
-
def json_response(content = {}, status: 200, headers: {})
|
117
|
-
content = Oj.dump(content, mode: :compat) unless content.is_a?(String)
|
118
|
-
Rack::Response.new(
|
119
|
-
content,
|
120
|
-
status,
|
121
|
-
{ 'content-type' => 'application/json' }.merge(headers)
|
122
|
-
)
|
123
|
-
end
|
124
108
|
|
125
|
-
|
126
|
-
|
127
|
-
|
109
|
+
def json_response(content = {}, status: 200, headers: {})
|
110
|
+
content = Oj.dump(content, mode: :compat) unless content.is_a?(String)
|
111
|
+
Rack::Response.new(
|
112
|
+
content,
|
113
|
+
status,
|
114
|
+
{ 'content-type' => 'application/json' }.merge(headers)
|
115
|
+
)
|
116
|
+
end
|
128
117
|
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
118
|
+
def text_response(content, status: 200, headers: {})
|
119
|
+
Rack::Response.new(
|
120
|
+
content,
|
121
|
+
status,
|
122
|
+
{ 'content-type' => 'text/plain' }.merge(headers)
|
123
|
+
)
|
124
|
+
end
|
136
125
|
|
137
|
-
|
138
|
-
|
139
|
-
|
126
|
+
def load_erb(content, binding_context: nil)
|
127
|
+
eval(Erubi::Engine.new(content).src, binding_context)
|
128
|
+
end
|
140
129
|
|
141
|
-
|
142
|
-
|
143
|
-
|
130
|
+
def head(status, headers: {})
|
131
|
+
[status, headers, []]
|
132
|
+
end
|
144
133
|
|
145
|
-
|
146
|
-
|
147
|
-
|
134
|
+
def head_response(status, headers: {})
|
135
|
+
Rack::Response.new(nil, status, headers)
|
136
|
+
end
|
148
137
|
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
138
|
+
def redirect_response(url, headers: {})
|
139
|
+
Rack::Response.new(
|
140
|
+
nil,
|
141
|
+
302,
|
142
|
+
{ 'location' => url }.merge(headers)
|
143
|
+
)
|
144
|
+
end
|
156
145
|
|
157
|
-
|
158
|
-
|
159
|
-
|
146
|
+
def redirect_to(url, headers: {})
|
147
|
+
[302, { 'location' => url }.merge(headers), []]
|
148
|
+
end
|
160
149
|
|
161
|
-
|
162
|
-
|
150
|
+
def response(body = nil, status = 200, headers = {})
|
151
|
+
Rack::Response.new(body, status, headers)
|
152
|
+
end
|
153
|
+
end
|
163
154
|
end
|
164
155
|
end
|
165
156
|
end
|
@@ -1,14 +1,16 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'html_slice'
|
4
|
+
|
3
5
|
class Rackr
|
4
6
|
class Router
|
5
7
|
module Errors
|
6
8
|
class DevHtml
|
7
9
|
include Rackr::Action
|
8
|
-
include
|
10
|
+
include ::HtmlSlice
|
9
11
|
|
10
12
|
def call(env)
|
11
|
-
|
13
|
+
html_layout do
|
12
14
|
tag :head do
|
13
15
|
title 'Application error'
|
14
16
|
_ '<style>
|
data/lib/rackr.rb
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
|
3
3
|
require_relative 'rackr/action'
|
4
4
|
require_relative 'rackr/callback'
|
5
|
-
require 'html_slice'
|
6
|
-
require_relative 'rackr/html'
|
7
5
|
require_relative 'rackr/router/errors/dev_html'
|
8
6
|
require_relative 'rackr/router'
|
9
7
|
|
@@ -13,7 +11,6 @@ class Rackr
|
|
13
11
|
HTTP_METHODS = %w[GET POST DELETE PUT TRACE OPTIONS PATCH].freeze
|
14
12
|
|
15
13
|
include Action
|
16
|
-
include HTML
|
17
14
|
|
18
15
|
def initialize(config = {}, before: [], after: [])
|
19
16
|
@router = Router.new(config, before: before, after: after)
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.58
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henrique F. Teixeira
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: erubi
|
@@ -87,7 +86,6 @@ files:
|
|
87
86
|
- lib/rackr.rb
|
88
87
|
- lib/rackr/action.rb
|
89
88
|
- lib/rackr/callback.rb
|
90
|
-
- lib/rackr/html.rb
|
91
89
|
- lib/rackr/router.rb
|
92
90
|
- lib/rackr/router/build_request.rb
|
93
91
|
- lib/rackr/router/errors.rb
|
@@ -97,7 +95,6 @@ homepage: https://github.com/henrique-ft/rackr
|
|
97
95
|
licenses:
|
98
96
|
- MIT
|
99
97
|
metadata: {}
|
100
|
-
post_install_message:
|
101
98
|
rdoc_options: []
|
102
99
|
require_paths:
|
103
100
|
- lib
|
@@ -112,8 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
109
|
- !ruby/object:Gem::Version
|
113
110
|
version: '0'
|
114
111
|
requirements: []
|
115
|
-
rubygems_version: 3.
|
116
|
-
signing_key:
|
112
|
+
rubygems_version: 3.6.2
|
117
113
|
specification_version: 4
|
118
114
|
summary: A complete, simple and easy web micro-framework.
|
119
115
|
test_files: []
|