gloo-lang 0.9.0 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/dependencies.rb +2 -2
- data/lib/{gloo_lang.rb → gloo-lang.rb} +7 -9
- data/lib/gloo_lang/app/args.rb +112 -0
- data/lib/gloo_lang/app/engine.rb +230 -0
- data/lib/gloo_lang/app/help.rb +156 -0
- data/lib/gloo_lang/app/log.rb +81 -0
- data/lib/gloo_lang/app/mode.rb +27 -0
- data/lib/gloo_lang/app/settings.rb +186 -0
- data/lib/gloo_lang/convert/converter.rb +35 -0
- data/lib/gloo_lang/convert/string_to_datetime.rb +21 -0
- data/lib/gloo_lang/convert/string_to_decimal.rb +20 -0
- data/lib/gloo_lang/convert/string_to_integer.rb +20 -0
- data/lib/gloo_lang/core/baseo.rb +30 -0
- data/lib/gloo_lang/core/dictionary.rb +181 -0
- data/lib/gloo_lang/core/error.rb +61 -0
- data/lib/gloo_lang/core/event_manager.rb +44 -0
- data/lib/gloo_lang/core/factory.rb +210 -0
- data/lib/gloo_lang/core/gloo_system.rb +266 -0
- data/lib/gloo_lang/core/heap.rb +52 -0
- data/lib/gloo_lang/core/here.rb +36 -0
- data/lib/gloo_lang/core/it.rb +36 -0
- data/lib/gloo_lang/core/literal.rb +30 -0
- data/lib/gloo_lang/core/obj.rb +303 -0
- data/lib/gloo_lang/core/obj_finder.rb +30 -0
- data/lib/gloo_lang/core/op.rb +40 -0
- data/lib/gloo_lang/core/parser.rb +59 -0
- data/lib/gloo_lang/core/pn.rb +188 -0
- data/lib/gloo_lang/core/tokens.rb +165 -0
- data/lib/gloo_lang/core/verb.rb +86 -0
- data/lib/gloo_lang/exec/action.rb +48 -0
- data/lib/gloo_lang/exec/dispatch.rb +40 -0
- data/lib/gloo_lang/exec/exec_env.rb +74 -0
- data/lib/gloo_lang/exec/runner.rb +45 -0
- data/lib/gloo_lang/exec/script.rb +49 -0
- data/lib/gloo_lang/exec/stack.rb +78 -0
- data/lib/gloo_lang/expr/expression.rb +118 -0
- data/lib/gloo_lang/expr/l_boolean.rb +36 -0
- data/lib/gloo_lang/expr/l_decimal.rb +39 -0
- data/lib/gloo_lang/expr/l_integer.rb +37 -0
- data/lib/gloo_lang/expr/l_string.rb +58 -0
- data/lib/gloo_lang/expr/op_div.rb +22 -0
- data/lib/gloo_lang/expr/op_minus.rb +22 -0
- data/lib/gloo_lang/expr/op_mult.rb +22 -0
- data/lib/gloo_lang/expr/op_plus.rb +24 -0
- data/lib/gloo_lang/help/app/application.txt +22 -0
- data/lib/gloo_lang/help/app/configuration.txt +7 -0
- data/lib/gloo_lang/help/app/default_help.txt +14 -0
- data/lib/gloo_lang/help/app/logging.txt +16 -0
- data/lib/gloo_lang/help/core/color.txt +31 -0
- data/lib/gloo_lang/help/core/error.txt +33 -0
- data/lib/gloo_lang/help/core/events.txt +21 -0
- data/lib/gloo_lang/help/core/gloo_system.txt +57 -0
- data/lib/gloo_lang/help/core/here.txt +30 -0
- data/lib/gloo_lang/help/core/it.txt +23 -0
- data/lib/gloo_lang/help/core/ops.txt +16 -0
- data/lib/gloo_lang/help/core/pathname.txt +29 -0
- data/lib/gloo_lang/help/objs/basic/alias.txt +36 -0
- data/lib/gloo_lang/help/objs/basic/boolean.txt +28 -0
- data/lib/gloo_lang/help/objs/basic/container.txt +33 -0
- data/lib/gloo_lang/help/objs/basic/decimal.txt +28 -0
- data/lib/gloo_lang/help/objs/basic/integer.txt +27 -0
- data/lib/gloo_lang/help/objs/basic/script.txt +29 -0
- data/lib/gloo_lang/help/objs/basic/string.txt +28 -0
- data/lib/gloo_lang/help/objs/basic/text.txt +27 -0
- data/lib/gloo_lang/help/objs/basic/untyped.txt +22 -0
- data/lib/gloo_lang/help/objs/cli/banner.txt +49 -0
- data/lib/gloo_lang/help/objs/cli/bar.txt +37 -0
- data/lib/gloo_lang/help/objs/cli/colorize.txt +33 -0
- data/lib/gloo_lang/help/objs/cli/confirm.txt +26 -0
- data/lib/gloo_lang/help/objs/cli/menu.txt +44 -0
- data/lib/gloo_lang/help/objs/cli/menu_item.txt +26 -0
- data/lib/gloo_lang/help/objs/cli/pastel.txt +43 -0
- data/lib/gloo_lang/help/objs/cli/prompt.txt +27 -0
- data/lib/gloo_lang/help/objs/cli/select.txt +34 -0
- data/lib/gloo_lang/help/objs/ctrl/each.txt +48 -0
- data/lib/gloo_lang/help/objs/ctrl/repeat.txt +38 -0
- data/lib/gloo_lang/help/objs/data/markdown.txt +25 -0
- data/lib/gloo_lang/help/objs/data/mysql.txt +40 -0
- data/lib/gloo_lang/help/objs/data/query.txt +37 -0
- data/lib/gloo_lang/help/objs/data/sqlite.txt +26 -0
- data/lib/gloo_lang/help/objs/data/table.txt +46 -0
- data/lib/gloo_lang/help/objs/dev/git_repo.txt +36 -0
- data/lib/gloo_lang/help/objs/dev/stats.txt +36 -0
- data/lib/gloo_lang/help/objs/dt/date.txt +23 -0
- data/lib/gloo_lang/help/objs/dt/datetime.txt +24 -0
- data/lib/gloo_lang/help/objs/dt/time.txt +23 -0
- data/lib/gloo_lang/help/objs/ror/erb.txt +37 -0
- data/lib/gloo_lang/help/objs/ror/eval.txt +24 -0
- data/lib/gloo_lang/help/objs/snd/play.txt +23 -0
- data/lib/gloo_lang/help/objs/snd/say.txt +28 -0
- data/lib/gloo_lang/help/objs/system/file.txt +48 -0
- data/lib/gloo_lang/help/objs/system/ssh_exec.txt +30 -0
- data/lib/gloo_lang/help/objs/system/system.txt +32 -0
- data/lib/gloo_lang/help/objs/web/http_get.txt +35 -0
- data/lib/gloo_lang/help/objs/web/http_post.txt +34 -0
- data/lib/gloo_lang/help/objs/web/json.txt +34 -0
- data/lib/gloo_lang/help/objs/web/slack.txt +33 -0
- data/lib/gloo_lang/help/objs/web/teams.txt +30 -0
- data/lib/gloo_lang/help/objs/web/uri.txt +38 -0
- data/lib/gloo_lang/help/verbs/alert.txt +33 -0
- data/lib/gloo_lang/help/verbs/beep.txt +25 -0
- data/lib/gloo_lang/help/verbs/cls.txt +24 -0
- data/lib/gloo_lang/help/verbs/context.txt +43 -0
- data/lib/gloo_lang/help/verbs/create.txt +33 -0
- data/lib/gloo_lang/help/verbs/execute.txt +27 -0
- data/lib/gloo_lang/help/verbs/help.txt +34 -0
- data/lib/gloo_lang/help/verbs/if.txt +37 -0
- data/lib/gloo_lang/help/verbs/list.txt +34 -0
- data/lib/gloo_lang/help/verbs/load.txt +38 -0
- data/lib/gloo_lang/help/verbs/move.txt +42 -0
- data/lib/gloo_lang/help/verbs/put.txt +38 -0
- data/lib/gloo_lang/help/verbs/quit.txt +25 -0
- data/lib/gloo_lang/help/verbs/run.txt +41 -0
- data/lib/gloo_lang/help/verbs/save.txt +26 -0
- data/lib/gloo_lang/help/verbs/show.txt +30 -0
- data/lib/gloo_lang/help/verbs/tell.txt +34 -0
- data/lib/gloo_lang/help/verbs/unless.txt +38 -0
- data/lib/gloo_lang/help/verbs/version.txt +32 -0
- data/lib/gloo_lang/help/verbs/wait.txt +29 -0
- data/lib/gloo_lang/objs/basic/alias.rb +78 -0
- data/lib/gloo_lang/objs/basic/boolean.rb +120 -0
- data/lib/gloo_lang/objs/basic/container.rb +76 -0
- data/lib/gloo_lang/objs/basic/decimal.rb +76 -0
- data/lib/gloo_lang/objs/basic/integer.rb +73 -0
- data/lib/gloo_lang/objs/basic/script.rb +99 -0
- data/lib/gloo_lang/objs/basic/string.rb +77 -0
- data/lib/gloo_lang/objs/basic/text.rb +87 -0
- data/lib/gloo_lang/objs/basic/untyped.rb +41 -0
- data/lib/gloo_lang/objs/cli/banner.rb +108 -0
- data/lib/gloo_lang/objs/cli/bar.rb +133 -0
- data/lib/gloo_lang/objs/cli/colorize.rb +73 -0
- data/lib/gloo_lang/objs/cli/confirm.rb +96 -0
- data/lib/gloo_lang/objs/cli/menu.rb +206 -0
- data/lib/gloo_lang/objs/cli/menu_item.rb +95 -0
- data/lib/gloo_lang/objs/cli/pastel.rb +97 -0
- data/lib/gloo_lang/objs/cli/prompt.rb +110 -0
- data/lib/gloo_lang/objs/cli/select.rb +126 -0
- data/lib/gloo_lang/objs/ctrl/each.rb +279 -0
- data/lib/gloo_lang/objs/ctrl/repeat.rb +108 -0
- data/lib/gloo_lang/objs/data/markdown.rb +84 -0
- data/lib/gloo_lang/objs/data/mysql.rb +192 -0
- data/lib/gloo_lang/objs/data/query.rb +176 -0
- data/lib/gloo_lang/objs/data/sqlite.rb +159 -0
- data/lib/gloo_lang/objs/data/table.rb +140 -0
- data/lib/gloo_lang/objs/dev/git.rb +140 -0
- data/lib/gloo_lang/objs/dev/stats.rb +120 -0
- data/lib/gloo_lang/objs/dt/date.rb +50 -0
- data/lib/gloo_lang/objs/dt/datetime.rb +62 -0
- data/lib/gloo_lang/objs/dt/time.rb +50 -0
- data/lib/gloo_lang/objs/ror/erb.rb +116 -0
- data/lib/gloo_lang/objs/ror/eval.rb +107 -0
- data/lib/gloo_lang/objs/snd/play.rb +48 -0
- data/lib/gloo_lang/objs/snd/say.rb +98 -0
- data/lib/gloo_lang/objs/system/file_handle.rb +138 -0
- data/lib/gloo_lang/objs/system/ssh_exec.rb +126 -0
- data/lib/gloo_lang/objs/system/system.rb +136 -0
- data/lib/gloo_lang/objs/web/http_get.rb +159 -0
- data/lib/gloo_lang/objs/web/http_post.rb +183 -0
- data/lib/gloo_lang/objs/web/json.rb +135 -0
- data/lib/gloo_lang/objs/web/slack.rb +130 -0
- data/lib/gloo_lang/objs/web/teams.rb +117 -0
- data/lib/gloo_lang/objs/web/uri.rb +148 -0
- data/lib/gloo_lang/persist/file_loader.rb +191 -0
- data/lib/gloo_lang/persist/file_saver.rb +49 -0
- data/lib/gloo_lang/persist/file_storage.rb +45 -0
- data/lib/gloo_lang/persist/line_splitter.rb +81 -0
- data/lib/gloo_lang/persist/persist_man.rb +120 -0
- data/lib/gloo_lang/utils/format.rb +21 -0
- data/lib/gloo_lang/utils/stats.rb +205 -0
- data/lib/gloo_lang/utils/words.rb +19 -0
- data/lib/gloo_lang/verbs/alert.rb +79 -0
- data/lib/gloo_lang/verbs/beep.rb +40 -0
- data/lib/gloo_lang/verbs/cls.rb +37 -0
- data/lib/gloo_lang/verbs/context.rb +62 -0
- data/lib/gloo_lang/verbs/create.rb +68 -0
- data/lib/gloo_lang/verbs/execute.rb +56 -0
- data/lib/gloo_lang/verbs/help.rb +264 -0
- data/lib/gloo_lang/verbs/if.rb +92 -0
- data/lib/gloo_lang/verbs/list.rb +98 -0
- data/lib/gloo_lang/verbs/load.rb +45 -0
- data/lib/gloo_lang/verbs/move.rb +89 -0
- data/lib/gloo_lang/verbs/put.rb +94 -0
- data/lib/gloo_lang/verbs/quit.rb +40 -0
- data/lib/gloo_lang/verbs/run.rb +75 -0
- data/lib/gloo_lang/verbs/save.rb +39 -0
- data/lib/gloo_lang/verbs/show.rb +64 -0
- data/lib/gloo_lang/verbs/tell.rb +79 -0
- data/lib/gloo_lang/verbs/unless.rb +92 -0
- data/lib/gloo_lang/verbs/version.rb +37 -0
- data/lib/gloo_lang/verbs/wait.rb +42 -0
- metadata +191 -3
@@ -0,0 +1,159 @@
|
|
1
|
+
# Author:: Eric Crane (mailto:eric.crane@mac.com)
|
2
|
+
# Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved.
|
3
|
+
#
|
4
|
+
# An object that can post JSON to a URI.
|
5
|
+
#
|
6
|
+
require 'net/http'
|
7
|
+
require 'uri'
|
8
|
+
require 'json'
|
9
|
+
require 'openssl'
|
10
|
+
|
11
|
+
module GlooLang
|
12
|
+
module Objs
|
13
|
+
class HttpGet < GlooLang::Core::Obj
|
14
|
+
|
15
|
+
KEYWORD = 'http_get'.freeze
|
16
|
+
KEYWORD_SHORT = 'get'.freeze
|
17
|
+
URL = 'uri'.freeze
|
18
|
+
DEFAULT_URL = 'https://web.site/'.freeze
|
19
|
+
PARAMS = 'params'.freeze
|
20
|
+
RESULT = 'result'.freeze
|
21
|
+
SKIP_SSL_VERIFY = 'skip_ssl_verify'.freeze
|
22
|
+
|
23
|
+
#
|
24
|
+
# The name of the object type.
|
25
|
+
#
|
26
|
+
def self.typename
|
27
|
+
return KEYWORD
|
28
|
+
end
|
29
|
+
|
30
|
+
#
|
31
|
+
# The short name of the object type.
|
32
|
+
#
|
33
|
+
def self.short_typename
|
34
|
+
return KEYWORD_SHORT
|
35
|
+
end
|
36
|
+
|
37
|
+
# ---------------------------------------------------------------------
|
38
|
+
# Children
|
39
|
+
# ---------------------------------------------------------------------
|
40
|
+
|
41
|
+
#
|
42
|
+
# Does this object have children to add when an object
|
43
|
+
# is created in interactive mode?
|
44
|
+
# This does not apply during obj load, etc.
|
45
|
+
#
|
46
|
+
def add_children_on_create?
|
47
|
+
return true
|
48
|
+
end
|
49
|
+
|
50
|
+
#
|
51
|
+
# Add children to this object.
|
52
|
+
# This is used by containers to add children needed
|
53
|
+
# for default configurations.
|
54
|
+
#
|
55
|
+
def add_default_children
|
56
|
+
fac = $engine.factory
|
57
|
+
fac.create_string URL, DEFAULT_URL, self
|
58
|
+
fac.create_can PARAMS, self
|
59
|
+
fac.create_string RESULT, nil, self
|
60
|
+
end
|
61
|
+
|
62
|
+
# ---------------------------------------------------------------------
|
63
|
+
# Messages
|
64
|
+
# ---------------------------------------------------------------------
|
65
|
+
|
66
|
+
#
|
67
|
+
# Get a list of message names that this object receives.
|
68
|
+
#
|
69
|
+
def self.messages
|
70
|
+
return super + [ 'run' ]
|
71
|
+
end
|
72
|
+
|
73
|
+
#
|
74
|
+
# Post the content to the endpoint.
|
75
|
+
#
|
76
|
+
def msg_run
|
77
|
+
url = full_url_value
|
78
|
+
$log.debug url
|
79
|
+
r = GlooLang::Objs::HttpGet.invoke_request( url, skip_ssl_verify? )
|
80
|
+
update_result r
|
81
|
+
end
|
82
|
+
|
83
|
+
# ---------------------------------------------------------------------
|
84
|
+
# Static functions
|
85
|
+
# ---------------------------------------------------------------------
|
86
|
+
|
87
|
+
#
|
88
|
+
# Post the content to the endpoint.
|
89
|
+
#
|
90
|
+
def self.invoke_request( url, skip_ssl_verify = false )
|
91
|
+
uri = URI( url )
|
92
|
+
params = { use_ssl: uri.scheme == 'https' }
|
93
|
+
|
94
|
+
params[ :verify_mode ] = ::OpenSSL::SSL::VERIFY_NONE if skip_ssl_verify
|
95
|
+
|
96
|
+
Net::HTTP.start( uri.host, uri.port, params ) do |http|
|
97
|
+
request = Net::HTTP::Get.new uri
|
98
|
+
response = http.request request # Net::HTTPResponse object
|
99
|
+
return response.body
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
# ---------------------------------------------------------------------
|
104
|
+
# Private functions
|
105
|
+
# ---------------------------------------------------------------------
|
106
|
+
|
107
|
+
private
|
108
|
+
|
109
|
+
#
|
110
|
+
# Get the URI from the child object.
|
111
|
+
# Returns nil if there is none.
|
112
|
+
#
|
113
|
+
def uri_value
|
114
|
+
uri = find_child URL
|
115
|
+
return nil unless uri
|
116
|
+
|
117
|
+
return uri.value
|
118
|
+
end
|
119
|
+
|
120
|
+
#
|
121
|
+
# Should we skip SSL verification during the request?
|
122
|
+
#
|
123
|
+
def skip_ssl_verify?
|
124
|
+
skip = find_child SKIP_SSL_VERIFY
|
125
|
+
return false unless skip
|
126
|
+
|
127
|
+
return skip.value
|
128
|
+
end
|
129
|
+
|
130
|
+
#
|
131
|
+
# Set the result of the API call.
|
132
|
+
#
|
133
|
+
def update_result( data )
|
134
|
+
r = find_child RESULT
|
135
|
+
return nil unless r
|
136
|
+
|
137
|
+
r.set_value data
|
138
|
+
end
|
139
|
+
|
140
|
+
#
|
141
|
+
# Get the URL for the service including all URL params.
|
142
|
+
#
|
143
|
+
def full_url_value
|
144
|
+
p = ''
|
145
|
+
params = find_child PARAMS
|
146
|
+
params.children.each do |child|
|
147
|
+
p << ( p.empty? ? '?' : '&' )
|
148
|
+
|
149
|
+
child = GlooLang::Objs::Alias.resolve_alias( child )
|
150
|
+
|
151
|
+
# TODO: Quote URL params for safety
|
152
|
+
p << "#{child.name}=#{child.value}"
|
153
|
+
end
|
154
|
+
return "#{uri_value}#{p}"
|
155
|
+
end
|
156
|
+
|
157
|
+
end
|
158
|
+
end
|
159
|
+
end
|
@@ -0,0 +1,183 @@
|
|
1
|
+
# Author:: Eric Crane (mailto:eric.crane@mac.com)
|
2
|
+
# Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved.
|
3
|
+
#
|
4
|
+
# An object that can post JSON to a URI.
|
5
|
+
#
|
6
|
+
require 'net/http'
|
7
|
+
require 'uri'
|
8
|
+
require 'json'
|
9
|
+
|
10
|
+
module GlooLang
|
11
|
+
module Objs
|
12
|
+
class HttpPost < GlooLang::Core::Obj
|
13
|
+
|
14
|
+
KEYWORD = 'http_post'.freeze
|
15
|
+
KEYWORD_SHORT = 'post'.freeze
|
16
|
+
URL = 'uri'.freeze
|
17
|
+
BODY = 'body'.freeze
|
18
|
+
RESULT = 'result'.freeze
|
19
|
+
SKIP_SSL_VERIFY = 'skip_ssl_verify'.freeze
|
20
|
+
|
21
|
+
#
|
22
|
+
# The name of the object type.
|
23
|
+
#
|
24
|
+
def self.typename
|
25
|
+
return KEYWORD
|
26
|
+
end
|
27
|
+
|
28
|
+
#
|
29
|
+
# The short name of the object type.
|
30
|
+
#
|
31
|
+
def self.short_typename
|
32
|
+
return KEYWORD_SHORT
|
33
|
+
end
|
34
|
+
|
35
|
+
#
|
36
|
+
# Get the URI from the child object.
|
37
|
+
# Returns nil if there is none.
|
38
|
+
#
|
39
|
+
def uri_value
|
40
|
+
uri = find_child URL
|
41
|
+
return nil unless uri
|
42
|
+
|
43
|
+
return uri.value
|
44
|
+
end
|
45
|
+
|
46
|
+
#
|
47
|
+
# Get all the children of the body container and
|
48
|
+
# convert to JSON that will be sent in the HTTP body.
|
49
|
+
#
|
50
|
+
def body_as_json
|
51
|
+
h = {}
|
52
|
+
|
53
|
+
body = find_child BODY
|
54
|
+
body.children.each do |child|
|
55
|
+
child_val = GlooLang::Objs::Alias.resolve_alias( child )
|
56
|
+
h[ child.name ] = child_val.value
|
57
|
+
end
|
58
|
+
|
59
|
+
return h.to_json
|
60
|
+
end
|
61
|
+
|
62
|
+
#
|
63
|
+
# Set the result of the API call.
|
64
|
+
#
|
65
|
+
def update_result( data )
|
66
|
+
r = find_child RESULT
|
67
|
+
return nil unless r
|
68
|
+
|
69
|
+
r.set_value data
|
70
|
+
end
|
71
|
+
|
72
|
+
# ---------------------------------------------------------------------
|
73
|
+
# Children
|
74
|
+
# ---------------------------------------------------------------------
|
75
|
+
|
76
|
+
#
|
77
|
+
# Does this object have children to add when an object
|
78
|
+
# is created in interactive mode?
|
79
|
+
# This does not apply during obj load, etc.
|
80
|
+
#
|
81
|
+
def add_children_on_create?
|
82
|
+
return true
|
83
|
+
end
|
84
|
+
|
85
|
+
#
|
86
|
+
# Add children to this object.
|
87
|
+
# This is used by containers to add children needed
|
88
|
+
# for default configurations.
|
89
|
+
#
|
90
|
+
def add_default_children
|
91
|
+
fac = $engine.factory
|
92
|
+
fac.create_string URL, 'https://web.site/', self
|
93
|
+
fac.create_can BODY, self
|
94
|
+
end
|
95
|
+
|
96
|
+
# ---------------------------------------------------------------------
|
97
|
+
# Messages
|
98
|
+
# ---------------------------------------------------------------------
|
99
|
+
|
100
|
+
#
|
101
|
+
# Get a list of message names that this object receives.
|
102
|
+
#
|
103
|
+
def self.messages
|
104
|
+
return super + [ 'run' ]
|
105
|
+
end
|
106
|
+
|
107
|
+
#
|
108
|
+
# Post the content to the endpoint.
|
109
|
+
#
|
110
|
+
def msg_run
|
111
|
+
uri = uri_value
|
112
|
+
return unless uri
|
113
|
+
|
114
|
+
$log.debug "posting to: #{uri}"
|
115
|
+
body = self.body_as_json
|
116
|
+
$log.debug "posting body: #{body}"
|
117
|
+
data = GlooLang::Objs::HttpPost.post_json( uri, body, skip_ssl_verify? )
|
118
|
+
self.update_result data
|
119
|
+
end
|
120
|
+
|
121
|
+
# ---------------------------------------------------------------------
|
122
|
+
# Static functions
|
123
|
+
# ---------------------------------------------------------------------
|
124
|
+
|
125
|
+
#
|
126
|
+
# Post the content to the endpoint.
|
127
|
+
#
|
128
|
+
def self.post_json( url, body, skip_ssl_verify = false )
|
129
|
+
uri = URI( url )
|
130
|
+
params = { use_ssl: uri.scheme == 'https' }
|
131
|
+
params[ :verify_mode ] = ::OpenSSL::SSL::VERIFY_NONE if skip_ssl_verify
|
132
|
+
|
133
|
+
Net::HTTP.start( uri.host, uri.port, params ) do |http|
|
134
|
+
request = Net::HTTP::Post.new uri
|
135
|
+
request.content_type = 'application/json'
|
136
|
+
request.body = body
|
137
|
+
|
138
|
+
result = http.request request # Net::HTTPResponse object
|
139
|
+
$log.debug result.code
|
140
|
+
$log.debug result.message
|
141
|
+
return result.body
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
# #
|
146
|
+
# # Post the content to the endpoint.
|
147
|
+
# #
|
148
|
+
# def self.post_json_1( url, body, use_ssl = true )
|
149
|
+
# # Structure the request
|
150
|
+
# uri = URI.parse( url )
|
151
|
+
#
|
152
|
+
# request = Net::HTTP::Post.new( uri.path )
|
153
|
+
# request.content_type = 'application/json'
|
154
|
+
# request.body = body
|
155
|
+
# n = Net::HTTP.new( uri.host, uri.port )
|
156
|
+
# n.use_ssl = use_ssl
|
157
|
+
#
|
158
|
+
# # Send the payload to the endpoint.
|
159
|
+
# result = n.start { |http| http.request( request ) }
|
160
|
+
# $log.debug result.code
|
161
|
+
# $log.debug result.message
|
162
|
+
# return result.body
|
163
|
+
# end
|
164
|
+
|
165
|
+
# ---------------------------------------------------------------------
|
166
|
+
# Private functions
|
167
|
+
# ---------------------------------------------------------------------
|
168
|
+
|
169
|
+
private
|
170
|
+
|
171
|
+
#
|
172
|
+
# Should we skip SSL verification during the request?
|
173
|
+
#
|
174
|
+
def skip_ssl_verify?
|
175
|
+
skip = find_child SKIP_SSL_VERIFY
|
176
|
+
return false unless skip
|
177
|
+
|
178
|
+
return skip.value
|
179
|
+
end
|
180
|
+
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
@@ -0,0 +1,135 @@
|
|
1
|
+
# Author:: Eric Crane (mailto:eric.crane@mac.com)
|
2
|
+
# Copyright:: Copyright (c) 2020 Eric Crane. All rights reserved.
|
3
|
+
#
|
4
|
+
# JSON data.
|
5
|
+
#
|
6
|
+
require 'json'
|
7
|
+
|
8
|
+
module GlooLang
|
9
|
+
module Objs
|
10
|
+
class Json < GlooLang::Core::Obj
|
11
|
+
|
12
|
+
KEYWORD = 'json'.freeze
|
13
|
+
KEYWORD_SHORT = 'json'.freeze
|
14
|
+
|
15
|
+
#
|
16
|
+
# The name of the object type.
|
17
|
+
#
|
18
|
+
def self.typename
|
19
|
+
return KEYWORD
|
20
|
+
end
|
21
|
+
|
22
|
+
#
|
23
|
+
# The short name of the object type.
|
24
|
+
#
|
25
|
+
def self.short_typename
|
26
|
+
return KEYWORD_SHORT
|
27
|
+
end
|
28
|
+
|
29
|
+
#
|
30
|
+
# Set the value with any necessary type conversions.
|
31
|
+
#
|
32
|
+
def set_value( new_value )
|
33
|
+
self.value = new_value.to_s
|
34
|
+
end
|
35
|
+
|
36
|
+
#
|
37
|
+
# Does this object support multi-line values?
|
38
|
+
# Initially only true for scripts.
|
39
|
+
#
|
40
|
+
def multiline_value?
|
41
|
+
return false
|
42
|
+
end
|
43
|
+
|
44
|
+
#
|
45
|
+
# Get the number of lines of text.
|
46
|
+
#
|
47
|
+
def line_count
|
48
|
+
return value.split( "\n" ).count
|
49
|
+
end
|
50
|
+
|
51
|
+
# ---------------------------------------------------------------------
|
52
|
+
# Messages
|
53
|
+
# ---------------------------------------------------------------------
|
54
|
+
|
55
|
+
#
|
56
|
+
# Get a list of message names that this object receives.
|
57
|
+
#
|
58
|
+
def self.messages
|
59
|
+
return super + %w[get parse pretty]
|
60
|
+
end
|
61
|
+
|
62
|
+
#
|
63
|
+
# Make the JSON pretty.
|
64
|
+
#
|
65
|
+
def msg_pretty
|
66
|
+
pretty = JSON.pretty_generate( self.value )
|
67
|
+
puts pretty
|
68
|
+
set_value pretty
|
69
|
+
end
|
70
|
+
|
71
|
+
#
|
72
|
+
# Get a value from the JSON data.
|
73
|
+
# The additional parameter is the path to the value.
|
74
|
+
#
|
75
|
+
def msg_get
|
76
|
+
if @params&.token_count&.positive?
|
77
|
+
expr = GlooLang::Expr::Expression.new( @params.tokens )
|
78
|
+
data = expr.evaluate
|
79
|
+
end
|
80
|
+
return unless data
|
81
|
+
|
82
|
+
h = JSON.parse( self.value )
|
83
|
+
field = h[ data ]
|
84
|
+
$engine.heap.it.set_to field
|
85
|
+
return field
|
86
|
+
end
|
87
|
+
|
88
|
+
#
|
89
|
+
# Parse the JSON data and put it in objects.
|
90
|
+
# The additional parameter is the path to the destination
|
91
|
+
# for the parsed objects.
|
92
|
+
#
|
93
|
+
def msg_parse
|
94
|
+
if @params&.token_count&.positive?
|
95
|
+
pn = GlooLang::Core::Pn.new @params.tokens.first
|
96
|
+
unless pn&.exists?
|
97
|
+
$engine.err 'Destination path for parsed objects does not exist'
|
98
|
+
return
|
99
|
+
end
|
100
|
+
else
|
101
|
+
$engine.err 'Destination path for parsed objects is required'
|
102
|
+
return
|
103
|
+
end
|
104
|
+
parent = pn.resolve
|
105
|
+
|
106
|
+
json = JSON.parse( self.value )
|
107
|
+
self.handle_json( json, parent )
|
108
|
+
end
|
109
|
+
|
110
|
+
#
|
111
|
+
# Handle JSON, creating objects and setting values.
|
112
|
+
# Note that this is a recursive function.
|
113
|
+
#
|
114
|
+
def handle_json( json, parent )
|
115
|
+
if json.class == Hash
|
116
|
+
json.each do |k, v|
|
117
|
+
if v.class == Array
|
118
|
+
o = parent.find_add_child( k, 'can' )
|
119
|
+
handle_json( v, o )
|
120
|
+
else
|
121
|
+
o = parent.find_add_child( k, 'untyped' )
|
122
|
+
o.set_value v
|
123
|
+
end
|
124
|
+
end
|
125
|
+
elsif json.class == Array
|
126
|
+
json.each_with_index do |o, index|
|
127
|
+
child = parent.find_add_child( index.to_s, 'can' )
|
128
|
+
handle_json( o, child )
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
@@ -0,0 +1,130 @@
|
|
1
|
+
# Author:: Eric Crane (mailto:eric.crane@mac.com)
|
2
|
+
# Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved.
|
3
|
+
#
|
4
|
+
# An object that can send a message to a slack channel.
|
5
|
+
#
|
6
|
+
require 'net/http'
|
7
|
+
require 'uri'
|
8
|
+
require 'json'
|
9
|
+
|
10
|
+
module GlooLang
|
11
|
+
module Objs
|
12
|
+
class Slack < GlooLang::Core::Obj
|
13
|
+
|
14
|
+
KEYWORD = 'slack'.freeze
|
15
|
+
KEYWORD_SHORT = 'slack'.freeze
|
16
|
+
URL = 'uri'.freeze
|
17
|
+
MSG = 'message'.freeze
|
18
|
+
USER = 'username'.freeze
|
19
|
+
CHANNEL = 'channel'.freeze
|
20
|
+
ICON = 'icon_emoji'.freeze
|
21
|
+
|
22
|
+
ATTACHMENT = 'attachment'.freeze
|
23
|
+
TITLE = 'title'.freeze
|
24
|
+
TEXT = 'text'.freeze
|
25
|
+
|
26
|
+
#
|
27
|
+
# The name of the object type.
|
28
|
+
#
|
29
|
+
def self.typename
|
30
|
+
return KEYWORD
|
31
|
+
end
|
32
|
+
|
33
|
+
#
|
34
|
+
# The short name of the object type.
|
35
|
+
#
|
36
|
+
def self.short_typename
|
37
|
+
return KEYWORD_SHORT
|
38
|
+
end
|
39
|
+
|
40
|
+
#
|
41
|
+
# Get the URI from the child object.
|
42
|
+
# Returns nil if there is none.
|
43
|
+
#
|
44
|
+
def uri_value
|
45
|
+
uri = find_child URL
|
46
|
+
return nil unless uri
|
47
|
+
|
48
|
+
return uri.value
|
49
|
+
end
|
50
|
+
|
51
|
+
#
|
52
|
+
# Get the URI from the child object.
|
53
|
+
# Returns nil if there is none.
|
54
|
+
#
|
55
|
+
def attachment_value
|
56
|
+
o = find_child ATTACHMENT
|
57
|
+
return nil unless o
|
58
|
+
|
59
|
+
title = o.find_child TITLE
|
60
|
+
text = o.find_child TEXT
|
61
|
+
return [ { 'title' => title.value,
|
62
|
+
'text' => text.value } ]
|
63
|
+
end
|
64
|
+
|
65
|
+
#
|
66
|
+
# Get all the children of the body container and
|
67
|
+
# convert to JSON that will be sent in the HTTP body.
|
68
|
+
#
|
69
|
+
def body_as_json
|
70
|
+
h = { 'text' => find_child( MSG ).value,
|
71
|
+
'username' => find_child( USER ).value,
|
72
|
+
'channel' => find_child( CHANNEL ).value,
|
73
|
+
'icon_emoji' => find_child( ICON ).value }
|
74
|
+
|
75
|
+
o = attachment_value
|
76
|
+
h[ 'attachments' ] = o if o
|
77
|
+
return h.to_json
|
78
|
+
end
|
79
|
+
|
80
|
+
# ---------------------------------------------------------------------
|
81
|
+
# Children
|
82
|
+
# ---------------------------------------------------------------------
|
83
|
+
|
84
|
+
#
|
85
|
+
# Does this object have children to add when an object
|
86
|
+
# is created in interactive mode?
|
87
|
+
# This does not apply during obj load, etc.
|
88
|
+
#
|
89
|
+
def add_children_on_create?
|
90
|
+
return true
|
91
|
+
end
|
92
|
+
|
93
|
+
#
|
94
|
+
# Add children to this object.
|
95
|
+
# This is used by containers to add children needed
|
96
|
+
# for default configurations.
|
97
|
+
#
|
98
|
+
def add_default_children
|
99
|
+
fac = $engine.factory
|
100
|
+
fac.create_string URL, 'https://hooks.slack.com/services/...', self
|
101
|
+
fac.create_string MSG, 'textual message', self
|
102
|
+
fac.create_string USER, 'Slack Bot', self
|
103
|
+
fac.create_string CHANNEL, 'general', self
|
104
|
+
fac.create_string ICON, ':ghost:', self
|
105
|
+
end
|
106
|
+
|
107
|
+
# ---------------------------------------------------------------------
|
108
|
+
# Messages
|
109
|
+
# ---------------------------------------------------------------------
|
110
|
+
|
111
|
+
#
|
112
|
+
# Get a list of message names that this object receives.
|
113
|
+
#
|
114
|
+
def self.messages
|
115
|
+
return super + [ 'run' ]
|
116
|
+
end
|
117
|
+
|
118
|
+
#
|
119
|
+
# Post the content to the Slack channel.
|
120
|
+
#
|
121
|
+
def msg_run
|
122
|
+
uri = uri_value
|
123
|
+
return unless uri
|
124
|
+
|
125
|
+
GlooLang::Objs::HttpPost.post_json uri, body_as_json
|
126
|
+
end
|
127
|
+
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
@@ -0,0 +1,117 @@
|
|
1
|
+
# Author:: Eric Crane (mailto:eric.crane@mac.com)
|
2
|
+
# Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved.
|
3
|
+
#
|
4
|
+
# An object that can send a message to a Teams webhook.
|
5
|
+
#
|
6
|
+
require 'net/http'
|
7
|
+
require 'uri'
|
8
|
+
require 'json'
|
9
|
+
|
10
|
+
module GlooLang
|
11
|
+
module Objs
|
12
|
+
class Teams < GlooLang::Core::Obj
|
13
|
+
|
14
|
+
KEYWORD = 'teams'.freeze
|
15
|
+
KEYWORD_SHORT = 'team'.freeze
|
16
|
+
URL = 'uri'.freeze
|
17
|
+
DEFAULT_URL = 'https://outlook.office.com/webhook/...'.freeze
|
18
|
+
MSG = 'message'.freeze
|
19
|
+
TITLE = 'title'.freeze
|
20
|
+
COLOR = 'color'.freeze
|
21
|
+
DEFAULT_COLOR = '008000'.freeze
|
22
|
+
|
23
|
+
#
|
24
|
+
# The name of the object type.
|
25
|
+
#
|
26
|
+
def self.typename
|
27
|
+
return KEYWORD
|
28
|
+
end
|
29
|
+
|
30
|
+
#
|
31
|
+
# The short name of the object type.
|
32
|
+
#
|
33
|
+
def self.short_typename
|
34
|
+
return KEYWORD_SHORT
|
35
|
+
end
|
36
|
+
|
37
|
+
#
|
38
|
+
# Get the URI from the child object.
|
39
|
+
# Returns nil if there is none.
|
40
|
+
#
|
41
|
+
def uri_value
|
42
|
+
uri = find_child URL
|
43
|
+
return nil unless uri
|
44
|
+
|
45
|
+
return uri.value
|
46
|
+
end
|
47
|
+
|
48
|
+
# Get the color value.
|
49
|
+
def color_value
|
50
|
+
c = find_child COLOR
|
51
|
+
return nil unless c
|
52
|
+
|
53
|
+
return c.value
|
54
|
+
end
|
55
|
+
|
56
|
+
#
|
57
|
+
# Get all the children of the body container and
|
58
|
+
# convert to JSON that will be sent in the HTTP body.
|
59
|
+
#
|
60
|
+
def body_as_json
|
61
|
+
h = { 'title' => find_child( TITLE ).value,
|
62
|
+
'text' => find_child( MSG ).value }
|
63
|
+
color = color_value
|
64
|
+
h[ 'themeColor' ] = color if color
|
65
|
+
return h.to_json
|
66
|
+
end
|
67
|
+
|
68
|
+
# ---------------------------------------------------------------------
|
69
|
+
# Children
|
70
|
+
# ---------------------------------------------------------------------
|
71
|
+
|
72
|
+
#
|
73
|
+
# Does this object have children to add when an object
|
74
|
+
# is created in interactive mode?
|
75
|
+
# This does not apply during obj load, etc.
|
76
|
+
#
|
77
|
+
def add_children_on_create?
|
78
|
+
return true
|
79
|
+
end
|
80
|
+
|
81
|
+
#
|
82
|
+
# Add children to this object.
|
83
|
+
# This is used by containers to add children needed
|
84
|
+
# for default configurations.
|
85
|
+
#
|
86
|
+
def add_default_children
|
87
|
+
fac = $engine.factory
|
88
|
+
fac.create_string URL, DEFAULT_URL, self
|
89
|
+
fac.create_string TITLE, '', self
|
90
|
+
fac.create_string COLOR, DEFAULT_COLOR, self
|
91
|
+
fac.create_string MSG, '', self
|
92
|
+
end
|
93
|
+
|
94
|
+
# ---------------------------------------------------------------------
|
95
|
+
# Messages
|
96
|
+
# ---------------------------------------------------------------------
|
97
|
+
|
98
|
+
#
|
99
|
+
# Get a list of message names that this object receives.
|
100
|
+
#
|
101
|
+
def self.messages
|
102
|
+
return super + [ 'run' ]
|
103
|
+
end
|
104
|
+
|
105
|
+
#
|
106
|
+
# Post the content to Microsoft Teams.
|
107
|
+
#
|
108
|
+
def msg_run
|
109
|
+
uri = uri_value
|
110
|
+
return unless uri
|
111
|
+
|
112
|
+
GlooLang::Objs::HttpPost.post_json uri, body_as_json
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|