checkTimestamp.js 542 B

123456789101112131415161718
  1. import AES from '~/plugins/AES.js'
  2. export default function ({ route, redirect }) {
  3. const { query } = route;
  4. const str = AES.decrypt(query.email);
  5. const parts = str.split("&t=");
  6. if (parts.length === 2) {
  7. const timestamp = parseInt(parts[1]);
  8. const currentTime = new Date().getTime();
  9. const differenceInHours = (currentTime - timestamp) / (1000 * 60 * 60);
  10. if (differenceInHours > 3) {
  11. return redirect("/404"); // 跳转到 404 页面
  12. }
  13. } else {
  14. return redirect("/404"); // 跳转到 404 页面
  15. }
  16. }