mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
68 lines
1.7 KiB
JavaScript
68 lines
1.7 KiB
JavaScript
/*
|
|
* GET a person by id
|
|
*/
|
|
const getPerson = (id) => {
|
|
const url = `/api/1.0/person/person/${id}.json`;
|
|
return fetch(url)
|
|
.then(response => {
|
|
if (response.ok) { return response.json(); }
|
|
throw Error('Error with request resource response');
|
|
});
|
|
};
|
|
|
|
const getPersonAltNames = () =>
|
|
fetch('/api/1.0/person/config/alt_names.json').then(response => {
|
|
if (response.ok) { return response.json(); }
|
|
throw Error('Error with request resource response');
|
|
});
|
|
|
|
const getCivilities = () =>
|
|
fetch('/api/1.0/main/civility.json').then(response => {
|
|
if (response.ok) { return response.json(); }
|
|
throw Error('Error with request resource response');
|
|
});
|
|
|
|
/*
|
|
* POST a new person
|
|
*/
|
|
const postPerson = (body) => {
|
|
const url = `/api/1.0/person/person.json`;
|
|
return fetch(url, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json;charset=utf-8'
|
|
},
|
|
body: JSON.stringify(body)
|
|
})
|
|
.then(response => {
|
|
if (response.ok) { return response.json(); }
|
|
throw Error('Error with request resource response');
|
|
});
|
|
};
|
|
|
|
/*
|
|
* PATCH an existing person
|
|
*/
|
|
const patchPerson = (id, body) => {
|
|
const url = `/api/1.0/person/person/${id}.json`;
|
|
return fetch(url, {
|
|
method: 'PATCH',
|
|
headers: {
|
|
'Content-Type': 'application/json;charset=utf-8'
|
|
},
|
|
body: JSON.stringify(body)
|
|
})
|
|
.then(response => {
|
|
if (response.ok) { return response.json(); }
|
|
throw Error('Error with request resource response');
|
|
});
|
|
};
|
|
|
|
export {
|
|
getPerson,
|
|
getPersonAltNames,
|
|
getCivilities,
|
|
postPerson,
|
|
patchPerson
|
|
};
|