mirror of
https://github.com/router-for-me/Cli-Proxy-API-Management-Center.git
synced 2026-02-03 19:30:51 +08:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f6563490a6 | ||
|
|
18c1ba6c3c | ||
|
|
c2627cac3e |
27
.github/workflows/release.yml
vendored
27
.github/workflows/release.yml
vendored
@@ -46,35 +46,12 @@ jobs:
|
|||||||
previous_tag="$(git tag --list 'v*' --sort=-v:refname | grep -v "^${current_tag}$" | head -n 1 || true)"
|
previous_tag="$(git tag --list 'v*' --sort=-v:refname | grep -v "^${current_tag}$" | head -n 1 || true)"
|
||||||
if [ -n "${previous_tag}" ]; then
|
if [ -n "${previous_tag}" ]; then
|
||||||
range="${previous_tag}..${current_tag}"
|
range="${previous_tag}..${current_tag}"
|
||||||
title="Changes since ${previous_tag}"
|
|
||||||
else
|
else
|
||||||
range="${current_tag}"
|
range="${current_tag}"
|
||||||
title="Changes"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
{
|
: > release-notes.md
|
||||||
echo "## CLI Proxy API Management Center - ${current_tag}"
|
git log --pretty=format:"- %h %s" "${range}" >> release-notes.md
|
||||||
echo
|
|
||||||
echo "### Download and Usage"
|
|
||||||
echo "1. Download the \`management.html\` file"
|
|
||||||
echo "2. Open it directly in your browser"
|
|
||||||
echo "3. All assets (CSS, JavaScript, images) are bundled into this single file"
|
|
||||||
echo
|
|
||||||
echo "### Features"
|
|
||||||
echo "- Single file, no external dependencies required"
|
|
||||||
echo "- Complete management interface for CLI Proxy API"
|
|
||||||
echo "- Support for local and remote connections"
|
|
||||||
echo "- Multi-language support (Chinese/English)"
|
|
||||||
echo "- Dark/Light theme support"
|
|
||||||
echo
|
|
||||||
echo "### ${title}"
|
|
||||||
echo
|
|
||||||
git log --pretty=format:"- %h %s" "${range}"
|
|
||||||
echo
|
|
||||||
echo
|
|
||||||
echo "---"
|
|
||||||
echo "🤖 Generated with GitHub Actions"
|
|
||||||
} > release-notes.md
|
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -17,6 +17,7 @@ dist-ssr
|
|||||||
*.local
|
*.local
|
||||||
|
|
||||||
# Editor directories and files
|
# Editor directories and files
|
||||||
|
settings.local.json
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
.idea
|
.idea
|
||||||
|
|||||||
@@ -200,8 +200,6 @@
|
|||||||
"ampcode_upstream_api_key_current": "Current Amp official key: {{key}}",
|
"ampcode_upstream_api_key_current": "Current Amp official key: {{key}}",
|
||||||
"ampcode_clear_upstream_api_key": "Clear official key",
|
"ampcode_clear_upstream_api_key": "Clear official key",
|
||||||
"ampcode_clear_upstream_api_key_confirm": "Are you sure you want to clear the Ampcode upstream API key (Amp official)?",
|
"ampcode_clear_upstream_api_key_confirm": "Are you sure you want to clear the Ampcode upstream API key (Amp official)?",
|
||||||
"ampcode_restrict_management_label": "Restrict Amp management routes to localhost",
|
|
||||||
"ampcode_restrict_management_hint": "When enabled, Amp management routes (/api/auth, /api/user, /api/threads, etc.) only accept 127.0.0.1/::1 (recommended).",
|
|
||||||
"ampcode_force_model_mappings_label": "Force model mappings",
|
"ampcode_force_model_mappings_label": "Force model mappings",
|
||||||
"ampcode_force_model_mappings_hint": "When enabled, mappings override local API-key availability checks.",
|
"ampcode_force_model_mappings_hint": "When enabled, mappings override local API-key availability checks.",
|
||||||
"ampcode_model_mappings_label": "Model mappings (from → to)",
|
"ampcode_model_mappings_label": "Model mappings (from → to)",
|
||||||
|
|||||||
@@ -200,8 +200,6 @@
|
|||||||
"ampcode_upstream_api_key_current": "当前Amp官方密钥: {{key}}",
|
"ampcode_upstream_api_key_current": "当前Amp官方密钥: {{key}}",
|
||||||
"ampcode_clear_upstream_api_key": "清除官方密钥",
|
"ampcode_clear_upstream_api_key": "清除官方密钥",
|
||||||
"ampcode_clear_upstream_api_key_confirm": "确定要清除 Ampcode 的 upstream API key(Amp官方)吗?",
|
"ampcode_clear_upstream_api_key_confirm": "确定要清除 Ampcode 的 upstream API key(Amp官方)吗?",
|
||||||
"ampcode_restrict_management_label": "仅允许本机访问 Amp 管理路由",
|
|
||||||
"ampcode_restrict_management_hint": "开启后,/api/auth、/api/user、/api/threads 等 Amp 管理路由仅允许 127.0.0.1/::1 访问(推荐)。",
|
|
||||||
"ampcode_force_model_mappings_label": "强制应用模型映射",
|
"ampcode_force_model_mappings_label": "强制应用模型映射",
|
||||||
"ampcode_force_model_mappings_hint": "开启后,模型映射将覆盖本地 API Key 可用性判断。",
|
"ampcode_force_model_mappings_hint": "开启后,模型映射将覆盖本地 API Key 可用性判断。",
|
||||||
"ampcode_model_mappings_label": "模型映射 (from → to)",
|
"ampcode_model_mappings_label": "模型映射 (from → to)",
|
||||||
|
|||||||
@@ -49,7 +49,6 @@ interface OpenAIFormState {
|
|||||||
interface AmpcodeFormState {
|
interface AmpcodeFormState {
|
||||||
upstreamUrl: string;
|
upstreamUrl: string;
|
||||||
upstreamApiKey: string;
|
upstreamApiKey: string;
|
||||||
restrictManagementToLocalhost: boolean;
|
|
||||||
forceModelMappings: boolean;
|
forceModelMappings: boolean;
|
||||||
mappingEntries: ModelEntry[];
|
mappingEntries: ModelEntry[];
|
||||||
}
|
}
|
||||||
@@ -174,7 +173,6 @@ const entriesToAmpcodeMappings = (entries: ModelEntry[]): AmpcodeModelMapping[]
|
|||||||
const buildAmpcodeFormState = (ampcode?: AmpcodeConfig | null): AmpcodeFormState => ({
|
const buildAmpcodeFormState = (ampcode?: AmpcodeConfig | null): AmpcodeFormState => ({
|
||||||
upstreamUrl: ampcode?.upstreamUrl ?? '',
|
upstreamUrl: ampcode?.upstreamUrl ?? '',
|
||||||
upstreamApiKey: '',
|
upstreamApiKey: '',
|
||||||
restrictManagementToLocalhost: ampcode?.restrictManagementToLocalhost ?? true,
|
|
||||||
forceModelMappings: ampcode?.forceModelMappings ?? false,
|
forceModelMappings: ampcode?.forceModelMappings ?? false,
|
||||||
mappingEntries: ampcodeMappingsToEntries(ampcode?.modelMappings),
|
mappingEntries: ampcodeMappingsToEntries(ampcode?.modelMappings),
|
||||||
});
|
});
|
||||||
@@ -701,9 +699,6 @@ export function AiProvidersPage() {
|
|||||||
await ampcodeApi.clearUpstreamUrl();
|
await ampcodeApi.clearUpstreamUrl();
|
||||||
}
|
}
|
||||||
|
|
||||||
await ampcodeApi.updateRestrictManagementToLocalhost(
|
|
||||||
ampcodeForm.restrictManagementToLocalhost
|
|
||||||
);
|
|
||||||
await ampcodeApi.updateForceModelMappings(ampcodeForm.forceModelMappings);
|
await ampcodeApi.updateForceModelMappings(ampcodeForm.forceModelMappings);
|
||||||
|
|
||||||
if (ampcodeLoaded || ampcodeMappingsDirty) {
|
if (ampcodeLoaded || ampcodeMappingsDirty) {
|
||||||
@@ -720,12 +715,18 @@ export function AiProvidersPage() {
|
|||||||
|
|
||||||
const previous = config?.ampcode ?? {};
|
const previous = config?.ampcode ?? {};
|
||||||
const next: AmpcodeConfig = {
|
const next: AmpcodeConfig = {
|
||||||
...previous,
|
|
||||||
upstreamUrl: upstreamUrl || undefined,
|
upstreamUrl: upstreamUrl || undefined,
|
||||||
restrictManagementToLocalhost: ampcodeForm.restrictManagementToLocalhost,
|
|
||||||
forceModelMappings: ampcodeForm.forceModelMappings,
|
forceModelMappings: ampcodeForm.forceModelMappings,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (previous.upstreamApiKey) {
|
||||||
|
next.upstreamApiKey = previous.upstreamApiKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Array.isArray(previous.modelMappings)) {
|
||||||
|
next.modelMappings = previous.modelMappings;
|
||||||
|
}
|
||||||
|
|
||||||
if (overrideKey) {
|
if (overrideKey) {
|
||||||
next.upstreamApiKey = overrideKey;
|
next.upstreamApiKey = overrideKey;
|
||||||
}
|
}
|
||||||
@@ -1505,16 +1506,6 @@ export function AiProvidersPage() {
|
|||||||
: t('common.not_set')}
|
: t('common.not_set')}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className={styles.fieldRow}>
|
|
||||||
<span className={styles.fieldLabel}>
|
|
||||||
{t('ai_providers.ampcode_restrict_management_label')}:
|
|
||||||
</span>
|
|
||||||
<span className={styles.fieldValue}>
|
|
||||||
{(config?.ampcode?.restrictManagementToLocalhost ?? true)
|
|
||||||
? t('common.yes')
|
|
||||||
: t('common.no')}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div className={styles.fieldRow}>
|
<div className={styles.fieldRow}>
|
||||||
<span className={styles.fieldLabel}>
|
<span className={styles.fieldLabel}>
|
||||||
{t('ai_providers.ampcode_force_model_mappings_label')}:
|
{t('ai_providers.ampcode_force_model_mappings_label')}:
|
||||||
@@ -1739,18 +1730,6 @@ export function AiProvidersPage() {
|
|||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="form-group">
|
|
||||||
<ToggleSwitch
|
|
||||||
label={t('ai_providers.ampcode_restrict_management_label')}
|
|
||||||
checked={ampcodeForm.restrictManagementToLocalhost}
|
|
||||||
onChange={(value) =>
|
|
||||||
setAmpcodeForm((prev) => ({ ...prev, restrictManagementToLocalhost: value }))
|
|
||||||
}
|
|
||||||
disabled={ampcodeModalLoading || ampcodeSaving}
|
|
||||||
/>
|
|
||||||
<div className="hint">{t('ai_providers.ampcode_restrict_management_hint')}</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="form-group">
|
<div className="form-group">
|
||||||
<ToggleSwitch
|
<ToggleSwitch
|
||||||
label={t('ai_providers.ampcode_force_model_mappings_label')}
|
label={t('ai_providers.ampcode_force_model_mappings_label')}
|
||||||
|
|||||||
@@ -281,7 +281,7 @@ export function OAuthPage() {
|
|||||||
{t('auth_login.oauth_callback_button')}
|
{t('auth_login.oauth_callback_button')}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
{state.callbackStatus === 'success' && (
|
{state.callbackStatus === 'success' && state.status === 'waiting' && (
|
||||||
<div className="status-badge success" style={{ marginTop: 8 }}>
|
<div className="status-badge success" style={{ marginTop: 8 }}>
|
||||||
{t('auth_login.oauth_callback_status_success')}
|
{t('auth_login.oauth_callback_status_success')}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -18,9 +18,6 @@ export const ampcodeApi = {
|
|||||||
updateUpstreamApiKey: (apiKey: string) => apiClient.put('/ampcode/upstream-api-key', { value: apiKey }),
|
updateUpstreamApiKey: (apiKey: string) => apiClient.put('/ampcode/upstream-api-key', { value: apiKey }),
|
||||||
clearUpstreamApiKey: () => apiClient.delete('/ampcode/upstream-api-key'),
|
clearUpstreamApiKey: () => apiClient.delete('/ampcode/upstream-api-key'),
|
||||||
|
|
||||||
updateRestrictManagementToLocalhost: (enabled: boolean) =>
|
|
||||||
apiClient.put('/ampcode/restrict-management-to-localhost', { value: enabled }),
|
|
||||||
|
|
||||||
async getModelMappings(): Promise<AmpcodeModelMapping[]> {
|
async getModelMappings(): Promise<AmpcodeModelMapping[]> {
|
||||||
const data = await apiClient.get('/ampcode/model-mappings');
|
const data = await apiClient.get('/ampcode/model-mappings');
|
||||||
const list = data?.['model-mappings'] ?? data?.modelMappings ?? data?.items ?? data;
|
const list = data?.['model-mappings'] ?? data?.modelMappings ?? data?.items ?? data;
|
||||||
|
|||||||
@@ -82,6 +82,10 @@ class ApiClient {
|
|||||||
(config) => {
|
(config) => {
|
||||||
// 设置 baseURL
|
// 设置 baseURL
|
||||||
config.baseURL = this.apiBase;
|
config.baseURL = this.apiBase;
|
||||||
|
if (config.url) {
|
||||||
|
// Normalize deprecated Gemini endpoint to the current path.
|
||||||
|
config.url = config.url.replace(/\/generative-language-api-key\b/g, '/gemini-api-key');
|
||||||
|
}
|
||||||
|
|
||||||
// 添加认证头
|
// 添加认证头
|
||||||
if (this.managementKey) {
|
if (this.managementKey) {
|
||||||
|
|||||||
@@ -205,15 +205,6 @@ const normalizeAmpcodeConfig = (payload: any): AmpcodeConfig | undefined => {
|
|||||||
const upstreamApiKey = source['upstream-api-key'] ?? source.upstreamApiKey ?? source['upstream_api_key'];
|
const upstreamApiKey = source['upstream-api-key'] ?? source.upstreamApiKey ?? source['upstream_api_key'];
|
||||||
if (upstreamApiKey) config.upstreamApiKey = String(upstreamApiKey);
|
if (upstreamApiKey) config.upstreamApiKey = String(upstreamApiKey);
|
||||||
|
|
||||||
const restrictManagementToLocalhost = normalizeBoolean(
|
|
||||||
source['restrict-management-to-localhost'] ??
|
|
||||||
source.restrictManagementToLocalhost ??
|
|
||||||
source['restrict_management_to_localhost']
|
|
||||||
);
|
|
||||||
if (restrictManagementToLocalhost !== undefined) {
|
|
||||||
config.restrictManagementToLocalhost = restrictManagementToLocalhost;
|
|
||||||
}
|
|
||||||
|
|
||||||
const forceModelMappings = normalizeBoolean(
|
const forceModelMappings = normalizeBoolean(
|
||||||
source['force-model-mappings'] ?? source.forceModelMappings ?? source['force_model_mappings']
|
source['force-model-mappings'] ?? source.forceModelMappings ?? source['force_model_mappings']
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ export interface AmpcodeModelMapping {
|
|||||||
export interface AmpcodeConfig {
|
export interface AmpcodeConfig {
|
||||||
upstreamUrl?: string;
|
upstreamUrl?: string;
|
||||||
upstreamApiKey?: string;
|
upstreamApiKey?: string;
|
||||||
restrictManagementToLocalhost?: boolean;
|
|
||||||
modelMappings?: AmpcodeModelMapping[];
|
modelMappings?: AmpcodeModelMapping[];
|
||||||
forceModelMappings?: boolean;
|
forceModelMappings?: boolean;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user