feat: 将项目从nano重命名为beaver并更新相关配置
- 将所有环境变量前缀从NANO_改为BEAVER_ - 更新README.md文档内容,包括项目介绍、组件说明和快速开始指南 - 修改.gitignore文件,添加auth-portal运行时路径排除规则 - 更新app-instance镜像标签从nano/app-instance改为beaver/app-instance - 增强技能安全检查器,支持工具前缀白名单功能 - 添加技能草稿重新检查安全性API端点 - 扩展证据选择器,收集工具调用名称用于技能学习 - 改进技能合成器,基于实际调用的工具生成工具提示 - 优化路由超时处理机制,增加重试逻辑 - 更新后端架构文档,添加可视化入口和基础概念说明 - 实现在WebSocket消息中传递工具迭代次数信息
This commit is contained in:
@ -6,9 +6,24 @@ import { useSearchParams } from 'next/navigation';
|
||||
import { useState } from 'react';
|
||||
|
||||
import { LanguageSwitcher } from '@/components/LanguageSwitcher';
|
||||
import { buildFrontendHandoffUrl, register, withNext } from '@/lib/auth-client';
|
||||
import { buildFrontendHandoffUrl, configureProviderOnboarding, register, withNext } from '@/lib/auth-client';
|
||||
import { pickPortalText } from '@/lib/i18n/core';
|
||||
import { usePortalI18n } from '@/lib/i18n/provider';
|
||||
import type { TokenResponse } from '@/types/auth';
|
||||
|
||||
const PROVIDER_OPTIONS = [
|
||||
{ id: 'openrouter', label: 'OpenRouter', model: 'openrouter/anthropic/claude-sonnet-4.5' },
|
||||
{ id: 'openai', label: 'OpenAI', model: 'openai/gpt-5' },
|
||||
{ id: 'anthropic', label: 'Anthropic', model: 'claude-sonnet-4.5' },
|
||||
{ id: 'dashscope', label: 'DashScope', model: 'qwen-plus' },
|
||||
{ id: 'deepseek', label: 'DeepSeek', model: 'deepseek-chat' },
|
||||
{ id: 'gemini', label: 'Gemini', model: 'gemini/gemini-2.5-pro' },
|
||||
{ id: 'moonshot', label: 'Moonshot', model: 'moonshot/kimi-k2.5' },
|
||||
{ id: 'minimax', label: 'MiniMax', model: 'minimax/minimax-m1' },
|
||||
{ id: 'siliconflow', label: 'SiliconFlow', model: 'Qwen/Qwen3-32B' },
|
||||
{ id: 'volcengine', label: 'VolcEngine', model: 'volcengine/deepseek-v3' },
|
||||
{ id: 'vllm', label: 'vLLM / Local', model: 'hosted_vllm/local-model' },
|
||||
];
|
||||
|
||||
export default function RegisterPage() {
|
||||
const { locale } = usePortalI18n();
|
||||
@ -19,8 +34,18 @@ export default function RegisterPage() {
|
||||
const [email, setEmail] = useState('');
|
||||
const [password, setPassword] = useState('');
|
||||
const [confirmPassword, setConfirmPassword] = useState('');
|
||||
const [registrationResponse, setRegistrationResponse] = useState<TokenResponse | null>(null);
|
||||
const [provider, setProvider] = useState(PROVIDER_OPTIONS[0].id);
|
||||
const [model, setModel] = useState(PROVIDER_OPTIONS[0].model);
|
||||
const [apiKey, setApiKey] = useState('');
|
||||
const [apiBase, setApiBase] = useState('');
|
||||
const [showPassword, setShowPassword] = useState(false);
|
||||
const [showConfirmPassword, setShowConfirmPassword] = useState(false);
|
||||
const [showApiKey, setShowApiKey] = useState(false);
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [onboardingLoading, setOnboardingLoading] = useState(false);
|
||||
const [error, setError] = useState('');
|
||||
const [onboardingError, setOnboardingError] = useState('');
|
||||
|
||||
const handleSubmit = async (event: React.FormEvent<HTMLFormElement>) => {
|
||||
event.preventDefault();
|
||||
@ -32,7 +57,7 @@ export default function RegisterPage() {
|
||||
throw new Error(pickPortalText(locale, '两次输入的密码不一致', 'Passwords do not match'));
|
||||
}
|
||||
const response = await register(username, email, password);
|
||||
window.location.replace(buildFrontendHandoffUrl(response, nextPath));
|
||||
setRegistrationResponse(response);
|
||||
} catch (err) {
|
||||
setError(err instanceof Error ? err.message : pickPortalText(locale, '注册失败,请稍后重试', 'Sign-up failed. Please try again.'));
|
||||
} finally {
|
||||
@ -40,122 +65,248 @@ export default function RegisterPage() {
|
||||
}
|
||||
};
|
||||
|
||||
const handleProviderChange = (value: string) => {
|
||||
const previousDefault = PROVIDER_OPTIONS.find((item) => item.id === provider)?.model;
|
||||
const selected = PROVIDER_OPTIONS.find((item) => item.id === value);
|
||||
setProvider(value);
|
||||
if (selected && (!model.trim() || model === previousDefault)) {
|
||||
setModel(selected.model);
|
||||
}
|
||||
};
|
||||
|
||||
const continueWithoutProvider = () => {
|
||||
if (!registrationResponse) return;
|
||||
window.location.replace(buildFrontendHandoffUrl(registrationResponse, nextPath));
|
||||
};
|
||||
|
||||
const handleProviderSubmit = async (event: React.FormEvent<HTMLFormElement>) => {
|
||||
event.preventDefault();
|
||||
if (!registrationResponse) return;
|
||||
setOnboardingLoading(true);
|
||||
setOnboardingError('');
|
||||
|
||||
try {
|
||||
const response = await configureProviderOnboarding({
|
||||
username,
|
||||
password,
|
||||
provider,
|
||||
model,
|
||||
api_key: apiKey,
|
||||
api_base: apiBase,
|
||||
});
|
||||
window.location.replace(buildFrontendHandoffUrl(response, nextPath));
|
||||
} catch (err) {
|
||||
setOnboardingError(err instanceof Error ? err.message : pickPortalText(locale, '模型配置失败,请检查后重试', 'Provider setup failed. Check the values and try again.'));
|
||||
} finally {
|
||||
setOnboardingLoading(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<main className="portal-page">
|
||||
<div className="absolute right-5 top-5 z-10">
|
||||
<div className="portal-toolbar">
|
||||
<LanguageSwitcher />
|
||||
</div>
|
||||
<section className="portal-shell">
|
||||
<div className="portal-brand">
|
||||
<div className="portal-logo-lockup">
|
||||
<Image
|
||||
src="/boardware-logo.jpg"
|
||||
alt="Boardware logo"
|
||||
width={128}
|
||||
height={128}
|
||||
className="portal-logo-image"
|
||||
/>
|
||||
</div>
|
||||
<div className="portal-kicker">Auth Portal</div>
|
||||
<h1 className="portal-title">Create Runtime</h1>
|
||||
<p className="portal-copy">
|
||||
{pickPortalText(
|
||||
locale,
|
||||
'注册不仅建立登录账号,还会触发专属实例创建和 backend 身份分配。认证完成后会直接进入你的专属 URL。',
|
||||
'Sign-up not only creates a login account, it also provisions your dedicated runtime and backend identity. After authentication, you go straight into your own URL.'
|
||||
)}
|
||||
</p>
|
||||
<div className="portal-notes">
|
||||
<div className="portal-note">
|
||||
<strong>{pickPortalText(locale, '注册结果', 'Provisioning result')}</strong>
|
||||
{pickPortalText(
|
||||
locale,
|
||||
'AuthZ 会编排 deploy-control 创建实例,并完成 backend 身份初始化,auth portal 最后把你转交到该实例前端。',
|
||||
'AuthZ coordinates deploy-control to create the runtime, initialize backend identity, and then the portal hands the browser over to that frontend.'
|
||||
)}
|
||||
</div>
|
||||
<div className="portal-note">
|
||||
<strong>{pickPortalText(locale, '目标页面', 'Target page')}</strong>
|
||||
{pickPortalText(locale, '当前注册完成后将回到:', 'After sign-up you will return to:')} <code>{nextPath}</code>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section className="auth-page">
|
||||
<div className="portal-panel">
|
||||
<div className="auth-card">
|
||||
<h1>{pickPortalText(locale, '注册', 'Sign Up')}</h1>
|
||||
<p>{pickPortalText(locale, '为当前容器创建登录账号,并完成 backend 身份初始化。', 'Create a login account for this runtime and initialize backend identity.')}</p>
|
||||
{registrationResponse ? (
|
||||
<div className="auth-card login-card register-card">
|
||||
<BrandHeader title={pickPortalText(locale, '配置模型', 'Model Setup')} />
|
||||
|
||||
<form className="auth-form" onSubmit={handleSubmit}>
|
||||
<div className="field">
|
||||
<label htmlFor="username">{pickPortalText(locale, '用户名', 'Username')}</label>
|
||||
<input
|
||||
id="username"
|
||||
value={username}
|
||||
onChange={(event) => setUsername(event.target.value)}
|
||||
autoComplete="username"
|
||||
placeholder={pickPortalText(locale, '例如:bwgdi', 'Example: bwgdi')}
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<form className="auth-form" onSubmit={handleProviderSubmit}>
|
||||
<div className="field login-field">
|
||||
<label className="visually-hidden" htmlFor="provider">{pickPortalText(locale, '模型提供商', 'Model provider')}</label>
|
||||
<select
|
||||
id="provider"
|
||||
value={provider}
|
||||
onChange={(event) => handleProviderChange(event.target.value)}
|
||||
disabled={onboardingLoading}
|
||||
>
|
||||
{PROVIDER_OPTIONS.map((item) => (
|
||||
<option key={item.id} value={item.id}>{item.label}</option>
|
||||
))}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div className="field">
|
||||
<label htmlFor="email">{pickPortalText(locale, '邮箱', 'Email')}</label>
|
||||
<input
|
||||
id="email"
|
||||
type="email"
|
||||
value={email}
|
||||
onChange={(event) => setEmail(event.target.value)}
|
||||
autoComplete="email"
|
||||
placeholder={pickPortalText(locale, '例如:steven@example.com', 'Example: steven@example.com')}
|
||||
/>
|
||||
</div>
|
||||
<div className="field login-field">
|
||||
<label className="visually-hidden" htmlFor="model">{pickPortalText(locale, '模型', 'Model')}</label>
|
||||
<input
|
||||
id="model"
|
||||
value={model}
|
||||
onChange={(event) => setModel(event.target.value)}
|
||||
placeholder={pickPortalText(locale, '模型', 'Model')}
|
||||
required
|
||||
disabled={onboardingLoading}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="field">
|
||||
<label htmlFor="password">{pickPortalText(locale, '密码', 'Password')}</label>
|
||||
<input
|
||||
id="password"
|
||||
type="password"
|
||||
value={password}
|
||||
onChange={(event) => setPassword(event.target.value)}
|
||||
autoComplete="new-password"
|
||||
placeholder={pickPortalText(locale, '设置密码', 'Set a password')}
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<div className="field login-field">
|
||||
<label className="visually-hidden" htmlFor="apiKey">API Key</label>
|
||||
<input
|
||||
id="apiKey"
|
||||
type={showApiKey ? 'text' : 'password'}
|
||||
value={apiKey}
|
||||
onChange={(event) => setApiKey(event.target.value)}
|
||||
autoComplete="off"
|
||||
placeholder={provider === 'vllm' ? pickPortalText(locale, 'API Key 可选', 'API key optional') : 'API Key'}
|
||||
required={provider !== 'vllm'}
|
||||
disabled={onboardingLoading}
|
||||
/>
|
||||
<VisibilityButton
|
||||
active={showApiKey}
|
||||
onClick={() => setShowApiKey((value) => !value)}
|
||||
label={pickPortalText(locale, showApiKey ? '隐藏 API Key' : '显示 API Key', showApiKey ? 'Hide API key' : 'Show API key')}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="field">
|
||||
<label htmlFor="confirmPassword">{pickPortalText(locale, '确认密码', 'Confirm password')}</label>
|
||||
<input
|
||||
id="confirmPassword"
|
||||
type="password"
|
||||
value={confirmPassword}
|
||||
onChange={(event) => setConfirmPassword(event.target.value)}
|
||||
autoComplete="new-password"
|
||||
placeholder={pickPortalText(locale, '再次输入密码', 'Enter the password again')}
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
<div className="field login-field">
|
||||
<label className="visually-hidden" htmlFor="apiBase">API Base</label>
|
||||
<input
|
||||
id="apiBase"
|
||||
value={apiBase}
|
||||
onChange={(event) => setApiBase(event.target.value)}
|
||||
placeholder="API Base"
|
||||
disabled={onboardingLoading}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="error-text">{error}</div>
|
||||
<div className="error-text">{onboardingError}</div>
|
||||
|
||||
<button className="primary-button" type="submit" disabled={loading}>
|
||||
{loading
|
||||
? pickPortalText(locale, '注册中...', 'Creating account...')
|
||||
: pickPortalText(locale, '注册并进入容器', 'Create account and continue')}
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<div className="auth-footer">
|
||||
{pickPortalText(locale, '已有账号?', 'Already have an account?')} <Link href={withNext('/login', nextPath)}>{pickPortalText(locale, '去登录', 'Sign in')}</Link>
|
||||
<button className="primary-button" type="submit" disabled={onboardingLoading}>
|
||||
{onboardingLoading ? pickPortalText(locale, '写入中...', 'Saving...') : <ArrowRightIcon />}
|
||||
</button>
|
||||
<button className="secondary-button" type="button" onClick={continueWithoutProvider} disabled={onboardingLoading}>
|
||||
{pickPortalText(locale, '跳过', 'Skip')}
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
) : (
|
||||
<div className="auth-card login-card register-card">
|
||||
<BrandHeader title="Beaver Agentsandbox" />
|
||||
|
||||
<div className="status-panel">
|
||||
{pickPortalText(locale, 'Portal 会先调用部署机接口创建实例,再把浏览器跳到实例自己的 URL。', 'The portal first calls the deployment controller to create the runtime, then redirects the browser into the instance URL.')}
|
||||
<form className="auth-form" onSubmit={handleSubmit}>
|
||||
<div className="field login-field">
|
||||
<label className="visually-hidden" htmlFor="username">{pickPortalText(locale, '用户名', 'Username')}</label>
|
||||
<input
|
||||
id="username"
|
||||
value={username}
|
||||
onChange={(event) => setUsername(event.target.value)}
|
||||
autoComplete="username"
|
||||
placeholder={pickPortalText(locale, '用户名', 'Username')}
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="field login-field">
|
||||
<label className="visually-hidden" htmlFor="email">{pickPortalText(locale, '邮箱', 'Email')}</label>
|
||||
<input
|
||||
id="email"
|
||||
type="email"
|
||||
value={email}
|
||||
onChange={(event) => setEmail(event.target.value)}
|
||||
autoComplete="email"
|
||||
placeholder={pickPortalText(locale, '邮箱', 'Email')}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="field login-field">
|
||||
<label className="visually-hidden" htmlFor="password">{pickPortalText(locale, '密码', 'Password')}</label>
|
||||
<input
|
||||
id="password"
|
||||
type={showPassword ? 'text' : 'password'}
|
||||
value={password}
|
||||
onChange={(event) => setPassword(event.target.value)}
|
||||
autoComplete="new-password"
|
||||
placeholder={pickPortalText(locale, '密码', 'Password')}
|
||||
required
|
||||
/>
|
||||
<VisibilityButton
|
||||
active={showPassword}
|
||||
onClick={() => setShowPassword((value) => !value)}
|
||||
label={pickPortalText(locale, showPassword ? '隐藏密码' : '显示密码', showPassword ? 'Hide password' : 'Show password')}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="field login-field">
|
||||
<label className="visually-hidden" htmlFor="confirmPassword">{pickPortalText(locale, '确认密码', 'Confirm password')}</label>
|
||||
<input
|
||||
id="confirmPassword"
|
||||
type={showConfirmPassword ? 'text' : 'password'}
|
||||
value={confirmPassword}
|
||||
onChange={(event) => setConfirmPassword(event.target.value)}
|
||||
autoComplete="new-password"
|
||||
placeholder={pickPortalText(locale, '确认密码', 'Confirm password')}
|
||||
required
|
||||
/>
|
||||
<VisibilityButton
|
||||
active={showConfirmPassword}
|
||||
onClick={() => setShowConfirmPassword((value) => !value)}
|
||||
label={pickPortalText(locale, showConfirmPassword ? '隐藏确认密码' : '显示确认密码', showConfirmPassword ? 'Hide confirm password' : 'Show confirm password')}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="error-text">{error}</div>
|
||||
|
||||
<button className="primary-button" type="submit" disabled={loading}>
|
||||
{loading ? pickPortalText(locale, '注册中...', 'Creating...') : <ArrowRightIcon />}
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<div className="login-divider">
|
||||
<span>{pickPortalText(locale, '或', 'or')}</span>
|
||||
</div>
|
||||
|
||||
<div className="auth-footer login-footer">
|
||||
<span>{pickPortalText(locale, '已有账号?', 'Already have an account?')}</span>
|
||||
<Link href={withNext('/login', nextPath)}>{pickPortalText(locale, '登录', 'Sign in')} <span aria-hidden="true">›</span></Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
function BrandHeader({ title }: { title: string }) {
|
||||
return (
|
||||
<>
|
||||
<Image
|
||||
src="/boardware-logo.jpg"
|
||||
alt="Boardware logo"
|
||||
width={120}
|
||||
height={120}
|
||||
className="login-logo"
|
||||
priority
|
||||
/>
|
||||
<h1>{title}</h1>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
function VisibilityButton({ active, label, onClick }: { active: boolean; label: string; onClick: () => void }) {
|
||||
return (
|
||||
<button className="ghost-icon-button" type="button" onClick={onClick} aria-label={label} aria-pressed={active}>
|
||||
<EyeIcon />
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
function EyeIcon() {
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" aria-hidden="true">
|
||||
<path d="M3.75 12s2.8-5.25 8.25-5.25S20.25 12 20.25 12s-2.8 5.25-8.25 5.25S3.75 12 3.75 12Z" />
|
||||
<path d="m4.75 4.75 14.5 14.5" />
|
||||
<path d="M9.9 9.9a3 3 0 0 0 4.2 4.2" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
function ArrowRightIcon() {
|
||||
return (
|
||||
<svg className="button-arrow" viewBox="0 0 24 24" aria-hidden="true">
|
||||
<path d="M5 12h13" />
|
||||
<path d="m13 6 6 6-6 6" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user