ecoportal-api-graphql 0.4.3 → 0.4.4
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/CHANGELOG.md +23 -4
- data/Rakefile +10 -10
- data/ecoportal-api-graphql.gemspec +22 -19
- data/lib/ecoportal/api/common/graphql/class_helpers.rb +6 -3
- data/lib/ecoportal/api/common/graphql/hash_helpers.rb +60 -30
- data/lib/ecoportal/api/common/graphql/http_client.rb +6 -12
- data/lib/ecoportal/api/common/graphql/model/as_input.rb +40 -0
- data/lib/ecoportal/api/common/graphql/model/diffable/hash_diff.rb +60 -0
- data/lib/ecoportal/api/common/graphql/model/diffable.rb +32 -0
- data/lib/ecoportal/api/common/graphql/model.rb +17 -0
- data/lib/ecoportal/api/common/graphql/query_integration.rb +5 -2
- data/lib/ecoportal/api/common/graphql.rb +1 -2
- data/lib/ecoportal/api/graphql/base/action.rb +2 -0
- data/lib/ecoportal/api/graphql/base/action_category.rb +2 -0
- data/lib/ecoportal/api/graphql/base/contractor_entity.rb +2 -0
- data/lib/ecoportal/api/graphql/base/location_classification_type.rb +1 -1
- data/lib/ecoportal/api/graphql/base/location_node.rb +2 -0
- data/lib/ecoportal/api/graphql/base/location_structure.rb +1 -0
- data/lib/ecoportal/api/graphql/base/model.rb +1 -21
- data/lib/ecoportal/api/graphql/base/organization.rb +2 -0
- data/lib/ecoportal/api/graphql/base/page.rb +2 -0
- data/lib/ecoportal/api/graphql/base/person_member.rb +2 -0
- data/lib/ecoportal/api/graphql/error/locations_error.rb +2 -0
- data/lib/ecoportal/api/graphql/error/locations_validation_error.rb +2 -0
- data/lib/ecoportal/api/graphql/error/validation_errors.rb +1 -0
- data/lib/ecoportal/api/graphql/fragment.rb +2 -0
- data/lib/ecoportal/api/graphql/helpers/locations_tree.rb +10 -10
- data/lib/ecoportal/api/graphql/logic/base_query.rb +5 -2
- data/lib/ecoportal/api/graphql/logic/mutation.rb +3 -5
- data/lib/ecoportal/api/graphql/logic/payload.rb +2 -0
- data/lib/ecoportal/api/graphql/logic/query.rb +4 -1
- data/lib/ecoportal/api/graphql/logic/query_array.rb +1 -0
- data/lib/ecoportal/api/graphql/logic/query_connection.rb +2 -0
- data/lib/ecoportal/api/graphql/model/account.rb +2 -0
- data/lib/ecoportal/api/graphql/model/contractor_entity.rb +2 -2
- data/lib/ecoportal/api/graphql/model/location_node.rb +1 -1
- data/lib/ecoportal/api/graphql/model/user.rb +2 -0
- data/lib/ecoportal/api/graphql/payload/location_structure/apply_commands.rb +2 -0
- data/lib/ecoportal/api/graphql/payload/location_structure/command_execution_result.rb +2 -0
- data/lib/ecoportal/api/graphql/query/location_structures.rb +5 -4
- data/lib/ecoportal/api/graphql_version.rb +1 -1
- metadata +30 -27
- data/lib/ecoportal/api/common/graphql/doc_helpers.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e9ec208e89d9a86ad745b0138d3c5ecf3105de642c9fc4ededae17e7a6e278a
|
4
|
+
data.tar.gz: 57d342befa5dd0e2f713bd1a79a9f49ea6367b4fc0da262f0362faaeb21c6195
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d3ea5e64afc249e874d38e4ed1000056c1663ba1b0edd9304b09cf8d999b6a0dd543e47819160742fcc7d73feb4bc7e389c47feba02bc0501a7cc9ff4da62b8
|
7
|
+
data.tar.gz: 76ac28462d5d3dbcb5239a13865f026cd790d1272feec8d9c223b8808309fee14cf8ca59a4bc1992f9aaf6a64df986dc10af21c1c27eddb1d9b9c939d2ac30f8
|
data/CHANGELOG.md
CHANGED
@@ -9,24 +9,43 @@ All notable changes to this project will be documented in this file.
|
|
9
9
|
- Analyse how to "DSL" currentOrganization.action.activities
|
10
10
|
- review `path` tracking
|
11
11
|
|
12
|
-
## [0.4.
|
12
|
+
## [0.4.5] - 2025-02-xx
|
13
13
|
|
14
14
|
### Added
|
15
15
|
|
16
16
|
### Changed
|
17
17
|
|
18
|
-
|
19
|
-
|
18
|
+
### Fixed
|
19
|
+
|
20
|
+
## [0.4.4] - 2025-02-23
|
21
|
+
|
22
|
+
### Changed
|
23
|
+
|
24
|
+
- Upgraded `ecoportal-api` gem (maintanance)
|
25
|
+
- Upgraded `ecoportal-api-v2` gem (to provision `root!` class method)
|
26
|
+
- Defined some models that hand on their own as `root!`
|
27
|
+
- Refactored `Base::Model` by moving its loggic to `Common::GraphQL`
|
20
28
|
|
21
29
|
### Fixed
|
22
30
|
|
23
|
-
|
31
|
+
- `Ecoportal::API::Common::GraphQL::HashHelpers`
|
32
|
+
- Truly make the iterator generic
|
33
|
+
|
34
|
+
## [0.4.3] - 2024-11-21
|
24
35
|
|
25
36
|
### Changed
|
26
37
|
|
27
38
|
- upgrade gems
|
28
39
|
- `ecoportal-api`
|
29
40
|
- `ecoportal-api-v2`
|
41
|
+
- `Ecoportal::API::Common::GraphQL::HttpClient.new` ceased to default `version` to `v1` (now it defaults to `nil`)
|
42
|
+
|
43
|
+
## [0.4.2] - 2024-10-01
|
44
|
+
|
45
|
+
### Changed
|
46
|
+
|
47
|
+
- upgrade gems
|
48
|
+
- `ecoportal-api-v2`
|
30
49
|
- add explicit dependency onto `ecoportal-api` gem (client)
|
31
50
|
|
32
51
|
## [0.4.1] - 2024-08-09
|
data/Rakefile
CHANGED
@@ -1,36 +1,36 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
require 'rspec/core/rake_task'
|
3
3
|
require 'rubocop/rake_task'
|
4
|
-
require
|
5
|
-
require
|
4
|
+
require 'yard'
|
5
|
+
require 'redcarpet'
|
6
6
|
|
7
|
-
desc
|
7
|
+
desc 'run the specs'
|
8
8
|
RSpec::Core::RakeTask.new(:spec)
|
9
9
|
|
10
|
-
desc
|
10
|
+
desc 'run rspec showing backtrace'
|
11
11
|
RSpec::Core::RakeTask.new(:spec_trace) do |task|
|
12
12
|
task.rspec_opts = ['--backtrace']
|
13
13
|
end
|
14
14
|
task :rspec_trace => :spec_trace
|
15
15
|
|
16
|
-
desc
|
16
|
+
desc 'run rspec stopping on first fail, and show backtrace'
|
17
17
|
RSpec::Core::RakeTask.new(:spec_fast) do |task|
|
18
18
|
task.rspec_opts = ['--fail-fast', '--backtrace']
|
19
19
|
end
|
20
20
|
task :rspec_fast => :spec_fast
|
21
21
|
|
22
|
-
desc
|
22
|
+
desc 'run rubocop diaplying cop names'
|
23
23
|
RuboCop::RakeTask.new(:rubocop) do |t|
|
24
24
|
t.options = ['--display-cop-names']
|
25
25
|
end
|
26
26
|
|
27
27
|
# default task name is yard
|
28
|
-
desc
|
28
|
+
desc 'Yard: generate all the documentation'
|
29
29
|
YARD::Rake::YardocTask.new(:doc) do |t|
|
30
30
|
#t.files = ['lib/**/*.rb']
|
31
31
|
end
|
32
32
|
|
33
|
-
desc
|
33
|
+
desc 'default task: runs rubocop and rspec'
|
34
34
|
task :default do
|
35
35
|
Rake::Task[:rubocop].invoke
|
36
36
|
ensure
|
@@ -1,15 +1,16 @@
|
|
1
|
+
# rubocop:disable Gemspec/DevelopmentDependencies
|
1
2
|
lib = File.expand_path('lib', __dir__)
|
2
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
-
require
|
4
|
+
require 'ecoportal/api/graphql_version'
|
4
5
|
|
5
6
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name =
|
7
|
+
spec.name = 'ecoportal-api-graphql'
|
7
8
|
spec.version = Ecoportal::API::GRAPQL_VERSION
|
8
|
-
spec.authors = [
|
9
|
-
spec.email = [
|
9
|
+
spec.authors = ['Oscar Segura']
|
10
|
+
spec.email = ['oscar@ecoportal.co.nz']
|
10
11
|
|
11
|
-
spec.summary =
|
12
|
-
spec.homepage =
|
12
|
+
spec.summary = 'A collection of helpers for interacting with the ecoPortal GraphQL API'
|
13
|
+
spec.homepage = 'https://www.ecoportal.com'
|
13
14
|
spec.licenses = %w[MIT]
|
14
15
|
|
15
16
|
spec.metadata['rubygems_mfa_required'] = 'true'
|
@@ -19,19 +20,21 @@ Gem::Specification.new do |spec|
|
|
19
20
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
21
|
f.match(%r{^(test|spec|features)/})
|
21
22
|
end
|
22
|
-
spec.bindir =
|
23
|
+
spec.bindir = 'exe'
|
23
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
-
spec.require_paths = [
|
25
|
-
|
26
|
-
spec.add_development_dependency
|
27
|
-
spec.add_development_dependency
|
28
|
-
spec.add_development_dependency
|
29
|
-
spec.add_development_dependency
|
30
|
-
spec.add_development_dependency
|
31
|
-
spec.add_development_dependency
|
32
|
-
spec.add_development_dependency
|
33
|
-
|
34
|
-
spec.add_dependency 'ecoportal-api', '~> 0.10', '>= 0.10.
|
35
|
-
spec.add_dependency 'ecoportal-api-v2', '~> 2.0', '>= 2.0.
|
25
|
+
spec.require_paths = ['lib']
|
26
|
+
|
27
|
+
spec.add_development_dependency 'pry', '>= 0.14'
|
28
|
+
spec.add_development_dependency 'rake', '>= 13.0.3', '< 14'
|
29
|
+
spec.add_development_dependency 'redcarpet', '>= 3.6.0', '< 4'
|
30
|
+
spec.add_development_dependency 'rspec', '>= 3.12.0', '< 4'
|
31
|
+
spec.add_development_dependency 'rubocop', '~> 1'
|
32
|
+
spec.add_development_dependency 'rubocop-rake', '~> 0'
|
33
|
+
spec.add_development_dependency 'yard', '>= 0.9.34', '< 1'
|
34
|
+
|
35
|
+
spec.add_dependency 'ecoportal-api', '~> 0.10', '>= 0.10.8'
|
36
|
+
spec.add_dependency 'ecoportal-api-v2', '~> 2.0', '>= 2.0.15'
|
36
37
|
spec.add_dependency 'graphlient', '>= 0.8.0', '< 0.9'
|
37
38
|
end
|
39
|
+
|
40
|
+
# rubocop:enable Gemspec/DevelopmentDependencies
|
@@ -7,7 +7,10 @@ module Ecoportal
|
|
7
7
|
def becomes(klass)
|
8
8
|
klass.new.tap do |becoming|
|
9
9
|
instance_variables.each do |var|
|
10
|
-
becoming.instance_variable_set(
|
10
|
+
becoming.instance_variable_set(
|
11
|
+
var,
|
12
|
+
instance_variable_get(var)
|
13
|
+
)
|
11
14
|
end
|
12
15
|
end
|
13
16
|
end
|
@@ -23,11 +26,11 @@ module Ecoportal
|
|
23
26
|
def const?(value)
|
24
27
|
begin
|
25
28
|
const_get(value)
|
26
|
-
rescue NameError
|
29
|
+
rescue NameError
|
27
30
|
return false
|
28
31
|
end
|
29
32
|
true
|
30
|
-
end
|
33
|
+
end
|
31
34
|
end
|
32
35
|
|
33
36
|
class << self
|
@@ -4,48 +4,32 @@ module Ecoportal
|
|
4
4
|
module GraphQL
|
5
5
|
module HashHelpers
|
6
6
|
module InstanceMethods
|
7
|
-
def transform_keys_deep(value, &block)
|
8
|
-
case value
|
9
|
-
when Hash
|
10
|
-
value.dup.each_with_object({}) do |(k, v), out|
|
11
|
-
k_val = block_given?? yield(k) : k
|
12
|
-
out[k_val] = keys_to_sym_deep(v)
|
13
|
-
end
|
14
|
-
when Enumerable
|
15
|
-
value.map {|v| keys_to_sym_deep(v)}
|
16
|
-
else
|
17
|
-
value
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
7
|
def keys_to_sym_deep(value)
|
22
|
-
|
8
|
+
transform_keys_deep(value, &:to_sym)
|
23
9
|
end
|
24
10
|
|
25
11
|
def keys_to_s_deep(value)
|
26
|
-
transform_keys_deep(value
|
12
|
+
transform_keys_deep(value, &:to_s)
|
27
13
|
end
|
28
14
|
|
29
|
-
def
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
value.dup.each_with_object({}) do |(k, v), out|
|
35
|
-
next unless v || !target.include?(k)
|
36
|
-
out[k] = remove_nil_keys_deep(v, target: target)
|
37
|
-
end
|
38
|
-
when Enumerable
|
39
|
-
value.map {|v| remove_nil_keys_deep(v, target: target)}
|
40
|
-
else
|
41
|
-
value
|
15
|
+
def except_keys(value, *keys)
|
16
|
+
return value unless value.is_a?(Hash)
|
17
|
+
|
18
|
+
deep_dup(value).tap do |out|
|
19
|
+
keys.each {|key| out.delete(key)}
|
42
20
|
end
|
43
21
|
end
|
44
22
|
|
23
|
+
# Targetted removal of keys in `target` that are `nil`
|
24
|
+
def remove_nil_keys_deep(value, target: [])
|
25
|
+
remove_keys_deep_if(value, target: target, &:nil?)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Based on Rails support.
|
45
29
|
def deep_dup(data)
|
46
30
|
case data
|
47
31
|
when Hash
|
48
|
-
data.each_with_object({}) do |(k,v), copy|
|
32
|
+
data.each_with_object({}) do |(k, v), copy|
|
49
33
|
if k.is_a?(::String) || k.is_a?(::Symbol)
|
50
34
|
copy[k] = deep_dup(v)
|
51
35
|
else
|
@@ -59,6 +43,52 @@ module Ecoportal
|
|
59
43
|
data.dup
|
60
44
|
end
|
61
45
|
end
|
46
|
+
|
47
|
+
private
|
48
|
+
|
49
|
+
# Iterator
|
50
|
+
# @param value [Variadic]
|
51
|
+
# @return [value.class]
|
52
|
+
def transform_keys_deep(value, &block)
|
53
|
+
case value
|
54
|
+
when Hash
|
55
|
+
value.dup.each_with_object({}) do |(k, v), out|
|
56
|
+
k_val = block_given?? yield(k) : k
|
57
|
+
out[k_val] = transform_keys_deep(v, &block)
|
58
|
+
end
|
59
|
+
when Enumerable
|
60
|
+
value.map {|v| transform_keys_deep(v, &block)}
|
61
|
+
else
|
62
|
+
value
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
# Targetted removal of keys in `target` that meet
|
67
|
+
# the `block` condition.
|
68
|
+
# @param value [Variadic]
|
69
|
+
# @param target [Array<String>, Array<Symbol>] the target
|
70
|
+
# `keys` to yield `block` onto.
|
71
|
+
# @return [value.class]
|
72
|
+
def remove_keys_deep_if(value, target: [], &block)
|
73
|
+
msg = 'Expected block. None given.'
|
74
|
+
raise ArgumentError, msg unless block_given?
|
75
|
+
|
76
|
+
target = [target].flatten.compact
|
77
|
+
return value if target.empty?
|
78
|
+
|
79
|
+
case value
|
80
|
+
when Hash
|
81
|
+
value.dup.each_with_object({}) do |(k, v), out|
|
82
|
+
next if yield(v) && target.include?(k) # skip
|
83
|
+
|
84
|
+
out[k] = remove_nil_keys_deep(v, target: target, &block)
|
85
|
+
end
|
86
|
+
when Enumerable
|
87
|
+
value.map {|v| remove_nil_keys_deep(v, target: target, &block)}
|
88
|
+
else
|
89
|
+
value
|
90
|
+
end
|
91
|
+
end
|
62
92
|
end
|
63
93
|
|
64
94
|
module ClassMethods
|
@@ -16,19 +16,13 @@ module Ecoportal
|
|
16
16
|
attr_reader :host, :version
|
17
17
|
|
18
18
|
def initialize(
|
19
|
-
api_key:
|
20
|
-
version:
|
21
|
-
host:
|
22
|
-
logger:
|
23
|
-
deep_logging:
|
19
|
+
api_key: nil,
|
20
|
+
version: nil,
|
21
|
+
host: 'live.ecoportal.com',
|
22
|
+
logger: ::Logger.new(IO::NULL),
|
23
|
+
deep_logging: false
|
24
24
|
)
|
25
|
-
super
|
26
|
-
api_key: api_key,
|
27
|
-
version: version,
|
28
|
-
host: host,
|
29
|
-
logger: logger,
|
30
|
-
deep_logging: deep_logging
|
31
|
-
)
|
25
|
+
super
|
32
26
|
end
|
33
27
|
|
34
28
|
def refresh_key(value)
|
@@ -0,0 +1,40 @@
|
|
1
|
+
module Ecoportal
|
2
|
+
module API
|
3
|
+
module Common
|
4
|
+
module GraphQL
|
5
|
+
class Model
|
6
|
+
module AsInput
|
7
|
+
class << self
|
8
|
+
def included(base)
|
9
|
+
super
|
10
|
+
base.send(:include, Model::Diffable)
|
11
|
+
base.extend ClassMethods
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
module ClassMethods
|
16
|
+
def as_input(hash, clientMutationId: '')
|
17
|
+
hash_input = Ecoportal::API::Common::GraphQL::HashHelpers.
|
18
|
+
keys_to_sym_deep(hash)
|
19
|
+
|
20
|
+
hash_input.merge!(clientMutationId: clientMutationId)
|
21
|
+
|
22
|
+
Ecoportal::API::Common::GraphQL::HashHelpers.
|
23
|
+
remove_nil_keys_deep(hash_input, target: :id)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
# INSTANCE METHODS
|
28
|
+
|
29
|
+
def as_input(clientMutationId: '')
|
30
|
+
self.class.as_input(
|
31
|
+
as_update,
|
32
|
+
clientMutationId: clientMutationId
|
33
|
+
)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# rubocop:disable Naming/MethodParameterName
|
2
|
+
|
3
|
+
module Ecoportal
|
4
|
+
module API
|
5
|
+
module Common
|
6
|
+
module GraphQL
|
7
|
+
class Model
|
8
|
+
module Diffable
|
9
|
+
module HashDiff
|
10
|
+
class << self
|
11
|
+
def included(base)
|
12
|
+
super
|
13
|
+
base.extend ClassMethods
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
module ClassMethods
|
18
|
+
# @todo: refactor to only reach the current level
|
19
|
+
# @note the aim is to delegate `hash_diff` to the specific classes
|
20
|
+
# of the model... bulding the payload/input_base in a cascaded
|
21
|
+
# way (rather than in a one-off way from the top alone).
|
22
|
+
def hash_diff(a, b, ignore: [])
|
23
|
+
case a
|
24
|
+
when Hash
|
25
|
+
{}.tap do |diffed|
|
26
|
+
a.each do |key, a_value|
|
27
|
+
b_value = b && b[key]
|
28
|
+
no_changes = (a_value == b_value) || ignore.include?(key)
|
29
|
+
next if !ID_KEYS.include?(key) && no_changes
|
30
|
+
|
31
|
+
diffed[key] = diff(a_value, b_value, ignore: ignore)
|
32
|
+
diffed.delete(key) if diffed[key] == {}
|
33
|
+
end
|
34
|
+
|
35
|
+
# All keys are IDs, so it's actually blank
|
36
|
+
return {} if (diffed.keys - ID_KEYS).empty?
|
37
|
+
end
|
38
|
+
when Array
|
39
|
+
return a unless b.is_a?(Array) && a.length == b.length
|
40
|
+
|
41
|
+
a.map.with_index do |a_value, idx|
|
42
|
+
b_value = b[idx]
|
43
|
+
diff(a_value, b_value, ignore: ignore)
|
44
|
+
end.reject do |el|
|
45
|
+
el == {}
|
46
|
+
end
|
47
|
+
else
|
48
|
+
a
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# rubocop:enable Naming/MethodParameterName
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'ecoportal/api/common/graphql/model/diffable/hash_diff'
|
2
|
+
module Ecoportal
|
3
|
+
module API
|
4
|
+
module Common
|
5
|
+
module GraphQL
|
6
|
+
class Model
|
7
|
+
module Diffable
|
8
|
+
class << self
|
9
|
+
def included(base)
|
10
|
+
super
|
11
|
+
base.send(:include, HashDiff)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
# INSTANCE METHODS
|
16
|
+
|
17
|
+
def as_update(ref = :last, ignore: [])
|
18
|
+
new_doc = as_json
|
19
|
+
ref_doc = ref == :total ? initial_doc : original_doc
|
20
|
+
|
21
|
+
self.class.hash_diff(
|
22
|
+
new_doc,
|
23
|
+
ref_doc,
|
24
|
+
ignore: ignore
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Ecoportal
|
2
|
+
module API
|
3
|
+
module Common
|
4
|
+
module GraphQL
|
5
|
+
class Model < Ecoportal::API::Common::Content::DoubleModel
|
6
|
+
require 'ecoportal/api/common/graphql/model/diffable'
|
7
|
+
require 'ecoportal/api/common/graphql/model/as_input'
|
8
|
+
|
9
|
+
include Ecoportal::API::Common::GraphQL::ClassHelpers
|
10
|
+
|
11
|
+
include Diffable
|
12
|
+
include AsInput
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -15,7 +15,7 @@ module Ecoportal
|
|
15
15
|
# @return [Connection::$1, $1]
|
16
16
|
def query(method, query_klass:, subpath: [])
|
17
17
|
method = method.to_sym
|
18
|
-
class_method = "#{method}_query_class"
|
18
|
+
class_method = :"#{method}_query_class"
|
19
19
|
|
20
20
|
define_method(method) do |**kargs, &block|
|
21
21
|
if kargs.empty? && !block_given?
|
@@ -27,9 +27,12 @@ module Ecoportal
|
|
27
27
|
|
28
28
|
define_method(class_method) do
|
29
29
|
final_path = path + [subpath].flatten.compact
|
30
|
+
|
30
31
|
resolve_class(query_klass).tap do |klass|
|
31
32
|
unless klass <= Ecoportal::API::GraphQL::Logic::BaseQuery
|
32
|
-
|
33
|
+
msg = "Expected query_klass to be of type Ecoportal::API::GraphQL::Logic::BaseQuery. "
|
34
|
+
msg << "Given: #{klass}"
|
35
|
+
raise msg
|
33
36
|
end
|
34
37
|
end.new(client, base_path: final_path)
|
35
38
|
end
|
@@ -11,7 +11,6 @@ require 'ecoportal/api/common/graphql/http_client'
|
|
11
11
|
require 'ecoportal/api/common/graphql/auth_service'
|
12
12
|
require 'ecoportal/api/common/graphql/client'
|
13
13
|
require 'ecoportal/api/common/graphql/class_helpers'
|
14
|
-
require 'ecoportal/api/common/graphql/doc_helpers'
|
15
14
|
require 'ecoportal/api/common/graphql/hash_helpers'
|
16
|
-
require 'ecoportal/api/common/graphql/
|
15
|
+
require 'ecoportal/api/common/graphql/model'
|
17
16
|
require 'ecoportal/api/common/graphql/query_integration'
|
@@ -2,29 +2,9 @@ module Ecoportal
|
|
2
2
|
module API
|
3
3
|
class GraphQL
|
4
4
|
module Base
|
5
|
-
class Model < Ecoportal::API::Common::
|
6
|
-
include Ecoportal::API::Common::GraphQL::ClassHelpers
|
7
|
-
#include GraphModel::HashKeys
|
5
|
+
class Model < Ecoportal::API::Common::GraphQL::Model
|
8
6
|
class << self
|
9
7
|
attr_accessor :client
|
10
|
-
|
11
|
-
def as_input(hash, clientMutationId: "")
|
12
|
-
hash_input = hash.merge(clientMutationId: clientMutationId)
|
13
|
-
Ecoportal::API::Common::GraphQL::HashHelpers.remove_nil_keys_deep(hash_input, target: :id)
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
def as_update(ref = :last, ignore: [], sym_keys: false)
|
18
|
-
new_doc = as_json
|
19
|
-
ref_doc = ref == :total ? initial_doc : original_doc
|
20
|
-
Ecoportal::API::Common::HashDiff.diff(new_doc, ref_doc, ignore: ignore).yield_self do |out|
|
21
|
-
next out unless sym_keys
|
22
|
-
Ecoportal::API::Common::GraphQL::HashHelpers.keys_to_sym_deep(out)
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
def as_input(clientMutationId: "")
|
27
|
-
self.class.as_input(as_update(sym_keys: true), clientMutationId: clientMutationId)
|
28
8
|
end
|
29
9
|
end
|
30
10
|
end
|
@@ -3,6 +3,8 @@ module Ecoportal
|
|
3
3
|
class GraphQL
|
4
4
|
module Error
|
5
5
|
class LocationsError < Ecoportal::API::GraphQL::Base::Model
|
6
|
+
read_only!
|
7
|
+
|
6
8
|
passthrough :message, :conflictingIds
|
7
9
|
passthrough :type
|
8
10
|
embeds_many :validationErrors, klass: Ecoportal::API::GraphQL::Error::LocationsValidationError
|
@@ -2,6 +2,7 @@
|
|
2
2
|
module Fragment
|
3
3
|
include Ecoportal::API::Common::GraphQL::ClassHelpers
|
4
4
|
end
|
5
|
+
|
5
6
|
# Class to define/parse fragments
|
6
7
|
module Ecoportal
|
7
8
|
module API
|
@@ -28,6 +29,7 @@ module Ecoportal
|
|
28
29
|
|
29
30
|
def define(sym, heredoc, namespace: ::Fragment)
|
30
31
|
namespace.send(:remove_const, sym) if namespace.const_defined?(sym)
|
32
|
+
|
31
33
|
client.parse(heredoc).tap do |fragment|
|
32
34
|
without_warnings do
|
33
35
|
namespace.const_set(sym, fragment)
|
@@ -3,7 +3,7 @@ module Ecoportal
|
|
3
3
|
class GraphQL
|
4
4
|
module Helpers
|
5
5
|
module LocationsTree
|
6
|
-
RELEVANT_NODES_COUNT =
|
6
|
+
RELEVANT_NODES_COUNT = 1_000
|
7
7
|
|
8
8
|
def treeify(nodes)
|
9
9
|
parents = nodes.each_with_object({}) do |node, out|
|
@@ -21,15 +21,15 @@ module Ecoportal
|
|
21
21
|
class_names = class_types.map(&:name)
|
22
22
|
|
23
23
|
results << {
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
24
|
+
'id' => child.id,
|
25
|
+
'name' => child.name,
|
26
|
+
'weight' => child.weight,
|
27
|
+
'parent_id' => node_id,
|
28
|
+
'archived' => child.archived,
|
29
|
+
'archived_token' => child.archivedToken,
|
30
|
+
'classifications' => class_ids,
|
31
|
+
'classification_names' => class_names,
|
32
|
+
'nodes' => get_children(child.id, parents).compact
|
33
33
|
}
|
34
34
|
end
|
35
35
|
end
|
@@ -14,6 +14,7 @@ module Ecoportal
|
|
14
14
|
def accepted_params(*keys, default: :unused)
|
15
15
|
@accepted_params ||= []
|
16
16
|
return @accepted_params if keys.empty?
|
17
|
+
|
17
18
|
keys.map(&:to_sym).uniq.each do |key|
|
18
19
|
@accepted_params |= [key]
|
19
20
|
param_defaults[key] = default unless default == :unused
|
@@ -36,12 +37,14 @@ module Ecoportal
|
|
36
37
|
# @note it is meant for reusability of queries from different end-points
|
37
38
|
def field_name(str = nil)
|
38
39
|
return @field_name unless str
|
40
|
+
|
39
41
|
@field_name = nil
|
40
42
|
@field_name = str.to_s if str
|
41
43
|
end
|
42
44
|
|
43
45
|
def base_path(path = :unused)
|
44
46
|
return @base_path if path == :unused
|
47
|
+
|
45
48
|
path ||= []
|
46
49
|
path = path.to_s.split('.') if path.is_a?(String)
|
47
50
|
path = path.map(&:to_s).compact
|
@@ -51,8 +54,7 @@ module Ecoportal
|
|
51
54
|
|
52
55
|
include Ecoportal::API::Common::Concerns::Benchmarkable
|
53
56
|
|
54
|
-
attr_reader :client
|
55
|
-
attr_reader :base_path
|
57
|
+
attr_reader :client, :base_path
|
56
58
|
|
57
59
|
def initialize(client, path: nil, base_path: self.class.base_path)
|
58
60
|
@path = path
|
@@ -94,6 +96,7 @@ module Ecoportal
|
|
94
96
|
def graphql_query(path: self.path, raw_response: {}, **kargs, &block)
|
95
97
|
default_params = self.class.param_defaults.dup
|
96
98
|
query_params = self.class.slice_params(default_params.merge(kargs))
|
99
|
+
|
97
100
|
request(*path) do
|
98
101
|
raw_response[:data] = client.query(query_params, &block)
|
99
102
|
end
|
@@ -5,13 +5,13 @@ module Ecoportal
|
|
5
5
|
class Mutation < Ecoportal::API::GraphQL::Logic::BaseQuery
|
6
6
|
class GenericPayload
|
7
7
|
def initialize(*_args, **_kargs)
|
8
|
-
raise
|
8
|
+
raise 'Missuse error. You should define a payload_class for a class that inherits from Mutation class.'
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
12
12
|
class GenericInput
|
13
13
|
def initialize(*_args, **_kargs)
|
14
|
-
raise
|
14
|
+
raise 'Missuse error. You should define a input_class for a class that inherits from Mutation class.'
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
@@ -38,12 +38,10 @@ module Ecoportal
|
|
38
38
|
|
39
39
|
def as_input(value)
|
40
40
|
case value
|
41
|
-
when input_class
|
41
|
+
when input_class, Ecoportal::API::GraphQL::Base::Model
|
42
42
|
value.as_input
|
43
43
|
when Hash
|
44
44
|
value
|
45
|
-
when Ecoportal::API::GraphQL::Base::Model
|
46
|
-
value.as_input
|
47
45
|
# when Hash
|
48
46
|
# value = Helpers::Model::HashKeys.keys_to_sym_deep(value)
|
49
47
|
# Ecoportal::API::Base::Model.as_input(value)
|
@@ -5,7 +5,10 @@ module Ecoportal
|
|
5
5
|
class Query < Ecoportal::API::GraphQL::Logic::BaseQuery
|
6
6
|
class GenericItem
|
7
7
|
def initialize(*_args, **_kargs)
|
8
|
-
|
8
|
+
msg = "Missuse error. "
|
9
|
+
msg << "You should define a item_class for a class that "
|
10
|
+
msg << "inherits from Query class."
|
11
|
+
raise msg
|
9
12
|
end
|
10
13
|
end
|
11
14
|
class_resolver :item_class, GenericItem
|
@@ -8,6 +8,7 @@ module Ecoportal
|
|
8
8
|
|
9
9
|
def each(connection_block: nil, **kargs, &block)
|
10
10
|
return to_enum(:each, **kargs, connection_block: connection_block) unless block
|
11
|
+
|
11
12
|
cursor = nil
|
12
13
|
loop do
|
13
14
|
kargs.update(after: cursor) if cursor
|
@@ -21,6 +22,7 @@ module Ecoportal
|
|
21
22
|
|
22
23
|
def response_class
|
23
24
|
return connection_class if respond_to?(:connection_class)
|
25
|
+
|
24
26
|
@response_class ||= self.class.new_class(
|
25
27
|
item_class,
|
26
28
|
inherits: Ecoportal::API::GraphQL::Logic::Connection,
|
@@ -3,8 +3,8 @@ module Ecoportal
|
|
3
3
|
class GraphQL
|
4
4
|
module Model
|
5
5
|
class ContractorEntity < Ecoportal::API::GraphQL::Base::ContractorEntity
|
6
|
-
embeds_one :associatedPeople, klass: "Ecoportal::API::GraphQL::Connections::PersonMemberConnection"
|
7
|
-
embeds_many :leadContractors,
|
6
|
+
embeds_one :associatedPeople, read_only: true, klass: "Ecoportal::API::GraphQL::Connections::PersonMemberConnection"
|
7
|
+
embeds_many :leadContractors, read_only: true, klass: "Ecoportal::API::GraphQL::Model::PersonMember"
|
8
8
|
end
|
9
9
|
end
|
10
10
|
end
|
@@ -4,7 +4,7 @@ module Ecoportal
|
|
4
4
|
module Model
|
5
5
|
class LocationNode < Ecoportal::API::GraphQL::Base::LocationNode
|
6
6
|
embeds_one :parent, klass: Model::LocationNode, nullable: true
|
7
|
-
embeds_many :ancestors, klass: Model::LocationNode
|
7
|
+
embeds_many :ancestors, read_only: true, klass: Model::LocationNode
|
8
8
|
|
9
9
|
def parentId
|
10
10
|
parent&.id
|
@@ -4,6 +4,8 @@ module Ecoportal
|
|
4
4
|
module Payload
|
5
5
|
module LocationStructure
|
6
6
|
class ApplyCommands < Ecoportal::API::GraphQL::Base::Model
|
7
|
+
read_only!
|
8
|
+
|
7
9
|
passthrough :clientMutationId
|
8
10
|
embeds_one :structure, klass: Ecoportal::API::GraphQL::Model::LocationStructure
|
9
11
|
embeds_one :errors, klass: Ecoportal::API::GraphQL::Error::ValidationErrors, nullable: true
|
@@ -4,6 +4,8 @@ module Ecoportal
|
|
4
4
|
module Payload
|
5
5
|
module LocationStructure
|
6
6
|
class CommandExecutionResult < Ecoportal::API::GraphQL::Base::Model
|
7
|
+
read_only!
|
8
|
+
|
7
9
|
embeds_one :command, klass: Ecoportal::API::GraphQL::Payload::LocationStructure::CommandInterface
|
8
10
|
embeds_one :error, nullable: true, klass: Ecoportal::API::GraphQL::Error::LocationsError
|
9
11
|
passboolean :ok
|
@@ -15,14 +15,15 @@ module Ecoportal
|
|
15
15
|
def basic_block(&block)
|
16
16
|
final_block = block || default_query_block
|
17
17
|
proc {
|
18
|
-
query(
|
19
|
-
|
20
|
-
|
18
|
+
query(
|
19
|
+
includeArchived: :boolean,
|
20
|
+
includeUnpublished: :boolean,
|
21
|
+
includeArchivedNodes: :boolean
|
21
22
|
) {
|
22
23
|
currentOrganization {
|
23
24
|
locations {
|
24
25
|
structures(
|
25
|
-
includeArchived:
|
26
|
+
includeArchived: :includeArchived,
|
26
27
|
includeUnpublished: :includeUnpublished,
|
27
28
|
&final_block
|
28
29
|
)
|
metadata
CHANGED
@@ -1,35 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecoportal-api-graphql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oscar Segura
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: pry
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '4'
|
19
|
+
version: '0.14'
|
23
20
|
type: :development
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
24
|
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: '4'
|
26
|
+
version: '0.14'
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: rake
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -51,32 +45,32 @@ dependencies:
|
|
51
45
|
- !ruby/object:Gem::Version
|
52
46
|
version: '14'
|
53
47
|
- !ruby/object:Gem::Dependency
|
54
|
-
name:
|
48
|
+
name: redcarpet
|
55
49
|
requirement: !ruby/object:Gem::Requirement
|
56
50
|
requirements:
|
57
51
|
- - ">="
|
58
52
|
- !ruby/object:Gem::Version
|
59
|
-
version:
|
53
|
+
version: 3.6.0
|
60
54
|
- - "<"
|
61
55
|
- !ruby/object:Gem::Version
|
62
|
-
version: '
|
56
|
+
version: '4'
|
63
57
|
type: :development
|
64
58
|
prerelease: false
|
65
59
|
version_requirements: !ruby/object:Gem::Requirement
|
66
60
|
requirements:
|
67
61
|
- - ">="
|
68
62
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
63
|
+
version: 3.6.0
|
70
64
|
- - "<"
|
71
65
|
- !ruby/object:Gem::Version
|
72
|
-
version: '
|
66
|
+
version: '4'
|
73
67
|
- !ruby/object:Gem::Dependency
|
74
|
-
name:
|
68
|
+
name: rspec
|
75
69
|
requirement: !ruby/object:Gem::Requirement
|
76
70
|
requirements:
|
77
71
|
- - ">="
|
78
72
|
- !ruby/object:Gem::Version
|
79
|
-
version: 3.
|
73
|
+
version: 3.12.0
|
80
74
|
- - "<"
|
81
75
|
- !ruby/object:Gem::Version
|
82
76
|
version: '4'
|
@@ -86,7 +80,7 @@ dependencies:
|
|
86
80
|
requirements:
|
87
81
|
- - ">="
|
88
82
|
- !ruby/object:Gem::Version
|
89
|
-
version: 3.
|
83
|
+
version: 3.12.0
|
90
84
|
- - "<"
|
91
85
|
- !ruby/object:Gem::Version
|
92
86
|
version: '4'
|
@@ -119,19 +113,25 @@ dependencies:
|
|
119
113
|
- !ruby/object:Gem::Version
|
120
114
|
version: '0'
|
121
115
|
- !ruby/object:Gem::Dependency
|
122
|
-
name:
|
116
|
+
name: yard
|
123
117
|
requirement: !ruby/object:Gem::Requirement
|
124
118
|
requirements:
|
125
119
|
- - ">="
|
126
120
|
- !ruby/object:Gem::Version
|
127
|
-
version:
|
121
|
+
version: 0.9.34
|
122
|
+
- - "<"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '1'
|
128
125
|
type: :development
|
129
126
|
prerelease: false
|
130
127
|
version_requirements: !ruby/object:Gem::Requirement
|
131
128
|
requirements:
|
132
129
|
- - ">="
|
133
130
|
- !ruby/object:Gem::Version
|
134
|
-
version:
|
131
|
+
version: 0.9.34
|
132
|
+
- - "<"
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '1'
|
135
135
|
- !ruby/object:Gem::Dependency
|
136
136
|
name: ecoportal-api
|
137
137
|
requirement: !ruby/object:Gem::Requirement
|
@@ -141,7 +141,7 @@ dependencies:
|
|
141
141
|
version: '0.10'
|
142
142
|
- - ">="
|
143
143
|
- !ruby/object:Gem::Version
|
144
|
-
version: 0.10.
|
144
|
+
version: 0.10.8
|
145
145
|
type: :runtime
|
146
146
|
prerelease: false
|
147
147
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -151,7 +151,7 @@ dependencies:
|
|
151
151
|
version: '0.10'
|
152
152
|
- - ">="
|
153
153
|
- !ruby/object:Gem::Version
|
154
|
-
version: 0.10.
|
154
|
+
version: 0.10.8
|
155
155
|
- !ruby/object:Gem::Dependency
|
156
156
|
name: ecoportal-api-v2
|
157
157
|
requirement: !ruby/object:Gem::Requirement
|
@@ -161,7 +161,7 @@ dependencies:
|
|
161
161
|
version: '2.0'
|
162
162
|
- - ">="
|
163
163
|
- !ruby/object:Gem::Version
|
164
|
-
version: 2.0.
|
164
|
+
version: 2.0.15
|
165
165
|
type: :runtime
|
166
166
|
prerelease: false
|
167
167
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -171,7 +171,7 @@ dependencies:
|
|
171
171
|
version: '2.0'
|
172
172
|
- - ">="
|
173
173
|
- !ruby/object:Gem::Version
|
174
|
-
version: 2.0.
|
174
|
+
version: 2.0.15
|
175
175
|
- !ruby/object:Gem::Dependency
|
176
176
|
name: graphlient
|
177
177
|
requirement: !ruby/object:Gem::Requirement
|
@@ -220,9 +220,12 @@ files:
|
|
220
220
|
- lib/ecoportal/api/common/graphql/auth_service.rb
|
221
221
|
- lib/ecoportal/api/common/graphql/class_helpers.rb
|
222
222
|
- lib/ecoportal/api/common/graphql/client.rb
|
223
|
-
- lib/ecoportal/api/common/graphql/doc_helpers.rb
|
224
223
|
- lib/ecoportal/api/common/graphql/hash_helpers.rb
|
225
224
|
- lib/ecoportal/api/common/graphql/http_client.rb
|
225
|
+
- lib/ecoportal/api/common/graphql/model.rb
|
226
|
+
- lib/ecoportal/api/common/graphql/model/as_input.rb
|
227
|
+
- lib/ecoportal/api/common/graphql/model/diffable.rb
|
228
|
+
- lib/ecoportal/api/common/graphql/model/diffable/hash_diff.rb
|
226
229
|
- lib/ecoportal/api/common/graphql/patches.rb
|
227
230
|
- lib/ecoportal/api/common/graphql/query_integration.rb
|
228
231
|
- lib/ecoportal/api/graphql.rb
|