indigoframework_agent_client 0.2.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5fcb8dfb24e0b1e4919da336c4100ecdde5c6396
4
+ data.tar.gz: a715e03eb304aa28820e017b61eb274178fa427f
5
+ SHA512:
6
+ metadata.gz: 566600c75ec4e3dcf0d6fcac677bd140d9e747e546ae36dc11cbdf201cf6974c503f1c69147c1996e4322eb73cfa1a669d4c74fc72c6b2ab7c02bb21b4e46460
7
+ data.tar.gz: c43b6586522c74e973d2c54917e420fef333d1fbed9d56e351f8d7a2b03931358428011d14803dfde00c9ef9e9a1b6d130245e4b485596d02496bdb5d7022e5d
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ pkg
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,3 @@
1
+ # Configuration parameters: CountComments, ExcludedMethods.
2
+ Metrics/BlockLength:
3
+ Max: 64
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ - 2.2
6
+ script:
7
+ - bundle exec rake spec
8
+ - bundle exec rake rubocop
@@ -0,0 +1,2 @@
1
+ {
2
+ }
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at adrien.montfort@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in agent_client.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,80 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ indigoframework_agent_client (0.2.0)
5
+ http (~> 2.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ addressable (2.5.0)
11
+ public_suffix (~> 2.0, >= 2.0.2)
12
+ ast (2.3.0)
13
+ crack (0.4.3)
14
+ safe_yaml (~> 1.0.0)
15
+ diff-lcs (1.3)
16
+ domain_name (0.5.20161129)
17
+ unf (>= 0.0.5, < 1.0.0)
18
+ hashdiff (0.3.2)
19
+ http (2.2.1)
20
+ addressable (~> 2.3)
21
+ http-cookie (~> 1.0)
22
+ http-form_data (~> 1.0.1)
23
+ http_parser.rb (~> 0.6.0)
24
+ http-cookie (1.0.3)
25
+ domain_name (~> 0.5)
26
+ http-form_data (1.0.1)
27
+ http_parser.rb (0.6.0)
28
+ parallel (1.12.1)
29
+ parser (2.4.0.2)
30
+ ast (~> 2.3)
31
+ powerpack (0.1.1)
32
+ public_suffix (2.0.5)
33
+ rainbow (3.0.0)
34
+ rake (10.5.0)
35
+ rspec (3.5.0)
36
+ rspec-core (~> 3.5.0)
37
+ rspec-expectations (~> 3.5.0)
38
+ rspec-mocks (~> 3.5.0)
39
+ rspec-core (3.5.4)
40
+ rspec-support (~> 3.5.0)
41
+ rspec-expectations (3.5.0)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.5.0)
44
+ rspec-mocks (3.5.0)
45
+ diff-lcs (>= 1.2.0, < 2.0)
46
+ rspec-support (~> 3.5.0)
47
+ rspec-support (3.5.0)
48
+ rubocop (0.52.1)
49
+ parallel (~> 1.10)
50
+ parser (>= 2.4.0.2, < 3.0)
51
+ powerpack (~> 0.1)
52
+ rainbow (>= 2.2.2, < 4.0)
53
+ ruby-progressbar (~> 1.7)
54
+ unicode-display_width (~> 1.0, >= 1.0.1)
55
+ ruby-progressbar (1.9.0)
56
+ safe_yaml (1.0.4)
57
+ unf (0.1.4)
58
+ unf_ext
59
+ unf_ext (0.0.7.2)
60
+ unicode-display_width (1.3.0)
61
+ vcr (3.0.3)
62
+ webmock (2.3.2)
63
+ addressable (>= 2.3.6)
64
+ crack (>= 0.3.2)
65
+ hashdiff
66
+
67
+ PLATFORMS
68
+ ruby
69
+
70
+ DEPENDENCIES
71
+ bundler (~> 1.12)
72
+ indigoframework_agent_client!
73
+ rake (~> 10.0)
74
+ rspec (~> 3.0)
75
+ rubocop (~> 0.52)
76
+ vcr (~> 3.0)
77
+ webmock (~> 2.1)
78
+
79
+ BUNDLED WITH
80
+ 1.16.1
data/LICENSE.txt ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,156 @@
1
+ # Agent client for Ruby
2
+
3
+ [![build status](https://travis-ci.org/stratumn/agent-client-ruby.svg?branch=master)](https://travis-ci.org/stratumn/agent-client-ruby.svg?branch=master)
4
+ [![Gem Version](https://badge.fury.io/rb/stratumn_agent_client.svg)](https://badge.fury.io/rb/stratumn_agent_client)
5
+
6
+ Interact with your Indigo agent from your ruby code.
7
+
8
+ code :: https://github.com/stratumn/agent-client-ruby
9
+
10
+ ## Installation
11
+
12
+ Add this line to your agent's Gemfile:
13
+
14
+ ```ruby
15
+ gem 'indigoframework_agent_client'
16
+ ```
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install indigoframework_agent_client
25
+
26
+ ## Quickstart
27
+
28
+ ```ruby
29
+ agent = AgentClient::Agent.load('http://localhost:3000')
30
+
31
+ raise 'No process detected in Agent' if agent.list_processes.empty?
32
+
33
+ process = agent.get('process_name')
34
+
35
+ segment = process.create_map('My message map')
36
+
37
+ segment = segment.add_message('Hello, World', 'POTUS')
38
+
39
+ puts segment.meta
40
+ puts segment.state
41
+ ```
42
+
43
+ ## Reference
44
+
45
+ #### AgentClient::Agent.load(url)
46
+
47
+ Returns an instance of AgentClient::Agent containing several processes
48
+
49
+ ```ruby
50
+ agent = AgentClient::Agent.load('http://localhost:3000')
51
+ puts agent.list_processes()
52
+ ```
53
+
54
+ #### AgentClient::Process#create_map(references, \*args)
55
+
56
+ Creates a new map in the agent.
57
+
58
+ ```ruby
59
+ agent = AgentClient::Agent.load('http://localhost:3000')
60
+ process = agent.get('process_name')
61
+ segment = process.create_map([], 'My message map')
62
+ ```
63
+
64
+ #### AgentClient::Agent.get_segment(hash)
65
+
66
+ Returns an existing segment.
67
+
68
+ ```ruby
69
+ agent = AgentClient::Agent.load('http://localhost:3000')
70
+ process = agent.get('process_name')
71
+ segment = process.get_segment('aee5427')
72
+ puts segment.link_hash
73
+ ```
74
+
75
+ #### AgentClient::Agent.find_segments(options = {})
76
+
77
+ Returns existing segments.
78
+
79
+ Available options are:
80
+
81
+ * `offset`: offset of first returned segments
82
+ * `limit`: limit number of returned segments
83
+ * `mapIds`: return segments with one of the specified map IDs
84
+ * `prevLinkHash`: return segments with specified previous link hash
85
+ * `tags`: return segments that contains all the tags (array)
86
+
87
+ ```ruby
88
+ agent = AgentClient::Agent.load('http://localhost:3000')
89
+ process = agent.get('process_name')
90
+ segments = process.find_segments(tags: ['tag1', 'tag2'])
91
+ segments = process.find_segments(limit: 10)
92
+ ```
93
+
94
+ #### AgentClient::Segment.from
95
+
96
+ Returns segment from a given raw object.
97
+
98
+ ```ruby
99
+ segment = AgentClient::Segment.from(raw_segment)
100
+ puts segment.process
101
+ puts segment.link_hash
102
+ ```
103
+
104
+ #### AgentClient::Segment#previous
105
+
106
+ Returns the previous segment of a segment (its parent).
107
+
108
+ ```ruby
109
+ agent = AgentClient::Agent.load('http://localhost:3000')
110
+ process = agent.get('process_name')
111
+ segment = process.get_segment('aee5427')
112
+ previous = segment.previous
113
+ ```
114
+
115
+ #### AgentClient::Segment#load
116
+
117
+ Loads a full segment. Can be useful when you only have the meta data of links.
118
+
119
+ ```ruby
120
+ agent = AgentClient::Agent.load('http://localhost:3000')
121
+ process = agent.get('process_name')
122
+ segments = process.find_segments
123
+
124
+ segments.map { |segment| segment.load }
125
+ ```
126
+
127
+ #### AgentClient::Segment#transition_function(references, \*args)
128
+
129
+ Executes a transition function and returns the new segment.
130
+
131
+ ```ruby
132
+ agent = AgentClient::Agent.load('http://localhost:3000')
133
+ process = agent.get('process_name')
134
+ segment = process.get_segment('aee5427')
135
+ new_segment = segment.addMessage([], 'Hello, World!')
136
+
137
+ # underscore version is also available
138
+ new_segment = segment.add_message([], 'Hello, World!')
139
+ ```
140
+
141
+ ## Development
142
+
143
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
144
+
145
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
146
+
147
+ ## Tests
148
+
149
+ Tests are run against a mock agent whose results are recorded by vcr.
150
+ Should you need to regenerate the cassettes or add new tests, the mock agent can be launched on port 3333.
151
+
152
+ ```
153
+ $ cd spec/agent
154
+ $ npm install
155
+ $ node index.js
156
+ ```
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+ require 'rubocop/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+ RuboCop::RakeTask.new
7
+
8
+ task default: :spec
@@ -0,0 +1,46 @@
1
+ # Copyright 2017 Stratumn SAS. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # coding: utf-8
16
+
17
+ lib = File.expand_path('../lib', __FILE__)
18
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
19
+ require 'agent_client/version'
20
+
21
+ Gem::Specification.new do |spec|
22
+ spec.name = 'indigoframework_agent_client'
23
+ spec.version = AgentClient::VERSION
24
+ spec.authors = ['Stratumn Team']
25
+ spec.email = ['stratumn@gmail.com']
26
+
27
+ spec.summary = 'Interact with your Indigo agent from your ruby app'
28
+ spec.homepage = 'https://github.com/stratumn/agent-client-ruby'
29
+ spec.license = 'Apache-2.0'
30
+
31
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
32
+ f.match(%r{^(test|spec|features)/})
33
+ end
34
+ spec.bindir = 'exe'
35
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
36
+ spec.require_paths = ['lib']
37
+
38
+ spec.add_development_dependency 'bundler', '~> 1.12'
39
+ spec.add_development_dependency 'rake', '~> 10.0'
40
+ spec.add_development_dependency 'rspec', '~> 3.0'
41
+ spec.add_development_dependency 'rubocop', '~> 0.52'
42
+ spec.add_development_dependency 'vcr', '~> 3.0'
43
+ spec.add_development_dependency 'webmock', '~> 2.1'
44
+
45
+ spec.add_runtime_dependency 'http', '~> 2.0'
46
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'agent_client'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,60 @@
1
+ # Copyright 2017 Stratumn SAS. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require 'agent_client/version'
16
+ require 'agent_client/request'
17
+ require 'agent_client/helper'
18
+ require 'agent_client/agent'
19
+ require 'agent_client/process'
20
+ require 'agent_client/segment'
21
+
22
+ require 'yaml'
23
+
24
+ ##
25
+ # Allows interacting with your Stratumn agent from your ruby app
26
+ module AgentClient
27
+ # Configuration defaults
28
+ @config = {
29
+ base_url: 'https://stratumn.rocks',
30
+ application_url: 'https://%s.stratumn.rocks'
31
+ }
32
+
33
+ @valid_config_keys = @config.keys
34
+
35
+ # Configure through hash
36
+ def self.configure(opts = {})
37
+ opts.each do |k, v|
38
+ @config[k.to_sym] = v if @valid_config_keys.include? k.to_sym
39
+ end
40
+ end
41
+
42
+ # Configure through yaml file
43
+ def self.configure_with(path_to_yaml_file)
44
+ begin
45
+ config = YAML.safe_load(IO.read(path_to_yaml_file))
46
+ rescue Errno::ENOENT
47
+ puts 'YAML configuration file couldn\'t be found. Using defaults.'
48
+ return
49
+ rescue Psych::SyntaxError
50
+ puts 'YAML configuration file contains invalid syntax. Using defaults.'
51
+ return
52
+ end
53
+
54
+ configure(config)
55
+ end
56
+
57
+ def self.config
58
+ @config
59
+ end
60
+ end
@@ -0,0 +1,60 @@
1
+ # Copyright 2017 Stratumn SAS. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module AgentClient
16
+ ##
17
+ # Represents an Indigo agent
18
+ class Agent
19
+ include Request
20
+ extend Request
21
+
22
+ attr_reader :url
23
+
24
+ def self.load(url)
25
+ result = get(url)
26
+ instance = new(url)
27
+
28
+ process_list = result['processes']
29
+ raise('Agent has not sent the processes') if process_list.nil?
30
+
31
+ if process_list.respond_to?('each')
32
+ process_list.each do |pname, pcontent|
33
+ instance.add_new_process(pname, pcontent)
34
+ end
35
+ end
36
+ instance
37
+ end
38
+
39
+ def list_processes
40
+ @processes.values
41
+ end
42
+
43
+ def get(process_name)
44
+ @processes[process_name]
45
+ end
46
+
47
+ def initialize(url)
48
+ @url = url
49
+ @processes = {}
50
+ end
51
+
52
+ def add_new_process(name, content)
53
+ process = Process.new(url,
54
+ name,
55
+ content['processInfo'],
56
+ content['storeInfo'])
57
+ @processes[name] = process
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,27 @@
1
+ # Copyright 2017 Stratumn SAS. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module AgentClient
16
+ # We would like to avoid depending on ActiveSupport
17
+ module Helper
18
+ def underscore(string)
19
+ word = string.to_s.dup
20
+ word.gsub!(/([A-Z\d]+)([A-Z][a-z])/, '\1_\2')
21
+ word.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
22
+ word.tr!('-', '_')
23
+ word.downcase!
24
+ word
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,55 @@
1
+ # Copyright 2017 Stratumn SAS. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module AgentClient
16
+ ##
17
+ # Represents an Indigo process
18
+ class Process
19
+ include Request
20
+ extend Request
21
+
22
+ attr_accessor :process_name, :process_url, :info, :store_info
23
+
24
+ def initialize(url, process_name, process_info, store_info)
25
+ self.process_name = process_name
26
+ self.process_url = "#{url}/#{process_name}"
27
+ self.info = process_info
28
+ self.store_info = store_info
29
+ end
30
+
31
+ def create_map(*args)
32
+ result = post(process_url + '/segments', json: args)
33
+
34
+ Segment.new(self, result)
35
+ end
36
+
37
+ def get_map_ids(options = {})
38
+ get(process_url + '/maps?' + URI.encode_www_form(options))
39
+ end
40
+
41
+ def find_segments(options = {})
42
+ result = get(process_url + '/segments?' + URI.encode_www_form(options))
43
+
44
+ result.map do |link|
45
+ Segment.new(self, link)
46
+ end
47
+ end
48
+
49
+ def get_segment(link_hash)
50
+ result = get(process_url + '/segments/' + link_hash)
51
+
52
+ Segment.new(self, result)
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,41 @@
1
+ # Copyright 2017 Stratumn SAS. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require 'http'
16
+
17
+ module AgentClient
18
+ ##
19
+ # Wrapper around HTTP.request that parses the response and raises on error
20
+ module Request
21
+ def get(*args)
22
+ request(:get, *args)
23
+ end
24
+
25
+ def post(*args)
26
+ result = request(:post, *args)
27
+
28
+ result
29
+ end
30
+
31
+ private
32
+
33
+ def request(verb, *args)
34
+ result = HTTP.request(verb, *args).parse
35
+
36
+ raise result['error'] if result.is_a?(Hash) && result['error']
37
+
38
+ result
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,71 @@
1
+ # Copyright 2017 Stratumn SAS. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module AgentClient
16
+ ##
17
+ # Represents a link in a Stratumn application
18
+ class Segment
19
+ include Request
20
+ include Helper
21
+
22
+ attr_accessor :process, :meta, :state, :link, :link_hash, :references
23
+
24
+ def initialize(process, obj)
25
+ self.process = process
26
+
27
+ self.link = obj['link']
28
+ self.meta = link['meta']
29
+ self.state = link['state']
30
+ self.link_hash = obj['meta']['linkHash']
31
+ self.references = meta['refs']
32
+
33
+ process.info['actions'].each do |(method, _)|
34
+ add_transition_method(method)
35
+ end
36
+ end
37
+
38
+ def previous
39
+ process.get_segment(meta['prevLinkHash']) if meta['prevLinkHash']
40
+ end
41
+
42
+ def find_segments(options = {})
43
+ process.find_segments(options)
44
+ end
45
+
46
+ def load
47
+ process.get_segment(link_hash)
48
+ end
49
+
50
+ def self.from(segment)
51
+ agent = Agent.load(segment['meta']['agentUrl'])
52
+ process = agent.get segment['link']['meta']['process']
53
+
54
+ new(process, segment)
55
+ end
56
+
57
+ private
58
+
59
+ def add_transition_method(method)
60
+ define_singleton_method(method) do |*args|
61
+ url = "#{process.process_url}/segments/#{link_hash}/#{method}"
62
+
63
+ result = post(url, json: args)
64
+
65
+ self.class.new(process, result)
66
+ end
67
+
68
+ singleton_class.send(:alias_method, underscore(method), method)
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,17 @@
1
+ # Copyright 2017 Stratumn SAS. All rights reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module AgentClient
16
+ VERSION = '0.2.0'.freeze
17
+ end
metadata ADDED
@@ -0,0 +1,163 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: indigoframework_agent_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Stratumn Team
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-01-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.52'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.52'
69
+ - !ruby/object:Gem::Dependency
70
+ name: vcr
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: webmock
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.1'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '2.1'
97
+ - !ruby/object:Gem::Dependency
98
+ name: http
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '2.0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '2.0'
111
+ description:
112
+ email:
113
+ - stratumn@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".gitignore"
119
+ - ".rspec"
120
+ - ".rubocop.yml"
121
+ - ".travis.yml"
122
+ - ".vscode/settings.json"
123
+ - CODE_OF_CONDUCT.md
124
+ - Gemfile
125
+ - Gemfile.lock
126
+ - LICENSE.txt
127
+ - README.md
128
+ - Rakefile
129
+ - agent_client.gemspec
130
+ - bin/console
131
+ - bin/setup
132
+ - lib/agent_client.rb
133
+ - lib/agent_client/agent.rb
134
+ - lib/agent_client/helper.rb
135
+ - lib/agent_client/process.rb
136
+ - lib/agent_client/request.rb
137
+ - lib/agent_client/segment.rb
138
+ - lib/agent_client/version.rb
139
+ homepage: https://github.com/stratumn/agent-client-ruby
140
+ licenses:
141
+ - Apache-2.0
142
+ metadata: {}
143
+ post_install_message:
144
+ rdoc_options: []
145
+ require_paths:
146
+ - lib
147
+ required_ruby_version: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - ">="
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
152
+ required_rubygems_version: !ruby/object:Gem::Requirement
153
+ requirements:
154
+ - - ">="
155
+ - !ruby/object:Gem::Version
156
+ version: '0'
157
+ requirements: []
158
+ rubyforge_project:
159
+ rubygems_version: 2.5.2
160
+ signing_key:
161
+ specification_version: 4
162
+ summary: Interact with your Indigo agent from your ruby app
163
+ test_files: []