65 lines
1.3 KiB
JavaScript
65 lines
1.3 KiB
JavaScript
import axios from 'axios';
|
|
import { Cookies } from 'react-cookie';
|
|
import cookie from 'cookie';
|
|
import moment from 'moment';
|
|
import jwt from 'jsonwebtoken';
|
|
import Redis from 'ioredis';
|
|
import md5 from 'md5';
|
|
|
|
import { cors } from '../../../lib/cors';
|
|
import RedisClient from '../../../lib/RedisClient';
|
|
|
|
export default async function handler(req, res)
|
|
{
|
|
await cors(req, res);
|
|
const { email, code, password, password_repeat } = req.body;
|
|
let token = "";
|
|
|
|
const key = md5(`email_code_${ email }`);
|
|
let existed_data = await RedisClient.get(key);
|
|
|
|
if(existed_data !== null)
|
|
{
|
|
const existed_data_json = JSON.parse(existed_data);
|
|
|
|
if(existed_data_json.code === code && password === password_repeat)
|
|
{
|
|
const response = await new Promise((resolve, reject) =>
|
|
{
|
|
axios.post(`${ process.env.NEXT_PUBLIC_API_HOST }/api/account/recovery/password/`, {
|
|
email,
|
|
code,
|
|
password,
|
|
password_repeat
|
|
})
|
|
.then((api_response) =>
|
|
{
|
|
console.log("RESPONSE");
|
|
console.log(api_response.data);
|
|
|
|
resolve(api_response.data);
|
|
})
|
|
.catch((error) =>
|
|
{
|
|
console.log("error");
|
|
console.error(error);
|
|
|
|
res.status(403).json();
|
|
});
|
|
});
|
|
|
|
if(response)
|
|
{
|
|
res.status(200).json({ status: "success" });
|
|
}
|
|
}
|
|
else
|
|
{
|
|
res.status(403).json();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
res.status(403).json();
|
|
}
|
|
} |