code-ruby 1.1.3 → 1.2.1
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/.github/dependabot.yml +13 -13
- data/.github/workflows/ci.yml +25 -24
- data/.npm-version +1 -0
- data/.rubocop.yml +14 -11
- data/Gemfile +5 -4
- data/Gemfile.lock +134 -28
- data/VERSION +1 -1
- data/bin/console +6 -0
- data/bin/dorian +31 -0
- data/code-ruby.gemspec +6 -1
- data/lib/code/error.rb +4 -25
- data/lib/code/node/code.rb +1 -1
- data/lib/code/node/function_parameter.rb +10 -8
- data/lib/code/node/while.rb +1 -1
- data/lib/code/object/boolean.rb +20 -16
- data/lib/code/object/class.rb +10 -4
- data/lib/code/object/code.rb +7 -3
- data/lib/code/object/context.rb +8 -8
- data/lib/code/object/date.rb +41 -7
- data/lib/code/object/decimal.rb +101 -56
- data/lib/code/object/dictionary.rb +245 -191
- data/lib/code/object/duration.rb +11 -7
- data/lib/code/object/function.rb +38 -25
- data/lib/code/object/global.rb +95 -42
- data/lib/code/object/html.rb +12 -14
- data/lib/code/object/http.rb +219 -0
- data/lib/code/object/identifier_list.rb +16 -16
- data/lib/code/object/integer.rb +129 -89
- data/lib/code/object/json.rb +18 -22
- data/lib/code/object/list.rb +141 -92
- data/lib/code/object/parameter.rb +9 -13
- data/lib/code/object/range.rb +77 -45
- data/lib/code/object/string.rb +15 -34
- data/lib/code/object/time.rb +17 -16
- data/lib/code/object.rb +126 -93
- data/lib/code/parser/string.rb +2 -1
- data/lib/code/type/sig.rb +3 -3
- data/lib/code-ruby.rb +119 -0
- data/package-lock.json +1 -1
- data/package.json +1 -1
- data/spec/code/object/http_spec.rb +91 -0
- data/spec/code/type_spec.rb +1 -1
- data/spec/code_spec.rb +10 -5
- data/spec/spec_helper.rb +18 -0
- metadata +50 -3
data/lib/code/object/duration.rb
CHANGED
@@ -4,18 +4,22 @@ class Code
|
|
4
4
|
class Object
|
5
5
|
class Duration < Object
|
6
6
|
def initialize(*args, **_kargs, &)
|
7
|
-
raw =
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
@raw =
|
8
|
+
if args.first.is_an?(::ActiveSupport::Duration)
|
9
|
+
args.first
|
10
|
+
elsif args.first.is_a?(Duration)
|
11
|
+
args.first.raw
|
12
|
+
else
|
13
|
+
::ActiveSupport::Duration.parse(args.first.to_s)
|
14
|
+
end
|
11
15
|
rescue ::ActiveSupport::Duration::ISO8601Parser::ParsingError
|
12
|
-
|
16
|
+
@raw = 0.seconds
|
13
17
|
end
|
14
18
|
|
15
19
|
def call(**args)
|
16
|
-
|
20
|
+
code_operator = args.fetch(:operator, nil).to_code
|
17
21
|
|
18
|
-
case
|
22
|
+
case code_operator.to_s
|
19
23
|
when "ago"
|
20
24
|
sig(args)
|
21
25
|
code_ago
|
data/lib/code/object/function.rb
CHANGED
@@ -3,60 +3,73 @@
|
|
3
3
|
class Code
|
4
4
|
class Object
|
5
5
|
class Function < Object
|
6
|
-
attr_reader :
|
6
|
+
attr_reader :code_parameters, :code_body
|
7
7
|
|
8
8
|
def initialize(*args, **_kargs, &)
|
9
|
-
@
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
@code_parameters =
|
10
|
+
List
|
11
|
+
.new(args.first)
|
12
|
+
.raw
|
13
|
+
.map { |parameter| Parameter.new(parameter) }
|
14
|
+
.to_code
|
15
|
+
|
16
|
+
@code_body = Code.new(args.second.presence)
|
17
|
+
|
18
|
+
@raw = List.new([code_parameters, code_body])
|
13
19
|
end
|
14
20
|
|
15
21
|
def call(**args)
|
16
|
-
|
17
|
-
|
22
|
+
code_operator = args.fetch(:operator, nil).to_code
|
23
|
+
code_arguments = args.fetch(:arguments, List.new).to_code
|
18
24
|
globals = multi_fetch(args, *GLOBALS)
|
19
25
|
|
20
|
-
case
|
26
|
+
case code_operator.to_s
|
21
27
|
when "", "call"
|
22
28
|
sig(args) { signature_for_call }
|
23
|
-
code_call(*
|
29
|
+
code_call(*code_arguments.raw, **globals)
|
24
30
|
else
|
25
31
|
super
|
26
32
|
end
|
27
33
|
end
|
28
34
|
|
29
35
|
def code_call(*arguments, **globals)
|
30
|
-
|
36
|
+
code_arguments = arguments.to_code
|
37
|
+
code_context = Context.new({}, globals[:context])
|
31
38
|
|
32
|
-
|
33
|
-
|
34
|
-
if
|
35
|
-
|
36
|
-
.
|
37
|
-
|
39
|
+
code_parameters.raw.each.with_index do |code_parameter, index|
|
40
|
+
code_argument =
|
41
|
+
if code_parameter.keyword?
|
42
|
+
code_arguments
|
43
|
+
.raw
|
44
|
+
.select { |code_argument| code_argument.is_a?(Dictionary) }
|
45
|
+
.detect do |code_dictionary|
|
46
|
+
code_dictionary.code_has_value?(parameter.code_name).truthy?
|
38
47
|
end
|
39
48
|
&.code_get(parameter.code_name)
|
40
49
|
else
|
41
|
-
|
50
|
+
code_arguments.raw[index].to_code
|
42
51
|
end
|
43
|
-
|
44
|
-
|
52
|
+
|
53
|
+
if code_argument.nothing?
|
54
|
+
code_argument = code_parameter.code_evaluate(**globals)
|
55
|
+
end
|
56
|
+
|
57
|
+
code_context.code_set(code_parameter.code_name, code_argument)
|
45
58
|
end
|
46
59
|
|
47
|
-
|
60
|
+
code_body.code_evaluate(**globals, context: code_context)
|
48
61
|
end
|
49
62
|
|
50
63
|
def signature_for_call
|
51
|
-
|
64
|
+
code_parameters
|
52
65
|
.raw
|
53
|
-
.inject([]) do |signature,
|
54
|
-
if
|
66
|
+
.inject([]) do |signature, code_parameter|
|
67
|
+
if code_parameter.keyword?
|
55
68
|
if signature.last.is_a?(::Hash)
|
56
|
-
signature.last.
|
69
|
+
signature.last[code_parameter.code_name] = Object
|
57
70
|
signature
|
58
71
|
else
|
59
|
-
signature + [{
|
72
|
+
signature + [{ code_parameter.code_name => Object }]
|
60
73
|
end
|
61
74
|
else
|
62
75
|
signature + [Object]
|
data/lib/code/object/global.rb
CHANGED
@@ -3,117 +3,170 @@
|
|
3
3
|
class Code
|
4
4
|
class Object
|
5
5
|
class Global < Object
|
6
|
-
def initialize(...)
|
7
|
-
@raw = "global"
|
8
|
-
end
|
9
|
-
|
10
6
|
def call(**args)
|
11
|
-
|
12
|
-
|
7
|
+
code_operator = args.fetch(:operator, nil).to_code
|
8
|
+
code_arguments = args.fetch(:arguments, []).to_code
|
13
9
|
output = args.fetch(:output)
|
14
|
-
|
15
|
-
|
16
|
-
value = arguments.code_first
|
10
|
+
code_context = args.fetch(:context).to_code
|
11
|
+
code_value = code_arguments.code_first
|
17
12
|
|
18
|
-
case
|
13
|
+
case code_operator.to_s
|
19
14
|
when "Boolean"
|
20
15
|
sig(args) { Object.repeat }
|
21
|
-
|
16
|
+
if code_arguments.any?
|
17
|
+
Boolean.new(*code_arguments.raw)
|
18
|
+
else
|
19
|
+
Class.new(Boolean)
|
20
|
+
end
|
22
21
|
when "break"
|
23
22
|
sig(args) { Object.repeat }
|
24
|
-
raise Error::Break,
|
23
|
+
raise Error::Break, code_value || Nothing.new
|
25
24
|
when "next"
|
26
25
|
sig(args) { Object.repeat }
|
27
|
-
raise Error::Next,
|
26
|
+
raise Error::Next, code_value || Nothing.new
|
28
27
|
when "Class"
|
29
28
|
sig(args) { Object.repeat }
|
30
|
-
|
29
|
+
if code_arguments.any?
|
30
|
+
Class.new(*code_arguments.raw)
|
31
|
+
else
|
32
|
+
Class.new(Class)
|
33
|
+
end
|
31
34
|
when "Date"
|
32
35
|
sig(args) { Object.repeat }
|
33
|
-
|
36
|
+
code_arguments.any? ? Date.new(*code_arguments.raw) : Class.new(Date)
|
34
37
|
when "Decimal"
|
35
38
|
sig(args) { Object.repeat }
|
36
|
-
|
39
|
+
if code_arguments.any?
|
40
|
+
Decimal.new(*code_arguments.raw)
|
41
|
+
else
|
42
|
+
Class.new(Decimal)
|
43
|
+
end
|
37
44
|
when "Dictionary"
|
38
45
|
sig(args) { Object.repeat }
|
39
|
-
if
|
40
|
-
Dictionary.new(*
|
46
|
+
if code_arguments.any?
|
47
|
+
Dictionary.new(*code_arguments.raw)
|
41
48
|
else
|
42
49
|
Class.new(Dictionary)
|
43
50
|
end
|
44
51
|
when "Duration"
|
45
52
|
sig(args) { Object.repeat }
|
46
|
-
|
53
|
+
if code_arguments.any?
|
54
|
+
Duration.new(*code_arguments.raw)
|
55
|
+
else
|
56
|
+
Class.new(Duration)
|
57
|
+
end
|
47
58
|
when "Function"
|
48
59
|
sig(args)
|
49
|
-
|
60
|
+
if code_arguments.any?
|
61
|
+
Function.new(*code_arguments.raw)
|
62
|
+
else
|
63
|
+
Class.new(Function)
|
64
|
+
end
|
50
65
|
when "Integer"
|
51
66
|
sig(args) { Object.repeat }
|
52
|
-
|
67
|
+
if code_arguments.any?
|
68
|
+
Integer.new(*code_arguments.raw)
|
69
|
+
else
|
70
|
+
Class.new(Integer)
|
71
|
+
end
|
53
72
|
when "List"
|
54
73
|
sig(args) { Object.repeat }
|
55
|
-
|
74
|
+
code_arguments.any? ? List.new(*code_arguments.raw) : Class.new(List)
|
56
75
|
when "Nothing"
|
57
76
|
sig(args) { Object.repeat }
|
58
|
-
|
77
|
+
if code_arguments.any?
|
78
|
+
Nothing.new(*code_arguments.raw)
|
79
|
+
else
|
80
|
+
Class.new(Nothing)
|
81
|
+
end
|
59
82
|
when "context"
|
60
83
|
sig(args)
|
61
84
|
context
|
62
85
|
when "Object"
|
63
86
|
sig(args)
|
64
|
-
|
87
|
+
if code_arguments.any?
|
88
|
+
Object.new(*code_arguments.raw)
|
89
|
+
else
|
90
|
+
Class.new(Object)
|
91
|
+
end
|
65
92
|
when "Range"
|
66
93
|
sig(args) { Object.repeat }
|
67
|
-
|
94
|
+
if code_arguments.any?
|
95
|
+
Range.new(*code_arguments.raw)
|
96
|
+
else
|
97
|
+
Class.new(Range)
|
98
|
+
end
|
68
99
|
when "String"
|
69
100
|
sig(args) { Object.repeat }
|
70
|
-
|
101
|
+
if code_arguments.any?
|
102
|
+
String.new(*code_arguments.raw)
|
103
|
+
else
|
104
|
+
Class.new(String)
|
105
|
+
end
|
71
106
|
when "Time"
|
72
107
|
sig(args) { Object.repeat }
|
73
|
-
|
108
|
+
if code_arguments.any?
|
109
|
+
Time.zone.local(*code_arguments.raw)
|
110
|
+
else
|
111
|
+
Class.new(Time)
|
112
|
+
end
|
74
113
|
when "Context"
|
75
114
|
sig(args) { Object.repeat }
|
76
|
-
|
115
|
+
if code_arguments.any?
|
116
|
+
Context.new(*code_arguments.raw)
|
117
|
+
else
|
118
|
+
Class.new(Context)
|
119
|
+
end
|
77
120
|
when "Code"
|
78
121
|
sig(args) { Object.repeat }
|
79
|
-
|
122
|
+
code_arguments.any? ? Code.new(*code_arguments.raw) : Class.new(Code)
|
80
123
|
when "Parameter"
|
81
124
|
sig(args) { Object.repeat }
|
82
|
-
|
125
|
+
if code_arguments.any?
|
126
|
+
Parameter.new(*code_arguments.raw)
|
127
|
+
else
|
128
|
+
Class.new(Parameter)
|
129
|
+
end
|
83
130
|
when "IdentifierList"
|
84
131
|
sig(args) { Object.repeat }
|
85
|
-
if
|
86
|
-
IdentifierList.new(*
|
132
|
+
if code_arguments.any?
|
133
|
+
IdentifierList.new(*code_arguments.raw)
|
87
134
|
else
|
88
135
|
Class.new(IdentifierList)
|
89
136
|
end
|
90
137
|
when "Html"
|
91
138
|
sig(args) { Object.repeat }
|
92
|
-
|
139
|
+
code_arguments.any? ? Html.new(*code_arguments.raw) : Class.new(Html)
|
140
|
+
when "Http"
|
141
|
+
sig(args) { Object.repeat }
|
142
|
+
code_arguments.any? ? Http.new(*code_arguments.raw) : Class.new(Http)
|
143
|
+
when "Json"
|
144
|
+
sig(args) { Object.repeat }
|
145
|
+
code_arguments.any? ? Json.new(*code_arguments.raw) : Class.new(Json)
|
93
146
|
when "evaluate"
|
94
147
|
sig(args) { Object }
|
95
|
-
Code.evaluate(
|
148
|
+
Code.evaluate(code_value.to_s)
|
96
149
|
when "p"
|
97
150
|
sig(args) { Object.repeat }
|
98
|
-
output.puts(*
|
151
|
+
output.puts(*code_arguments.raw.map(&:inspect))
|
99
152
|
Nothing.new
|
100
153
|
when "print"
|
101
154
|
sig(args) { Object.repeat }
|
102
|
-
output.print(*
|
155
|
+
output.print(*code_arguments.raw)
|
103
156
|
Nothing.new
|
104
157
|
when "puts"
|
105
158
|
sig(args) { Object.repeat }
|
106
|
-
output.puts(*
|
159
|
+
output.puts(*code_arguments.raw)
|
107
160
|
Nothing.new
|
108
161
|
else
|
109
|
-
|
110
|
-
|
162
|
+
code_context = code_context.code_lookup!(code_operator)
|
163
|
+
code_result = code_context.code_fetch(code_operator)
|
111
164
|
|
112
|
-
if
|
113
|
-
|
165
|
+
if code_result.is_a?(Function)
|
166
|
+
code_result.call(**args, operator: nil)
|
114
167
|
else
|
115
168
|
sig(args)
|
116
|
-
|
169
|
+
code_result
|
117
170
|
end
|
118
171
|
end
|
119
172
|
end
|
data/lib/code/object/html.rb
CHANGED
@@ -3,39 +3,37 @@
|
|
3
3
|
class Code
|
4
4
|
class Object
|
5
5
|
class Html < Object
|
6
|
-
def initialize(*_args, **_kargs, &)
|
7
|
-
@raw = nil
|
8
|
-
end
|
9
|
-
|
10
6
|
def self.call(**args)
|
11
|
-
|
12
|
-
|
7
|
+
code_operator = args.fetch(:operator, nil).to_code
|
8
|
+
code_arguments = args.fetch(:arguments, []).to_code
|
13
9
|
|
14
|
-
case
|
10
|
+
case code_operator.to_s
|
15
11
|
when "link_to"
|
16
12
|
sig(args) { [Object.maybe, Object.maybe] }
|
17
|
-
code_link_to(*
|
13
|
+
code_link_to(*code_arguments.raw)
|
18
14
|
when "escape"
|
19
15
|
sig(args) { Object.maybe }
|
20
|
-
code_escape(*
|
16
|
+
code_escape(*code_arguments.raw)
|
21
17
|
else
|
22
18
|
super
|
23
19
|
end
|
24
20
|
end
|
25
21
|
|
26
22
|
def self.code_link_to(text = nil, href = nil)
|
27
|
-
|
28
|
-
|
23
|
+
code_text = text.to_code
|
24
|
+
code_href = href.to_code
|
29
25
|
|
30
26
|
String.new(<<~LINK.strip)
|
31
|
-
<a
|
27
|
+
<a
|
28
|
+
href="#{CGI.escapeHTML(code_href.to_s)}"
|
29
|
+
>#{CGI.escapeHTML(code_text.to_s)}</a>
|
32
30
|
LINK
|
33
31
|
end
|
34
32
|
|
35
33
|
def self.code_escape(string = nil)
|
36
|
-
|
34
|
+
code_string = string.to_code
|
37
35
|
|
38
|
-
String.new(CGI.escapeHTML(string.
|
36
|
+
String.new(CGI.escapeHTML(string.to_s))
|
39
37
|
end
|
40
38
|
end
|
41
39
|
end
|
@@ -0,0 +1,219 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class Code
|
4
|
+
class Object
|
5
|
+
class Http < Object
|
6
|
+
SIG = [
|
7
|
+
String,
|
8
|
+
{
|
9
|
+
headers: Dictionary.maybe,
|
10
|
+
query: Dictionary.maybe,
|
11
|
+
body: String.maybe,
|
12
|
+
username: String.maybe,
|
13
|
+
password: String.maybe,
|
14
|
+
data: Dictionary.maybe,
|
15
|
+
}
|
16
|
+
].freeze
|
17
|
+
|
18
|
+
STATUS_CODES = {
|
19
|
+
continue: 100,
|
20
|
+
switching_protocols: 101,
|
21
|
+
processing: 102,
|
22
|
+
early_hints: 103,
|
23
|
+
ok: 200,
|
24
|
+
created: 201,
|
25
|
+
accepted: 202,
|
26
|
+
non_authoritative_information: 203,
|
27
|
+
no_content: 204,
|
28
|
+
reset_content: 205,
|
29
|
+
partial_content: 206,
|
30
|
+
multi_status: 207,
|
31
|
+
already_reported: 208,
|
32
|
+
im_used: 226,
|
33
|
+
multiple_choices: 300,
|
34
|
+
moved_permanently: 301,
|
35
|
+
found: 302,
|
36
|
+
see_other: 303,
|
37
|
+
not_modified: 304,
|
38
|
+
use_proxy: 305,
|
39
|
+
reserved: 306,
|
40
|
+
temporary_redirect: 307,
|
41
|
+
permanent_redirect: 308,
|
42
|
+
bad_request: 400,
|
43
|
+
unauthorized: 401,
|
44
|
+
payment_required: 402,
|
45
|
+
forbidden: 403,
|
46
|
+
not_found: 404,
|
47
|
+
method_not_allowed: 405,
|
48
|
+
not_acceptable: 406,
|
49
|
+
proxy_authentication_required: 407,
|
50
|
+
request_timeout: 408,
|
51
|
+
conflict: 409,
|
52
|
+
gone: 410,
|
53
|
+
length_required: 411,
|
54
|
+
precondition_failed: 412,
|
55
|
+
request_entity_too_large: 413,
|
56
|
+
request_uri_too_long: 414,
|
57
|
+
unsupported_media_type: 415,
|
58
|
+
requested_range_not_satisfiable: 416,
|
59
|
+
expectation_failed: 417,
|
60
|
+
misdirected_request: 421,
|
61
|
+
unprocessable_entity: 422,
|
62
|
+
locked: 423,
|
63
|
+
failed_dependency: 424,
|
64
|
+
too_early: 425,
|
65
|
+
upgrade_required: 426,
|
66
|
+
precondition_required: 428,
|
67
|
+
too_many_requests: 429,
|
68
|
+
request_header_fields_too_large: 431,
|
69
|
+
unavailable_for_legal_reasons: 451,
|
70
|
+
internal_server_error: 500,
|
71
|
+
not_implemented: 501,
|
72
|
+
bad_gateway: 502,
|
73
|
+
service_unavailable: 503,
|
74
|
+
gateway_timeout: 504,
|
75
|
+
http_version_not_supported: 505,
|
76
|
+
variant_also_negotiates: 506,
|
77
|
+
insufficient_storage: 507,
|
78
|
+
loop_detected: 508,
|
79
|
+
bandwidth_limit_exceeded: 509,
|
80
|
+
not_extended: 510,
|
81
|
+
network_authentication_required: 511
|
82
|
+
}.freeze
|
83
|
+
|
84
|
+
def self.call(**args)
|
85
|
+
code_operator = args.fetch(:operator, nil).to_code
|
86
|
+
code_arguments = args.fetch(:arguments, []).to_code
|
87
|
+
|
88
|
+
case code_operator.to_s
|
89
|
+
when "get"
|
90
|
+
sig(args) { SIG }
|
91
|
+
code_get(*code_arguments.raw)
|
92
|
+
when "head"
|
93
|
+
sig(args) { SIG }
|
94
|
+
code_head(*code_arguments.raw)
|
95
|
+
when "post"
|
96
|
+
sig(args) { SIG }
|
97
|
+
code_post(*code_arguments.raw)
|
98
|
+
when "put"
|
99
|
+
sig(args) { SIG }
|
100
|
+
code_put(*code_arguments.raw)
|
101
|
+
when "delete"
|
102
|
+
sig(args) { SIG }
|
103
|
+
code_delete(*code_arguments.raw)
|
104
|
+
when "connect"
|
105
|
+
sig(args) { SIG }
|
106
|
+
code_connect(*code_arguments.raw)
|
107
|
+
when "options"
|
108
|
+
sig(args) { SIG }
|
109
|
+
code_options(*code_arguments.raw)
|
110
|
+
when "trace"
|
111
|
+
sig(args) { SIG }
|
112
|
+
code_trace(*code_arguments.raw)
|
113
|
+
when "patch"
|
114
|
+
sig(args) { SIG }
|
115
|
+
code_patch(*code_arguments.raw)
|
116
|
+
when "fetch"
|
117
|
+
sig(args) { [String] + SIG }
|
118
|
+
code_fetch(*code_arguments.raw)
|
119
|
+
else
|
120
|
+
super
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def self.code_get(...)
|
125
|
+
code_fetch("get", ...)
|
126
|
+
end
|
127
|
+
|
128
|
+
def self.code_head(...)
|
129
|
+
code_fetch("head", ...)
|
130
|
+
end
|
131
|
+
|
132
|
+
def self.code_post(...)
|
133
|
+
code_fetch("post", ...)
|
134
|
+
end
|
135
|
+
|
136
|
+
def self.code_put(...)
|
137
|
+
code_fetch("put", ...)
|
138
|
+
end
|
139
|
+
|
140
|
+
def self.code_delete(...)
|
141
|
+
code_fetch("delete", ...)
|
142
|
+
end
|
143
|
+
|
144
|
+
def self.code_connect(...)
|
145
|
+
code_fetch("connect", ...)
|
146
|
+
end
|
147
|
+
|
148
|
+
def self.code_options(...)
|
149
|
+
code_fetch("options", ...)
|
150
|
+
end
|
151
|
+
|
152
|
+
def self.code_trace(...)
|
153
|
+
code_fetch("trace", ...)
|
154
|
+
end
|
155
|
+
|
156
|
+
def self.code_patch(...)
|
157
|
+
code_fetch("patch", ...)
|
158
|
+
end
|
159
|
+
|
160
|
+
def self.code_fetch(*arguments)
|
161
|
+
verb = arguments.first.to_code.to_s.downcase
|
162
|
+
url = arguments.second.to_code.to_s
|
163
|
+
options = arguments.third.to_code
|
164
|
+
options = Dictionary.new if options.nothing?
|
165
|
+
username = options.code_get("username").to_s
|
166
|
+
password = options.code_get("password").to_s
|
167
|
+
body = options.code_get("body").to_s
|
168
|
+
headers = options.code_get("headers").raw || {}
|
169
|
+
data = options.code_get("data").raw || {}
|
170
|
+
query = options.code_get("query").raw || {}
|
171
|
+
query = query.to_a.flatten.map(&:to_s).each_slice(2).to_h.to_query
|
172
|
+
url = "#{url}?#{query}" if query.present?
|
173
|
+
uri = ::URI.parse(url)
|
174
|
+
http = ::Net::HTTP.new(uri.host, uri.port)
|
175
|
+
http.use_ssl = true if uri.scheme == "https"
|
176
|
+
|
177
|
+
if username.present? || password.present?
|
178
|
+
headers["Authorization"] =
|
179
|
+
"Basic #{::Base64.strict_encode64("#{username}:#{password}")}"
|
180
|
+
end
|
181
|
+
|
182
|
+
request_class =
|
183
|
+
case verb
|
184
|
+
when "get"
|
185
|
+
::Net::HTTP::Get
|
186
|
+
when "head"
|
187
|
+
::Net::HTTP::Head
|
188
|
+
when "post"
|
189
|
+
::Net::HTTP::Post
|
190
|
+
when "put"
|
191
|
+
::Net::HTTP::Put
|
192
|
+
when "delete"
|
193
|
+
::Net::HTTP::Delete
|
194
|
+
when "connect"
|
195
|
+
::Net::HTTP::Get
|
196
|
+
when "options"
|
197
|
+
::Net::HTTP::Options
|
198
|
+
when "trace"
|
199
|
+
::Net::HTTP::Trace
|
200
|
+
when "patch"
|
201
|
+
::Net::HTTP::Patch
|
202
|
+
else
|
203
|
+
::Net::HTTP::Get
|
204
|
+
end
|
205
|
+
|
206
|
+
request = request_class.new(uri)
|
207
|
+
headers.each { |key, value| request[key.to_s] = value.to_s }
|
208
|
+
request.body = body if body.present?
|
209
|
+
request.set_form_data(**data.as_json) if data.present?
|
210
|
+
|
211
|
+
response = http.request(request)
|
212
|
+
code = response.code.to_i
|
213
|
+
status = STATUS_CODES.key(code) || :ok
|
214
|
+
|
215
|
+
Dictionary.new(code: code, status: status, body: response.body)
|
216
|
+
end
|
217
|
+
end
|
218
|
+
end
|
219
|
+
end
|
@@ -4,36 +4,36 @@ class Code
|
|
4
4
|
class Object
|
5
5
|
class IdentifierList < List
|
6
6
|
def call(**args)
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
code_operator = args.fetch(:operator, nil).to_code
|
8
|
+
code_arguments = args.fetch(:arguments, []).to_code
|
9
|
+
code_context = args.fetch(:context).to_code
|
10
|
+
code_value = code_arguments.code_first
|
11
11
|
|
12
|
-
case
|
12
|
+
case code_operator.to_s
|
13
13
|
when /=$/
|
14
14
|
sig(args) { Object }
|
15
15
|
|
16
|
-
|
16
|
+
code_context = code_context.code_lookup!(raw.first)
|
17
17
|
|
18
|
-
|
19
|
-
raw[..-2].reduce(
|
20
|
-
|
18
|
+
code_context =
|
19
|
+
raw[..-2].reduce(code_context) do |code_context, code_identifier|
|
20
|
+
code_context.code_fetch(code_identifier)
|
21
21
|
end
|
22
22
|
|
23
|
-
|
23
|
+
code_context.code_set(
|
24
24
|
raw.last,
|
25
|
-
if
|
26
|
-
|
25
|
+
if code_operator.to_s == "="
|
26
|
+
code_value
|
27
27
|
else
|
28
|
-
|
28
|
+
code_context.fetch(raw.last).call(
|
29
29
|
**args,
|
30
|
-
operator:
|
31
|
-
arguments:
|
30
|
+
operator: code_operator.to_s.chop,
|
31
|
+
arguments: [code_value]
|
32
32
|
)
|
33
33
|
end
|
34
34
|
)
|
35
35
|
|
36
|
-
|
36
|
+
code_context.code_fetch(raw.last)
|
37
37
|
else
|
38
38
|
super
|
39
39
|
end
|