|
|
import isDockerFunction from 'next/dist/compiled/is-docker' |
|
|
import isWslBoolean from 'next/dist/compiled/is-wsl' |
|
|
import os from 'os' |
|
|
|
|
|
import * as ciEnvironment from '../server/ci-info' |
|
|
|
|
|
type AnonymousMeta = { |
|
|
systemPlatform: NodeJS.Platform |
|
|
systemRelease: string |
|
|
systemArchitecture: string |
|
|
cpuCount: number |
|
|
cpuModel: string | null |
|
|
cpuSpeed: number | null |
|
|
memoryInMb: number |
|
|
isDocker: boolean |
|
|
isNowDev: boolean |
|
|
isWsl: boolean |
|
|
isCI: boolean |
|
|
ciName: string | null |
|
|
nextVersion: string |
|
|
} |
|
|
|
|
|
let traits: AnonymousMeta | undefined |
|
|
|
|
|
export function getAnonymousMeta(): AnonymousMeta { |
|
|
if (traits) { |
|
|
return traits |
|
|
} |
|
|
|
|
|
const cpus = os.cpus() || [] |
|
|
const { NOW_REGION } = process.env |
|
|
traits = { |
|
|
|
|
|
systemPlatform: os.platform(), |
|
|
systemRelease: os.release(), |
|
|
systemArchitecture: os.arch(), |
|
|
|
|
|
cpuCount: cpus.length, |
|
|
cpuModel: cpus.length ? cpus[0].model : null, |
|
|
cpuSpeed: cpus.length ? cpus[0].speed : null, |
|
|
memoryInMb: Math.trunc(os.totalmem() / Math.pow(1024, 2)), |
|
|
|
|
|
isDocker: isDockerFunction(), |
|
|
isNowDev: NOW_REGION === 'dev1', |
|
|
isWsl: isWslBoolean, |
|
|
isCI: ciEnvironment.isCI, |
|
|
ciName: (ciEnvironment.isCI && ciEnvironment.name) || null, |
|
|
nextVersion: process.env.__NEXT_VERSION as string, |
|
|
} |
|
|
|
|
|
return traits |
|
|
} |
|
|
|