Class: GdsApi::ContentApi
Instance Attribute Summary
Attributes inherited from Base
#options
Instance Method Summary
collapse
#ignoring
Methods inherited from Base
#client, #create_client, #url_for_slug
Constructor Details
#initialize(endpoint_url, options = {}) ⇒ ContentApi
Returns a new instance of ContentApi.
8
9
10
11
12
13
14
15
16
|
# File 'lib/gds_api/content_api.rb', line 8
def initialize(endpoint_url, options = {})
@web_urls_relative_to = options.delete(:web_urls_relative_to)
super
end
|
Instance Method Details
#artefact(slug, params = {}) ⇒ Object
50
51
52
53
54
55
56
57
58
59
60
61
|
# File 'lib/gds_api/content_api.rb', line 50
def artefact(slug, params={})
url = "#{base_url}/#{CGI.escape(slug)}.json"
query = params.map { |k,v| "#{k}=#{v}" }
if query.any?
url += "?#{query.join("&")}"
end
if params[:edition] && ! options.include?(:bearer_token)
raise GdsApi::NoBearerToken
end
get_json(url)
end
|
#artefacts ⇒ Object
63
64
65
|
# File 'lib/gds_api/content_api.rb', line 63
def artefacts
get_list!("#{base_url}/artefacts.json")
end
|
#business_support_schemes(identifiers) ⇒ Object
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# File 'lib/gds_api/content_api.rb', line 84
def business_support_schemes(identifiers)
identifiers = identifiers.map {|i| CGI.escape(i) }
url_template = "#{base_url}/business_support_schemes.json?identifiers="
response = nil
start_url = "#{url_template}#{identifiers.shift}"
last_batch_url = identifiers.inject(start_url) do |url, id|
new_url = [url, id].join(',')
if new_url.length >= 2000
response = get_batch(url, response)
"#{url_template}#{id}"
else
new_url
end
end
get_batch(last_batch_url, response)
end
|
#curated_list(tag) ⇒ Object
38
39
40
|
# File 'lib/gds_api/content_api.rb', line 38
def curated_list(tag)
get_list("#{base_url}/with_tag.json?tag=#{CGI.escape(tag)}&sort=curated")
end
|
#for_need(need_id) ⇒ Object
46
47
48
|
# File 'lib/gds_api/content_api.rb', line 46
def for_need(need_id)
get_list("#{base_url}/for_need/#{CGI.escape(need_id.to_s)}.json")
end
|
#get_json(url, &create_response) ⇒ Object
115
116
117
118
119
120
|
# File 'lib/gds_api/content_api.rb', line 115
def get_json(url, &create_response)
create_response = create_response || Proc.new { |r|
GdsApi::Response.new(r, web_urls_relative_to: @web_urls_relative_to)
}
super(url, &create_response)
end
|
#get_json!(url, &create_response) ⇒ Object
122
123
124
125
126
127
|
# File 'lib/gds_api/content_api.rb', line 122
def get_json!(url, &create_response)
create_response = create_response || Proc.new { |r|
GdsApi::Response.new(r, web_urls_relative_to: @web_urls_relative_to)
}
super(url, &create_response)
end
|
#get_list(url) ⇒ Object
109
110
111
112
113
|
# File 'lib/gds_api/content_api.rb', line 109
def get_list(url)
get_json(url) { |r|
GdsApi::ListResponse.new(r, self, web_urls_relative_to: @web_urls_relative_to)
}
end
|
#get_list!(url) ⇒ Object
103
104
105
106
107
|
# File 'lib/gds_api/content_api.rb', line 103
def get_list!(url)
get_json!(url) { |r|
GdsApi::ListResponse.new(r, self, web_urls_relative_to: @web_urls_relative_to)
}
end
|
#licences_for_ids(ids) ⇒ Object
79
80
81
82
|
# File 'lib/gds_api/content_api.rb', line 79
def licences_for_ids(ids)
ids = ids.map(&:to_s).sort.join(',')
get_json("#{@endpoint}/licences.json?ids=#{ids}")
end
|
#local_authorities_by_name(name) ⇒ Object
71
72
73
|
# File 'lib/gds_api/content_api.rb', line 71
def local_authorities_by_name(name)
get_json!("#{base_url}/local_authorities.json?name=#{CGI.escape(name)}")
end
|
#local_authorities_by_snac_code(snac_code) ⇒ Object
75
76
77
|
# File 'lib/gds_api/content_api.rb', line 75
def local_authorities_by_snac_code(snac_code)
get_json!("#{base_url}/local_authorities.json?snac_code=#{CGI.escape(snac_code)}")
end
|
#local_authority(snac_code) ⇒ Object
67
68
69
|
# File 'lib/gds_api/content_api.rb', line 67
def local_authority(snac_code)
get_json("#{base_url}/local_authorities/#{CGI.escape(snac_code)}.json")
end
|
#root_sections ⇒ Object
22
23
24
|
# File 'lib/gds_api/content_api.rb', line 22
def root_sections
get_list!("#{base_url}/tags.json?type=section&root_sections=true")
end
|
#sections ⇒ Object
18
19
20
|
# File 'lib/gds_api/content_api.rb', line 18
def sections
get_list!("#{base_url}/tags.json?type=section")
end
|
#sorted_by(tag, sort_by) ⇒ Object
42
43
44
|
# File 'lib/gds_api/content_api.rb', line 42
def sorted_by(tag, sort_by)
get_list!("#{base_url}/with_tag.json?tag=#{CGI.escape(tag)}&sort=#{sort_by}")
end
|
#sub_sections(parent_tag) ⇒ Object
26
27
28
|
# File 'lib/gds_api/content_api.rb', line 26
def sub_sections(parent_tag)
get_list!("#{base_url}/tags.json?type=section&parent_id=#{CGI.escape(parent_tag)}")
end
|
#tag(tag) ⇒ Object
30
31
32
|
# File 'lib/gds_api/content_api.rb', line 30
def tag(tag)
get_json("#{base_url}/tags/#{CGI.escape(tag)}.json")
end
|
#with_tag(tag) ⇒ Object
34
35
36
|
# File 'lib/gds_api/content_api.rb', line 34
def with_tag(tag)
get_list!("#{base_url}/with_tag.json?tag=#{CGI.escape(tag)}&include_children=1")
end
|