gds-api-adapters 91.0.0 → 91.1.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 +4 -4
- data/lib/gds_api/asset_manager.rb +12 -0
- data/lib/gds_api/test_helpers/asset_manager.rb +4 -1
- data/lib/gds_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b228bbfeb3c6670abced9b88f27ff26a2ac8f202c65b4815e7e7bf095bb2f357
|
4
|
+
data.tar.gz: dc1d051288ca8e31105dbb25c19f1c822c438b7b15c10a789f4f663fc8d39fa8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea46e87d73ad2440115c91e91d73c8aeeb018eca04b0c430bd9c2c5dba7e2041fcc18b62efc0b17631fd8b39cbc9b29098722e8e8404945cf584baef463a0368
|
7
|
+
data.tar.gz: caf48a8612c247ac0f6c6e77d0bcf480f77aa74e15fe8ca63316411f818c5a66b36cddc15eb894068e5dfefbe4376b8d9023ae06e0a5b8a5aba5e7a10a623747
|
@@ -239,6 +239,18 @@ class GdsApi::AssetManager < GdsApi::Base
|
|
239
239
|
get_raw("#{base_url}/#{uri_encode(legacy_url_path)}")
|
240
240
|
end
|
241
241
|
|
242
|
+
# Fetches an asset given the id and filename
|
243
|
+
#
|
244
|
+
# @param id [String] The asset identifier.
|
245
|
+
# @param filename [String] Filename of the asset.
|
246
|
+
# @return [GdsApi::Response] A response object containing the raw asset.
|
247
|
+
# If the asset cannot be found, +GdsApi::HTTPNotFound+ will be raised.
|
248
|
+
#
|
249
|
+
# @raise [HTTPErrorResponse] if the request returns an error
|
250
|
+
def media(id, filename)
|
251
|
+
get_raw("#{base_url}/media/#{id}/#{filename}")
|
252
|
+
end
|
253
|
+
|
242
254
|
private
|
243
255
|
|
244
256
|
def base_url
|
@@ -21,11 +21,14 @@ module GdsApi
|
|
21
21
|
.to_return(body: body.to_json, status: 200)
|
22
22
|
end
|
23
23
|
|
24
|
-
def stub_asset_manager_has_an_asset(id, atts)
|
24
|
+
def stub_asset_manager_has_an_asset(id, atts, filename = "")
|
25
25
|
response = atts.merge("_response_info" => { "status" => "ok" })
|
26
26
|
|
27
27
|
stub_request(:get, "#{ASSET_MANAGER_ENDPOINT}/assets/#{id}")
|
28
28
|
.to_return(body: response.to_json, status: 200)
|
29
|
+
|
30
|
+
stub_request(:get, "#{ASSET_MANAGER_ENDPOINT}/media/#{id}/#{filename}")
|
31
|
+
.to_return(body: "Some file content", status: 200)
|
29
32
|
end
|
30
33
|
|
31
34
|
def stub_asset_manager_has_a_whitehall_asset(legacy_url_path, atts)
|
data/lib/gds_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gds-api-adapters
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 91.
|
4
|
+
version: 91.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GOV.UK Dev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|