souls 1.20.4 → 1.20.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0d0a4fbbf0be1899a5c0b8a8b6c6f6a64342c882a9254a7fb382484cb0b67d9
4
- data.tar.gz: f6c7d30d7cf6e7898a05603846c94d6f460e8f726bd40300b88762a3b4aefc55
3
+ metadata.gz: 4db282e1789cd357c0e43a7f3d4bf1fdddd4e971a81d7ab2c653094bba5ef2ed
4
+ data.tar.gz: a57887dd2ac69c18884d93626dd31abc473d4e39e5a2462bf4c3ef476ef2e014
5
5
  SHA512:
6
- metadata.gz: 8b66aba97ed7631f61dc44ea3b05ab66f9bf263a9638a2f87889b4fa32cf1f303753228d53b4eb7cd7380068dd40ab20fc97a4789cf391f8823f6a43d0cc0c22
7
- data.tar.gz: 35a69e66fbf2768a19189802a94d0751cfca7b40d39e0532d81b7384b1e544d82d708ba0aea39fce4c9f5da00f226cc91de5dc91d325798d5c34cd5773c92615
6
+ metadata.gz: b5efabff1b8d8b726405185342c16af5dc05ecf80cd379e1e464e536e7878433cf94bb8e68eac011a6219ce35b7a8530ed2e9d47a1da050321ec1082c27a7d72
7
+ data.tar.gz: 3238e00d2a3d60f073d1648d49c38cfac4532749784c013cb2aef607ee538c8403c97fcf1d657d1680e97122014cb0a021d33b9196e822300aecce21a372643f
@@ -1,15 +1,15 @@
1
1
  module SOULs
2
2
  class SOULsMutation < GraphQL::Schema::RelayClassicMutation
3
- def self.post(url:, payload: {}, content_type: "application/json")
3
+ def post(url:, payload: {}, content_type: "application/json")
4
4
  response = Faraday.post(url, payload.to_json, "Content-Type": content_type)
5
5
  response.body
6
6
  end
7
7
 
8
- def self.souls_worker_trigger(worker_name:, query_file_name:)
8
+ def souls_worker_trigger(worker_name:, query_file_name:, args: {})
9
9
  query_file_name = query_file_name.gsub("_", "-")
10
10
  topic_name = "souls-#{worker_name}-#{query_file_name}"
11
11
  query = query_file_name.underscore.camelize(:lower)
12
- query_string = souls_make_graphql_query(query: query)
12
+ query_string = souls_make_graphql_query(query: query, args: args)
13
13
  case ENV["RACK_ENV"]
14
14
  when "production"
15
15
  souls_publish_pubsub_queue(topic_name: topic_name, message: query_string)
@@ -18,7 +18,7 @@ module SOULs
18
18
  end
19
19
  end
20
20
 
21
- def self.souls_check_user_permissions(user, obj, method)
21
+ def souls_check_user_permissions(user, obj, method)
22
22
  raise(StandardError, "Invalid or Missing Token") unless user
23
23
 
24
24
  policy_class = obj.class.name + "Policy"
@@ -27,7 +27,7 @@ module SOULs
27
27
  raise(Pundit::NotAuthorizedError, "permission error!") unless permission
28
28
  end
29
29
 
30
- def self.souls_fb_auth(token:)
30
+ def souls_fb_auth(token:)
31
31
  FirebaseIdToken::Certificates.request!
32
32
  sleep(3) if ENV["RACK_ENV"] == "development"
33
33
  user = FirebaseIdToken::Signature.verify(token)
@@ -36,13 +36,13 @@ module SOULs
36
36
  user
37
37
  end
38
38
 
39
- def self.souls_publish_pubsub_queue(topic_name: "send-mail-job", message: "text!")
39
+ def souls_publish_pubsub_queue(topic_name: "send-mail-job", message: "text!")
40
40
  pubsub = Google::Cloud::Pubsub.new(project: ENV["SOULS_GCP_PROJECT_ID"])
41
41
  topic = pubsub.topic(topic_name)
42
42
  topic.publish(message)
43
43
  end
44
44
 
