PIbd-21_Zhirnova_A._E._Inte.../3 proba/js/lines-rest-api.js

137 lines
3.6 KiB
JavaScript
Raw Normal View History

2023-12-06 22:05:45 +04:00
// модуль для работы с REST API сервера
// адрес сервера
const serverUrl = "http://localhost:8081";
// функция возвращает объект нужной структуры для отправки на сервер
function createLineObject(item, author, name, desc, count, date, image) {
return {
itemsId: item,
authorsId: author,
name,
desc,
count,
date,
image,
};
}
// обращение к серверу для получения всех типов товара (get)
export async function getAllItemTypes() {
const response = await fetch(`${serverUrl}/items`);
if (!response.ok) {
throw response.statusText;
}
return response.json();
}
// обращение к серверу для получения всех типов товара (get)
export async function getAllItemAuthors() {
const response = await fetch(`${serverUrl}/authors`);
if (!response.ok) {
throw response.statusText;
}
return response.json();
}
// обращение к серверу для получения всех записей (get)
export async function getAllLines() {
2023-12-07 22:11:53 +04:00
const response = await fetch(`${serverUrl}/lines?_expand=items&_expand=authors`);
2023-12-06 22:05:45 +04:00
if (!response.ok) {
throw response.statusText;
}
return response.json();
}
// обращение к серверу для получения записи по первичному ключу (id) (get)
// id передается в качестве части пути URL get-запроса
export async function getLine(id) {
2023-12-07 22:11:53 +04:00
const response = await fetch(`${serverUrl}/lines/${id}?_expand=items&_expand=authors`);
2023-12-06 22:05:45 +04:00
if (!response.ok) {
throw response.statusText;
}
return response.json();
}
// обращение к серверу для создания записи (post)
// объект отправляется в теле запроса (body)
export async function createLine(item, author, name, desc, count, date, image) {
const itemObject = createLineObject(
item,
author,
name,
desc,
count,
date,
image,
);
const options = {
method: "POST",
body: JSON.stringify(itemObject),
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
};
const response = await fetch(`${serverUrl}/lines`, options);
if (!response.ok) {
throw response.statusText;
}
return response.json();
}
// обращение к серверу для обновления записи по id (put)
// объект отправляется в теле запроса (body)
// id передается в качестве части пути URL get-запроса
export async function updateLine(
id,
item,
author,
name,
desc,
count,
date,
image,
) {
const itemObject = createLineObject(
item,
author,
name,
desc,
count,
date,
image,
);
const options = {
method: "PUT",
body: JSON.stringify(itemObject),
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
};
const response = await fetch(`${serverUrl}/lines/${id}`, options);
if (!response.ok) {
throw response.statusText;
}
return response.json();
}
// обращение к серверу для удаления записи по id (delete)
// id передается в качестве части пути URL get-запроса
export async function deleteLine(id) {
const options = {
method: "DELETE",
};
const response = await fetch(`${serverUrl}/lines/${id}`, options);
if (!response.ok) {
throw response.statusText;
}
return response.json();
}