Sha256: 81643a38a79bdd2bf765f6552e522eccc903df4549cf453c4afe804a8cdd0e45
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true module AtlasRb class Community < Resource ROUTE = "/communities/" def self.find(id) JSON.parse(connection({}).get(ROUTE + id)&.body)["community"] end def self.create(id = nil, xml_path = nil) result = JSON.parse(connection({ parent_id: id }).post(ROUTE)&.body)["community"] update(result["id"], xml_path) if xml_path.present? result end def self.destroy(id) connection({}).delete(ROUTE + id) end def self.children(id) JSON.parse(connection({}).get(ROUTE + id + '/children')&.body) end def self.update(id, xml_path) payload = { binary: Faraday::Multipart::FilePart.new(File.open(xml_path), "application/xml", File.basename(xml_path)) } JSON.parse(multipart({}).patch(ROUTE + id, payload)&.body) end def self.metadata(id, values) JSON.parse(connection({ metadata: values }).patch(ROUTE + id)&.body) end def self.mods(id, kind = nil) # json default, html, xml connection({}).get( ROUTE + id + '/mods' + (kind.present? ? ".#{kind}" : '') )&.body end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
atlas_rb-0.0.51 | lib/atlas_rb/community.rb |