mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 07:53:23 +00:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
import logger from '@/utils/logger';
|
|
import { BE_DOCUSEAL_DOWNLOAD_TEMPLATE } from '@/utils/Url';
|
|
|
|
export default function handler(req, res) {
|
|
if (req.method === 'GET') {
|
|
const { slug, establishment_id, apiDocuseal } = req.query;
|
|
logger.debug('slug : ', slug);
|
|
|
|
fetch(`${BE_DOCUSEAL_DOWNLOAD_TEMPLATE}/${slug}?establishment_id=${establishment_id}`, {
|
|
method: 'GET',
|
|
headers: {
|
|
'X-Auth-Token': apiDocuseal,
|
|
},
|
|
})
|
|
.then((response) => {
|
|
if (!response.ok) {
|
|
return response.json().then((err) => {
|
|
throw new Error(err.message);
|
|
});
|
|
}
|
|
return response.json();
|
|
})
|
|
.then((data) => {
|
|
logger.debug('Template downloaded successfully:', data);
|
|
res.status(200).json(data);
|
|
})
|
|
.catch((error) => {
|
|
logger.error('Error downloading template:', error);
|
|
res.status(500).json({ error: 'Internal Server Error' });
|
|
});
|
|
} else {
|
|
res.setHeader('Allow', ['GET']);
|
|
res.status(405).end(`Method ${req.method} Not Allowed`);
|
|
}
|
|
}
|