Spaces:
Sleeping
Sleeping
File size: 1,921 Bytes
f6266b9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | /**
* Model access control — allow/block specific models.
* Persisted to model-access.json.
*/
import { readFileSync, writeFileSync, existsSync } from 'fs';
import { join } from 'path';
const ACCESS_FILE = join(process.cwd(), 'model-access.json');
// mode: 'allowlist' (only listed models allowed) | 'blocklist' (listed models blocked) | 'all' (no restrictions)
const _config = {
mode: 'all',
list: [], // model IDs in the list
};
// Load
try {
if (existsSync(ACCESS_FILE)) {
Object.assign(_config, JSON.parse(readFileSync(ACCESS_FILE, 'utf-8')));
}
} catch {}
function save() {
try {
writeFileSync(ACCESS_FILE, JSON.stringify(_config, null, 2));
} catch {}
}
export function getModelAccessConfig() {
return { ..._config };
}
export function setModelAccessMode(mode) {
if (!['all', 'allowlist', 'blocklist'].includes(mode)) return;
_config.mode = mode;
save();
}
export function setModelAccessList(list) {
_config.list = Array.isArray(list) ? list : [];
save();
}
export function addModelToList(modelId) {
if (!_config.list.includes(modelId)) {
_config.list.push(modelId);
save();
}
}
export function removeModelFromList(modelId) {
_config.list = _config.list.filter(m => m !== modelId);
save();
}
/**
* Check if a model is allowed.
* @returns {{ allowed: boolean, reason?: string }}
*/
export function isModelAllowed(modelId) {
if (_config.mode === 'all') return { allowed: true };
if (_config.mode === 'allowlist') {
const allowed = _config.list.includes(modelId);
return allowed
? { allowed: true }
: { allowed: false, reason: `模型 ${modelId} 不在允許清單中` };
}
if (_config.mode === 'blocklist') {
const blocked = _config.list.includes(modelId);
return blocked
? { allowed: false, reason: `模型 ${modelId} 已被封鎖` }
: { allowed: true };
}
return { allowed: true };
}
|