Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
102 lines
3.2 KiB
TypeScript
102 lines
3.2 KiB
TypeScript
export const APP_LOCK_TIMEOUT_OPTIONS_MINUTES = [0, 1, 5, 15, 30, 60] as const;
|
|
export type AppLockTimeoutMinutes = typeof APP_LOCK_TIMEOUT_OPTIONS_MINUTES[number];
|
|
|
|
export interface AppLockPasswordVerifier {
|
|
version: 1;
|
|
algorithm: 'PBKDF2-SHA256';
|
|
iterations: number;
|
|
salt: string;
|
|
hash: string;
|
|
}
|
|
|
|
export interface AppLockSettings {
|
|
enabled: boolean;
|
|
timeoutMinutes: AppLockTimeoutMinutes;
|
|
systemUnlockEnabled: boolean;
|
|
systemUnlockAutoPromptEnabled: boolean;
|
|
passwordVerifier: AppLockPasswordVerifier | null;
|
|
}
|
|
|
|
export type AppLockSettingsChangeError =
|
|
| 'empty-current'
|
|
| 'empty-next'
|
|
| 'incorrect';
|
|
|
|
export const DEFAULT_APP_LOCK_SETTINGS: AppLockSettings = {
|
|
enabled: false,
|
|
timeoutMinutes: 15,
|
|
systemUnlockEnabled: false,
|
|
systemUnlockAutoPromptEnabled: false,
|
|
passwordVerifier: null,
|
|
};
|
|
|
|
const APP_LOCK_VERIFIER_VERSION = 1;
|
|
const APP_LOCK_ALGORITHM = 'PBKDF2-SHA256';
|
|
const APP_LOCK_SALT_BYTES = 16;
|
|
const APP_LOCK_HASH_BYTES = 32;
|
|
|
|
function base64ToBytes(value: string): Uint8Array | null {
|
|
try {
|
|
const binary = atob(value);
|
|
const bytes = new Uint8Array(binary.length);
|
|
for (let i = 0; i < binary.length; i += 1) {
|
|
bytes[i] = binary.charCodeAt(i);
|
|
}
|
|
return bytes;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function isRecord(value: unknown): value is Record<string, unknown> {
|
|
return Boolean(value && typeof value === 'object' && !Array.isArray(value));
|
|
}
|
|
|
|
export function normalizeAppLockTimeoutMinutes(input: unknown): AppLockTimeoutMinutes {
|
|
const value = typeof input === 'string' && input.trim() !== '' ? Number(input) : input;
|
|
return APP_LOCK_TIMEOUT_OPTIONS_MINUTES.includes(value as AppLockTimeoutMinutes)
|
|
? value as AppLockTimeoutMinutes
|
|
: DEFAULT_APP_LOCK_SETTINGS.timeoutMinutes;
|
|
}
|
|
|
|
export function normalizeAppLockPasswordVerifier(input: unknown): AppLockPasswordVerifier | null {
|
|
if (!isRecord(input)) return null;
|
|
if (input.version !== APP_LOCK_VERIFIER_VERSION) return null;
|
|
if (input.algorithm !== APP_LOCK_ALGORITHM) return null;
|
|
if (typeof input.iterations !== 'number' || !Number.isInteger(input.iterations) || input.iterations < 100000) {
|
|
return null;
|
|
}
|
|
if (typeof input.salt !== 'string' || base64ToBytes(input.salt)?.length !== APP_LOCK_SALT_BYTES) {
|
|
return null;
|
|
}
|
|
if (typeof input.hash !== 'string' || base64ToBytes(input.hash)?.length !== APP_LOCK_HASH_BYTES) {
|
|
return null;
|
|
}
|
|
|
|
return {
|
|
version: APP_LOCK_VERIFIER_VERSION,
|
|
algorithm: APP_LOCK_ALGORITHM,
|
|
iterations: input.iterations,
|
|
salt: input.salt,
|
|
hash: input.hash,
|
|
};
|
|
}
|
|
|
|
export function normalizeAppLockSettings(input: unknown): AppLockSettings {
|
|
if (!isRecord(input)) return DEFAULT_APP_LOCK_SETTINGS;
|
|
|
|
const timeoutMinutes = normalizeAppLockTimeoutMinutes(input.timeoutMinutes);
|
|
const passwordVerifier = normalizeAppLockPasswordVerifier(input.passwordVerifier);
|
|
const enabled = input.enabled === true && passwordVerifier !== null;
|
|
const systemUnlockEnabled = input.systemUnlockEnabled === true && enabled;
|
|
const systemUnlockAutoPromptEnabled = input.systemUnlockAutoPromptEnabled === true && systemUnlockEnabled;
|
|
|
|
return {
|
|
enabled,
|
|
timeoutMinutes,
|
|
systemUnlockEnabled,
|
|
systemUnlockAutoPromptEnabled,
|
|
passwordVerifier,
|
|
};
|
|
}
|