feat: 门户网站初始提交
- Go + Gin + html/template 服务端渲染 - 主页:Google 风格搜索框 + 导航卡片 - 后台:卡片 CRUD、搜索引擎配置、主页背景/标题配置 - 图片上传:支持 jpg/jpeg/png/gif,自动压缩,缩略图参数 ?thumb=1 - 安全:登录日志、修改密码、IP 自动封禁、IP 白名单 - 访问统计:主页访问/卡片点击/搜索追踪、实时流量、IP 统计 - SQLite 存储(modernc.org/sqlite,纯 Go) - 内存 Session + bcrypt 密码哈希
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
sequenceDiagram
|
||||
participant U as 用户浏览器
|
||||
participant JS as 前端 JavaScript
|
||||
participant SE as 搜索引擎
|
||||
|
||||
U->>JS: 输入关键词,按回车/点击搜索
|
||||
JS->>JS: 读取隐藏域 search_url_template
|
||||
JS->>JS: fmt.Sprintf(template, query)
|
||||
JS->>U: window.location.href = 拼接后的URL
|
||||
U->>SE: HTTP 请求到搜索引擎
|
||||
Reference in New Issue
Block a user