wolf_core 1.0.5 → 1.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0e3cc6599cc90e949b7d9ddde2cfa15bc9f63dcbd380ca5e5f2ee4acc8a0756
4
- data.tar.gz: ac1c8315bbf24077e387eef1c6ff0dfc9cf007dc6d98e91c6d677fc99bbe4ff5
3
+ metadata.gz: 0c7897679b1a29f38652e90e2023e12a0959759bbff7142d2a9e8da65c16715f
4
+ data.tar.gz: 46753cc5d2f6896bd44a0e435ebb172d378f221cf0bdd60808356d9ef3f45391
5
5
  SHA512:
6
- metadata.gz: 74ea58ec0cdeaa230ce9778c5960e445504e7f18f985cb9eca85c0772da1753caeba672f141b800aaf3ecc2a5c59f4acc3192e8710de04ef1a189a6ba6686db6
7
- data.tar.gz: f560892556880ba27792590fee58502125488f15dc98e85719bf2a90179105ff593e38e7af965a50dd53f44645fc14c31147572564345a40317eee6397c1bf2b
6
+ metadata.gz: 01043ab0fb6d14d87613bf8f85dd79aa7c33320790aaab8205d80418088893e7996bb1c687cea965d3580c979f1139bcb783cfcbf68aafca7c3738a28d4066d5
7
+ data.tar.gz: 1000de72032d73ba9f9032d1db2a23a1e8a8745398540e53236ea1d10402d5a9f0ce39a6cce2008054684fce0e845e291a3a575072b2dd04fc7608244b1275ff
@@ -30,7 +30,8 @@ module WolfCore
30
30
 
31
31
  def route_event_request(path:, body:)
32
32
  environment = ENV['ENVIRONMENT']
33
- if environment == 'production'
33
+ deployable_envs = ['production', 'staging']
34
+ if deployable_envs.include?(environment)
34
35
  function_name = PATH_TO_FUNCTION_NAME_MAPPING[path]
35
36
  raise_service_error("Function name not found for path: #{path}") if function_name.blank?
36
37
 
@@ -7,7 +7,8 @@ module WolfCore
7
7
 
8
8
  def route_event_request(path:, body:)
9
9
  environment = ENV['ENVIRONMENT']
10
- if environment == 'production'
10
+ deployable_envs = ['production', 'staging']
11
+ if deployable_envs.include?(environment)
11
12
  function_name = PATH_TO_FUNCTION_NAME_MAPPING[path]
12
13
  raise_service_error("Function name not found for path: #{path}") if function_name.blank?
13
14
 
@@ -46,11 +46,8 @@ module WolfCore
46
46
  end
47
47
 
48
48
  def encode_file_to_base64_from_url(url)
49
- uri = URI.parse(url)
50
- response = Net::HTTP.get_response(uri)
51
- raise_service_error({ message: 'Failed to download file', url: url }) unless response.is_a?(Net::HTTPSuccess)
52
-
53
- encoded_file = Base64.strict_encode64(response.body)
49
+ bytes = bytes_from_url(url)
50
+ encoded_file = Base64.strict_encode64(bytes)
54
51
 
55
52
  content_disposition = response['content-disposition']
56
53
 
@@ -69,5 +66,12 @@ module WolfCore
69
66
  url: url,
70
67
  })
71
68
  end
69
+
70
+ def bytes_from_url(url)
71
+ uri = URI.parse(url)
72
+ response = Net::HTTP.get_response(uri)
73
+ raise_service_error({ message: 'Failed to download file', url: url }) unless response.is_a?(Net::HTTPSuccess)
74
+ response.body
75
+ end
72
76
  end
73
77
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.5"
4
+ VERSION = "1.0.6"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-17 00:00:00.000000000 Z
11
+ date: 2024-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty