Koha/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/erm-api-client.js
Jonathan Druart 2ec95963f6
Bug 33623: Encode URL params for getAll
We must encode properly URL parameters when building the REST API routes

Can be tested easily using
const client = APIClient.erm
client.licenses.getAll({ "me.name:%ff%" })

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-05-05 09:13:20 -03:00

288 lines
9.4 KiB
JavaScript

import HttpClient from "./http-client";
export class ERMAPIClient extends HttpClient {
constructor() {
super({
baseURL: "/api/v1/erm/",
});
}
get agreements() {
return {
get: id =>
this.get({
endpoint: "agreements/" + id,
headers: {
"x-koha-embed":
"periods,user_roles,user_roles.patron,agreement_licenses,agreement_licenses.license,agreement_relationships,agreement_relationships.related_agreement,documents,agreement_packages,agreement_packages.package,vendor",
},
}),
getAll: query =>
this.get({
endpoint:
"agreements?" +
new URLSearchParams({
_per_page: -1,
...(query && { q: JSON.stringify(query) }),
}),
}),
delete: id =>
this.delete({
endpoint: "agreements/" + id,
}),
create: agreement =>
this.post({
endpoint: "agreements",
body: agreement,
}),
update: (agreement, id) =>
this.put({
endpoint: "agreements/" + id,
body: agreement,
}),
count: (query = {}) =>
this.count({
endpoint:
"agreements?" +
new URLSearchParams({
_page: 1,
_per_page: 1,
...(query && { q: JSON.stringify(query) }),
}),
}),
};
}
get licenses() {
return {
get: id =>
this.get({
endpoint: "licenses/" + id,
headers: {
"x-koha-embed":
"user_roles,user_roles.patron,vendor,documents",
},
}),
getAll: query =>
this.get({
endpoint:
"licenses?" +
new URLSearchParams({
_per_page: -1,
...(query && { q: JSON.stringify(query) }),
}),
headers: {
"x-koha-embed": "vendor",
},
}),
delete: id =>
this.delete({
endpoint: "licenses/" + id,
}),
create: license =>
this.post({
endpoint: "licenses",
body: license,
}),
update: (license, id) =>
this.put({
endpoint: "licenses/" + id,
body: license,
}),
count: (query = {}) =>
this.count({
endpoint:
"licenses?" +
new URLSearchParams({
_page: 1,
_per_page: 1,
...(query && { q: JSON.stringify(query) }),
}),
}),
};
}
get localPackages() {
return {
get: id =>
this.get({
endpoint: "eholdings/local/packages/" + id,
headers: {
"x-koha-embed":
"package_agreements,package_agreements.agreement,resources+count,vendor",
},
}),
getAll: query =>
this.get({
endpoint:
"eholdings/local/packages?" +
new URLSearchParams({
_per_page: -1,
...(query && { q: JSON.stringify(query) }),
}),
headers: {
"x-koha-embed": "resources+count,vendor.name",
},
}),
delete: id =>
this.delete({
endpoint: "eholdings/local/packages/" + id,
}),
create: local_package =>
this.post({
endpoint: "eholdings/local/packages",
body: local_package,
}),
update: (local_package, id) =>
this.put({
endpoint: "eholdings/local/packages/" + id,
body: local_package,
}),
count: (query = {}) =>
this.count({
endpoint:
"eholdings/local/packages?" +
new URLSearchParams({
_page: 1,
_per_page: 1,
...(query && { q: JSON.stringify(query) }),
}),
}),
};
}
get localTitles() {
return {
get: id =>
this.get({
endpoint: "eholdings/local/titles/" + id,
headers: {
"x-koha-embed": "resources,resources.package",
},
}),
getAll: query =>
this.get({
endpoint:
"eholdings/local/titles?" +
new URLSearchParams({
_per_page: -1,
...(query && { q: JSON.stringify(query) }),
}),
}),
delete: id =>
this.delete({
endpoint: "eholdings/local/titles/" + id,
}),
create: local_package =>
this.post({
endpoint: "eholdings/local/titles",
body: local_package,
}),
update: (local_package, id) =>
this.put({
endpoint: "eholdings/local/titles/" + id,
body: local_package,
}),
count: (query = {}) =>
this.count({
endpoint:
"eholdings/local/titles?" +
new URLSearchParams({
_page: 1,
_per_page: 1,
...(query && { q: JSON.stringify(query) }),
}),
}),
import: body =>
this.post({
endpoint: "eholdings/local/titles/import",
body,
}),
};
}
get localResources() {
return {
get: id =>
this.get({
endpoint: "eholdings/local/resources/" + id,
headers: {
"x-koha-embed": "title,package,vendor",
},
}),
};
}
get EBSCOPackages() {
return {
get: id =>
this.get({
endpoint: "eholdings/ebsco/packages/" + id,
headers: {
"x-koha-embed":
"package_agreements,package_agreements.agreement,resources+count,vendor",
},
}),
getAll: query =>
this.get({
endpoint:
"eholdings/ebsco/packages/" +
id +
"?" +
new URLSearchParams({
_per_page: -1,
...(query && { q: JSON.stringify(query) }),
}),
headers: {
"x-koha-embed": "resources+count,vendor.name",
},
}),
patch: (id, body) =>
this.patch({
endpoint: "eholdings/ebsco/packages/" + id,
body,
}),
};
}
get EBSCOTitles() {
return {
get: id =>
this.get({
endpoint: "eholdings/ebsco/titles/" + id,
headers: {
"x-koha-embed": "resources,resources.package",
},
}),
getAll: query =>
this.get({
endpoint:
"eholdings/local/ebsco/titles" +
"?" +
new URLSearchParams({
_per_page: -1,
...(query && { q: JSON.stringify(query) }),
}),
}),
};
}
get EBSCOResources() {
return {
get: id =>
this.get({
endpoint: "eholdings/ebsco/resources/" + id,
headers: {
"x-koha-embed": "title,package,vendor",
},
}),
patch: (id, body) =>
this.patch({
endpoint: "eholdings/ebsco/resources/" + id,
body,
}),
};
}
}
export default ERMAPIClient;