53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
|
import axios from 'axios';
|
|
import { Cookies } from 'react-cookie';
|
|
import cookie from 'cookie';
|
|
import moment from 'moment';
|
|
import jwt from 'jsonwebtoken';
|
|
import { cors } from '../../../lib/cors';
|
|
|
|
export default async function handler(req, res)
|
|
{
|
|
await cors(req, res);
|
|
|
|
if(req.headers.cookie !== undefined)
|
|
{
|
|
const cookies = cookie.parse(req.headers?.cookie ? req.headers?.cookie : "");
|
|
|
|
if(cookies.jwt !== undefined && cookies.jwt !== null)
|
|
{
|
|
var client_jwt_decoded = jwt.verify(cookies.jwt, process.env.JWT_SECRET_CLIENT);
|
|
var crm_jwt = jwt.sign(client_jwt_decoded, process.env.JWT_SECRET_CRM, { noTimestamp: true });
|
|
|
|
try
|
|
{
|
|
console.log("/lk/GetImage", "req.query.id", req.query.id);
|
|
axios.get(`${ process.env.CRM_API_HOST }/lk/GetImage`, {
|
|
params: { id: req.query.id },
|
|
//responseType: 'arraybuffer',
|
|
headers: {
|
|
"Authorization": `Bearer ${ crm_jwt }`,
|
|
}
|
|
})
|
|
.then((crm_response) =>
|
|
{
|
|
res.status(200).send(crm_response.data);
|
|
})
|
|
.catch((error) =>
|
|
{
|
|
console.error(error);
|
|
res.status(500);
|
|
});
|
|
}
|
|
catch(e)
|
|
{
|
|
console.error(e);
|
|
res.status(500);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
res.status(403);
|
|
}
|
|
}
|
|
} |