Uname: Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.1.32 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 3.16.130.16
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : cache.ts
import os from 'os';
import path from 'path';
import fs from 'fs';

const homeDirectory = os.homedir();
const configDir =
  process.env.XDG_CONFIG_HOME ||
  path.join(homeDirectory, '.config', 'simple-update-notifier');

const getConfigFile = (packageName: string) => {
  return path.join(
    configDir,
    `${packageName.replace('@', '').replace('/', '__')}.json`
  );
};

export const createConfigDir = () => {
  if (!fs.existsSync(configDir)) {
    fs.mkdirSync(configDir, { recursive: true });
  }
};

export const getLastUpdate = (packageName: string) => {
  const configFile = getConfigFile(packageName);

  try {
    if (!fs.existsSync(configFile)) {
      return undefined;
    }
    const file = JSON.parse(fs.readFileSync(configFile, 'utf8'));
    return file.lastUpdateCheck as number;
  } catch {
    return undefined;
  }
};

export const saveLastUpdate = (packageName: string) => {
  const configFile = getConfigFile(packageName);

  fs.writeFileSync(
    configFile,
    JSON.stringify({ lastUpdateCheck: new Date().getTime() })
  );
};
© 2025 GrazzMean-Shell