122 lines
3.5 KiB
JavaScript
122 lines
3.5 KiB
JavaScript
import axios from "axios";
|
|
import FormData from 'form-data'
|
|
import {useAuthStore} from "@/store/authStore";
|
|
|
|
// const API_URL = "https://testowe.zikor.pl/api/v1";
|
|
|
|
const API_URL = "https://hopp.zikor.pl/api/v1";
|
|
|
|
export async function listNotices() {
|
|
const { token } = useAuthStore.getState();
|
|
const headers = token ? { 'Authorization': `Bearer ${token}` } : {};
|
|
|
|
const response = await fetch(`${API_URL}/notices/get/all`, {
|
|
headers: headers
|
|
});
|
|
const data = await response.json();
|
|
if (!response.ok) {
|
|
throw new Error(response.toString());
|
|
}
|
|
return data;
|
|
}
|
|
|
|
export async function getNoticeById(noticeId) {
|
|
const response = await fetch(`${API_URL}/notices/get/${noticeId}`);
|
|
|
|
const data = await response.json();
|
|
if (!response.ok) {
|
|
throw new Error("Error");
|
|
}
|
|
return data;
|
|
}
|
|
|
|
export async function createNotice(notice) {
|
|
try {
|
|
const response = await axios.post(`${API_URL}/notices/add`, notice, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
});
|
|
|
|
if (response.data.noticeId !== null) {
|
|
for (const imageUri of notice.image) {
|
|
await uploadImage(response.data.noticeId, imageUri);
|
|
}
|
|
}
|
|
|
|
return response.data;
|
|
} catch (error) {
|
|
console.log("Error", error.response.data, error.response.status);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function getImageByNoticeId(noticeId) {
|
|
let imageUrl;
|
|
try {
|
|
const listResponse = await axios.get(`${API_URL}/images/list/${noticeId}`);
|
|
|
|
const imageName = listResponse.data[0];
|
|
imageUrl = `${API_URL}/images/get/${imageName}`;
|
|
|
|
return imageUrl;
|
|
} catch (err) {
|
|
console.log(`Zdjęcie nie istnieje dla notice o id: ${noticeId}`);
|
|
imageUrl = "https://http.cat/404.jpg";
|
|
return imageUrl;
|
|
}
|
|
}
|
|
|
|
export async function getAllImagesByNoticeId(noticeId) {
|
|
try {
|
|
const listResponse = await axios.get(`${API_URL}/images/list/${noticeId}`);
|
|
|
|
if (listResponse.data && listResponse.data.length > 0) {
|
|
return listResponse.data.map(imageName =>
|
|
`${API_URL}/images/get/${imageName}`
|
|
);
|
|
}
|
|
|
|
return ["https://http.cat/404.jpg"];
|
|
} catch (err) {
|
|
if(err.response.status === 404) {
|
|
console.info(`Ogłoszenie o id: ${noticeId} nie posiada zdjęć.`);
|
|
return ["https://http.cat/404.jpg"];
|
|
}
|
|
console.warn(`Nie udało się pobrać listy zdjęć dla ogłoszenia o id: ${noticeId}`, err);
|
|
return ["https://http.cat/404.jpg"];
|
|
}
|
|
}
|
|
|
|
export const uploadImage = async (noticeId, imageUri) => {
|
|
const formData = new FormData();
|
|
|
|
const filename = imageUri.split('/').pop();
|
|
|
|
const match = /\.(\w+)$/.exec(filename);
|
|
const type = match ? `image/${match[1]}` : 'image/jpeg';
|
|
|
|
formData.append('file', {
|
|
uri: imageUri,
|
|
name: filename,
|
|
type: type,
|
|
});
|
|
|
|
try {
|
|
const response = await axios.post(
|
|
`${API_URL}/images/upload/${noticeId}`,
|
|
formData,
|
|
{
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data',
|
|
},
|
|
}
|
|
);
|
|
console.info('Upload successful:', response.data);
|
|
return response.data;
|
|
} catch (error) {
|
|
console.log("imageURI:", imageUri);
|
|
console.error('Error uploading image:', error.response.data, error.response.status);
|
|
throw error;
|
|
}
|
|
} |