45
- def self.souls_make_graphql_query(query: "newCommentMailer", args: {})
45
+ def souls_make_graphql_query(query: "newCommentMailer", args: {})
46
46
  if args.blank?
47
47
  query_string = %(query { #{query.to_s.underscore.camelize(:lower)} { response } })
48
48
  else
@@ -60,27 +60,27 @@ module SOULs
60
60
  query_string
61
61
  end
62
62
 
63
- def self.souls_post_to_dev(worker_name: "", query_string: "")
63
+ def souls_post_to_dev(worker_name: "", query_string: "")
64
64
  port = souls_get_worker(worker_name: worker_name)[0][:port]
65
65
  endpoint = SOULs.configuration.endpoint
66
66
  res = Net::HTTP.post_form(URI.parse("http://localhost:#{port}#{endpoint}"), { query: query_string })
67
67
  res.body
68
68
  end
69
69
 
70
- def self.souls_get_worker(worker_name: "")
70
+ def souls_get_worker(worker_name: "")
71
71
  workers = SOULs.configuration.workers
72
72
  workers.filter { |n| n[:name] == worker_name }
73
73
  end
74
74
 
75
- def self.souls_auth_check(context)
75
+ def souls_auth_check(context)
76
76
  raise(GraphQL::ExecutionError, "You need to sign in!!") if context[:user].nil?
77
77
  end
78
78
 
79
- def self.production?
79
+ def production?
80
80
  ENV["RACK_ENV"] == "production"
81
81
  end
82
82
 
83
- def self.get_instance_id
83
+ def get_instance_id
84
84
  `curl http://metadata.google.internal/computeMetadata/v1/instance/id -H Metadata-Flavor:Google`
85
85
  end
86
86
  end
@@ -5,12 +5,12 @@ module SOULs
5
5
  attr_accessor :schedule
6
6
  end
7
7
 
8
- def self.post(url:, payload: {}, content_type: "application/json")
8
+ def post(url:, payload: {}, content_type: "application/json")
9
9
  response = Faraday.post(url, payload.to_json, "Content-Type": content_type)
10
10
  response.body
11
11
  end
12
12
 
13
- def self.check_user_permissions(user, obj, method)
13
+ def check_user_permissions(user, obj, method)
14
14
  raise(StandardError, "Invalid or Missing Token") unless user
15
15
 
16
16
  policy_class = obj.class.name + "Policy"
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module SOULs
2
- VERSION = "1.20.4".freeze
2
+ VERSION = "1.20.8".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.20.4
1
+ 1.20.8
@@ -1 +1 @@
1
- 1.20.4
1
+ 1.20.8
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: souls
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.4
4
+ version: 1.20.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
8
8
  - KishiTheMechanic
9
9
  - James Neve
10
- autorequire:
10
+ autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-01-09 00:00:00.000000000 Z
13
+ date: 2022-01-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport
@@ -74,14 +74,14 @@ dependencies:
74
74
  requirements:
75
75
  - - ">="
76
76
  - !ruby/object:Gem::Version
77
- version: 1.12.19
77
+ version: 1.13.4
78
78
  type: :runtime
79
79
  prerelease: false
80
80
  version_requirements: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="
83
83
  - !ruby/object:Gem::Version
84
- version: 1.12.19
84
+ version: 1.13.4
85
85
  - !ruby/object:Gem::Dependency
86
86
  name: paint
87
87
  requirement: !ruby/object:Gem::Requirement
@@ -299,7 +299,7 @@ licenses:
299
299
  - Apache-2.0
300
300
  metadata:
301
301
  rubygems_mfa_required: 'true'
302
- post_install_message:
302
+ post_install_message:
303
303
  rdoc_options: []
304
304
  require_paths:
305
305
  - lib
@@ -315,7 +315,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
315
315
  version: '0'
316
316
  requirements: []
317
317
  rubygems_version: 3.2.32
318
- signing_key:
318
+ signing_key:
319
319
  specification_version: 4
320
320
  summary: Ruby Serverless Framework 'SOULs' | Ruby サーバーレスフレームワーク SOULs. Powered by
321
321
  Ruby GraphQL, RBS/Steep, Active Record, RSpec, RuboCop, and Google Cloud.