wolf_core 1.0.51 → 1.0.52
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/lib/wolf_core/utils/file_utils.rb +18 -8
- data/lib/wolf_core/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c1e7e387b6115905bde116bf41eacd035566117c54984cc75107d54a5546524
|
4
|
+
data.tar.gz: e35f0fa19d1085304258c79eb4d2df57fcbdcfc84b37f525dbf4c2eeb4df30f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ff850507b14dbae591f32321e88ccea87fbd59cc541ba5a38139eae99719daebdce8f8f9f3f3f929297abb2df3a1d8f8567af5db3930ea1b6bade4dad8b314d
|
7
|
+
data.tar.gz: c6721e184873ad8c2eb15bcd8279b8e564eddf317b9b73402dd25361b3334361274f35318cc3b00a9ce9c2c842a98e95a1e0e78c8a32a58ed06a9c4d80aabb32
|
@@ -85,19 +85,27 @@ module WolfCore
|
|
85
85
|
end
|
86
86
|
|
87
87
|
def generate_url_from_file(file:, api_key:)
|
88
|
-
url = URI.parse("https://
|
89
|
-
form_data = [
|
90
|
-
['file', file.tempfile, file.original_filename]
|
91
|
-
]
|
92
|
-
|
88
|
+
url = URI.parse("https://www.filestackapi.com/api/store/S3?key=#{api_key}")
|
93
89
|
request = Net::HTTP::Post.new(url)
|
94
|
-
request
|
90
|
+
request["Content-Type"] = "application/octet-stream"
|
91
|
+
request.body = file.read
|
95
92
|
|
96
93
|
response = Net::HTTP.start(url.hostname, url.port, use_ssl: true) do |http|
|
97
94
|
http.request(request)
|
98
95
|
end
|
99
96
|
|
100
|
-
|
97
|
+
parse_json_error = nil
|
98
|
+
if response.is_a?(Net::HTTPSuccess)
|
99
|
+
begin
|
100
|
+
response_body = JSON.parse(response.body)
|
101
|
+
rescue => e
|
102
|
+
parse_json_error = {
|
103
|
+
message: e.message,
|
104
|
+
backtrace: e.backtrace,
|
105
|
+
}
|
106
|
+
end
|
107
|
+
return response_body['url'] if response_body['url'].present?
|
108
|
+
end
|
101
109
|
|
102
110
|
raise_service_error({
|
103
111
|
message: "Failed to generate url from file",
|
@@ -105,7 +113,9 @@ module WolfCore
|
|
105
113
|
file: file,
|
106
114
|
form_data: form_data,
|
107
115
|
request: request,
|
108
|
-
response: response
|
116
|
+
response: response,
|
117
|
+
response_body: response.body,
|
118
|
+
parse_json_error: parse_json_error,
|
109
119
|
})
|
110
120
|
end
|
111
121
|
end
|
data/lib/wolf_core/version.rb
CHANGED