Compare commits
15
Commits
7047b33358
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d9ccdde75 | ||
|
|
2875918289 | ||
|
|
1fc933e014 | ||
|
|
fe69a2e38b | ||
|
|
d8779ed5bf | ||
|
|
a316932d3f | ||
|
|
5f8c7be5ac | ||
|
|
fe72cbaf9d | ||
|
|
d9bb91af00 | ||
|
|
2bdc368399 | ||
|
|
b4983f1d4d | ||
|
|
b0ca76e8dc | ||
|
|
b600eac21c | ||
|
|
da7a39c1c8 | ||
|
|
5ec783e471 |
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"Bash(curl -s -c /tmp/cookies.txt -L -X POST http://localhost:8099/login -d \"username=admin&password=admin\" -o /dev/null -w \"login final HTTP %{http_code}\\\\n\")",
|
||||
"Bash(curl -s -b /tmp/cookies.txt http://localhost:8099/admin -o /tmp/dash.html -w \"HTTP %{http_code}\\\\n\")",
|
||||
"Read(//tmp/**)",
|
||||
"Bash(sed -n 's/.*\\\\\\(text-3xl font-bold text-gray-900 mt-1\">1\\\\n\\\\\\).*//p' /tmp/dash.html)",
|
||||
"Bash(perl -0777 -ne 'while\\(/dash_posts.*?text-3xl[^>]*>\\(.*?\\)<\\\\/p>/sg\\){print \"POSTS BLOCK: $1\\\\n\"}' /tmp/dash.html)",
|
||||
"Bash(python -c ' *)",
|
||||
"Bash(curl -s -b /tmp/cookies.txt http://localhost:8099/admin -o dash.html)",
|
||||
"Bash(rm -f dash.html)",
|
||||
"Bash(curl -s http://localhost:8099/article/123 -o detail.html -w \"detail HTTP %{http_code}\\\\n\")",
|
||||
"Bash(rm -f detail.html)",
|
||||
"Bash(cp /tmp/cfg_backup.yaml win/etc/blog_go/config.yaml)",
|
||||
"Bash(pkill -f blogtest.exe)",
|
||||
"Bash(pkill -f \"blog_go.exe\")",
|
||||
"Bash(cd c:/Users/wuwen/Documents/project/go_blog && rm -f /tmp/blogtest.exe && git status --short && echo \"--- diff stat ---\" && git diff --stat)"
|
||||
],
|
||||
"additionalDirectories": [
|
||||
"\\tmp"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,223 +0,0 @@
|
||||
# 权限控制与用户文章管理功能
|
||||
|
||||
## 提交摘要
|
||||
本次更新修复了权限边界问题,并为普通用户添加了独立的文章管理功能。
|
||||
|
||||
## 1. 权限控制修复
|
||||
|
||||
### 问题
|
||||
- 普通用户(author角色)能够访问后台管理页面 `/admin`
|
||||
- 普通用户能够修改平台设置、审核评论、管理用户
|
||||
- 权限边界不清晰,存在安全隐患
|
||||
|
||||
### 解决方案
|
||||
|
||||
#### 后端路由保护 ([main.go](main.go))
|
||||
为所有管理功能添加 `AdminRequired` 中间件:
|
||||
|
||||
```go
|
||||
// 整个 /admin 路径要求管理员权限
|
||||
admin := router.Group("/admin")
|
||||
admin.Use(middleware.AuthRequired(), middleware.AdminRequired(db))
|
||||
|
||||
// 评论管理要求管理员权限
|
||||
comments := router.Group("/admin/comments")
|
||||
comments.Use(middleware.AuthRequired(), middleware.AdminRequired(db))
|
||||
|
||||
// 用户管理要求管理员权限
|
||||
users := router.Group("/admin/users")
|
||||
users.Use(middleware.AuthRequired(), middleware.AdminRequired(db))
|
||||
|
||||
// 平台设置要求管理员权限
|
||||
settings := router.Group("/admin/settings")
|
||||
settings.Use(middleware.AuthRequired(), middleware.AdminRequired(db))
|
||||
|
||||
// 附件管理要求管理员权限
|
||||
attachments := router.Group("/admin/articles")
|
||||
attachments.Use(middleware.AuthRequired(), middleware.AdminRequired(db))
|
||||
```
|
||||
|
||||
#### 前端UI控制
|
||||
**头部导航菜单** ([templates/layouts/base.html](templates/layouts/base.html)):
|
||||
- 所有用户:个人信息、我的文章
|
||||
- 仅管理员:后台管理(分隔线后显示)
|
||||
|
||||
**管理后台仪表板** ([templates/admin/dashboard.html](templates/admin/dashboard.html)):
|
||||
- 管理员专属按钮:用户管理、评论管理、平台设置
|
||||
|
||||
## 2. 用户文章管理功能
|
||||
|
||||
### 新增功能
|
||||
为普通用户创建独立的文章管理界面,无需访问后台即可管理自己的文章。
|
||||
|
||||
### 路由设计 ([main.go](main.go))
|
||||
```go
|
||||
myArticles := router.Group("/my")
|
||||
myArticles.Use(middleware.AuthRequired())
|
||||
{
|
||||
myArticles.GET("/articles", handlers.MyArticlesPage(db))
|
||||
myArticles.GET("/articles/new", handlers.MyArticleCreatePage(db))
|
||||
myArticles.POST("/articles/new", handlers.MyArticleCreate(db))
|
||||
myArticles.GET("/articles/:id/edit", handlers.MyArticleEditPage(db))
|
||||
myArticles.POST("/articles/:id/edit", handlers.MyArticleUpdate(db))
|
||||
myArticles.POST("/articles/:id/delete", handlers.MyArticleDelete(db))
|
||||
}
|
||||
|
||||
// 用户文章附件管理
|
||||
myAttachments := router.Group("/my/articles")
|
||||
myAttachments.Use(middleware.AuthRequired())
|
||||
{
|
||||
myAttachments.POST("/attachments", handlers.UploadAttachment(db, cfg.Path))
|
||||
myAttachments.POST("/attachments/:id/delete", handlers.DeleteAttachment(db, cfg.Path))
|
||||
myAttachments.GET("/:id/attachments", handlers.ListAttachments(db))
|
||||
}
|
||||
```
|
||||
|
||||
### Handler实现 ([handlers/my_articles.go](handlers/my_articles.go))
|
||||
|
||||
**权限控制特点**:
|
||||
- `MyArticlesPage`: 只查询当前用户的文章 (`WHERE author_id = ?`)
|
||||
- `MyArticleEditPage`: 验证文章所有权 (`WHERE id = ? AND author_id = ?`)
|
||||
- `MyArticleUpdate`: 验证文章所有权后才允许更新
|
||||
- `MyArticleDelete`: 验证文章所有权后才允许删除
|
||||
|
||||
### 模板文件
|
||||
|
||||
**文章列表** ([templates/user/my_articles.html](templates/user/my_articles.html)):
|
||||
- 显示用户自己的文章
|
||||
- 支持创建、编辑、删除操作
|
||||
- 显示文章状态(草稿/已发布/置顶)
|
||||
|
||||
**文章编辑器** ([templates/user/my_article_form.html](templates/user/my_article_form.html)):
|
||||
- Markdown编辑器支持
|
||||
- 标题、slug、摘要、正文、封面
|
||||
- 状态选择(草稿/发布)
|
||||
- 置顶选项
|
||||
|
||||
### 国际化支持 ([i18n/i18n.go](i18n/i18n.go))
|
||||
|
||||
新增翻译key:
|
||||
```go
|
||||
// 英文
|
||||
"my_articles": "My Articles",
|
||||
"my_articles_title": "My Articles",
|
||||
"comment_manage": "Manage Comments",
|
||||
"article_field_*": // 表单字段标签
|
||||
"article_save": "Save",
|
||||
"article_cancel": "Cancel",
|
||||
|
||||
// 中文
|
||||
"my_articles": "我的文章",
|
||||
"my_articles_title": "我的文章",
|
||||
"comment_manage": "评论管理",
|
||||
// ...
|
||||
```
|
||||
|
||||
## 3. 权限矩阵
|
||||
|
||||
| 功能 | 路径 | admin | author | 未登录 |
|
||||
|------|------|-------|--------|--------|
|
||||
| 管理后台 | `/admin` | ✓ | ✗ | ✗ |
|
||||
| 文章管理(后台) | `/admin/articles` | ✓ | ✗ | ✗ |
|
||||
| 评论管理 | `/admin/comments` | ✓ | ✗ | ✗ |
|
||||
| 用户管理 | `/admin/users` | ✓ | ✗ | ✗ |
|
||||
| 平台设置 | `/admin/settings` | ✓ | ✗ | ✗ |
|
||||
| **我的文章** | `/my/articles` | ✓ | ✓ | ✗ |
|
||||
| 个人资料 | `/profile` | ✓ | ✓ | ✗ |
|
||||
| 文章浏览 | `/article/:slug` | ✓ | ✓ | ✓ |
|
||||
|
||||
## 4. 用户体验
|
||||
|
||||
### 普通用户(author)
|
||||
1. 登录后点击头像
|
||||
2. 看到选项:
|
||||
- 个人信息
|
||||
- **我的文章** ← 新增
|
||||
- 退出登录
|
||||
3. 点击"我的文章"进入独立的文章管理界面
|
||||
4. 可以创建、编辑、删除自己的文章
|
||||
5. 无法访问后台管理功能
|
||||
|
||||
### 管理员(admin)
|
||||
1. 登录后点击头像
|
||||
2. 看到选项:
|
||||
- 个人信息
|
||||
- 我的文章
|
||||
- ---(分隔线)---
|
||||
- **后台管理** ← 管理员专属
|
||||
- 退出登录
|
||||
3. 点击"后台管理"进入完整的管理后台
|
||||
4. 后台仪表板显示管理员专属按钮:
|
||||
- 用户管理
|
||||
- 评论管理
|
||||
- 平台设置
|
||||
|
||||
## 5. 安全改进
|
||||
|
||||
### 多层防护
|
||||
1. **路由层**:`AdminRequired` 中间件拦截未授权访问
|
||||
2. **Handler层**:查询时验证用户身份和所有权
|
||||
3. **UI层**:根据角色隐藏不该显示的按钮和链接
|
||||
|
||||
### 拦截行为
|
||||
- 普通用户访问 `/admin/*` → 重定向到 `/admin`
|
||||
- 由于 `/admin` 也需要管理员权限 → 再次重定向到 `/admin`
|
||||
- 实际效果:普通用户无法访问任何管理功能
|
||||
|
||||
## 6. 测试建议
|
||||
|
||||
### 管理员账户测试
|
||||
```bash
|
||||
# 登录管理员
|
||||
访问 http://localhost:8080/login
|
||||
用户名: admin
|
||||
密码: (你的管理员密码)
|
||||
|
||||
# 应该能访问:
|
||||
- /admin (后台仪表板)
|
||||
- /admin/articles (文章管理)
|
||||
- /admin/comments (评论管理)
|
||||
- /admin/users (用户管理)
|
||||
- /admin/settings/site (平台设置)
|
||||
- /my/articles (我的文章)
|
||||
```
|
||||
|
||||
### 普通用户测试
|
||||
```bash
|
||||
# 创建或登录普通用户
|
||||
访问 http://localhost:8080/login
|
||||
用户名: author
|
||||
密码: (普通用户密码)
|
||||
|
||||
# 应该能访问:
|
||||
- /my/articles (我的文章)
|
||||
- /profile (个人资料)
|
||||
|
||||
# 不应该能访问(会被拦截):
|
||||
- /admin
|
||||
- /admin/comments
|
||||
- /admin/users
|
||||
- /admin/settings
|
||||
```
|
||||
|
||||
## 7. 文件变更清单
|
||||
|
||||
### 新增文件
|
||||
- `handlers/my_articles.go` - 用户文章管理handler
|
||||
- `templates/user/my_articles.html` - 文章列表模板
|
||||
- `templates/user/my_article_form.html` - 文章编辑表单
|
||||
- `test_permissions.md` - 权限测试文档
|
||||
|
||||
### 修改文件
|
||||
- `main.go` - 添加权限中间件和用户文章路由
|
||||
- `i18n/i18n.go` - 添加翻译key
|
||||
- `templates/layouts/base.html` - 简化导航菜单
|
||||
- `templates/admin/dashboard.html` - 添加管理员专属按钮
|
||||
|
||||
## 8. 后续改进建议
|
||||
|
||||
1. **细粒度权限**:考虑添加编辑角色,可以编辑所有文章但不能管理用户
|
||||
2. **文章协作**:允许管理员指定文章的协作者
|
||||
3. **审计日志**:记录敏感操作(用户管理、设置修改)
|
||||
4. **草稿分享**:生成草稿预览链接,方便审稿
|
||||
5. **文章统计**:在"我的文章"页面显示阅读量、评论数等统计数据
|
||||
@@ -1,41 +1,50 @@
|
||||
# Go Blog
|
||||
|
||||
A simple, fast blog engine built with Go, Gin, and Tailwind CSS. Supports SQLite and MySQL, with automatic first-run setup.
|
||||
一个简洁、快速的博客引擎,使用 Go + Gin + Tailwind CSS 构建。支持 SQLite 和 MySQL,首次运行自动完成配置。
|
||||
|
||||
## Features
|
||||
## 功能特性
|
||||
|
||||
- **Multi-language** — 中文 / English, auto-detected or manually switched
|
||||
- **OS-aware config** — Linux `/etc/blog_go/`, Windows `./win/etc/blog_go/`
|
||||
- **First-run setup** — auto-creates config, database, and admin user
|
||||
- **Avatar + Profile** — upload avatar, edit personal info, change password
|
||||
- **Role system** — admin sees management panel; authors see profile only
|
||||
- **Responsive UI** — Tailwind CSS, works on desktop and mobile
|
||||
- **文章管理** — 文章的创建、编辑、删除,支持标签分类、自定义发布时间和更新时间
|
||||
- **评论系统** — 文章评论功能,后台可审核(通过/拒绝/删除),支持评论设置
|
||||
- **用户系统** — 用户注册、登录,角色分为管理员(admin)和作者(author)
|
||||
- **角色权限** — 管理员可访问后台管理面板;作者可管理自己的文章
|
||||
- **个人中心** — 上传头像(支持裁剪)、编辑个人信息、修改密码
|
||||
- **站点设置** — 自定义站点标题、副标题、favicon 图标
|
||||
- **导航管理** — 自定义首页导航链接,支持图标
|
||||
- **瀑布流布局** — 首页文章以瀑布流展示,支持无限滚动加载
|
||||
- **阅读统计** — 文章阅读量统计,带机器人流量检测
|
||||
- **附件上传** — 文章支持上传附件,基于内容寻址自动去重
|
||||
- **RSS 订阅** — 自动生成 RSS Feed(`/rss`、`/feed`)
|
||||
- **搜索功能** — 文章全文搜索
|
||||
- **多语言** — 支持中文 / English,自动检测浏览器语言或手动切换
|
||||
- **自适应界面** — Tailwind CSS,桌面端和移动端均可正常使用
|
||||
- **开箱即用** — 首次运行自动创建配置文件、数据库和管理员账号
|
||||
|
||||
## Tech Stack
|
||||
## 技术栈
|
||||
|
||||
| Layer | Library |
|
||||
| 层级 | 库/工具 |
|
||||
|---|---|
|
||||
| Router | [gin](https://github.com/gin-gonic/gin) |
|
||||
| 路由 | [gin](https://github.com/gin-gonic/gin) |
|
||||
| ORM | [gorm](https://gorm.io) |
|
||||
| SQLite | [glebarez/sqlite](https://github.com/glebarez/sqlite) (pure Go, no CGO) |
|
||||
| Sessions | [gin-contrib/sessions](https://github.com/gin-contrib/sessions) |
|
||||
| Config | [gopkg.in/yaml.v3](https://gopkg.in/yaml.v3) |
|
||||
| Passwords | [golang.org/x/crypto](https://pkg.go.dev/golang.org/x/crypto/bcrypt) |
|
||||
| CSS | [Tailwind CSS](https://tailwindcss.com) (CDN) |
|
||||
| SQLite | [glebarez/sqlite](https://github.com/glebarez/sqlite)(纯 Go,无需 CGO) |
|
||||
| Session | [gin-contrib/sessions](https://github.com/gin-contrib/sessions) |
|
||||
| 配置 | [gopkg.in/yaml.v3](https://gopkg.in/yaml.v3) |
|
||||
| 密码 | [golang.org/x/crypto](https://pkg.go.dev/golang.org/x/crypto/bcrypt) |
|
||||
| CSS | [Tailwind CSS](https://tailwindcss.com)(CDN) |
|
||||
|
||||
## Quick Start
|
||||
## 快速开始
|
||||
|
||||
```bash
|
||||
go run .
|
||||
```
|
||||
|
||||
Open http://localhost:8080 and log in with **admin** / **admin**.
|
||||
打开 <http://localhost:8080> ,使用 **admin** / **admin** 登录。
|
||||
|
||||
## Configuration
|
||||
## 配置
|
||||
|
||||
On first run, a config file is created automatically:
|
||||
首次运行时,配置文件会自动生成:
|
||||
|
||||
| Platform | Config Path | Storage Path |
|
||||
| 平台 | 配置文件路径 | 数据存储路径 |
|
||||
|---|---|---|
|
||||
| Linux | `/etc/blog_go/config.yaml` | `/srv/blog_go/` |
|
||||
| Windows | `./win/etc/blog_go/config.yaml` | `./win/srv/blog_go/` |
|
||||
@@ -43,16 +52,16 @@ On first run, a config file is created automatically:
|
||||
```yaml
|
||||
# config.yaml
|
||||
database:
|
||||
type: sqlite # sqlite (default) or mysql
|
||||
dsn: "" # MySQL DSN, ignored for sqlite
|
||||
port: "8080" # web server port
|
||||
path: ./win/srv/blog_go # storage path (db, uploads)
|
||||
secret: <auto-generated> # session encryption key
|
||||
type: sqlite # sqlite(默认)或 mysql
|
||||
dsn: "" # MySQL 连接串,sqlite 模式下忽略
|
||||
port: "8080" # Web 服务端口
|
||||
path: ./win/srv/blog_go # 数据存储路径(数据库、上传文件)
|
||||
secret: <自动生成> # Session 加密密钥
|
||||
```
|
||||
|
||||
### MySQL
|
||||
### 使用 MySQL
|
||||
|
||||
Edit `config.yaml`:
|
||||
编辑 `config.yaml`:
|
||||
|
||||
```yaml
|
||||
database:
|
||||
@@ -61,41 +70,82 @@ database:
|
||||
port: "8080"
|
||||
```
|
||||
|
||||
Create the database first:
|
||||
先创建数据库:
|
||||
|
||||
```sql
|
||||
CREATE DATABASE blog_go CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
```
|
||||
|
||||
## Project Structure
|
||||
## 项目结构
|
||||
|
||||
```
|
||||
go_blog/
|
||||
├── main.go # Entry point, routes, middleware wiring
|
||||
├── main.go # 入口,路由注册,中间件装配
|
||||
├── config/
|
||||
│ └── config.go # OS-aware config load / auto-create
|
||||
│ └── config.go # 配置加载 / 自动创建(区分操作系统)
|
||||
├── models/
|
||||
│ ├── user.go # User model + bcrypt
|
||||
│ └── db.go # GORM init, migration, seed
|
||||
│ ├── user.go # 用户模型 + bcrypt
|
||||
│ ├── article.go # 文章模型
|
||||
│ ├── article_tag.go # 文章-标签关联
|
||||
│ ├── article_view.go # 文章阅读统计
|
||||
│ ├── attachment.go # 附件模型
|
||||
│ ├── bot_detector.go # 机器人流量检测
|
||||
│ ├── comment.go # 评论模型
|
||||
│ ├── comment_config.go # 评论配置
|
||||
│ ├── config_cache.go # 平台配置缓存
|
||||
│ ├── db.go # GORM 初始化、自动迁移
|
||||
│ ├── nav_link.go # 导航链接模型
|
||||
│ ├── seed.go # 初始数据填充
|
||||
│ ├── site_setting.go # 站点设置模型
|
||||
│ ├── tag.go # 标签模型
|
||||
│ └── upload_config.go # 上传配置
|
||||
├── middleware/
|
||||
│ └── auth.go # Auth guard, language detection
|
||||
│ └── auth.go # 登录验证、角色鉴权、语言检测
|
||||
├── handlers/
|
||||
│ ├── helpers.go # DefaultData + getTr utilities
|
||||
│ ├── home.go # GET /
|
||||
│ ├── auth.go # GET/POST /login, POST /logout
|
||||
│ ├── admin.go # GET /admin (protected)
|
||||
│ └── profile.go # GET/POST /profile (protected)
|
||||
│ ├── helpers.go # 公共工具函数
|
||||
│ ├── home.go # 首页
|
||||
│ ├── article.go # 文章详情、文章列表 API
|
||||
│ ├── auth.go # 登录
|
||||
│ ├── admin.go # 管理后台首页
|
||||
│ ├── admin_comment.go # 评论管理
|
||||
│ ├── admin_user.go # 用户管理
|
||||
│ ├── admin_analytics.go # 阅读统计
|
||||
│ ├── attachment.go # 附件上传/删除
|
||||
│ ├── comment.go # 评论提交
|
||||
│ ├── my_articles.go # 用户文章管理
|
||||
│ ├── profile.go # 个人中心
|
||||
│ ├── rss.go # RSS Feed
|
||||
│ ├── settings.go # 站点/导航/上传/评论设置
|
||||
│ └── upload_validator.go # 上传文件校验
|
||||
├── i18n/
|
||||
│ └── i18n.go # EN/ZH translation maps + Accept-Language
|
||||
│ └── i18n.go # 中英文翻译映射 + Accept-Language 检测
|
||||
├── templates/
|
||||
│ ├── layouts/base.html # Header (nav + avatar dropdown) + footer
|
||||
│ ├── layouts/base.html # 公共布局(导航栏 + 头像下拉菜单 + 页脚)
|
||||
│ ├── pages/
|
||||
│ │ ├── home.html # Public home page
|
||||
│ │ ├── login.html # Login form
|
||||
│ │ └── profile.html # Edit profile page
|
||||
│ └── admin/
|
||||
│ └── dashboard.html # Admin dashboard
|
||||
└── win/ # Auto-created runtime data (Windows)
|
||||
│ │ ├── home.html # 首页(瀑布流 + 无限滚动)
|
||||
│ │ ├── article.html # 文章详情页
|
||||
│ │ ├── login.html # 登录页
|
||||
│ │ ├── register.html # 注册页
|
||||
│ │ ├── profile.html # 个人中心
|
||||
│ │ ├── search.html # 搜索页
|
||||
│ │ └── 404.html # 404 页面
|
||||
│ ├── admin/
|
||||
│ │ ├── dashboard.html # 管理后台首页
|
||||
│ │ ├── article_list.html # 文章列表
|
||||
│ │ ├── article_create.html# 文章编辑
|
||||
│ │ ├── comment_list.html # 评论审核
|
||||
│ │ ├── user_list.html # 用户列表
|
||||
│ │ ├── user_form.html # 用户表单
|
||||
│ │ ├── analytics_views.html # 阅读统计
|
||||
│ │ ├── settings_site.html # 站点设置
|
||||
│ │ ├── settings_navlinks.html # 导航链接设置
|
||||
│ │ ├── settings_upload.html # 上传设置
|
||||
│ │ ├── settings_download.html # 下载设置
|
||||
│ │ └── settings_comment.html # 评论设置
|
||||
│ └── user/
|
||||
│ ├── my_articles.html # 我的文章列表
|
||||
│ └── my_article_form.html # 我的文章编辑
|
||||
└── win/ # 运行时数据目录(Windows,自动创建)
|
||||
├── etc/blog_go/
|
||||
│ └── config.yaml
|
||||
└── srv/blog_go/
|
||||
@@ -103,26 +153,73 @@ go_blog/
|
||||
└── avatars/
|
||||
```
|
||||
|
||||
## Routes
|
||||
## 路由
|
||||
|
||||
| Method | Path | Auth | Description |
|
||||
|---|---|---|---|
|
||||
| GET | `/` | No | Home page |
|
||||
| GET | `/login` | No | Login form |
|
||||
| POST | `/login` | No | Submit login |
|
||||
| POST | `/logout` | No | Clear session |
|
||||
| GET | `/profile` | Yes | Edit profile |
|
||||
| POST | `/profile` | Yes | Save profile |
|
||||
| GET | `/admin` | Yes | Admin dashboard (admin only) |
|
||||
| GET | `/uploads/*` | No | Static files (avatars, etc.) |
|
||||
### 公开路由
|
||||
|
||||
## User Roles
|
||||
|
||||
| Role | Profile | Admin Dashboard |
|
||||
| 方法 | 路径 | 说明 |
|
||||
|---|---|---|
|
||||
| `admin` | ✓ | ✓ |
|
||||
| `author` | ✓ | ✗ |
|
||||
| GET | `/` | 首页 |
|
||||
| GET | `/search` | 搜索页 |
|
||||
| GET | `/api/articles` | 文章列表 API(无限滚动) |
|
||||
| GET | `/rss`、`/feed` | RSS 订阅 |
|
||||
| GET | `/article/:slug` | 文章详情 |
|
||||
| POST | `/article/:slug/comments` | 发表评论 |
|
||||
| GET | `/login` | 登录页 |
|
||||
| POST | `/login` | 提交登录 |
|
||||
| GET | `/register` | 注册页 |
|
||||
| POST | `/register` | 提交注册 |
|
||||
| POST | `/logout` | 退出登录 |
|
||||
| GET | `/uploads/*` | 静态文件(头像、附件等) |
|
||||
|
||||
## License
|
||||
### 管理后台(需管理员权限)
|
||||
|
||||
| 方法 | 路径 | 说明 |
|
||||
|---|---|---|
|
||||
| GET | `/admin` | 管理后台首页 |
|
||||
| GET | `/admin/articles` | 文章列表 |
|
||||
| GET/POST | `/admin/articles/new` | 新建文章 |
|
||||
| GET/POST | `/admin/articles/:id/edit` | 编辑文章 |
|
||||
| POST | `/admin/articles/:id/delete` | 删除文章 |
|
||||
| POST | `/admin/articles/attachments` | 上传附件 |
|
||||
| POST | `/admin/articles/attachments/:id/delete` | 删除附件 |
|
||||
| GET | `/admin/articles/:id/attachments` | 附件列表 |
|
||||
| GET | `/admin/comments` | 评论管理 |
|
||||
| POST | `/admin/comments/:id/approve` | 通过评论 |
|
||||
| POST | `/admin/comments/:id/reject` | 拒绝评论 |
|
||||
| POST | `/admin/comments/:id/delete` | 删除评论 |
|
||||
| GET | `/admin/users` | 用户列表 |
|
||||
| GET/POST | `/admin/users/new` | 新建用户 |
|
||||
| GET/POST | `/admin/users/:id/edit` | 编辑用户 |
|
||||
| POST | `/admin/users/:id/delete` | 删除用户 |
|
||||
| GET | `/admin/analytics/views` | 阅读统计 |
|
||||
| GET/POST | `/admin/settings/site` | 站点设置 |
|
||||
| GET/POST | `/admin/settings/navlinks` | 导航链接设置 |
|
||||
| GET/POST | `/admin/settings/upload` | 上传设置 |
|
||||
| GET/POST | `/admin/settings/download` | 下载设置 |
|
||||
| GET/POST | `/admin/settings/comments` | 评论设置 |
|
||||
|
||||
### 个人中心(需登录)
|
||||
|
||||
| 方法 | 路径 | 说明 |
|
||||
|---|---|---|
|
||||
| GET/POST | `/profile` | 编辑个人信息 |
|
||||
| POST | `/profile/avatar` | 上传头像 |
|
||||
| GET | `/my/articles` | 我的文章列表 |
|
||||
| GET/POST | `/my/articles/new` | 新建文章 |
|
||||
| GET/POST | `/my/articles/:id/edit` | 编辑文章 |
|
||||
| POST | `/my/articles/:id/delete` | 删除文章 |
|
||||
| POST | `/my/articles/attachments` | 上传附件 |
|
||||
| POST | `/my/articles/attachments/:id/delete` | 删除附件 |
|
||||
| GET | `/my/articles/:id/attachments` | 附件列表 |
|
||||
|
||||
## 用户角色
|
||||
|
||||
| 角色 | 个人中心 | 我的文章 | 管理后台 |
|
||||
| --- | --- | --- | --- |
|
||||
| `admin` | ✓ | ✓ | ✓ |
|
||||
| `author` | ✓ | ✓ | ✗ |
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT
|
||||
|
||||
+27
-4
@@ -14,7 +14,7 @@ import (
|
||||
// Config holds all application configuration.
|
||||
type Config struct {
|
||||
Database DatabaseConfig `yaml:"database"`
|
||||
Port string `yaml:"port"`
|
||||
Web WebConfig `yaml:"web"`
|
||||
Path string `yaml:"path"`
|
||||
Secret string `yaml:"secret"`
|
||||
}
|
||||
@@ -25,6 +25,12 @@ type DatabaseConfig struct {
|
||||
DSN string `yaml:"dsn"` // MySQL connection string (required when type is "mysql")
|
||||
}
|
||||
|
||||
// WebConfig holds web-server listening configuration.
|
||||
type WebConfig struct {
|
||||
Port string `yaml:"port"` // TCP port, "" or "0" to disable
|
||||
Socket string `yaml:"socket"` // Unix socket path, "" to disable
|
||||
}
|
||||
|
||||
const defaultPort = "8080"
|
||||
|
||||
// mysqlExampleDSN is written into new config files as a reference.
|
||||
@@ -64,9 +70,21 @@ func generateSecret() string {
|
||||
return fmt.Sprintf("%x", hash)
|
||||
}
|
||||
|
||||
// getDefaultSocketPath returns the OS-aware default unix socket path.
|
||||
func getDefaultSocketPath() string {
|
||||
if runtime.GOOS == "linux" {
|
||||
return "/run/blog_go/web.sock"
|
||||
}
|
||||
return ""
|
||||
}
|
||||
// LoadConfig reads the config file or creates one with defaults.
|
||||
func LoadConfig() *Config {
|
||||
// If customPath is non-empty, it overrides the OS-aware config file path.
|
||||
func LoadConfig(customPath string) *Config {
|
||||
configDir, configFile := getConfigPath()
|
||||
if customPath != "" {
|
||||
configFile = customPath
|
||||
configDir = filepath.Dir(configFile)
|
||||
}
|
||||
defaultPath := getDefaultStoragePath()
|
||||
|
||||
// Check if config file exists; create with defaults if not.
|
||||
@@ -81,7 +99,10 @@ func LoadConfig() *Config {
|
||||
Type: "sqlite",
|
||||
DSN: mysqlExampleDSN,
|
||||
},
|
||||
Web: WebConfig{
|
||||
Port: defaultPort,
|
||||
Socket: getDefaultSocketPath(),
|
||||
},
|
||||
Path: defaultPath,
|
||||
Secret: generateSecret(),
|
||||
}
|
||||
@@ -116,8 +137,10 @@ func LoadConfig() *Config {
|
||||
|
||||
// applyDefaults fills zero-value fields with sensible defaults.
|
||||
func applyDefaults(cfg *Config, defaultPath string) *Config {
|
||||
if cfg.Port == "" {
|
||||
cfg.Port = defaultPort
|
||||
// If the entire web block is empty (old config without "web" key),
|
||||
// fill default port so the app still starts on 8080.
|
||||
if cfg.Web.Port == "" && cfg.Web.Socket == "" {
|
||||
cfg.Web.Port = defaultPort
|
||||
}
|
||||
if cfg.Database.Type == "" {
|
||||
cfg.Database.Type = "sqlite"
|
||||
|
||||
@@ -0,0 +1,123 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"go_blog/models"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
// ViewAnalyticsPage renders the admin analytics page showing article view statistics.
|
||||
func ViewAnalyticsPage(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
tr := getTr(c)
|
||||
|
||||
// Parse filters from query params
|
||||
articleTitle := c.Query("article_title")
|
||||
userIDStr := c.Query("user_id")
|
||||
ip := c.Query("ip")
|
||||
showBots := c.Query("show_bots") == "1"
|
||||
page := 1
|
||||
if p := c.Query("page"); p != "" {
|
||||
if parsed, err := strconv.Atoi(p); err == nil && parsed > 0 {
|
||||
page = parsed
|
||||
}
|
||||
}
|
||||
|
||||
// Build query for view records
|
||||
query := db.Model(&models.ArticleView{}).
|
||||
Preload("Article").
|
||||
Preload("User").
|
||||
Order("created_at DESC")
|
||||
|
||||
// Filter by article title (join with articles table)
|
||||
if articleTitle != "" {
|
||||
query = query.Joins("JOIN articles ON article_views.article_id = articles.id").
|
||||
Where("articles.title LIKE ?", "%"+articleTitle+"%")
|
||||
}
|
||||
if userIDStr != "" {
|
||||
query = query.Where("user_id = ?", userIDStr)
|
||||
}
|
||||
if ip != "" {
|
||||
query = query.Where("ip LIKE ?", "%"+ip+"%")
|
||||
}
|
||||
if !showBots {
|
||||
query = query.Where("is_bot = ?", false)
|
||||
}
|
||||
|
||||
// Pagination
|
||||
pageSize := 50
|
||||
offset := (page - 1) * pageSize
|
||||
var views []models.ArticleView
|
||||
var totalCount int64
|
||||
query.Count(&totalCount)
|
||||
query.Limit(pageSize).Offset(offset).Find(&views)
|
||||
|
||||
hasMore := int64(offset+len(views)) < totalCount
|
||||
|
||||
// Calculate global statistics
|
||||
var stats struct {
|
||||
TotalViews int64
|
||||
UniqueIPs int64
|
||||
UniqueUsers int64
|
||||
BotViews int64
|
||||
HumanViews int64
|
||||
}
|
||||
db.Model(&models.ArticleView{}).Count(&stats.TotalViews)
|
||||
db.Model(&models.ArticleView{}).Where("is_bot = ?", true).Count(&stats.BotViews)
|
||||
db.Model(&models.ArticleView{}).Where("is_bot = ?", false).Count(&stats.HumanViews)
|
||||
db.Model(&models.ArticleView{}).Distinct("ip").Count(&stats.UniqueIPs)
|
||||
db.Model(&models.ArticleView{}).Where("user_id IS NOT NULL").Distinct("user_id").Count(&stats.UniqueUsers)
|
||||
|
||||
// Per-article statistics
|
||||
type ArticleStat struct {
|
||||
ArticleID uint
|
||||
Title string
|
||||
ViewCount int64
|
||||
UniqueIPs int64
|
||||
BotViews int64
|
||||
HumanViews int64
|
||||
}
|
||||
var articleStats []ArticleStat
|
||||
|
||||
db.Raw(`
|
||||
SELECT
|
||||
av.article_id,
|
||||
a.title,
|
||||
COUNT(*) as view_count,
|
||||
COUNT(DISTINCT av.ip) as unique_ips,
|
||||
SUM(CASE WHEN av.is_bot THEN 1 ELSE 0 END) as bot_views,
|
||||
SUM(CASE WHEN NOT av.is_bot THEN 1 ELSE 0 END) as human_views
|
||||
FROM article_views av
|
||||
LEFT JOIN articles a ON av.article_id = a.id
|
||||
WHERE a.deleted_at IS NULL
|
||||
GROUP BY av.article_id, a.title
|
||||
ORDER BY view_count DESC
|
||||
LIMIT 20
|
||||
`).Scan(&articleStats)
|
||||
|
||||
data := DefaultData(c)
|
||||
data["Title"] = tr["analytics_views_title"]
|
||||
data["Views"] = views
|
||||
data["Stats"] = stats
|
||||
data["ArticleStats"] = articleStats
|
||||
data["Filters"] = gin.H{
|
||||
"ArticleTitle": articleTitle,
|
||||
"UserID": userIDStr,
|
||||
"IP": ip,
|
||||
"ShowBots": showBots,
|
||||
"Page": page,
|
||||
}
|
||||
data["Pagination"] = gin.H{
|
||||
"Page": page,
|
||||
"NextPage": page + 1,
|
||||
"HasMore": hasMore,
|
||||
"Total": totalCount,
|
||||
}
|
||||
|
||||
c.HTML(http.StatusOK, "analytics_views", data)
|
||||
}
|
||||
}
|
||||
+128
-3
@@ -76,6 +76,8 @@ type articleForm struct {
|
||||
Cover string
|
||||
StatusStr string
|
||||
IsTop bool
|
||||
PublishedAt string // datetime-local format: "2006-01-02T15:04"
|
||||
Tags string // comma-separated tag names
|
||||
Action string // form action URL
|
||||
TitleText string // page heading text (create vs edit)
|
||||
ArticleID uint // existing article ID (edit page); 0 on create
|
||||
@@ -92,6 +94,8 @@ func parseArticleForm(c *gin.Context) articleForm {
|
||||
Cover: strings.TrimSpace(c.PostForm("cover")),
|
||||
StatusStr: c.PostForm("status"),
|
||||
IsTop: c.PostForm("is_top") == "1",
|
||||
PublishedAt: strings.TrimSpace(c.PostForm("published_at")),
|
||||
Tags: strings.TrimSpace(c.PostForm("tags")),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -105,6 +109,8 @@ func applyFormToData(data gin.H, f articleForm) {
|
||||
data["FormCover"] = f.Cover
|
||||
data["FormStatus"] = f.StatusStr
|
||||
data["FormIsTop"] = f.IsTop
|
||||
data["FormPublishedAt"] = f.PublishedAt
|
||||
data["FormTags"] = f.Tags
|
||||
data["FormAction"] = f.Action
|
||||
data["FormTitleText"] = f.TitleText
|
||||
data["FormArticleID"] = f.ArticleID
|
||||
@@ -154,6 +160,96 @@ func statusFromForm(statusStr string) int {
|
||||
return models.ArticleDraft
|
||||
}
|
||||
|
||||
// parsePublishedAt parses the datetime-local format ("2006-01-02T15:04") from
|
||||
// the form into a time.Time pointer. Returns nil if the string is empty or invalid.
|
||||
func parsePublishedAt(publishedAtStr string) *time.Time {
|
||||
if publishedAtStr == "" {
|
||||
return nil
|
||||
}
|
||||
// datetime-local format: "2006-01-02T15:04"
|
||||
t, err := time.ParseInLocation("2006-01-02T15:04", publishedAtStr, time.Local)
|
||||
if err != nil {
|
||||
return nil
|
||||
}
|
||||
return &t
|
||||
}
|
||||
|
||||
// formatPublishedAt formats a time.Time pointer into datetime-local format for the form.
|
||||
// Returns empty string if the pointer is nil.
|
||||
func formatPublishedAt(t *time.Time) string {
|
||||
if t == nil {
|
||||
return ""
|
||||
}
|
||||
return t.Local().Format("2006-01-02T15:04")
|
||||
}
|
||||
|
||||
// parseTags splits comma-separated tag string and returns tag names.
|
||||
func parseTags(tagStr string) []string {
|
||||
if tagStr == "" {
|
||||
return []string{}
|
||||
}
|
||||
parts := strings.Split(tagStr, ",")
|
||||
var tags []string
|
||||
for _, part := range parts {
|
||||
trimmed := strings.TrimSpace(part)
|
||||
if trimmed != "" {
|
||||
tags = append(tags, trimmed)
|
||||
}
|
||||
}
|
||||
return tags
|
||||
}
|
||||
|
||||
// syncArticleTags associates tags with an article (find or create tags).
|
||||
func syncArticleTags(db *gorm.DB, article *models.Article, tagNames []string) error {
|
||||
// Clear existing tags
|
||||
if err := db.Model(article).Association("Tags").Clear(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// If no tags, we're done
|
||||
if len(tagNames) == 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Find or create each tag and associate with article
|
||||
var tags []models.Tag
|
||||
for _, name := range tagNames {
|
||||
tag, err := models.FindOrCreateTag(db, name, name)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if tag != nil {
|
||||
tags = append(tags, *tag)
|
||||
}
|
||||
}
|
||||
|
||||
// Associate tags with article
|
||||
if len(tags) > 0 {
|
||||
if err := db.Model(article).Association("Tags").Append(tags); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
// Update tag counts
|
||||
for _, tag := range tags {
|
||||
models.UpdateTagCount(db, tag.ID)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// formatArticleTags converts article tags to comma-separated string for form.
|
||||
func formatArticleTags(tags []models.Tag) string {
|
||||
if len(tags) == 0 {
|
||||
return ""
|
||||
}
|
||||
var names []string
|
||||
for _, tag := range tags {
|
||||
names = append(names, tag.NameZh)
|
||||
}
|
||||
return strings.Join(names, ", ")
|
||||
}
|
||||
|
||||
// ArticleCreatePage renders the article creation form.
|
||||
func ArticleCreatePage(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
@@ -205,7 +301,11 @@ func ArticleCreate(db *gorm.DB) gin.HandlerFunc {
|
||||
}
|
||||
|
||||
var publishedAt *time.Time
|
||||
if status == models.ArticlePublished {
|
||||
if f.PublishedAt != "" {
|
||||
// User provided a custom published time
|
||||
publishedAt = parsePublishedAt(f.PublishedAt)
|
||||
} else if status == models.ArticlePublished {
|
||||
// Auto-stamp with current time if publishing without custom time
|
||||
now := time.Now()
|
||||
publishedAt = &now
|
||||
}
|
||||
@@ -234,6 +334,13 @@ func ArticleCreate(db *gorm.DB) gin.HandlerFunc {
|
||||
}
|
||||
}
|
||||
|
||||
// Sync article tags
|
||||
tagNames := parseTags(f.Tags)
|
||||
if err := syncArticleTags(db, &article, tagNames); err != nil {
|
||||
// Log error but don't fail the article creation
|
||||
// The article is already created, tags are optional
|
||||
}
|
||||
|
||||
// Bind any attachments uploaded during creation (plan A: pending rows
|
||||
// owned by session_token, article_id=0).
|
||||
if f.SessionToken != "" {
|
||||
@@ -270,6 +377,9 @@ func ArticleEditPage(db *gorm.DB) gin.HandlerFunc {
|
||||
return
|
||||
}
|
||||
|
||||
// Preload tags for the article
|
||||
db.Model(&article).Association("Tags").Find(&article.Tags)
|
||||
|
||||
renderArticleForm(c, db, articleForm{
|
||||
Title: article.Title,
|
||||
Slug: article.Slug,
|
||||
@@ -278,6 +388,8 @@ func ArticleEditPage(db *gorm.DB) gin.HandlerFunc {
|
||||
Cover: article.Cover,
|
||||
StatusStr: strconv.Itoa(article.Status),
|
||||
IsTop: article.IsTop,
|
||||
PublishedAt: formatPublishedAt(article.PublishedAt),
|
||||
Tags: formatArticleTags(article.Tags),
|
||||
Action: "/admin/articles/" + id + "/edit",
|
||||
TitleText: tr["article_edit_title"],
|
||||
ArticleID: article.ID,
|
||||
@@ -319,13 +431,20 @@ func ArticleUpdate(db *gorm.DB) gin.HandlerFunc {
|
||||
|
||||
newStatus := statusFromForm(f.StatusStr)
|
||||
|
||||
// Stamp the publish time the first time an article is published.
|
||||
// Handle published_at: use form value if provided, otherwise auto-stamp on first publish.
|
||||
var publishedAt *time.Time
|
||||
if f.PublishedAt != "" {
|
||||
// User provided a custom published time
|
||||
publishedAt = parsePublishedAt(f.PublishedAt)
|
||||
} else {
|
||||
// Auto-stamp the publish time the first time an article is published.
|
||||
wasPublished := article.Status == models.ArticlePublished
|
||||
var publishedAt *time.Time = article.PublishedAt
|
||||
publishedAt = article.PublishedAt
|
||||
if newStatus == models.ArticlePublished && !wasPublished && publishedAt == nil {
|
||||
now := time.Now()
|
||||
publishedAt = &now
|
||||
}
|
||||
}
|
||||
|
||||
updates := map[string]interface{}{
|
||||
"Title": f.Title,
|
||||
@@ -343,6 +462,12 @@ func ArticleUpdate(db *gorm.DB) gin.HandlerFunc {
|
||||
return
|
||||
}
|
||||
|
||||
// Sync article tags
|
||||
tagNames := parseTags(f.Tags)
|
||||
if err := syncArticleTags(db, &article, tagNames); err != nil {
|
||||
// Log error but don't fail the article update
|
||||
}
|
||||
|
||||
c.Redirect(http.StatusFound, "/admin/articles")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@ package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strings"
|
||||
|
||||
"github.com/gin-contrib/sessions"
|
||||
"github.com/gin-gonic/gin"
|
||||
@@ -19,6 +20,11 @@ func LoginPage() gin.HandlerFunc {
|
||||
if c.Query("error") == "1" {
|
||||
data["Error"] = tr["login_error"]
|
||||
}
|
||||
// Check if registration is allowed from site settings
|
||||
siteSetting, _ := c.Get("site_setting")
|
||||
if s, ok := siteSetting.(*models.SiteSetting); ok && s != nil {
|
||||
data["AllowRegistration"] = s.AllowRegistration
|
||||
}
|
||||
c.HTML(http.StatusOK, "login", data)
|
||||
}
|
||||
}
|
||||
@@ -73,3 +79,106 @@ func Logout() gin.HandlerFunc {
|
||||
c.Redirect(http.StatusFound, "/")
|
||||
}
|
||||
}
|
||||
|
||||
// RegisterPage renders the registration form (only when registration is enabled).
|
||||
func RegisterPage(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
// Check if registration is allowed
|
||||
var s models.SiteSetting
|
||||
if err := db.First(&s, 1).Error; err != nil || !s.AllowRegistration {
|
||||
c.Redirect(http.StatusFound, "/login")
|
||||
return
|
||||
}
|
||||
|
||||
tr := getTr(c)
|
||||
data := DefaultData(c)
|
||||
data["Title"] = tr["page_register"]
|
||||
|
||||
if errMsg := c.Query("error"); errMsg != "" {
|
||||
data["Error"] = tr[errMsg]
|
||||
}
|
||||
|
||||
c.HTML(http.StatusOK, "register", data)
|
||||
}
|
||||
}
|
||||
|
||||
// Register processes the registration form submission.
|
||||
func Register(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
// Check if registration is allowed
|
||||
var s models.SiteSetting
|
||||
if err := db.First(&s, 1).Error; err != nil || !s.AllowRegistration {
|
||||
c.Redirect(http.StatusFound, "/login")
|
||||
return
|
||||
}
|
||||
|
||||
username := strings.TrimSpace(c.PostForm("username"))
|
||||
password := c.PostForm("password")
|
||||
confirmPassword := c.PostForm("confirm_password")
|
||||
email := strings.TrimSpace(c.PostForm("email"))
|
||||
displayName := strings.TrimSpace(c.PostForm("display_name"))
|
||||
|
||||
// Validate inputs
|
||||
if username == "" || password == "" {
|
||||
c.Redirect(http.StatusFound, "/register?error=register_required")
|
||||
return
|
||||
}
|
||||
|
||||
if len(username) < 3 || len(username) > 32 {
|
||||
c.Redirect(http.StatusFound, "/register?error=register_username_length")
|
||||
return
|
||||
}
|
||||
|
||||
if len(password) < 6 {
|
||||
c.Redirect(http.StatusFound, "/register?error=register_password_length")
|
||||
return
|
||||
}
|
||||
|
||||
if password != confirmPassword {
|
||||
c.Redirect(http.StatusFound, "/register?error=register_password_mismatch")
|
||||
return
|
||||
}
|
||||
|
||||
// Check if username already exists
|
||||
var existingUser models.User
|
||||
if err := db.Where("username = ?", username).First(&existingUser).Error; err == nil {
|
||||
c.Redirect(http.StatusFound, "/register?error=user_username_exists")
|
||||
return
|
||||
}
|
||||
|
||||
// Create new user
|
||||
user := models.User{
|
||||
Username: username,
|
||||
Email: email,
|
||||
DisplayName: displayName,
|
||||
Role: models.RoleAuthor,
|
||||
Status: models.StatusNormal,
|
||||
}
|
||||
|
||||
if displayName == "" {
|
||||
user.DisplayName = username
|
||||
}
|
||||
|
||||
if err := user.SetPassword(password); err != nil {
|
||||
c.Redirect(http.StatusFound, "/register?error=register_error")
|
||||
return
|
||||
}
|
||||
|
||||
if err := db.Create(&user).Error; err != nil {
|
||||
c.Redirect(http.StatusFound, "/register?error=register_error")
|
||||
return
|
||||
}
|
||||
|
||||
// Auto-login after successful registration
|
||||
session := sessions.Default(c)
|
||||
session.Set("user_id", user.ID)
|
||||
session.Set("username", user.Username)
|
||||
if err := session.Save(); err != nil {
|
||||
c.Redirect(http.StatusFound, "/login")
|
||||
return
|
||||
}
|
||||
|
||||
// Redirect to home page
|
||||
c.Redirect(http.StatusFound, "/")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -183,7 +183,7 @@ func PostComment(db *gorm.DB) gin.HandlerFunc {
|
||||
Content: sanitizeMarkdown(form.Content),
|
||||
IsPrivate: form.IsPrivate,
|
||||
Status: models.CommentApproved,
|
||||
IPAddress: truncate(c.ClientIP(), 64),
|
||||
IPAddress: truncate(GetClientIP(c), 64),
|
||||
UserAgent: truncate(c.GetHeader("User-Agent"), 512),
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
@@ -19,11 +21,14 @@ func DefaultData(c *gin.Context) gin.H {
|
||||
siteSetting, _ := c.Get("site_setting")
|
||||
siteLogo, _ := c.Get("site_logo")
|
||||
siteLogoIsURL, _ := c.Get("site_logo_is_url")
|
||||
siteFavicon, _ := c.Get("site_favicon")
|
||||
siteFaviconIsURL, _ := c.Get("site_favicon_is_url")
|
||||
siteLogoText, _ := c.Get("site_logo_text")
|
||||
siteHeaderText, _ := c.Get("site_header_text")
|
||||
siteHomeWelcome, _ := c.Get("site_home_welcome")
|
||||
siteHomeSubtitle, _ := c.Get("site_home_subtitle")
|
||||
siteFooterText, _ := c.Get("site_footer_text")
|
||||
navLinks, _ := c.Get("nav_links")
|
||||
|
||||
return gin.H{
|
||||
"Tr": tr,
|
||||
@@ -37,11 +42,14 @@ func DefaultData(c *gin.Context) gin.H {
|
||||
"SiteSetting": siteSetting,
|
||||
"SiteLogo": siteLogo,
|
||||
"SiteLogoIsURL": siteLogoIsURL,
|
||||
"SiteFavicon": siteFavicon,
|
||||
"SiteFaviconIsURL": siteFaviconIsURL,
|
||||
"SiteLogoText": siteLogoText,
|
||||
"SiteHeaderText": siteHeaderText,
|
||||
"SiteHomeWelcome": siteHomeWelcome,
|
||||
"SiteHomeSubtitle": siteHomeSubtitle,
|
||||
"SiteFooterText": siteFooterText,
|
||||
"NavLinks": navLinks,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -58,3 +66,18 @@ func getTr(c *gin.Context) map[string]string {
|
||||
}
|
||||
return m
|
||||
}
|
||||
|
||||
// GetClientIP extracts the real client IP address, accounting for CDN/reverse proxy setups.
|
||||
// It checks X-Forwarded-For and X-Real-IP headers before falling back to c.ClientIP().
|
||||
func GetClientIP(c *gin.Context) string {
|
||||
if xff := c.GetHeader("X-Forwarded-For"); xff != "" {
|
||||
if i := strings.IndexByte(xff, ','); i != -1 {
|
||||
return strings.TrimSpace(xff[:i])
|
||||
}
|
||||
return strings.TrimSpace(xff)
|
||||
}
|
||||
if xri := c.GetHeader("X-Real-IP"); xri != "" {
|
||||
return strings.TrimSpace(xri)
|
||||
}
|
||||
return c.ClientIP()
|
||||
}
|
||||
|
||||
+285
-2
@@ -1,7 +1,9 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gin-contrib/sessions"
|
||||
@@ -13,7 +15,7 @@ import (
|
||||
|
||||
// publishedArticleOrder is the ordering used to list published articles:
|
||||
// pinned first, then by most recent publish/creation time.
|
||||
const publishedArticleOrder = "is_top DESC, published_at DESC, created_at DESC"
|
||||
const publishedArticleOrder = "articles.is_top DESC, articles.published_at DESC, articles.created_at DESC"
|
||||
|
||||
// HomePage renders the public home page with the latest published articles.
|
||||
func HomePage(db *gorm.DB) gin.HandlerFunc {
|
||||
@@ -22,17 +24,159 @@ func HomePage(db *gorm.DB) gin.HandlerFunc {
|
||||
data := DefaultData(c)
|
||||
data["Title"] = tr["page_home"]
|
||||
|
||||
// Get tag filter if present
|
||||
tagSlug := c.Query("tag")
|
||||
|
||||
// Build query
|
||||
query := db.Where("status = ?", models.ArticlePublished)
|
||||
|
||||
if tagSlug != "" {
|
||||
// Join with article_tags to filter by tag
|
||||
query = query.Joins("JOIN article_tags ON article_tags.article_id = articles.id").
|
||||
Joins("JOIN tags ON tags.id = article_tags.tag_id").
|
||||
Where("tags.slug = ?", tagSlug)
|
||||
|
||||
// Get tag info for display
|
||||
var tag models.Tag
|
||||
if err := db.Where("slug = ?", tagSlug).First(&tag).Error; err == nil {
|
||||
data["FilterTag"] = tag
|
||||
}
|
||||
}
|
||||
|
||||
var articles []models.Article
|
||||
db.Where("status = ?", models.ArticlePublished).
|
||||
query.Preload("Tags").
|
||||
Order(publishedArticleOrder).
|
||||
Limit(10).
|
||||
Find(&articles)
|
||||
|
||||
// Load all tags for sidebar
|
||||
var tags []models.Tag
|
||||
db.Where("count > 0").Order("count DESC, name_zh ASC").Find(&tags)
|
||||
|
||||
// Get comment counts for all articles
|
||||
articleIDs := make([]uint, len(articles))
|
||||
for i, article := range articles {
|
||||
articleIDs[i] = article.ID
|
||||
}
|
||||
|
||||
type CommentCount struct {
|
||||
ArticleID uint
|
||||
Count int64
|
||||
}
|
||||
var commentCounts []CommentCount
|
||||
if len(articleIDs) > 0 {
|
||||
db.Model(&models.Comment{}).
|
||||
Select("article_id, COUNT(*) as count").
|
||||
Where("article_id IN ?", articleIDs).
|
||||
Where("status = ?", models.CommentApproved).
|
||||
Group("article_id").
|
||||
Scan(&commentCounts)
|
||||
}
|
||||
|
||||
// Create a map for quick lookup
|
||||
commentCountMap := make(map[uint]int64)
|
||||
for _, cc := range commentCounts {
|
||||
commentCountMap[cc.ArticleID] = cc.Count
|
||||
}
|
||||
|
||||
// Add data to template
|
||||
data["Articles"] = articles
|
||||
data["Tags"] = tags
|
||||
data["CommentCounts"] = commentCountMap
|
||||
|
||||
c.HTML(http.StatusOK, "home", data)
|
||||
}
|
||||
}
|
||||
|
||||
// HomeArticlesAPI returns articles in JSON format for infinite scroll.
|
||||
func HomeArticlesAPI(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
page := 1
|
||||
if p, ok := c.GetQuery("page"); ok {
|
||||
var parsed int
|
||||
if _, err := fmt.Sscanf(p, "%d", &parsed); err == nil && parsed > 0 {
|
||||
page = parsed
|
||||
}
|
||||
}
|
||||
|
||||
pageSize := 10
|
||||
offset := (page - 1) * pageSize
|
||||
|
||||
// Get tag filter if present
|
||||
tagSlug := c.Query("tag")
|
||||
|
||||
// Build query
|
||||
query := db.Where("status = ?", models.ArticlePublished)
|
||||
countQuery := db.Model(&models.Article{}).Where("status = ?", models.ArticlePublished)
|
||||
|
||||
if tagSlug != "" {
|
||||
// Join with article_tags to filter by tag
|
||||
query = query.Joins("JOIN article_tags ON article_tags.article_id = articles.id").
|
||||
Joins("JOIN tags ON tags.id = article_tags.tag_id").
|
||||
Where("tags.slug = ?", tagSlug)
|
||||
|
||||
countQuery = countQuery.Joins("JOIN article_tags ON article_tags.article_id = articles.id").
|
||||
Joins("JOIN tags ON tags.id = article_tags.tag_id").
|
||||
Where("tags.slug = ?", tagSlug)
|
||||
}
|
||||
|
||||
var articles []models.Article
|
||||
query.Preload("Tags").
|
||||
Order(publishedArticleOrder).
|
||||
Limit(pageSize).
|
||||
Offset(offset).
|
||||
Find(&articles)
|
||||
|
||||
var total int64
|
||||
countQuery.Count(&total)
|
||||
|
||||
// Get comment counts for these articles
|
||||
articleIDs := make([]uint, len(articles))
|
||||
for i, article := range articles {
|
||||
articleIDs[i] = article.ID
|
||||
}
|
||||
|
||||
type CommentCount struct {
|
||||
ArticleID uint
|
||||
Count int64
|
||||
}
|
||||
var commentCounts []CommentCount
|
||||
if len(articleIDs) > 0 {
|
||||
db.Model(&models.Comment{}).
|
||||
Select("article_id, COUNT(*) as count").
|
||||
Where("article_id IN ?", articleIDs).
|
||||
Where("status = ?", models.CommentApproved).
|
||||
Group("article_id").
|
||||
Scan(&commentCounts)
|
||||
}
|
||||
|
||||
// Create a map for quick lookup
|
||||
commentCountMap := make(map[uint]int64)
|
||||
for _, cc := range commentCounts {
|
||||
commentCountMap[cc.ArticleID] = cc.Count
|
||||
}
|
||||
|
||||
// Build response with comment counts
|
||||
type ArticleResponse struct {
|
||||
models.Article
|
||||
CommentCount int64 `json:"comment_count"`
|
||||
}
|
||||
|
||||
articlesWithCounts := make([]ArticleResponse, len(articles))
|
||||
for i, article := range articles {
|
||||
articlesWithCounts[i] = ArticleResponse{
|
||||
Article: article,
|
||||
CommentCount: commentCountMap[article.ID],
|
||||
}
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, gin.H{
|
||||
"articles": articlesWithCounts,
|
||||
"hasMore": int64(offset+len(articles)) < total,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// ArticleDetail renders a single published article by its slug.
|
||||
func ArticleDetail(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
@@ -54,6 +198,9 @@ func ArticleDetail(db *gorm.DB) gin.HandlerFunc {
|
||||
db.Model(&models.Article{}).Where("id = ?", article.ID).
|
||||
UpdateColumn("view_count", gorm.Expr("view_count + 1"))
|
||||
|
||||
// Record unique article view asynchronously (doesn't block page response).
|
||||
go recordArticleView(db, article.ID, c)
|
||||
|
||||
// One-time flash notice (set by PostComment on success/pending). Reading
|
||||
// consumes the flash, so refreshing the page no longer re-shows it.
|
||||
notice := readCommentFlash(c)
|
||||
@@ -85,6 +232,7 @@ func renderArticleDetail(c *gin.Context, db *gorm.DB, article *models.Article, f
|
||||
data["Article"] = article
|
||||
data["AuthorName"] = authorName
|
||||
data["PublishedAt"] = formatPublishTime(article.PublishedAt)
|
||||
data["UpdatedAt"] = formatUpdateTime(article.UpdatedAt)
|
||||
data["Comments"] = tree
|
||||
data["CommentConfig"] = models.GetCommentConfig()
|
||||
data["CommentForm"] = form
|
||||
@@ -103,6 +251,11 @@ func formatPublishTime(publishedAt *time.Time) string {
|
||||
return ""
|
||||
}
|
||||
|
||||
// formatUpdateTime returns the last update time as a readable string.
|
||||
func formatUpdateTime(updatedAt time.Time) string {
|
||||
return updatedAt.Format("2006-01-02 15:04")
|
||||
}
|
||||
|
||||
// commentFlashKey is the session key for the one-time comment notice.
|
||||
const commentFlashKey = "comment_flash"
|
||||
|
||||
@@ -126,3 +279,133 @@ func readCommentFlash(c *gin.Context) string {
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// recordArticleView records a unique article view in the database.
|
||||
// This function is designed to be called asynchronously (via goroutine) to avoid
|
||||
// blocking the page response. It checks for existing records to ensure each
|
||||
// user/IP combination only records one view per article.
|
||||
func recordArticleView(db *gorm.DB, articleID uint, c *gin.Context) {
|
||||
session := sessions.Default(c)
|
||||
|
||||
// Extract user ID from session if logged in
|
||||
var userID *uint
|
||||
if uid := session.Get("user_id"); uid != nil {
|
||||
switch v := uid.(type) {
|
||||
case uint:
|
||||
userID = &v
|
||||
case int:
|
||||
u := uint(v)
|
||||
userID = &u
|
||||
case int64:
|
||||
u := uint(v)
|
||||
userID = &u
|
||||
case float64:
|
||||
u := uint(v)
|
||||
userID = &u
|
||||
}
|
||||
}
|
||||
|
||||
// Get client IP and User-Agent
|
||||
ip := GetClientIP(c)
|
||||
userAgent := c.Request.UserAgent()
|
||||
isBot := models.IsBot(userAgent)
|
||||
|
||||
// Check if this view already exists (deduplication)
|
||||
var count int64
|
||||
query := db.Model(&models.ArticleView{}).
|
||||
Where("article_id = ? AND ip = ?", articleID, ip)
|
||||
|
||||
if userID != nil {
|
||||
query = query.Where("user_id = ?", *userID)
|
||||
} else {
|
||||
query = query.Where("user_id IS NULL")
|
||||
}
|
||||
|
||||
if err := query.Count(&count).Error; err != nil {
|
||||
// Silently fail - don't break the user experience
|
||||
return
|
||||
}
|
||||
|
||||
if count > 0 {
|
||||
// Already recorded
|
||||
return
|
||||
}
|
||||
|
||||
// Create new view record using INSERT IGNORE pattern
|
||||
view := models.ArticleView{
|
||||
ArticleID: articleID,
|
||||
UserID: userID,
|
||||
IP: ip,
|
||||
UserAgent: userAgent,
|
||||
IsBot: isBot,
|
||||
}
|
||||
|
||||
// Create the view record (BeforeCreate hook in model handles deduplication)
|
||||
db.Create(&view)
|
||||
// Ignore errors - this is a best-effort tracking system
|
||||
}
|
||||
|
||||
// SearchPage handles article search by keyword.
|
||||
func SearchPage(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
tr := getTr(c)
|
||||
data := DefaultData(c)
|
||||
|
||||
keyword := strings.TrimSpace(c.Query("q"))
|
||||
data["SearchKeyword"] = keyword
|
||||
data["Title"] = tr["search_title"]
|
||||
|
||||
if keyword == "" {
|
||||
data["Articles"] = []models.Article{}
|
||||
data["Tags"] = []models.Tag{}
|
||||
data["CommentCounts"] = make(map[uint]int64)
|
||||
c.HTML(http.StatusOK, "search", data)
|
||||
return
|
||||
}
|
||||
|
||||
// Search in title, summary, and content
|
||||
searchPattern := "%" + keyword + "%"
|
||||
var articles []models.Article
|
||||
db.Where("status = ?", models.ArticlePublished).
|
||||
Where("title LIKE ? OR summary LIKE ? OR content LIKE ?", searchPattern, searchPattern, searchPattern).
|
||||
Preload("Tags").
|
||||
Order(publishedArticleOrder).
|
||||
Limit(50). // Limit search results
|
||||
Find(&articles)
|
||||
|
||||
// Load all tags for sidebar
|
||||
var tags []models.Tag
|
||||
db.Where("count > 0").Order("count DESC, name_zh ASC").Find(&tags)
|
||||
|
||||
// Get comment counts
|
||||
articleIDs := make([]uint, len(articles))
|
||||
for i, article := range articles {
|
||||
articleIDs[i] = article.ID
|
||||
}
|
||||
|
||||
type CommentCount struct {
|
||||
ArticleID uint
|
||||
Count int64
|
||||
}
|
||||
var commentCounts []CommentCount
|
||||
if len(articleIDs) > 0 {
|
||||
db.Model(&models.Comment{}).
|
||||
Select("article_id, COUNT(*) as count").
|
||||
Where("article_id IN ?", articleIDs).
|
||||
Where("status = ?", models.CommentApproved).
|
||||
Group("article_id").
|
||||
Scan(&commentCounts)
|
||||
}
|
||||
|
||||
commentCountMap := make(map[uint]int64)
|
||||
for _, cc := range commentCounts {
|
||||
commentCountMap[cc.ArticleID] = cc.Count
|
||||
}
|
||||
|
||||
data["Articles"] = articles
|
||||
data["Tags"] = tags
|
||||
data["CommentCounts"] = commentCountMap
|
||||
|
||||
c.HTML(http.StatusOK, "search", data)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -73,6 +73,7 @@ func MyArticleEditPage(db *gorm.DB) gin.HandlerFunc {
|
||||
Cover: article.Cover,
|
||||
StatusStr: strconv.Itoa(article.Status),
|
||||
IsTop: article.IsTop,
|
||||
PublishedAt: formatPublishedAt(article.PublishedAt),
|
||||
Action: "/my/articles/" + id + "/edit",
|
||||
TitleText: tr["article_edit_title"],
|
||||
ArticleID: article.ID,
|
||||
@@ -117,13 +118,20 @@ func MyArticleUpdate(db *gorm.DB) gin.HandlerFunc {
|
||||
|
||||
newStatus := statusFromForm(f.StatusStr)
|
||||
|
||||
// Handle published_at: use form value if provided, otherwise auto-stamp on first publish.
|
||||
var publishedAt *time.Time
|
||||
if f.PublishedAt != "" {
|
||||
// User provided a custom published time
|
||||
publishedAt = parsePublishedAt(f.PublishedAt)
|
||||
} else {
|
||||
// Stamp the publish time the first time an article is published.
|
||||
wasPublished := article.Status == models.ArticlePublished
|
||||
var publishedAt *time.Time = article.PublishedAt
|
||||
publishedAt = article.PublishedAt
|
||||
if newStatus == models.ArticlePublished && !wasPublished && publishedAt == nil {
|
||||
now := time.Now()
|
||||
publishedAt = &now
|
||||
}
|
||||
}
|
||||
|
||||
updates := map[string]interface{}{
|
||||
"title": f.Title,
|
||||
|
||||
+181
@@ -0,0 +1,181 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"fmt"
|
||||
"html"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"go_blog/models"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
// RSS 2.0 XML structure definitions.
|
||||
|
||||
// RSS is the root element of an RSS 2.0 feed.
|
||||
type RSS struct {
|
||||
XMLName xml.Name `xml:"rss"`
|
||||
Version string `xml:"version,attr"`
|
||||
Channel *Channel `xml:"channel"`
|
||||
}
|
||||
|
||||
// Channel represents the RSS channel containing feed metadata and items.
|
||||
type Channel struct {
|
||||
Title string `xml:"title"`
|
||||
Link string `xml:"link"`
|
||||
Description string `xml:"description"`
|
||||
Language string `xml:"language"`
|
||||
LastBuildDate string `xml:"lastBuildDate,omitempty"`
|
||||
Items []Item `xml:"item"`
|
||||
}
|
||||
|
||||
// Item represents a single article in the RSS feed.
|
||||
type Item struct {
|
||||
Title string `xml:"title"`
|
||||
Link string `xml:"link"`
|
||||
Description string `xml:"description"`
|
||||
Author string `xml:"author,omitempty"`
|
||||
PubDate string `xml:"pubDate"`
|
||||
GUID string `xml:"guid"`
|
||||
}
|
||||
|
||||
// RSSFeed generates an RSS 2.0 feed of the latest published articles.
|
||||
func RSSFeed(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
// Determine the current language for site metadata.
|
||||
lang, exists := c.Get("lang")
|
||||
if !exists {
|
||||
lang = "en"
|
||||
}
|
||||
langStr := lang.(string)
|
||||
|
||||
// Get site settings for feed metadata.
|
||||
siteSetting := &models.SiteSetting{}
|
||||
db.First(siteSetting)
|
||||
|
||||
// Construct the base URL from the request.
|
||||
scheme := "http"
|
||||
if c.Request.TLS != nil || c.GetHeader("X-Forwarded-Proto") == "https" {
|
||||
scheme = "https"
|
||||
}
|
||||
baseURL := fmt.Sprintf("%s://%s", scheme, c.Request.Host)
|
||||
|
||||
// Get the latest 20 published articles.
|
||||
var articles []models.Article
|
||||
db.Where("status = ?", models.ArticlePublished).
|
||||
Preload("Author").
|
||||
Order(publishedArticleOrder).
|
||||
Limit(20).
|
||||
Find(&articles)
|
||||
|
||||
// Build channel metadata.
|
||||
channel := &Channel{
|
||||
Title: siteSetting.LogoText(langStr),
|
||||
Link: baseURL,
|
||||
Description: siteSetting.HomeSubtitle(langStr),
|
||||
Language: getRSSLanguage(langStr),
|
||||
Items: make([]Item, 0, len(articles)),
|
||||
}
|
||||
|
||||
// Set lastBuildDate to the most recent article's publish date.
|
||||
if len(articles) > 0 && articles[0].PublishedAt != nil {
|
||||
channel.LastBuildDate = formatRSSTime(*articles[0].PublishedAt)
|
||||
}
|
||||
|
||||
// Convert articles to RSS items.
|
||||
for _, article := range articles {
|
||||
item := Item{
|
||||
Title: article.Title,
|
||||
Link: fmt.Sprintf("%s/article/%s", baseURL, article.Slug),
|
||||
Description: getArticleDescription(&article),
|
||||
PubDate: formatRSSTime(getArticlePubDate(&article)),
|
||||
GUID: fmt.Sprintf("%s/article/%s", baseURL, article.Slug),
|
||||
}
|
||||
|
||||
// Add author information.
|
||||
if article.Author.DisplayName != "" {
|
||||
item.Author = article.Author.DisplayName
|
||||
} else {
|
||||
item.Author = article.Author.Username
|
||||
}
|
||||
|
||||
channel.Items = append(channel.Items, item)
|
||||
}
|
||||
|
||||
// Build the RSS feed.
|
||||
feed := &RSS{
|
||||
Version: "2.0",
|
||||
Channel: channel,
|
||||
}
|
||||
|
||||
// Set the correct content type and return XML.
|
||||
c.Header("Content-Type", "application/rss+xml; charset=utf-8")
|
||||
c.XML(http.StatusOK, feed)
|
||||
}
|
||||
}
|
||||
|
||||
// getRSSLanguage converts the internal language code to RSS language format.
|
||||
func getRSSLanguage(lang string) string {
|
||||
switch lang {
|
||||
case "zh":
|
||||
return "zh-CN"
|
||||
case "en":
|
||||
return "en-US"
|
||||
default:
|
||||
return "en-US"
|
||||
}
|
||||
}
|
||||
|
||||
// formatRSSTime formats a time.Time to RFC1123Z format required by RSS 2.0.
|
||||
func formatRSSTime(t time.Time) string {
|
||||
return t.Format(time.RFC1123Z)
|
||||
}
|
||||
|
||||
// getArticlePubDate returns the article's publish date, falling back to created date.
|
||||
func getArticlePubDate(article *models.Article) time.Time {
|
||||
if article.PublishedAt != nil {
|
||||
return *article.PublishedAt
|
||||
}
|
||||
return article.CreatedAt
|
||||
}
|
||||
|
||||
// getArticleDescription returns the article description for RSS.
|
||||
// Prefers the summary field; falls back to truncated content.
|
||||
func getArticleDescription(article *models.Article) string {
|
||||
if article.Summary != "" {
|
||||
return html.EscapeString(article.Summary)
|
||||
}
|
||||
|
||||
// Strip HTML tags and truncate content to 200 characters.
|
||||
content := stripHTMLTags(article.Content)
|
||||
if len(content) > 200 {
|
||||
content = content[:200] + "..."
|
||||
}
|
||||
return html.EscapeString(content)
|
||||
}
|
||||
|
||||
// stripHTMLTags removes HTML tags from a string (basic implementation).
|
||||
func stripHTMLTags(s string) string {
|
||||
// Remove HTML tags by finding < and > pairs.
|
||||
var result strings.Builder
|
||||
inTag := false
|
||||
for _, r := range s {
|
||||
if r == '<' {
|
||||
inTag = true
|
||||
continue
|
||||
}
|
||||
if r == '>' {
|
||||
inTag = false
|
||||
continue
|
||||
}
|
||||
if !inTag {
|
||||
result.WriteRune(r)
|
||||
}
|
||||
}
|
||||
// Clean up multiple spaces and trim.
|
||||
cleaned := strings.Join(strings.Fields(result.String()), " ")
|
||||
return cleaned
|
||||
}
|
||||
@@ -74,6 +74,7 @@ func SiteSettingsPage(db *gorm.DB) gin.HandlerFunc {
|
||||
// Pre-compute derived values so the template never invokes methods on
|
||||
// an interface{}-wrapped struct (which Go templates cannot resolve).
|
||||
data["SiteLogoIsURL"] = s.LogoIsURL()
|
||||
data["SiteFaviconIsURL"] = s.FaviconIsURL()
|
||||
if msg := c.Query("saved"); msg == "1" {
|
||||
data["Success"] = tr["settings_saved"]
|
||||
}
|
||||
@@ -99,8 +100,49 @@ func SiteSettingsSave(db *gorm.DB, storagePath string) gin.HandlerFunc {
|
||||
s.HomeSubtitleEn = strings.TrimSpace(c.PostForm("home_subtitle_en"))
|
||||
s.FooterTextZh = strings.TrimSpace(c.PostForm("footer_text_zh"))
|
||||
s.FooterTextEn = strings.TrimSpace(c.PostForm("footer_text_en"))
|
||||
s.AllowRegistration = c.PostForm("allow_registration") == "1"
|
||||
s.UpdatedBy = userIDFromSession(c)
|
||||
|
||||
// Favicon upload (optional). A favicon_url form field takes precedence over an
|
||||
// uploaded file, so admins can set either a local file or an external link.
|
||||
if faviconURL := strings.TrimSpace(c.PostForm("favicon_url")); faviconURL != "" {
|
||||
s.Favicon = faviconURL
|
||||
} else if file, header, err := c.Request.FormFile("favicon"); err == nil {
|
||||
defer file.Close()
|
||||
check := ValidateUpload(header)
|
||||
if !check.OK || check.Type.Category != models.CategoryImage {
|
||||
c.Redirect(http.StatusFound, "/admin/settings/site")
|
||||
return
|
||||
}
|
||||
logoDir := filepath.Join(storagePath, "logos")
|
||||
os.MkdirAll(logoDir, 0755)
|
||||
// Remove the previous local favicon (skip external URLs).
|
||||
if s.Favicon != "" && !s.FaviconIsURL() {
|
||||
os.Remove(filepath.Join(logoDir, s.Favicon))
|
||||
}
|
||||
ext := strings.ToLower(filepath.Ext(header.Filename))
|
||||
savedName := fmt.Sprintf("favicon%s", ext)
|
||||
dst, err := os.Create(filepath.Join(logoDir, savedName))
|
||||
if err != nil {
|
||||
c.Redirect(http.StatusFound, "/admin/settings/site")
|
||||
return
|
||||
}
|
||||
defer dst.Close()
|
||||
if _, err := io.Copy(dst, file); err != nil {
|
||||
c.Redirect(http.StatusFound, "/admin/settings/site")
|
||||
return
|
||||
}
|
||||
s.Favicon = savedName
|
||||
}
|
||||
|
||||
// Remove favicon entirely if requested.
|
||||
if c.PostForm("favicon_clear") == "1" {
|
||||
if s.Favicon != "" && !s.FaviconIsURL() {
|
||||
os.Remove(filepath.Join(storagePath, "logos", s.Favicon))
|
||||
}
|
||||
s.Favicon = ""
|
||||
}
|
||||
|
||||
// Logo upload (optional). A logo_url form field takes precedence over an
|
||||
// uploaded file, so admins can set either a local file or an external link.
|
||||
if logoURL := strings.TrimSpace(c.PostForm("logo_url")); logoURL != "" {
|
||||
@@ -386,3 +428,104 @@ func CommentSettingsSave(db *gorm.DB) gin.HandlerFunc {
|
||||
c.Redirect(http.StatusFound, "/admin/settings/comments?saved=1")
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------- Navigation Links settings ----------------
|
||||
|
||||
// NavLinksSettingsPage renders the navigation links management page.
|
||||
func NavLinksSettingsPage(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
tr := getTr(c)
|
||||
var links []models.NavLink
|
||||
db.Order("sort asc, id asc").Find(&links)
|
||||
|
||||
data := DefaultData(c)
|
||||
data["Title"] = tr["settings_navlinks_title"]
|
||||
data["NavLinks"] = links
|
||||
if msg := c.Query("saved"); msg == "1" {
|
||||
data["Success"] = tr["settings_saved"]
|
||||
}
|
||||
c.HTML(http.StatusOK, "settings_navlinks", data)
|
||||
}
|
||||
}
|
||||
|
||||
// NavLinksSettingsSave dispatches navigation link actions.
|
||||
func NavLinksSettingsSave(db *gorm.DB) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
switch c.PostForm("action") {
|
||||
case "add":
|
||||
addNavLink(db, c)
|
||||
case "toggle":
|
||||
toggleNavLink(db, c)
|
||||
case "edit":
|
||||
editNavLink(db, c)
|
||||
case "delete":
|
||||
deleteNavLink(db, c)
|
||||
}
|
||||
models.RefreshConfigCache(db)
|
||||
c.Redirect(http.StatusFound, "/admin/settings/navlinks?saved=1")
|
||||
}
|
||||
}
|
||||
|
||||
func addNavLink(db *gorm.DB, c *gin.Context) {
|
||||
titleZh := strings.TrimSpace(c.PostForm("title_zh"))
|
||||
titleEn := strings.TrimSpace(c.PostForm("title_en"))
|
||||
url := strings.TrimSpace(c.PostForm("url"))
|
||||
|
||||
if url == "" || (titleZh == "" && titleEn == "") {
|
||||
return
|
||||
}
|
||||
|
||||
sort, _ := strconv.Atoi(c.PostForm("sort"))
|
||||
|
||||
link := models.NavLink{
|
||||
TitleZh: titleZh,
|
||||
TitleEn: titleEn,
|
||||
URL: url,
|
||||
OpenNew: c.PostForm("open_new") == "1",
|
||||
Enabled: c.PostForm("enabled") != "0",
|
||||
Sort: sort,
|
||||
UpdatedBy: userIDFromSession(c),
|
||||
}
|
||||
db.Create(&link)
|
||||
}
|
||||
|
||||
func toggleNavLink(db *gorm.DB, c *gin.Context) {
|
||||
id, _ := strconv.Atoi(c.PostForm("id"))
|
||||
var link models.NavLink
|
||||
if db.First(&link, id).Error != nil {
|
||||
return
|
||||
}
|
||||
link.Enabled = !link.Enabled
|
||||
link.UpdatedBy = userIDFromSession(c)
|
||||
db.Save(&link)
|
||||
}
|
||||
|
||||
func editNavLink(db *gorm.DB, c *gin.Context) {
|
||||
id, _ := strconv.Atoi(c.PostForm("id"))
|
||||
var link models.NavLink
|
||||
if db.First(&link, id).Error != nil {
|
||||
return
|
||||
}
|
||||
|
||||
titleZh := strings.TrimSpace(c.PostForm("title_zh"))
|
||||
titleEn := strings.TrimSpace(c.PostForm("title_en"))
|
||||
url := strings.TrimSpace(c.PostForm("url"))
|
||||
|
||||
if url == "" || (titleZh == "" && titleEn == "") {
|
||||
return
|
||||
}
|
||||
|
||||
link.TitleZh = titleZh
|
||||
link.TitleEn = titleEn
|
||||
link.URL = url
|
||||
link.OpenNew = c.PostForm("open_new") == "1"
|
||||
link.Sort, _ = strconv.Atoi(c.PostForm("sort"))
|
||||
link.UpdatedBy = userIDFromSession(c)
|
||||
db.Save(&link)
|
||||
}
|
||||
|
||||
func deleteNavLink(db *gorm.DB, c *gin.Context) {
|
||||
id, _ := strconv.Atoi(c.PostForm("id"))
|
||||
db.Delete(&models.NavLink{}, id)
|
||||
}
|
||||
|
||||
|
||||
+216
@@ -46,6 +46,38 @@ var translations = map[Lang]map[string]string{
|
||||
"login_submit": "Sign In",
|
||||
"login_error": "Invalid username or password.",
|
||||
"login_required": "Please fill in all fields.",
|
||||
"login_no_account": "Don't have an account?",
|
||||
"login_register_link": "Register",
|
||||
|
||||
// Register page
|
||||
"page_register": "Register",
|
||||
"register_title": "Create Account",
|
||||
"register_username": "Username",
|
||||
"register_ph_username": "Choose a username",
|
||||
"register_username_hint": "3-32 characters, letters, numbers, underscore and dash only",
|
||||
"register_display_name": "Display Name",
|
||||
"register_ph_display_name": "Your display name",
|
||||
"register_display_name_hint": "Optional, defaults to username if empty",
|
||||
"register_email": "Email",
|
||||
"register_ph_email": "Your email address",
|
||||
"register_email_hint": "Optional, used for Gravatar avatar",
|
||||
"register_password": "Password",
|
||||
"register_ph_password": "Choose a password",
|
||||
"register_password_hint": "At least 6 characters",
|
||||
"register_confirm_password": "Confirm Password",
|
||||
"register_ph_confirm_password": "Re-enter your password",
|
||||
"register_submit": "Register",
|
||||
"register_have_account": "Already have an account?",
|
||||
"register_login_link": "Sign In",
|
||||
"register_required": "Username and password are required.",
|
||||
"register_username_length": "Username must be 3-32 characters.",
|
||||
"register_password_length": "Password must be at least 6 characters.",
|
||||
"register_password_mismatch": "Passwords do not match.",
|
||||
"register_error": "Registration failed. Please try again.",
|
||||
|
||||
// Settings
|
||||
"settings_allow_registration": "Allow user registration",
|
||||
"settings_allow_registration_hint": "When enabled, visitors can create their own accounts from the login page",
|
||||
|
||||
// Dashboard
|
||||
"dash_title": "Dashboard",
|
||||
@@ -122,6 +154,8 @@ var translations = map[Lang]map[string]string{
|
||||
"article_published": "Published",
|
||||
"article_field_is_top": "Pin to top",
|
||||
"article_is_top": "Pin to top",
|
||||
"article_published_at": "Published Time",
|
||||
"article_published_at_hint": "Leave blank to auto-set on publish",
|
||||
"article_save_draft": "Save Draft",
|
||||
"article_save": "Save",
|
||||
"article_cancel": "Cancel",
|
||||
@@ -160,16 +194,52 @@ var translations = map[Lang]map[string]string{
|
||||
"article_col_status": "Status",
|
||||
"article_col_published": "Published",
|
||||
"article_col_actions": "Actions",
|
||||
"article_last_updated": "Last Updated",
|
||||
|
||||
// Tags
|
||||
"tags_title": "Tags",
|
||||
"article_tags": "Tags",
|
||||
"article_tags_hint": "Comma-separated tag names, e.g., golang, web, tutorial",
|
||||
"tag_filter": "Filter by tag",
|
||||
"tag_all": "All",
|
||||
|
||||
// Search
|
||||
"search_placeholder": "Search articles...",
|
||||
"search_title": "Search Results",
|
||||
"search_results_for": "Search results for",
|
||||
"search_no_results": "No articles found matching your search.",
|
||||
"search_keyword": "Keyword",
|
||||
|
||||
// Settings (platform configuration)
|
||||
"settings_nav": "Platform Settings",
|
||||
"settings_saved": "Settings saved.",
|
||||
"settings_site_title": "Site Settings",
|
||||
"settings_site_desc": "Logo, top-left title, header banner, and footer text.",
|
||||
"settings_navlinks_title": "Navigation Links",
|
||||
"settings_navlinks_desc": "Manage custom links in the header navigation.",
|
||||
"navlinks_add": "Add Link",
|
||||
"navlinks_title_zh": "Link Text (Chinese)",
|
||||
"navlinks_title_en": "Link Text (English)",
|
||||
"navlinks_url": "URL",
|
||||
"navlinks_url_hint": "Can be relative (/about) or absolute (https://example.com)",
|
||||
"navlinks_open_new": "Open in new window",
|
||||
"navlinks_enabled": "Enabled",
|
||||
"navlinks_sort": "Sort Order",
|
||||
"navlinks_edit": "Edit",
|
||||
"navlinks_delete": "Delete",
|
||||
"navlinks_confirm_delete": "Are you sure you want to delete this link?",
|
||||
"navlinks_no_links": "No navigation links configured yet.",
|
||||
"navlinks_save": "Save",
|
||||
"navlinks_cancel": "Cancel",
|
||||
"settings_logo": "Logo",
|
||||
"settings_logo_url": "Logo URL (external link)",
|
||||
"settings_logo_upload": "Or upload a logo image",
|
||||
"settings_logo_clear": "Remove current logo",
|
||||
"settings_favicon": "Favicon",
|
||||
"settings_favicon_url": "Favicon URL (external link)",
|
||||
"settings_favicon_current": "Current favicon",
|
||||
"settings_favicon_hint": "Recommended: .ico, .png or .svg format, 32x32 or 16x16 pixels",
|
||||
"settings_favicon_clear": "Remove current favicon",
|
||||
"settings_logo_text_zh": "Site Title (Chinese)",
|
||||
"settings_logo_text_en": "Site Title (English)",
|
||||
"settings_header_text_zh": "Header Banner Text (Chinese)",
|
||||
@@ -325,6 +395,44 @@ var translations = map[Lang]map[string]string{
|
||||
"user_cannot_disable_self": "You cannot disable or lock your own account.",
|
||||
"user_cannot_remove_last_admin": "Cannot remove the last administrator.",
|
||||
"dash_user_mgmt": "Manage Users",
|
||||
|
||||
// Analytics
|
||||
"analytics_views_title": "Reading Analytics",
|
||||
"analytics_views_desc": "Track article views, identify unique visitors and detect bots.",
|
||||
"analytics_stats_total": "Total Views",
|
||||
"analytics_stats_human_views": "Human Views",
|
||||
"analytics_stats_bot_views": "Bot Views",
|
||||
"analytics_stats_unique_ips": "Unique IPs",
|
||||
"analytics_stats_unique_users": "Unique Users",
|
||||
"analytics_article_stats": "Article Statistics (Top 20)",
|
||||
"analytics_col_article": "Article",
|
||||
"analytics_col_total_views": "Total Views",
|
||||
"analytics_col_human_views": "Human",
|
||||
"analytics_col_bot_views": "Bots",
|
||||
"analytics_col_unique_ips": "Unique IPs",
|
||||
"analytics_col_time": "Time",
|
||||
"analytics_col_user": "User",
|
||||
"analytics_col_ip": "IP Address",
|
||||
"analytics_col_user_agent": "User Agent",
|
||||
"analytics_col_is_bot": "Type",
|
||||
"analytics_filters": "Filters",
|
||||
"analytics_filter_article": "Article Title",
|
||||
"analytics_filter_article_placeholder": "Search article title",
|
||||
"analytics_filter_ip": "IP Address",
|
||||
"analytics_filter_ip_placeholder": "Search by IP",
|
||||
"analytics_filter_show_bots": "Show Bots",
|
||||
"analytics_include_bots": "Include bot traffic",
|
||||
"analytics_apply_filters": "Apply Filters",
|
||||
"analytics_recent_views": "Recent Views",
|
||||
"analytics_bot": "Bot",
|
||||
"analytics_human": "Human",
|
||||
"analytics_anonymous": "Anonymous",
|
||||
"analytics_article_deleted": "(Deleted)",
|
||||
"analytics_no_data": "No data available.",
|
||||
"analytics_no_views": "No view records found.",
|
||||
"analytics_showing": "Showing",
|
||||
"analytics_of": "of",
|
||||
"analytics_load_more": "Load More",
|
||||
},
|
||||
ZH: {
|
||||
// 导航
|
||||
@@ -358,6 +466,38 @@ var translations = map[Lang]map[string]string{
|
||||
"login_submit": "登录",
|
||||
"login_error": "用户名或密码错误。",
|
||||
"login_required": "请填写所有字段。",
|
||||
"login_no_account": "还没有账号?",
|
||||
"login_register_link": "注册",
|
||||
|
||||
// 注册页
|
||||
"page_register": "注册",
|
||||
"register_title": "创建账号",
|
||||
"register_username": "用户名",
|
||||
"register_ph_username": "请输入用户名",
|
||||
"register_username_hint": "3-32个字符,仅限字母、数字、下划线和连字符",
|
||||
"register_display_name": "显示名称",
|
||||
"register_ph_display_name": "请输入显示名称",
|
||||
"register_display_name_hint": "可选,留空则使用用户名",
|
||||
"register_email": "邮箱",
|
||||
"register_ph_email": "请输入邮箱地址",
|
||||
"register_email_hint": "可选,用于显示 Gravatar 头像",
|
||||
"register_password": "密码",
|
||||
"register_ph_password": "请输入密码",
|
||||
"register_password_hint": "至少6个字符",
|
||||
"register_confirm_password": "确认密码",
|
||||
"register_ph_confirm_password": "请再次输入密码",
|
||||
"register_submit": "注册",
|
||||
"register_have_account": "已有账号?",
|
||||
"register_login_link": "登录",
|
||||
"register_required": "用户名和密码不能为空。",
|
||||
"register_username_length": "用户名必须是3-32个字符。",
|
||||
"register_password_length": "密码至少需要6个字符。",
|
||||
"register_password_mismatch": "两次输入的密码不一致。",
|
||||
"register_error": "注册失败,请重试。",
|
||||
|
||||
// 平台设置
|
||||
"settings_allow_registration": "允许用户注册",
|
||||
"settings_allow_registration_hint": "启用后,访客可以从登录页面创建自己的账号",
|
||||
|
||||
// 后台
|
||||
"dash_title": "后台管理",
|
||||
@@ -432,6 +572,8 @@ var translations = map[Lang]map[string]string{
|
||||
"article_published": "已发布",
|
||||
"article_field_is_top": "置顶",
|
||||
"article_is_top": "置顶",
|
||||
"article_published_at": "发布时间",
|
||||
"article_published_at_hint": "留空则在发布时自动设置",
|
||||
"article_save_draft": "保存草稿",
|
||||
"article_save": "保存",
|
||||
"article_cancel": "取消",
|
||||
@@ -470,16 +612,52 @@ var translations = map[Lang]map[string]string{
|
||||
"article_col_status": "状态",
|
||||
"article_col_published": "发布时间",
|
||||
"article_col_actions": "操作",
|
||||
"article_last_updated": "最后更新",
|
||||
|
||||
// 标签
|
||||
"tags_title": "标签",
|
||||
"article_tags": "标签",
|
||||
"article_tags_hint": "逗号分隔的标签名称,例如:golang, web, 教程",
|
||||
"tag_filter": "按标签筛选",
|
||||
"tag_all": "全部",
|
||||
|
||||
// 搜索
|
||||
"search_placeholder": "搜索文章...",
|
||||
"search_title": "搜索结果",
|
||||
"search_results_for": "搜索结果",
|
||||
"search_no_results": "未找到匹配的文章。",
|
||||
"search_keyword": "关键词",
|
||||
|
||||
// 平台设置
|
||||
"settings_nav": "平台设置",
|
||||
"settings_saved": "设置已保存。",
|
||||
"settings_site_title": "站点设置",
|
||||
"settings_site_desc": "Logo、左上角标题、顶部横幅文本和页脚文本。",
|
||||
"settings_navlinks_title": "导航链接",
|
||||
"settings_navlinks_desc": "管理顶部导航栏的自定义链接。",
|
||||
"navlinks_add": "添加链接",
|
||||
"navlinks_title_zh": "链接文字(中文)",
|
||||
"navlinks_title_en": "链接文字(英文)",
|
||||
"navlinks_url": "链接地址",
|
||||
"navlinks_url_hint": "可以是相对路径(/about)或完整链接(https://example.com)",
|
||||
"navlinks_open_new": "在新窗口打开",
|
||||
"navlinks_enabled": "启用",
|
||||
"navlinks_sort": "排序",
|
||||
"navlinks_edit": "编辑",
|
||||
"navlinks_delete": "删除",
|
||||
"navlinks_confirm_delete": "确定要删除这个链接吗?",
|
||||
"navlinks_no_links": "还没有配置导航链接。",
|
||||
"navlinks_save": "保存",
|
||||
"navlinks_cancel": "取消",
|
||||
"settings_logo": "Logo",
|
||||
"settings_logo_url": "Logo 链接(外链地址)",
|
||||
"settings_logo_upload": "或上传 Logo 图片",
|
||||
"settings_logo_clear": "移除当前 Logo",
|
||||
"settings_favicon": "网站图标(Favicon)",
|
||||
"settings_favicon_url": "Favicon 链接(外链地址)",
|
||||
"settings_favicon_current": "当前 Favicon",
|
||||
"settings_favicon_hint": "推荐:.ico、.png 或 .svg 格式,32x32 或 16x16 像素",
|
||||
"settings_favicon_clear": "移除当前 Favicon",
|
||||
"settings_logo_text_zh": "站点标题(中文)",
|
||||
"settings_logo_text_en": "站点标题(英文)",
|
||||
"settings_header_text_zh": "顶部横幅文本(中文)",
|
||||
@@ -635,6 +813,44 @@ var translations = map[Lang]map[string]string{
|
||||
"user_cannot_disable_self": "不能禁用或锁定自己的账号。",
|
||||
"user_cannot_remove_last_admin": "不能移除最后一个管理员。",
|
||||
"dash_user_mgmt": "用户管理",
|
||||
|
||||
// 阅读统计
|
||||
"analytics_views_title": "阅读统计",
|
||||
"analytics_views_desc": "追踪文章阅读量,识别独立访客和爬虫。",
|
||||
"analytics_stats_total": "总阅读量",
|
||||
"analytics_stats_human_views": "真人阅读",
|
||||
"analytics_stats_bot_views": "爬虫访问",
|
||||
"analytics_stats_unique_ips": "独立IP",
|
||||
"analytics_stats_unique_users": "独立用户",
|
||||
"analytics_article_stats": "文章统计(前20篇)",
|
||||
"analytics_col_article": "文章",
|
||||
"analytics_col_total_views": "总阅读量",
|
||||
"analytics_col_human_views": "真人",
|
||||
"analytics_col_bot_views": "爬虫",
|
||||
"analytics_col_unique_ips": "独立IP",
|
||||
"analytics_col_time": "时间",
|
||||
"analytics_col_user": "用户",
|
||||
"analytics_col_ip": "IP地址",
|
||||
"analytics_col_user_agent": "User Agent",
|
||||
"analytics_col_is_bot": "类型",
|
||||
"analytics_filters": "筛选条件",
|
||||
"analytics_filter_article": "文章标题",
|
||||
"analytics_filter_article_placeholder": "搜索文章标题",
|
||||
"analytics_filter_ip": "IP地址",
|
||||
"analytics_filter_ip_placeholder": "按IP搜索",
|
||||
"analytics_filter_show_bots": "显示爬虫",
|
||||
"analytics_include_bots": "包含爬虫流量",
|
||||
"analytics_apply_filters": "应用筛选",
|
||||
"analytics_recent_views": "最近访问记录",
|
||||
"analytics_bot": "爬虫",
|
||||
"analytics_human": "真人",
|
||||
"analytics_anonymous": "匿名用户",
|
||||
"analytics_article_deleted": "(已删除)",
|
||||
"analytics_no_data": "暂无数据。",
|
||||
"analytics_no_views": "未找到访问记录。",
|
||||
"analytics_showing": "显示",
|
||||
"analytics_of": "共",
|
||||
"analytics_load_more": "加载更多",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Executable
+98
@@ -0,0 +1,98 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
SERVICE_NAME="blog_go"
|
||||
SERVICE_USER="blog_go"
|
||||
CONFIG_DIR="/etc/${SERVICE_NAME}"
|
||||
DATA_DIR="/srv/${SERVICE_NAME}"
|
||||
INSTALL_DIR="/opt/${SERVICE_NAME}"
|
||||
BINARY_NAME="${SERVICE_NAME}"
|
||||
SOCKET_DIR="/run/${SERVICE_NAME}"
|
||||
SERVICE_FILE="/etc/systemd/system/${SERVICE_NAME}.service"
|
||||
|
||||
if [[ "${EUID}" -ne 0 ]]; then
|
||||
echo "请使用 root 权限运行: sudo $0" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
cd "${SCRIPT_DIR}"
|
||||
|
||||
echo "拉取最新代码..."
|
||||
git pull
|
||||
|
||||
echo "编译 Go 程序..."
|
||||
go build -o "${BINARY_NAME}" .
|
||||
|
||||
echo "检查系统用户..."
|
||||
if ! id -u "${SERVICE_USER}" >/dev/null 2>&1; then
|
||||
useradd --system --home-dir "${DATA_DIR}" --shell /usr/sbin/nologin "${SERVICE_USER}"
|
||||
fi
|
||||
|
||||
echo "创建目录..."
|
||||
install -d -m 0750 -o "${SERVICE_USER}" -g "${SERVICE_USER}" "${CONFIG_DIR}" "${DATA_DIR}"
|
||||
install -d -m 0755 -o "${SERVICE_USER}" -g "${SERVICE_USER}" "${INSTALL_DIR}"
|
||||
install -d -m 0755 "${SOCKET_DIR}"
|
||||
chown "${SERVICE_USER}:${SERVICE_USER}" "${SOCKET_DIR}"
|
||||
|
||||
echo "安装程序和模板文件..."
|
||||
install -m 0755 -o root -g root "${SCRIPT_DIR}/${BINARY_NAME}" "${INSTALL_DIR}/${BINARY_NAME}"
|
||||
rm -rf "${INSTALL_DIR}/templates"
|
||||
cp -a "${SCRIPT_DIR}/templates" "${INSTALL_DIR}/templates"
|
||||
chown -R root:root "${INSTALL_DIR}/templates"
|
||||
chown "${SERVICE_USER}:${SERVICE_USER}" "${INSTALL_DIR}"
|
||||
chmod 0755 "${INSTALL_DIR}"
|
||||
find "${INSTALL_DIR}/templates" -type d -exec chmod 0755 {} \;
|
||||
find "${INSTALL_DIR}/templates" -type f -exec chmod 0644 {} \;
|
||||
|
||||
SOCKET_PATH="${SOCKET_DIR}/web.sock"
|
||||
|
||||
if [[ ! -f "${CONFIG_DIR}/config.yaml" ]]; then
|
||||
SECRET=$(openssl rand -hex 32)
|
||||
cat > "${CONFIG_DIR}/config.yaml" <<EOF
|
||||
database:
|
||||
type: sqlite
|
||||
dsn: ""
|
||||
web:
|
||||
port: "8080"
|
||||
socket: ${SOCKET_PATH}
|
||||
path: ${DATA_DIR}
|
||||
secret: ${SECRET}
|
||||
EOF
|
||||
chown "${SERVICE_USER}:${SERVICE_USER}" "${CONFIG_DIR}/config.yaml"
|
||||
chmod 0640 "${CONFIG_DIR}/config.yaml"
|
||||
fi
|
||||
|
||||
echo "写入 systemd 服务文件..."
|
||||
cat > "${SERVICE_FILE}" <<EOF
|
||||
[Unit]
|
||||
Description=Blog Go Service
|
||||
After=network-online.target
|
||||
Wants=network-online.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=${SERVICE_USER}
|
||||
Group=${SERVICE_USER}
|
||||
WorkingDirectory=${INSTALL_DIR}
|
||||
ExecStart=${INSTALL_DIR}/${BINARY_NAME} -config ${CONFIG_DIR}/config.yaml
|
||||
ExecStartPost=/bin/sh -c 'while [ ! -S ${SOCKET_DIR}/web.sock ]; do sleep 0.1; done; chmod 666 ${SOCKET_DIR}/web.sock'
|
||||
Restart=on-failure
|
||||
RestartSec=5s
|
||||
NoNewPrivileges=true
|
||||
PrivateTmp=true
|
||||
ProtectSystem=full
|
||||
ReadWritePaths=${CONFIG_DIR} ${DATA_DIR} ${INSTALL_DIR} ${SOCKET_DIR}
|
||||
RuntimeDirectory=${SERVICE_NAME}
|
||||
RuntimeDirectoryMode=0755
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
|
||||
systemctl daemon-reload
|
||||
systemctl enable "${SERVICE_NAME}"
|
||||
systemctl restart "${SERVICE_NAME}"
|
||||
|
||||
echo "部署完成,服务状态:"
|
||||
systemctl --no-pager --full status "${SERVICE_NAME}"
|
||||
@@ -1,8 +1,11 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"log"
|
||||
"net"
|
||||
"os"
|
||||
|
||||
"github.com/gin-contrib/sessions"
|
||||
"github.com/gin-contrib/sessions/cookie"
|
||||
@@ -15,8 +18,12 @@ import (
|
||||
)
|
||||
|
||||
func main() {
|
||||
// 0. Parse command-line flags.
|
||||
configFlag := flag.String("config", "", "path to config file (default: OS-aware path)")
|
||||
flag.Parse()
|
||||
|
||||
// 1. Load configuration (auto-creates if missing).
|
||||
cfg := config.LoadConfig()
|
||||
cfg := config.LoadConfig(*configFlag)
|
||||
|
||||
// 2. Initialize the database (auto-migrates, seeds admin).
|
||||
db := models.InitDB(cfg)
|
||||
@@ -50,8 +57,14 @@ func main() {
|
||||
|
||||
// 8. Register routes.
|
||||
router.GET("/", handlers.HomePage(db))
|
||||
router.GET("/search", handlers.SearchPage(db))
|
||||
router.GET("/api/articles", handlers.HomeArticlesAPI(db))
|
||||
router.GET("/rss", handlers.RSSFeed(db))
|
||||
router.GET("/feed", handlers.RSSFeed(db))
|
||||
router.GET("/login", handlers.LoginPage())
|
||||
router.POST("/login", handlers.Login(db))
|
||||
router.GET("/register", handlers.RegisterPage(db))
|
||||
router.POST("/register", handlers.Register(db))
|
||||
router.POST("/logout", handlers.Logout())
|
||||
router.GET("/article/:slug", handlers.ArticleDetail(db))
|
||||
router.POST("/article/:slug/comments", handlers.PostComment(db))
|
||||
@@ -107,6 +120,8 @@ func main() {
|
||||
{
|
||||
settings.GET("/site", handlers.SiteSettingsPage(db))
|
||||
settings.POST("/site", handlers.SiteSettingsSave(db, cfg.Path))
|
||||
settings.GET("/navlinks", handlers.NavLinksSettingsPage(db))
|
||||
settings.POST("/navlinks", handlers.NavLinksSettingsSave(db))
|
||||
settings.GET("/upload", handlers.UploadSettingsPage(db))
|
||||
settings.POST("/upload", handlers.UploadSettingsSave(db))
|
||||
settings.GET("/download", handlers.DownloadSettingsPage(db))
|
||||
@@ -115,6 +130,13 @@ func main() {
|
||||
settings.POST("/comments", handlers.CommentSettingsSave(db))
|
||||
}
|
||||
|
||||
// Protected admin analytics routes (reading statistics).
|
||||
analytics := router.Group("/admin/analytics")
|
||||
analytics.Use(middleware.AuthRequired(), middleware.AdminRequired(db))
|
||||
{
|
||||
analytics.GET("/views", handlers.ViewAnalyticsPage(db))
|
||||
}
|
||||
|
||||
// Protected profile routes.
|
||||
profile := router.Group("/profile")
|
||||
profile.Use(middleware.AuthRequired())
|
||||
@@ -146,9 +168,39 @@ func main() {
|
||||
}
|
||||
|
||||
// 9. Start the server.
|
||||
addr := fmt.Sprintf(":%s", cfg.Port)
|
||||
webPort := cfg.Web.Port
|
||||
socketPath := cfg.Web.Socket
|
||||
usePort := webPort != "" && webPort != "0"
|
||||
useSocket := socketPath != ""
|
||||
|
||||
if !usePort && !useSocket {
|
||||
log.Fatalf("Neither port nor socket is configured — at least one must be enabled")
|
||||
}
|
||||
|
||||
if usePort {
|
||||
go func() {
|
||||
addr := fmt.Sprintf(":%s", webPort)
|
||||
log.Printf("Go Blog starting on http://localhost%s", addr)
|
||||
if err := router.Run(addr); err != nil {
|
||||
log.Fatalf("Failed to start server: %v", err)
|
||||
log.Fatalf("Failed to start HTTP server: %v", err)
|
||||
}
|
||||
}()
|
||||
}
|
||||
|
||||
if useSocket {
|
||||
go func() {
|
||||
os.Remove(socketPath) // remove stale socket file if exists
|
||||
listener, err := net.Listen("unix", socketPath)
|
||||
if err != nil {
|
||||
log.Fatalf("Failed to listen on unix socket %s: %v", socketPath, err)
|
||||
}
|
||||
log.Printf("Go Blog starting on unix socket %s", socketPath)
|
||||
if err := router.RunListener(listener); err != nil {
|
||||
log.Fatalf("Failed to serve on unix socket: %v", err)
|
||||
}
|
||||
}()
|
||||
}
|
||||
|
||||
// Block forever.
|
||||
select {}
|
||||
}
|
||||
|
||||
@@ -123,12 +123,18 @@ func SetUserContext(db *gorm.DB) gin.HandlerFunc {
|
||||
c.Set("site_setting", site)
|
||||
c.Set("site_logo", site.Logo)
|
||||
c.Set("site_logo_is_url", site.LogoIsURL())
|
||||
c.Set("site_favicon", site.Favicon)
|
||||
c.Set("site_favicon_is_url", site.FaviconIsURL())
|
||||
c.Set("site_logo_text", site.LogoText(string(lang)))
|
||||
c.Set("site_header_text", site.HeaderText(string(lang)))
|
||||
c.Set("site_home_welcome", site.HomeWelcome(string(lang)))
|
||||
c.Set("site_home_subtitle", site.HomeSubtitle(string(lang)))
|
||||
c.Set("site_footer_text", site.FooterText(string(lang)))
|
||||
|
||||
// --- Navigation links (from DB cache) ---
|
||||
navLinks := models.GetNavLinks()
|
||||
c.Set("nav_links", navLinks)
|
||||
|
||||
c.Next()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,6 +30,7 @@ type Article struct {
|
||||
Slug string `gorm:"uniqueIndex:idx_slug_deleted_at;size:255" json:"slug"`
|
||||
PublishedAt *time.Time `gorm:"index" json:"published_at"`
|
||||
Author User `gorm:"foreignKey:AuthorID" json:"-"`
|
||||
Tags []Tag `gorm:"many2many:article_tags;" json:"tags"`
|
||||
}
|
||||
|
||||
// TableName overrides the default GORM table name.
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
// ArticleTag represents the many-to-many relationship between articles and tags.
|
||||
type ArticleTag struct {
|
||||
ArticleID uint `gorm:"primaryKey;index" json:"article_id"`
|
||||
TagID uint `gorm:"primaryKey;index" json:"tag_id"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
||||
// TableName overrides the default GORM table name.
|
||||
func (ArticleTag) TableName() string {
|
||||
return "article_tags"
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
// ArticleView represents a unique article view record.
|
||||
// Each record tracks one unique visit (by IP or user) to an article.
|
||||
type ArticleView struct {
|
||||
ID uint `gorm:"primarykey" json:"id"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
ArticleID uint `gorm:"not null;index:idx_article_views_article" json:"article_id"`
|
||||
UserID *uint `gorm:"index:idx_article_views_user" json:"user_id"` // NULL for anonymous users
|
||||
IP string `gorm:"size:64;not null;index:idx_article_views_ip" json:"ip"`
|
||||
UserAgent string `gorm:"size:512" json:"user_agent"`
|
||||
IsBot bool `gorm:"default:false;index:idx_article_views_bot" json:"is_bot"`
|
||||
Article Article `gorm:"foreignKey:ArticleID" json:"-"`
|
||||
User *User `gorm:"foreignKey:UserID" json:"-"`
|
||||
}
|
||||
|
||||
// TableName overrides the default GORM table name.
|
||||
func (ArticleView) TableName() string {
|
||||
return "article_views"
|
||||
}
|
||||
|
||||
// BeforeCreate hook to ensure we don't create duplicate records.
|
||||
// This is a safety check in addition to application-level deduplication.
|
||||
func (av *ArticleView) BeforeCreate(tx *gorm.DB) error {
|
||||
var count int64
|
||||
query := tx.Model(&ArticleView{}).
|
||||
Where("article_id = ? AND ip = ?", av.ArticleID, av.IP)
|
||||
|
||||
if av.UserID != nil {
|
||||
query = query.Where("user_id = ?", *av.UserID)
|
||||
} else {
|
||||
query = query.Where("user_id IS NULL")
|
||||
}
|
||||
|
||||
query.Count(&count)
|
||||
if count > 0 {
|
||||
// Record already exists, skip creation
|
||||
return gorm.ErrDuplicatedKey
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
// botPatterns contains common bot/crawler/spider User-Agent patterns.
|
||||
var botPatterns = []string{
|
||||
"bot", "crawler", "spider", "scraper", "scraping",
|
||||
"googlebot", "bingbot", "baiduspider", "yandexbot",
|
||||
"duckduckbot", "slurp", "teoma", "ia_archiver",
|
||||
"facebookexternalhit", "facebot", "twitterbot",
|
||||
"whatsapp", "telegram", "slackbot", "discordbot",
|
||||
"linkedinbot", "pinterestbot", "tumblr",
|
||||
"semrushbot", "ahrefsbot", "mj12bot", "dotbot",
|
||||
"archive.org_bot", "serpstatbot", "dataforseo",
|
||||
"petalbot", "gptbot", "claudebot", "anthropic-ai",
|
||||
"bytespider", "applebot", "seznambot",
|
||||
"headless", "phantom", "selenium", "puppeteer",
|
||||
}
|
||||
|
||||
// IsBot checks if the given User-Agent string matches known bot patterns.
|
||||
// It performs a case-insensitive substring match against common bot identifiers.
|
||||
func IsBot(userAgent string) bool {
|
||||
if userAgent == "" {
|
||||
return false
|
||||
}
|
||||
|
||||
ua := strings.ToLower(userAgent)
|
||||
|
||||
for _, pattern := range botPatterns {
|
||||
if strings.Contains(ua, pattern) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
@@ -17,6 +17,7 @@ var configCache = struct {
|
||||
comment *CommentConfig
|
||||
types []UploadFileType
|
||||
baseURLs []DownloadBaseURL
|
||||
navLinks []NavLink
|
||||
}{
|
||||
site: &SiteSetting{},
|
||||
upload: &UploadConfig{Enabled: true, DefaultMaxSize: DefaultUploadMaxSize, StorageDir: "attachments"},
|
||||
@@ -58,6 +59,11 @@ func LoadConfigCache(db *gorm.DB) {
|
||||
if err := db.Order("is_default desc, priority asc, id asc").Find(&b).Error; err == nil {
|
||||
configCache.baseURLs = b
|
||||
}
|
||||
|
||||
var n []NavLink
|
||||
if err := db.Where("enabled = ?", true).Order("sort asc, id asc").Find(&n).Error; err == nil {
|
||||
configCache.navLinks = n
|
||||
}
|
||||
}
|
||||
|
||||
// RefreshConfigCache reloads all cached platform configuration. Admin handlers
|
||||
@@ -118,3 +124,10 @@ func DefaultDownloadBaseURL() string {
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// GetNavLinks returns the cached list of enabled navigation links, sorted by sort order.
|
||||
func GetNavLinks() []NavLink {
|
||||
configCache.mu.RLock()
|
||||
defer configCache.mu.RUnlock()
|
||||
return configCache.navLinks
|
||||
}
|
||||
|
||||
+1
-1
@@ -45,7 +45,7 @@ func InitDB(cfg *config.Config) *gorm.DB {
|
||||
}
|
||||
|
||||
// Auto-migrate tables (idempotent).
|
||||
if err := db.AutoMigrate(&User{}, &Article{}, &SiteSetting{}, &UploadConfig{}, &UploadFileType{}, &DownloadBaseURL{}, &Attachment{}, &Comment{}, &CommentConfig{}); err != nil {
|
||||
if err := db.AutoMigrate(&User{}, &Article{}, &SiteSetting{}, &UploadConfig{}, &UploadFileType{}, &DownloadBaseURL{}, &Attachment{}, &Comment{}, &CommentConfig{}, &ArticleView{}, &NavLink{}, &Tag{}, &ArticleTag{}); err != nil {
|
||||
log.Fatalf("Failed to auto-migrate database: %v", err)
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
package models
|
||||
|
||||
import "time"
|
||||
|
||||
// NavLink represents a custom navigation link in the header.
|
||||
type NavLink struct {
|
||||
ID uint `gorm:"primarykey" json:"id"`
|
||||
TitleZh string `gorm:"size:100;not null" json:"title_zh"` // Link text (Chinese)
|
||||
TitleEn string `gorm:"size:100;not null" json:"title_en"` // Link text (English)
|
||||
URL string `gorm:"size:512;not null" json:"url"` // Target URL
|
||||
OpenNew bool `gorm:"default:false" json:"open_new"` // Open in new window
|
||||
Enabled bool `gorm:"default:true" json:"enabled"` // Show/hide link
|
||||
Sort int `gorm:"default:0;index" json:"sort"` // Display order (lower = first)
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
UpdatedBy uint `gorm:"index" json:"updated_by"`
|
||||
}
|
||||
|
||||
// TableName overrides the default GORM table name.
|
||||
func (NavLink) TableName() string {
|
||||
return "nav_links"
|
||||
}
|
||||
|
||||
// Title returns the link text for the given language code, falling back to
|
||||
// the other language when the requested one is empty.
|
||||
func (n *NavLink) Title(lang string) string {
|
||||
if lang == "zh" {
|
||||
if n.TitleZh != "" {
|
||||
return n.TitleZh
|
||||
}
|
||||
return n.TitleEn
|
||||
}
|
||||
if n.TitleEn != "" {
|
||||
return n.TitleEn
|
||||
}
|
||||
return n.TitleZh
|
||||
}
|
||||
@@ -8,6 +8,7 @@ import "time"
|
||||
type SiteSetting struct {
|
||||
ID uint `gorm:"primarykey" json:"id"`
|
||||
Logo string `gorm:"size:512" json:"logo"` // local filename (served under /uploads/logos) OR a full URL
|
||||
Favicon string `gorm:"size:512" json:"favicon"` // local filename (served under /uploads/logos) OR a full URL
|
||||
LogoTextZh string `gorm:"size:255" json:"logo_text_zh"` // top-left title (zh)
|
||||
LogoTextEn string `gorm:"size:255" json:"logo_text_en"` // top-left title (en)
|
||||
HeaderTextZh string `gorm:"size:512" json:"header_text_zh"` // header banner text (zh)
|
||||
@@ -18,6 +19,7 @@ type SiteSetting struct {
|
||||
HomeSubtitleEn string `gorm:"size:512" json:"home_subtitle_en"` // home page subtitle (en)
|
||||
FooterTextZh string `gorm:"size:512" json:"footer_text_zh"` // footer text (zh)
|
||||
FooterTextEn string `gorm:"size:512" json:"footer_text_en"` // footer text (en)
|
||||
AllowRegistration bool `gorm:"default:false" json:"allow_registration"` // whether users can self-register
|
||||
UpdatedBy uint `gorm:"index" json:"updated_by"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
@@ -36,6 +38,15 @@ func (s *SiteSetting) LogoIsURL() bool {
|
||||
return len(s.Logo) >= 4 && (s.Logo[:4] == "http")
|
||||
}
|
||||
|
||||
// FaviconIsURL reports whether the favicon value is an external URL rather than a
|
||||
// local filename.
|
||||
func (s *SiteSetting) FaviconIsURL() bool {
|
||||
if s == nil || s.Favicon == "" {
|
||||
return false
|
||||
}
|
||||
return len(s.Favicon) >= 4 && (s.Favicon[:4] == "http")
|
||||
}
|
||||
|
||||
// LogoText returns the title for the given language code, falling back to the
|
||||
// other language when the requested one is empty.
|
||||
func (s *SiteSetting) LogoText(lang string) string {
|
||||
|
||||
+126
@@ -0,0 +1,126 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
// Tag represents a blog post tag with multi-language support.
|
||||
type Tag struct {
|
||||
ID uint `gorm:"primarykey" json:"id"`
|
||||
NameZh string `gorm:"size:50;not null" json:"name_zh"`
|
||||
NameEn string `gorm:"size:50;not null" json:"name_en"`
|
||||
Slug string `gorm:"size:100;uniqueIndex;not null" json:"slug"`
|
||||
Count int `gorm:"default:0" json:"count"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
// TableName overrides the default GORM table name.
|
||||
func (Tag) TableName() string {
|
||||
return "tags"
|
||||
}
|
||||
|
||||
// Name returns the tag name for the specified language.
|
||||
func (t *Tag) Name(lang string) string {
|
||||
if lang == "zh" {
|
||||
return t.NameZh
|
||||
}
|
||||
return t.NameEn
|
||||
}
|
||||
|
||||
// generateTagSlug creates a URL-friendly slug from tag name.
|
||||
func generateTagSlug(name string) string {
|
||||
slug := strings.ToLower(strings.TrimSpace(name))
|
||||
slug = strings.ReplaceAll(slug, " ", "-")
|
||||
slug = strings.ReplaceAll(slug, "_", "-")
|
||||
return slug
|
||||
}
|
||||
|
||||
// FindOrCreateTag finds a tag by name or creates it if it doesn't exist.
|
||||
// If both nameZh and nameEn are provided, it uses them; otherwise uses the same name for both languages.
|
||||
func FindOrCreateTag(db *gorm.DB, nameZh, nameEn string) (*Tag, error) {
|
||||
nameZh = strings.TrimSpace(nameZh)
|
||||
nameEn = strings.TrimSpace(nameEn)
|
||||
|
||||
// If only one name is provided, use it for both languages
|
||||
if nameZh == "" && nameEn != "" {
|
||||
nameZh = nameEn
|
||||
} else if nameEn == "" && nameZh != "" {
|
||||
nameEn = nameZh
|
||||
}
|
||||
|
||||
if nameZh == "" {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
slug := generateTagSlug(nameZh)
|
||||
|
||||
var tag Tag
|
||||
err := db.Where("slug = ?", slug).First(&tag).Error
|
||||
if err == nil {
|
||||
return &tag, nil
|
||||
}
|
||||
|
||||
if err != gorm.ErrRecordNotFound {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Create new tag
|
||||
tag = Tag{
|
||||
NameZh: nameZh,
|
||||
NameEn: nameEn,
|
||||
Slug: slug,
|
||||
Count: 0,
|
||||
}
|
||||
|
||||
if err := db.Create(&tag).Error; err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &tag, nil
|
||||
}
|
||||
|
||||
// GetAllTags returns all tags ordered by count descending.
|
||||
func GetAllTags(db *gorm.DB) ([]Tag, error) {
|
||||
var tags []Tag
|
||||
err := db.Order("count DESC, name_zh ASC").Find(&tags).Error
|
||||
return tags, err
|
||||
}
|
||||
|
||||
// GetTagBySlug returns a tag by its slug.
|
||||
func GetTagBySlug(db *gorm.DB, slug string) (*Tag, error) {
|
||||
var tag Tag
|
||||
err := db.Where("slug = ?", slug).First(&tag).Error
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &tag, nil
|
||||
}
|
||||
|
||||
// UpdateTagCount recalculates the article count for a tag.
|
||||
func UpdateTagCount(db *gorm.DB, tagID uint) error {
|
||||
var count int64
|
||||
db.Table("article_tags").Where("tag_id = ?", tagID).Count(&count)
|
||||
return db.Model(&Tag{}).Where("id = ?", tagID).Update("count", count).Error
|
||||
}
|
||||
|
||||
// UpdateAllTagCounts recalculates article counts for all tags.
|
||||
func UpdateAllTagCounts(db *gorm.DB) error {
|
||||
// Get all tags
|
||||
var tags []Tag
|
||||
if err := db.Find(&tags).Error; err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// Update count for each tag
|
||||
for _, tag := range tags {
|
||||
if err := UpdateTagCount(db, tag.ID); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
-- Migration: Add favicon field to site_settings table
|
||||
-- Date: 2026-06-22
|
||||
-- Description: Add support for custom favicon in site settings
|
||||
|
||||
-- Add favicon column if it doesn't exist
|
||||
ALTER TABLE site_settings ADD COLUMN IF NOT EXISTS favicon VARCHAR(512) DEFAULT '';
|
||||
|
||||
-- Add comment for documentation
|
||||
COMMENT ON COLUMN site_settings.favicon IS 'Local filename (served under /uploads/logos) OR a full URL for the site favicon';
|
||||
@@ -0,0 +1,170 @@
|
||||
{{define "analytics_views"}}
|
||||
{{template "header" .}}
|
||||
<section class="max-w-7xl mx-auto px-4 py-12">
|
||||
<div class="mb-8">
|
||||
<h2 class="text-3xl font-bold text-gray-900">{{index .Tr "analytics_views_title"}}</h2>
|
||||
<p class="text-gray-500 mt-1">{{index .Tr "analytics_views_desc"}}</p>
|
||||
</div>
|
||||
|
||||
<!-- Statistics Overview -->
|
||||
<div class="grid grid-cols-1 md:grid-cols-5 gap-4 mb-8">
|
||||
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-4">
|
||||
<p class="text-sm text-gray-500 uppercase tracking-wider">{{index .Tr "analytics_stats_total"}}</p>
|
||||
<p class="text-2xl font-bold text-gray-900 mt-1">{{.Stats.TotalViews}}</p>
|
||||
</div>
|
||||
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-4">
|
||||
<p class="text-sm text-gray-500 uppercase tracking-wider">{{index .Tr "analytics_stats_human_views"}}</p>
|
||||
<p class="text-2xl font-bold text-green-600 mt-1">{{.Stats.HumanViews}}</p>
|
||||
</div>
|
||||
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-4">
|
||||
<p class="text-sm text-gray-500 uppercase tracking-wider">{{index .Tr "analytics_stats_bot_views"}}</p>
|
||||
<p class="text-2xl font-bold text-orange-600 mt-1">{{.Stats.BotViews}}</p>
|
||||
</div>
|
||||
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-4">
|
||||
<p class="text-sm text-gray-500 uppercase tracking-wider">{{index .Tr "analytics_stats_unique_ips"}}</p>
|
||||
<p class="text-2xl font-bold text-blue-600 mt-1">{{.Stats.UniqueIPs}}</p>
|
||||
</div>
|
||||
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-4">
|
||||
<p class="text-sm text-gray-500 uppercase tracking-wider">{{index .Tr "analytics_stats_unique_users"}}</p>
|
||||
<p class="text-2xl font-bold text-purple-600 mt-1">{{.Stats.UniqueUsers}}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Article Statistics -->
|
||||
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-6 mb-8">
|
||||
<h3 class="text-xl font-semibold text-gray-800 mb-4">{{index .Tr "analytics_article_stats"}}</h3>
|
||||
<div class="overflow-x-auto">
|
||||
<table class="w-full text-left text-sm">
|
||||
<thead class="bg-gray-50 border-b border-gray-200">
|
||||
<tr>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600">{{index .Tr "analytics_col_article"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600 text-right">{{index .Tr "analytics_col_total_views"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600 text-right">{{index .Tr "analytics_col_human_views"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600 text-right">{{index .Tr "analytics_col_bot_views"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600 text-right">{{index .Tr "analytics_col_unique_ips"}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="divide-y divide-gray-100">
|
||||
{{range .ArticleStats}}
|
||||
<tr class="hover:bg-gray-50">
|
||||
<td class="px-4 py-3 text-gray-800">{{.Title}}</td>
|
||||
<td class="px-4 py-3 text-right font-medium">{{.ViewCount}}</td>
|
||||
<td class="px-4 py-3 text-right text-green-600">{{.HumanViews}}</td>
|
||||
<td class="px-4 py-3 text-right text-orange-600">{{.BotViews}}</td>
|
||||
<td class="px-4 py-3 text-right text-blue-600">{{.UniqueIPs}}</td>
|
||||
</tr>
|
||||
{{else}}
|
||||
<tr>
|
||||
<td colspan="5" class="px-4 py-8 text-center text-gray-500">{{index $.Tr "analytics_no_data"}}</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Filters -->
|
||||
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-6 mb-6">
|
||||
<h3 class="text-lg font-semibold text-gray-800 mb-4">{{index .Tr "analytics_filters"}}</h3>
|
||||
<form method="get" action="/admin/analytics/views" class="grid grid-cols-1 md:grid-cols-4 gap-4">
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "analytics_filter_article"}}</label>
|
||||
<input type="text" name="article_title" value="{{.Filters.ArticleTitle}}" placeholder="{{index .Tr "analytics_filter_article_placeholder"}}"
|
||||
class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "analytics_filter_ip"}}</label>
|
||||
<input type="text" name="ip" value="{{.Filters.IP}}" placeholder="{{index .Tr "analytics_filter_ip_placeholder"}}"
|
||||
class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "analytics_filter_show_bots"}}</label>
|
||||
<label class="flex items-center mt-2">
|
||||
<input type="checkbox" name="show_bots" value="1" {{if .Filters.ShowBots}}checked{{end}}
|
||||
class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500">
|
||||
<span class="ml-2 text-sm text-gray-700">{{index .Tr "analytics_include_bots"}}</span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="flex items-end">
|
||||
<button type="submit" class="w-full bg-blue-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-blue-700 transition-colors">
|
||||
{{index .Tr "analytics_apply_filters"}}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!-- View Records -->
|
||||
<div class="bg-white rounded-lg shadow-sm border border-gray-200 overflow-hidden">
|
||||
<div class="px-6 py-4 border-b border-gray-200">
|
||||
<h3 class="text-lg font-semibold text-gray-800">{{index .Tr "analytics_recent_views"}}</h3>
|
||||
</div>
|
||||
<div class="overflow-x-auto">
|
||||
<table class="w-full text-left text-sm">
|
||||
<thead class="bg-gray-50 border-b border-gray-200">
|
||||
<tr>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600">{{index .Tr "analytics_col_time"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600">{{index .Tr "analytics_col_article"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600">{{index .Tr "analytics_col_user"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600">{{index .Tr "analytics_col_ip"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600">{{index .Tr "analytics_col_user_agent"}}</th>
|
||||
<th class="px-4 py-3 font-semibold text-gray-600 text-center">{{index .Tr "analytics_col_is_bot"}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="divide-y divide-gray-100">
|
||||
{{range .Views}}
|
||||
<tr class="hover:bg-gray-50 {{if .IsBot}}bg-orange-50{{end}}">
|
||||
<td class="px-4 py-3 text-gray-600 whitespace-nowrap">{{.CreatedAt.Format "2006-01-02 15:04"}}</td>
|
||||
<td class="px-4 py-3 text-gray-800">
|
||||
{{if .Article.Title}}
|
||||
<a href="/article/{{.Article.Slug}}" target="_blank" class="text-blue-600 hover:text-blue-800">{{.Article.Title}}</a>
|
||||
{{else}}
|
||||
<span class="text-gray-400">{{index $.Tr "analytics_article_deleted"}}</span>
|
||||
{{end}}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-gray-700">
|
||||
{{if .User}}
|
||||
{{if .User.DisplayName}}{{.User.DisplayName}}{{else}}{{.User.Username}}{{end}}
|
||||
{{else}}
|
||||
<span class="text-gray-400">{{index $.Tr "analytics_anonymous"}}</span>
|
||||
{{end}}
|
||||
</td>
|
||||
<td class="px-4 py-3 text-gray-600 font-mono text-xs">{{.IP}}</td>
|
||||
<td class="px-4 py-3 text-gray-500 text-xs max-w-xs truncate" title="{{.UserAgent}}">{{.UserAgent}}</td>
|
||||
<td class="px-4 py-3 text-center">
|
||||
{{if .IsBot}}
|
||||
<span class="inline-flex items-center px-2 py-1 rounded text-xs font-medium bg-orange-100 text-orange-700">
|
||||
🤖 {{index $.Tr "analytics_bot"}}
|
||||
</span>
|
||||
{{else}}
|
||||
<span class="inline-flex items-center px-2 py-1 rounded text-xs font-medium bg-green-100 text-green-700">
|
||||
👤 {{index $.Tr "analytics_human"}}
|
||||
</span>
|
||||
{{end}}
|
||||
</td>
|
||||
</tr>
|
||||
{{else}}
|
||||
<tr>
|
||||
<td colspan="6" class="px-4 py-8 text-center text-gray-500">{{index .Tr "analytics_no_views"}}</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
{{if .Pagination.HasMore}}
|
||||
<div class="px-6 py-4 border-t border-gray-200 bg-gray-50">
|
||||
<div class="flex justify-between items-center">
|
||||
<p class="text-sm text-gray-600">
|
||||
{{index .Tr "analytics_showing"}} {{len .Views}} {{index .Tr "analytics_of"}} {{.Pagination.Total}}
|
||||
</p>
|
||||
<a href="?page={{.Pagination.NextPage}}{{if .Filters.ArticleTitle}}&article_title={{.Filters.ArticleTitle}}{{end}}{{if .Filters.IP}}&ip={{.Filters.IP}}{{end}}{{if .Filters.ShowBots}}&show_bots=1{{end}}"
|
||||
class="bg-blue-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-blue-700 transition-colors text-sm">
|
||||
{{index .Tr "analytics_load_more"}}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</section>
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
@@ -53,6 +53,15 @@
|
||||
placeholder="https://...">
|
||||
</div>
|
||||
|
||||
<!-- Tags -->
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "article_tags"}}</label>
|
||||
<input type="text" name="tags" value="{{.FormTags}}"
|
||||
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors"
|
||||
placeholder="{{index .Tr "article_tags_hint"}}">
|
||||
<p class="text-xs text-gray-400 mt-1">{{index .Tr "article_tags_hint"}}</p>
|
||||
</div>
|
||||
|
||||
<!-- Attachments -->
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "article_attachments"}}</label>
|
||||
@@ -77,6 +86,14 @@
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- Published At -->
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "article_published_at"}}</label>
|
||||
<input type="datetime-local" name="published_at" value="{{.FormPublishedAt}}"
|
||||
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors">
|
||||
<p class="text-xs text-gray-400 mt-1">{{index .Tr "article_published_at_hint"}}</p>
|
||||
</div>
|
||||
|
||||
<!-- IsTop -->
|
||||
<div class="flex items-center gap-2">
|
||||
<input type="checkbox" name="is_top" value="1" id="isTopCheckbox" {{if .FormIsTop}}checked{{end}}
|
||||
|
||||
@@ -63,6 +63,10 @@
|
||||
class="inline-flex items-center gap-2 bg-gray-200 text-gray-700 px-6 py-3 rounded-lg font-medium hover:bg-gray-300 transition-colors">
|
||||
{{index .Tr "settings_nav"}}
|
||||
</a>
|
||||
<a href="/admin/analytics/views"
|
||||
class="inline-flex items-center gap-2 bg-gray-200 text-gray-700 px-6 py-3 rounded-lg font-medium hover:bg-gray-300 transition-colors">
|
||||
{{index .Tr "analytics_views_title"}}
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
|
||||
<div class="flex gap-2 mb-8">
|
||||
<a href="/admin/settings/site" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_site_title"}}</a>
|
||||
<a href="/admin/settings/navlinks" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_navlinks_title"}}</a>
|
||||
<a href="/admin/settings/upload" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_upload_title"}}</a>
|
||||
<a href="/admin/settings/download" class="px-4 py-2 rounded-lg text-sm font-medium bg-blue-600 text-white">{{index .Tr "settings_download_title"}}</a>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,200 @@
|
||||
{{define "settings_navlinks"}}
|
||||
{{template "header" .}}
|
||||
<section class="max-w-3xl mx-auto px-4 py-12">
|
||||
<h2 class="text-3xl font-bold text-gray-900 mb-2">{{index .Tr "settings_navlinks_title"}}</h2>
|
||||
<p class="text-gray-500 mb-4">{{index .Tr "settings_navlinks_desc"}}</p>
|
||||
|
||||
<div class="flex gap-2 mb-8">
|
||||
<a href="/admin/settings/site" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_site_title"}}</a>
|
||||
<a href="/admin/settings/navlinks" class="px-4 py-2 rounded-lg text-sm font-medium bg-blue-600 text-white">{{index .Tr "settings_navlinks_title"}}</a>
|
||||
<a href="/admin/settings/upload" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_upload_title"}}</a>
|
||||
<a href="/admin/settings/download" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_download_title"}}</a>
|
||||
</div>
|
||||
|
||||
{{if .Success}}
|
||||
<div class="bg-green-50 border border-green-200 text-green-700 px-4 py-3 rounded-lg mb-6">{{.Success}}</div>
|
||||
{{end}}
|
||||
|
||||
<!-- Add New Link Form -->
|
||||
<form action="/admin/settings/navlinks" method="post" class="bg-white rounded-xl shadow-sm border border-gray-200 p-6 mb-6">
|
||||
<input type="hidden" name="action" value="add">
|
||||
<h3 class="text-lg font-semibold text-gray-800 mb-4">{{index .Tr "navlinks_add"}}</h3>
|
||||
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4 mb-4">
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "navlinks_title_zh"}}</label>
|
||||
<input type="text" name="title_zh" placeholder="首页" required
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2">
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "navlinks_title_en"}}</label>
|
||||
<input type="text" name="title_en" placeholder="Home" required
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "navlinks_url"}}</label>
|
||||
<input type="text" name="url" placeholder="/about" required
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2">
|
||||
<p class="text-xs text-gray-500 mt-1">{{index .Tr "navlinks_url_hint"}}</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4 mb-4">
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "navlinks_sort"}}</label>
|
||||
<input type="number" name="sort" value="0" min="0"
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2">
|
||||
</div>
|
||||
<div class="flex items-end gap-4">
|
||||
<label class="inline-flex items-center gap-2 cursor-pointer">
|
||||
<input type="checkbox" name="open_new" value="1" class="rounded border-gray-300">
|
||||
<span class="text-sm text-gray-700">{{index .Tr "navlinks_open_new"}}</span>
|
||||
</label>
|
||||
<label class="inline-flex items-center gap-2 cursor-pointer">
|
||||
<input type="checkbox" name="enabled" value="1" checked class="rounded border-gray-300">
|
||||
<span class="text-sm text-gray-700">{{index .Tr "navlinks_enabled"}}</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="bg-blue-600 text-white px-6 py-2 rounded-lg font-medium hover:bg-blue-700 transition-colors">
|
||||
{{index .Tr "navlinks_add"}}
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<!-- Existing Links List -->
|
||||
<div class="bg-white rounded-xl shadow-sm border border-gray-200 p-6">
|
||||
<h3 class="text-lg font-semibold text-gray-800 mb-4">{{index .Tr "navlinks_enabled"}}</h3>
|
||||
|
||||
{{if .NavLinks}}
|
||||
<div class="space-y-3">
|
||||
{{range .NavLinks}}
|
||||
<div class="border border-gray-200 rounded-lg p-4 hover:bg-gray-50 transition-colors" id="link-{{.ID}}">
|
||||
<div class="flex items-start justify-between gap-4">
|
||||
<div class="flex-1">
|
||||
<div class="flex items-center gap-2 mb-2">
|
||||
<span class="font-medium text-gray-900">{{if .TitleZh}}{{.TitleZh}}{{else}}{{.TitleEn}}{{end}}</span>
|
||||
{{if not .Enabled}}
|
||||
<span class="px-2 py-0.5 bg-gray-200 text-gray-600 text-xs rounded">{{index $.Tr "status_disabled"}}</span>
|
||||
{{end}}
|
||||
{{if .OpenNew}}
|
||||
<span class="px-2 py-0.5 bg-blue-100 text-blue-700 text-xs rounded">↗ {{index $.Tr "navlinks_open_new"}}</span>
|
||||
{{end}}
|
||||
</div>
|
||||
<div class="text-sm text-gray-600">
|
||||
<div><strong>ZH:</strong> {{.TitleZh}} | <strong>EN:</strong> {{.TitleEn}}</div>
|
||||
<div><strong>URL:</strong> <a href="{{.URL}}" target="_blank" class="text-blue-600 hover:underline">{{.URL}}</a></div>
|
||||
<div><strong>{{index $.Tr "navlinks_sort"}}:</strong> {{.Sort}}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-center gap-2">
|
||||
<!-- Toggle Button -->
|
||||
<form action="/admin/settings/navlinks" method="post" class="inline">
|
||||
<input type="hidden" name="action" value="toggle">
|
||||
<input type="hidden" name="id" value="{{.ID}}">
|
||||
<button type="submit" class="text-sm px-3 py-1.5 rounded-lg border {{if .Enabled}}bg-green-50 border-green-300 text-green-700 hover:bg-green-100{{else}}bg-gray-100 border-gray-300 text-gray-600 hover:bg-gray-200{{end}} transition-colors">
|
||||
{{if .Enabled}}✓{{else}}✗{{end}} {{index $.Tr "settings_toggle"}}
|
||||
</button>
|
||||
</form>
|
||||
<!-- Edit Button -->
|
||||
<button onclick="editLink({{.ID}}, '{{.TitleZh}}', '{{.TitleEn}}', '{{.URL}}', {{if .OpenNew}}true{{else}}false{{end}}, {{.Sort}})" class="text-sm px-3 py-1.5 bg-blue-50 border border-blue-300 text-blue-700 rounded-lg hover:bg-blue-100 transition-colors">
|
||||
{{index $.Tr "navlinks_edit"}}
|
||||
</button>
|
||||
<!-- Delete Button -->
|
||||
<form action="/admin/settings/navlinks" method="post" class="inline" onsubmit="return confirm('{{index $.Tr "navlinks_confirm_delete"}}')">
|
||||
<input type="hidden" name="action" value="delete">
|
||||
<input type="hidden" name="id" value="{{.ID}}">
|
||||
<button type="submit" class="text-sm px-3 py-1.5 bg-red-50 border border-red-300 text-red-700 rounded-lg hover:bg-red-100 transition-colors">
|
||||
{{index $.Tr "navlinks_delete"}}
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
{{else}}
|
||||
<p class="text-gray-500 text-center py-8">{{index .Tr "navlinks_no_links"}}</p>
|
||||
{{end}}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Edit Modal -->
|
||||
<div id="editModal" class="hidden fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
|
||||
<div class="bg-white rounded-xl shadow-xl max-w-2xl w-full mx-4 p-6">
|
||||
<h3 class="text-xl font-semibold text-gray-900 mb-4">{{index .Tr "navlinks_edit"}}</h3>
|
||||
<form action="/admin/settings/navlinks" method="post" id="editForm">
|
||||
<input type="hidden" name="action" value="edit">
|
||||
<input type="hidden" name="id" id="edit_id">
|
||||
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4 mb-4">
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "navlinks_title_zh"}}</label>
|
||||
<input type="text" name="title_zh" id="edit_title_zh" required
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2">
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "navlinks_title_en"}}</label>
|
||||
<input type="text" name="title_en" id="edit_title_en" required
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "navlinks_url"}}</label>
|
||||
<input type="text" name="url" id="edit_url" required
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2">
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4 mb-6">
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "navlinks_sort"}}</label>
|
||||
<input type="number" name="sort" id="edit_sort" min="0"
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2">
|
||||
</div>
|
||||
<div class="flex items-end">
|
||||
<label class="inline-flex items-center gap-2 cursor-pointer">
|
||||
<input type="checkbox" name="open_new" id="edit_open_new" value="1" class="rounded border-gray-300">
|
||||
<span class="text-sm text-gray-700">{{index .Tr "navlinks_open_new"}}</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex justify-end gap-3">
|
||||
<button type="button" onclick="closeEditModal()" class="px-4 py-2 bg-gray-200 text-gray-700 rounded-lg hover:bg-gray-300 transition-colors">
|
||||
{{index .Tr "navlinks_cancel"}}
|
||||
</button>
|
||||
<button type="submit" class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors">
|
||||
{{index .Tr "navlinks_save"}}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function editLink(id, titleZh, titleEn, url, openNew, sort) {
|
||||
document.getElementById('edit_id').value = id;
|
||||
document.getElementById('edit_title_zh').value = titleZh;
|
||||
document.getElementById('edit_title_en').value = titleEn;
|
||||
document.getElementById('edit_url').value = url;
|
||||
document.getElementById('edit_open_new').checked = openNew;
|
||||
document.getElementById('edit_sort').value = sort;
|
||||
document.getElementById('editModal').classList.remove('hidden');
|
||||
}
|
||||
|
||||
function closeEditModal() {
|
||||
document.getElementById('editModal').classList.add('hidden');
|
||||
}
|
||||
|
||||
// Close modal when clicking outside
|
||||
document.getElementById('editModal').addEventListener('click', function(e) {
|
||||
if (e.target === this) {
|
||||
closeEditModal();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
@@ -6,6 +6,7 @@
|
||||
|
||||
<div class="flex gap-2 mb-8">
|
||||
<a href="/admin/settings/site" class="px-4 py-2 rounded-lg text-sm font-medium bg-blue-600 text-white">{{index .Tr "settings_site_title"}}</a>
|
||||
<a href="/admin/settings/navlinks" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_navlinks_title"}}</a>
|
||||
<a href="/admin/settings/upload" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_upload_title"}}</a>
|
||||
<a href="/admin/settings/download" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_download_title"}}</a>
|
||||
</div>
|
||||
@@ -34,6 +35,29 @@
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<!-- Favicon -->
|
||||
<div>
|
||||
<label class="block text-sm font-semibold text-gray-700 mb-2">{{index .Tr "settings_favicon"}}</label>
|
||||
{{if .Site.Favicon}}
|
||||
<div class="flex items-center gap-2 mb-2">
|
||||
<span class="text-sm text-gray-600">{{index .Tr "settings_favicon_current"}}:</span>
|
||||
{{if .SiteFaviconIsURL}}
|
||||
<img src="{{.Site.Favicon}}" alt="favicon" class="h-8 w-8">
|
||||
{{else}}
|
||||
<img src="/uploads/logos/{{.Site.Favicon}}" alt="favicon" class="h-8 w-8">
|
||||
{{end}}
|
||||
</div>
|
||||
{{end}}
|
||||
<input type="text" name="favicon_url" placeholder="{{index .Tr "settings_favicon_url"}}"
|
||||
class="w-full border border-gray-300 rounded-lg px-3 py-2 mb-2" value="{{if .SiteFaviconIsURL}}{{.Site.Favicon}}{{end}}">
|
||||
<input type="file" name="favicon" accept="image/x-icon,image/png,image/svg+xml"
|
||||
class="block w-full text-sm text-gray-500 mb-2">
|
||||
<p class="text-xs text-gray-500 mb-2">{{index .Tr "settings_favicon_hint"}}</p>
|
||||
<label class="inline-flex items-center gap-2 text-sm text-gray-600">
|
||||
<input type="checkbox" name="favicon_clear" value="1"> {{index .Tr "settings_favicon_clear"}}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<!-- Title texts -->
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
|
||||
<div>
|
||||
@@ -104,6 +128,18 @@
|
||||
|
||||
<p class="text-xs text-gray-400">{{index .Tr "settings_leave_blank"}}</p>
|
||||
|
||||
<!-- Registration settings -->
|
||||
<div class="pt-4 border-t border-gray-200">
|
||||
<label class="flex items-center gap-3 cursor-pointer">
|
||||
<input type="checkbox" name="allow_registration" value="1" {{if .Site.AllowRegistration}}checked{{end}}
|
||||
class="w-5 h-5 rounded border-gray-300 text-blue-600 focus:ring-blue-500">
|
||||
<div>
|
||||
<span class="block text-sm font-semibold text-gray-700">{{index .Tr "settings_allow_registration"}}</span>
|
||||
<span class="block text-xs text-gray-500">{{index .Tr "settings_allow_registration_hint"}}</span>
|
||||
</div>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<button type="submit"
|
||||
class="bg-blue-600 text-white px-6 py-2 rounded-lg font-medium hover:bg-blue-700 transition-colors">
|
||||
{{index .Tr "settings_save"}}
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
|
||||
<div class="flex gap-2 mb-8">
|
||||
<a href="/admin/settings/site" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_site_title"}}</a>
|
||||
<a href="/admin/settings/navlinks" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_navlinks_title"}}</a>
|
||||
<a href="/admin/settings/upload" class="px-4 py-2 rounded-lg text-sm font-medium bg-blue-600 text-white">{{index .Tr "settings_upload_title"}}</a>
|
||||
<a href="/admin/settings/download" class="px-4 py-2 rounded-lg text-sm font-medium bg-gray-200 text-gray-700 hover:bg-gray-300 transition-colors">{{index .Tr "settings_download_title"}}</a>
|
||||
</div>
|
||||
|
||||
+114
-13
@@ -5,6 +5,14 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{.Title}} - {{index .Tr "site_title"}}</title>
|
||||
{{if .SiteFavicon}}
|
||||
{{if .SiteFaviconIsURL}}
|
||||
<link rel="icon" href="{{.SiteFavicon}}">
|
||||
{{else}}
|
||||
<link rel="icon" href="/uploads/logos/{{.SiteFavicon}}">
|
||||
{{end}}
|
||||
{{end}}
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/rss">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.6.2/cropper.min.css">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.6.2/cropper.min.js"></script>
|
||||
@@ -14,28 +22,43 @@
|
||||
<body class="bg-gray-50 min-h-screen flex flex-col">
|
||||
<!-- Navigation -->
|
||||
<nav class="bg-white shadow-sm border-b border-gray-200">
|
||||
<div class="max-w-5xl mx-auto px-4 py-3 flex items-center justify-between">
|
||||
<div class="max-w-5xl mx-auto px-4 py-2.5 flex items-center justify-between">
|
||||
<a href="/" class="text-xl font-bold text-gray-800 hover:text-blue-600 transition-colors flex items-center gap-2">
|
||||
{{if .SiteLogo}}
|
||||
{{if .SiteLogoIsURL}}
|
||||
<img src="{{.SiteLogo}}" alt="logo" class="h-8 w-auto">
|
||||
<img src="{{.SiteLogo}}" alt="logo" class="h-7 w-auto">
|
||||
{{else}}
|
||||
<img src="/uploads/logos/{{.SiteLogo}}" alt="logo" class="h-8 w-auto">
|
||||
<img src="/uploads/logos/{{.SiteLogo}}" alt="logo" class="h-7 w-auto">
|
||||
{{end}}
|
||||
{{end}}
|
||||
{{if .SiteLogoText}}{{.SiteLogoText}}{{else}}{{index .Tr "site_title"}}{{end}}
|
||||
</a>
|
||||
<div class="flex items-center gap-4">
|
||||
<a href="/" class="text-gray-600 hover:text-blue-600 transition-colors">{{index .Tr "home"}}</a>
|
||||
<a href="/" class="text-gray-600 hover:text-blue-600 transition-colors text-sm flex items-center gap-1.5">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"/>
|
||||
</svg>
|
||||
<span>{{index .Tr "home"}}</span>
|
||||
</a>
|
||||
{{range .NavLinks}}
|
||||
<a href="{{.URL}}" {{if .OpenNew}}target="_blank" rel="noopener noreferrer"{{end}} class="text-gray-600 hover:text-blue-600 transition-colors text-sm flex items-center gap-1.5">
|
||||
<span>{{.Title $.Lang}}</span>
|
||||
{{if .OpenNew}}
|
||||
<svg class="w-3 h-3" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
|
||||
</svg>
|
||||
{{end}}
|
||||
</a>
|
||||
{{end}}
|
||||
{{if .IsLoggedIn}}
|
||||
<!-- Avatar Dropdown (click to toggle) -->
|
||||
<div class="relative" id="avatarDropdown">
|
||||
<button type="button" id="avatarBtn" class="flex items-center gap-2 hover:opacity-80 transition-opacity cursor-pointer" onclick="toggleDropdown()">
|
||||
<div class="w-9 h-9 rounded-full overflow-hidden border-2 border-gray-300 hover:border-blue-500 transition-colors flex items-center justify-center bg-gray-200 text-gray-600 font-bold text-sm">
|
||||
<div class="w-8 h-8 rounded-full overflow-hidden border-2 border-gray-300 hover:border-blue-500 transition-colors flex items-center justify-center bg-gray-200 text-gray-600 font-bold text-sm">
|
||||
{{if .Avatar}}
|
||||
<img src="/uploads/avatars/{{.Avatar}}" alt="avatar" class="w-full h-full object-cover">
|
||||
{{else}}
|
||||
<svg class="w-5 h-5 text-gray-500 pointer-events-none" fill="currentColor" viewBox="0 0 24 24">
|
||||
<svg class="w-4 h-4 text-gray-500 pointer-events-none" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v1.2c0 .66.54 1.2 1.2 1.2h16.8c.66 0 1.2-.54 1.2-1.2v-1.2c0-3.2-6.4-4.8-9.6-4.8z"/>
|
||||
</svg>
|
||||
{{end}}
|
||||
@@ -64,12 +87,13 @@
|
||||
</div>
|
||||
</div>
|
||||
{{else}}
|
||||
<a href="/login" class="text-gray-600 hover:text-blue-600 transition-colors">{{index .Tr "login"}}</a>
|
||||
{{end}}
|
||||
<!-- Language Switcher -->
|
||||
<a href="?lang={{.SwitchLang}}" class="text-sm text-gray-400 hover:text-blue-600 transition-colors border border-gray-300 rounded px-2 py-1">
|
||||
{{index .Tr "lang_switch"}}
|
||||
<a href="/login" class="text-gray-600 hover:text-blue-600 transition-colors text-sm flex items-center gap-1.5">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1"/>
|
||||
</svg>
|
||||
<span>{{index .Tr "login"}}</span>
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
@@ -88,10 +112,49 @@
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="bg-white border-t border-gray-200 py-6 mt-auto">
|
||||
<div class="max-w-5xl mx-auto px-4 text-center text-gray-500 text-sm">
|
||||
<footer class="bg-white border-t border-gray-200 py-4 mt-auto">
|
||||
<div class="max-w-5xl mx-auto px-4">
|
||||
<!-- Footer Actions Row -->
|
||||
<div class="flex justify-center items-center gap-3 mb-2">
|
||||
<!-- RSS Subscribe Button -->
|
||||
<div class="relative inline-block">
|
||||
<button onclick="toggleRSSMenu()" class="flex items-center gap-2 px-3 py-1.5 bg-orange-500 hover:bg-orange-600 text-white rounded-lg transition-colors text-sm font-medium">
|
||||
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19 7.38 20 6.18 20 5 20 4 19 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 4.44A15.56 15.56 0 0 1 19.56 20h-2.83A12.73 12.73 0 0 0 4 7.27V4.44m0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93V10.1z"/>
|
||||
</svg>
|
||||
<span>{{if eq .Lang "zh"}}RSS 订阅{{else}}RSS Feed{{end}}</span>
|
||||
</button>
|
||||
<!-- RSS Dropdown Menu -->
|
||||
<div id="rssMenu" class="hidden absolute bottom-full left-1/2 transform -translate-x-1/2 mb-2 w-64 bg-white rounded-lg shadow-lg border border-gray-200 py-2 z-50">
|
||||
<a href="/rss" target="_blank" class="flex items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 transition-colors">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
|
||||
</svg>
|
||||
<span>{{if eq .Lang "zh"}}打开 RSS 链接{{else}}Open RSS Link{{end}}</span>
|
||||
</a>
|
||||
<button onclick="copyRSSLink()" class="w-full flex items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 transition-colors text-left">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/>
|
||||
</svg>
|
||||
<span id="copyText">{{if eq .Lang "zh"}}复制订阅链接{{else}}Copy Feed URL{{end}}</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Language Switcher -->
|
||||
<a href="?lang={{.SwitchLang}}" class="flex items-center gap-1.5 px-3 py-1.5 text-sm text-gray-600 hover:text-blue-600 hover:bg-gray-50 transition-colors border border-gray-300 rounded-lg">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5h12M9 3v2m1.048 9.5A18.022 18.022 0 016.412 9m6.088 9h7M11 21l5-10 5 10M12.751 5C11.783 10.77 8.07 15.61 3 18.129"/>
|
||||
</svg>
|
||||
<span>{{index .Tr "lang_switch"}}</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Footer Text -->
|
||||
<div class="text-center text-gray-500 text-xs">
|
||||
{{if .SiteFooterText}}{{.SiteFooterText}}{{else}}{{index .Tr "footer_text"}}{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script>
|
||||
function toggleDropdown() {
|
||||
@@ -106,6 +169,44 @@
|
||||
menu.classList.add('hidden');
|
||||
}
|
||||
});
|
||||
|
||||
// RSS Menu Functions
|
||||
function toggleRSSMenu() {
|
||||
var menu = document.getElementById('rssMenu');
|
||||
menu.classList.toggle('hidden');
|
||||
}
|
||||
|
||||
function copyRSSLink() {
|
||||
var rssURL = window.location.origin + '/rss';
|
||||
var copyText = document.getElementById('copyText');
|
||||
var originalText = copyText.textContent;
|
||||
var lang = '{{.Lang}}';
|
||||
|
||||
// Copy to clipboard
|
||||
navigator.clipboard.writeText(rssURL).then(function() {
|
||||
// Show success feedback
|
||||
copyText.textContent = lang === 'zh' ? '✓ 已复制!' : '✓ Copied!';
|
||||
copyText.parentElement.classList.add('text-green-600');
|
||||
|
||||
// Reset after 2 seconds
|
||||
setTimeout(function() {
|
||||
copyText.textContent = originalText;
|
||||
copyText.parentElement.classList.remove('text-green-600');
|
||||
}, 2000);
|
||||
}).catch(function(err) {
|
||||
console.error('Failed to copy:', err);
|
||||
copyText.textContent = lang === 'zh' ? '✗ 复制失败' : '✗ Copy failed';
|
||||
});
|
||||
}
|
||||
|
||||
// Close RSS menu when clicking outside
|
||||
document.addEventListener('click', function(e) {
|
||||
var rssButton = document.querySelector('[onclick="toggleRSSMenu()"]');
|
||||
var rssMenu = document.getElementById('rssMenu');
|
||||
if (rssButton && rssMenu && !rssButton.contains(e.target) && !rssMenu.contains(e.target)) {
|
||||
rssMenu.classList.add('hidden');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -28,7 +28,14 @@
|
||||
<img src="/uploads/avatars/{{.Article.Author.Avatar}}" alt="avatar" class="w-7 h-7 rounded-full object-cover">
|
||||
{{end}}
|
||||
<span class="font-medium text-gray-700">{{.AuthorName}}</span>
|
||||
{{if .PublishedAt}}<span>·</span><span>{{.PublishedAt}}</span>{{end}}
|
||||
{{if .PublishedAt}}
|
||||
<span>·</span>
|
||||
<span>{{index .Tr "article_col_published"}}: {{.PublishedAt}}</span>
|
||||
{{end}}
|
||||
{{if .UpdatedAt}}
|
||||
<span>·</span>
|
||||
<span>{{index .Tr "article_last_updated"}}: {{.UpdatedAt}}</span>
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
{{if .Article.Cover}}
|
||||
|
||||
+376
-29
@@ -1,45 +1,392 @@
|
||||
{{define "home"}}
|
||||
{{template "header" .}}
|
||||
<section class="max-w-5xl mx-auto px-4 py-20 text-center">
|
||||
<h1 class="text-5xl font-extrabold text-gray-900 mb-4">
|
||||
{{if .SiteHomeWelcome}}{{.SiteHomeWelcome}}{{else}}{{index .Tr "home_welcome"}}{{end}}
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600 mb-8 max-w-2xl mx-auto">
|
||||
{{if .SiteHomeSubtitle}}{{.SiteHomeSubtitle}}{{else}}{{index .Tr "home_subtitle"}}{{end}}
|
||||
</p>
|
||||
<!-- <div class="flex justify-center gap-4">
|
||||
<a href="/login" class="inline-block bg-blue-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-blue-700 transition-colors">
|
||||
{{index .Tr "home_sign_in"}}
|
||||
</a>
|
||||
<a href="/admin" class="inline-block bg-gray-200 text-gray-700 px-6 py-3 rounded-lg font-medium hover:bg-gray-300 transition-colors">
|
||||
{{index .Tr "home_to_dash"}}
|
||||
</a>
|
||||
</div> -->
|
||||
|
||||
<!-- Search Box -->
|
||||
<section class="max-w-5xl mx-auto px-4 py-6">
|
||||
<div class="flex justify-center">
|
||||
<form action="/search" method="get" class="w-full max-w-2xl">
|
||||
<div class="relative">
|
||||
<input type="text" name="q" placeholder="{{index .Tr "search_placeholder"}}"
|
||||
class="w-full px-4 py-3 pl-12 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors">
|
||||
<svg class="absolute left-4 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
|
||||
</svg>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="max-w-5xl mx-auto px-4 py-16">
|
||||
<h2 class="text-3xl font-bold text-gray-900 mb-8 text-center">{{index .Tr "home_latest"}}</h2>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||
{{range .Articles}}
|
||||
<a href="/article/{{.Slug}}"
|
||||
class="bg-white rounded-xl shadow-sm border border-gray-200 overflow-hidden hover:shadow-md transition-shadow flex flex-col">
|
||||
{{if .Cover}}
|
||||
<div class="aspect-video w-full overflow-hidden bg-gray-100">
|
||||
<img src="{{.Cover}}" alt="{{.Title}}" class="w-full h-full object-cover">
|
||||
<section class="max-w-5xl mx-auto px-4 py-20 text-center">
|
||||
<h1 class="text-5xl font-extrabold text-gray-900 mb-4 flex items-center justify-center gap-3">
|
||||
<svg class="w-12 h-12 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 20H5a2 2 0 01-2-2V6a2 2 0 012-2h10a2 2 0 012 2v1m2 13a2 2 0 01-2-2V7m2 13a2 2 0 002-2V9a2 2 0 00-2-2h-2m-4-3H9M7 16h6M7 8h6v4H7V8z"/>
|
||||
</svg>
|
||||
<span>{{if .SiteHomeWelcome}}{{.SiteHomeWelcome}}{{else}}{{index .Tr "home_welcome"}}{{end}}</span>
|
||||
</h1>
|
||||
<p class="text-xl text-gray-600 mb-8 max-w-2xl mx-auto flex items-center justify-center gap-2">
|
||||
<svg class="w-6 h-6 text-gray-500 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
|
||||
</svg>
|
||||
<span>{{if .SiteHomeSubtitle}}{{.SiteHomeSubtitle}}{{else}}{{index .Tr "home_subtitle"}}{{end}}</span>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section class="max-w-7xl mx-auto px-4 py-8">
|
||||
<div class="flex gap-8">
|
||||
<!-- Main content (articles) -->
|
||||
<div class="flex-1">
|
||||
{{if .FilterTag}}
|
||||
<div class="mb-6 flex items-center gap-2 text-sm">
|
||||
<span class="text-gray-600">{{index .Tr "tag_filter"}}:</span>
|
||||
<span class="px-3 py-1 bg-blue-100 text-blue-700 rounded-full">
|
||||
{{if eq .Lang "zh"}}{{.FilterTag.NameZh}}{{else}}{{.FilterTag.NameEn}}{{end}}
|
||||
</span>
|
||||
<a href="/" class="text-blue-600 hover:text-blue-800">{{index .Tr "tag_all"}}</a>
|
||||
</div>
|
||||
{{end}}
|
||||
<div class="p-6 flex flex-col flex-1">
|
||||
<h3 class="text-lg font-semibold text-gray-800 mb-2">{{.Title}}
|
||||
|
||||
<h2 class="text-3xl font-bold text-gray-900 mb-8 text-center">{{index .Tr "home_latest"}}</h2>
|
||||
|
||||
<!-- Articles Container -->
|
||||
<div id="articlesContainer" class="space-y-6">
|
||||
{{range .Articles}}
|
||||
<article class="article-card bg-white rounded-xl shadow-sm border border-gray-200 overflow-hidden hover:shadow-md transition-shadow" data-cover="{{.Cover}}">
|
||||
<a href="/article/{{.Slug}}" class="block article-link">
|
||||
<div class="article-content">
|
||||
<!-- Cover will be positioned by JS -->
|
||||
{{if .Cover}}
|
||||
<div class="article-cover">
|
||||
<img src="{{.Cover}}" alt="{{.Title}}" class="article-image" loading="lazy">
|
||||
</div>
|
||||
{{end}}
|
||||
|
||||
<div class="article-text p-6">
|
||||
<h3 class="text-xl font-semibold text-gray-800 mb-2">
|
||||
{{.Title}}
|
||||
{{if .IsTop}}<span class="align-middle text-xs bg-blue-100 text-blue-700 px-2 py-0.5 rounded ml-1">{{index $.Tr "article_is_top"}}</span>{{end}}
|
||||
</h3>
|
||||
{{if .Summary}}<p class="text-gray-500 text-sm line-clamp-2">{{.Summary}}</p>{{end}}
|
||||
<span class="mt-4 text-sm text-blue-600 font-medium">{{index $.Tr "home_read_more"}} →</span>
|
||||
{{if .Summary}}
|
||||
<p class="text-gray-500 text-sm line-clamp-3 mb-3">{{.Summary}}</p>
|
||||
{{end}}
|
||||
{{if .Tags}}
|
||||
<div class="flex items-center gap-2 flex-wrap mb-3">
|
||||
{{range .Tags}}
|
||||
<a href="/?tag={{.Slug}}" class="text-xs px-2 py-1 bg-gray-100 hover:bg-blue-100 text-gray-600 hover:text-blue-600 rounded transition-colors">
|
||||
{{if eq $.Lang "zh"}}{{.NameZh}}{{else}}{{.NameEn}}{{end}}
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
{{end}}
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="text-sm text-blue-600 font-medium">{{index $.Tr "home_read_more"}} →</span>
|
||||
<div class="flex items-center gap-4 text-sm text-gray-500">
|
||||
<span class="flex items-center gap-1">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"/>
|
||||
</svg>
|
||||
{{.ViewCount}}
|
||||
</span>
|
||||
<span class="flex items-center gap-1" data-article-id="{{.ID}}">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/>
|
||||
</svg>
|
||||
<span class="comment-count">{{index $.CommentCounts .ID}}</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</article>
|
||||
{{else}}
|
||||
<div class="col-span-full text-center text-gray-500 py-12">{{index .Tr "home_no_posts"}}</div>
|
||||
<div class="text-center text-gray-500 py-12">{{index .Tr "home_no_posts"}}</div>
|
||||
{{end}}
|
||||
</div>
|
||||
|
||||
<!-- Loading indicator -->
|
||||
<div id="loadingIndicator" class="hidden text-center py-8">
|
||||
<div class="inline-block animate-spin rounded-full h-8 w-8 border-b-2 border-blue-600"></div>
|
||||
<p class="text-gray-500 mt-2">{{if eq .Lang "zh"}}加载中...{{else}}Loading...{{end}}</p>
|
||||
</div>
|
||||
|
||||
<!-- No more articles message -->
|
||||
<div id="noMoreArticles" class="hidden text-center text-gray-500 py-8">
|
||||
{{if eq .Lang "zh"}}没有更多文章了{{else}}No more articles{{end}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Sidebar (tags) -->
|
||||
<aside class="w-72 flex-shrink-0 hidden lg:block">
|
||||
<div class="sticky top-6">
|
||||
<h3 class="text-lg font-bold text-gray-900 mb-4">{{index .Tr "tags_title"}}</h3>
|
||||
{{if .Tags}}
|
||||
<div class="flex flex-wrap gap-2">
|
||||
{{range .Tags}}
|
||||
<a href="/?tag={{.Slug}}"
|
||||
class="px-3 py-1 text-sm bg-gray-100 hover:bg-blue-100 text-gray-700 hover:text-blue-700 rounded-full transition-colors inline-flex items-center gap-1">
|
||||
<span>{{if eq $.Lang "zh"}}{{.NameZh}}{{else}}{{.NameEn}}{{end}}</span>
|
||||
<span class="text-xs text-gray-500">({{.Count}})</span>
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
{{else}}
|
||||
<p class="text-sm text-gray-500">{{if eq .Lang "zh"}}暂无标签{{else}}No tags yet{{end}}</p>
|
||||
{{end}}
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<style>
|
||||
/* Article card layouts */
|
||||
.article-card {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.article-link {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.article-content {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
/* Default: no cover or loading */
|
||||
.article-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* Horizontal layout (landscape image on top) */
|
||||
.article-card.layout-horizontal .article-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.article-card.layout-horizontal .article-cover {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
overflow: hidden;
|
||||
background: #f3f4f6;
|
||||
}
|
||||
|
||||
.article-card.layout-horizontal .article-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
/* Vertical layout (portrait/square image on left) */
|
||||
.article-card.layout-vertical .article-content {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.article-card.layout-vertical .article-cover {
|
||||
width: 280px;
|
||||
min-width: 280px;
|
||||
height: 200px;
|
||||
overflow: hidden;
|
||||
background: #f3f4f6;
|
||||
}
|
||||
|
||||
.article-card.layout-vertical .article-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.article-card.layout-vertical .article-text {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* Responsive adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.article-card.layout-vertical .article-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.article-card.layout-vertical .article-cover {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
aspect-ratio: 16 / 9;
|
||||
}
|
||||
}
|
||||
|
||||
/* Line clamp utility */
|
||||
.line-clamp-3 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 3;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
let currentPage = 1;
|
||||
let isLoading = false;
|
||||
let hasMore = true;
|
||||
|
||||
const container = document.getElementById('articlesContainer');
|
||||
const loadingIndicator = document.getElementById('loadingIndicator');
|
||||
const noMoreArticles = document.getElementById('noMoreArticles');
|
||||
|
||||
// Determine layout based on image aspect ratio
|
||||
function determineLayout(card) {
|
||||
const cover = card.getAttribute('data-cover');
|
||||
if (!cover) {
|
||||
return; // No cover, default column layout
|
||||
}
|
||||
|
||||
const img = card.querySelector('.article-image');
|
||||
if (!img) return;
|
||||
|
||||
// Wait for image to load
|
||||
if (!img.complete) {
|
||||
img.addEventListener('load', function() {
|
||||
applyLayout(card, img);
|
||||
});
|
||||
} else {
|
||||
applyLayout(card, img);
|
||||
}
|
||||
}
|
||||
|
||||
function applyLayout(card, img) {
|
||||
const width = img.naturalWidth;
|
||||
const height = img.naturalHeight;
|
||||
const aspectRatio = width / height;
|
||||
|
||||
// If aspect ratio > 1.2, use horizontal (landscape)
|
||||
// Otherwise use vertical (portrait/square on left)
|
||||
if (aspectRatio > 1.2) {
|
||||
card.classList.add('layout-horizontal');
|
||||
} else {
|
||||
card.classList.add('layout-vertical');
|
||||
}
|
||||
}
|
||||
|
||||
// Initialize existing articles
|
||||
document.querySelectorAll('.article-card').forEach(determineLayout);
|
||||
|
||||
// Load more articles
|
||||
function loadMoreArticles() {
|
||||
if (isLoading || !hasMore) return;
|
||||
|
||||
isLoading = true;
|
||||
loadingIndicator.classList.remove('hidden');
|
||||
|
||||
fetch('/api/articles?page=' + (currentPage + 1))
|
||||
.then(response => response.json())
|
||||
.then(data => {
|
||||
if (data.articles && data.articles.length > 0) {
|
||||
currentPage++;
|
||||
data.articles.forEach(article => {
|
||||
const articleHTML = createArticleCard(article);
|
||||
container.insertAdjacentHTML('beforeend', articleHTML);
|
||||
});
|
||||
|
||||
// Determine layout for new cards
|
||||
const newCards = container.querySelectorAll('.article-card:not(.layout-horizontal):not(.layout-vertical)');
|
||||
newCards.forEach(determineLayout);
|
||||
}
|
||||
|
||||
hasMore = data.hasMore;
|
||||
|
||||
if (!hasMore) {
|
||||
noMoreArticles.classList.remove('hidden');
|
||||
}
|
||||
|
||||
isLoading = false;
|
||||
loadingIndicator.classList.add('hidden');
|
||||
})
|
||||
.catch(error => {
|
||||
console.error('Error loading articles:', error);
|
||||
isLoading = false;
|
||||
loadingIndicator.classList.add('hidden');
|
||||
});
|
||||
}
|
||||
|
||||
// Create article card HTML
|
||||
function createArticleCard(article) {
|
||||
const topBadge = article.is_top ?
|
||||
'<span class="align-middle text-xs bg-blue-100 text-blue-700 px-2 py-0.5 rounded ml-1">{{index .Tr "article_is_top"}}</span>' : '';
|
||||
|
||||
const coverHTML = article.cover ?
|
||||
`<div class="article-cover">
|
||||
<img src="${article.cover}" alt="${escapeHtml(article.title)}" class="article-image" loading="lazy">
|
||||
</div>` : '';
|
||||
|
||||
const summaryHTML = article.summary ?
|
||||
`<p class="text-gray-500 text-sm line-clamp-3 mb-3">${escapeHtml(article.summary)}</p>` : '';
|
||||
|
||||
const commentCount = article.comment_count || 0;
|
||||
const viewCount = article.view_count || 0;
|
||||
|
||||
return `
|
||||
<article class="article-card bg-white rounded-xl shadow-sm border border-gray-200 overflow-hidden hover:shadow-md transition-shadow" data-cover="${article.cover || ''}">
|
||||
<a href="/article/${article.slug}" class="block article-link">
|
||||
<div class="article-content">
|
||||
${coverHTML}
|
||||
<div class="article-text p-6">
|
||||
<h3 class="text-xl font-semibold text-gray-800 mb-2">
|
||||
${escapeHtml(article.title)}
|
||||
${topBadge}
|
||||
</h3>
|
||||
${summaryHTML}
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="text-sm text-blue-600 font-medium">{{index .Tr "home_read_more"}} →</span>
|
||||
<div class="flex items-center gap-4 text-sm text-gray-500">
|
||||
<span class="flex items-center gap-1">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"/>
|
||||
</svg>
|
||||
${viewCount}
|
||||
</span>
|
||||
<span class="flex items-center gap-1">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/>
|
||||
</svg>
|
||||
${commentCount}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</article>
|
||||
`;
|
||||
}
|
||||
|
||||
function escapeHtml(text) {
|
||||
const div = document.createElement('div');
|
||||
div.textContent = text;
|
||||
return div.innerHTML;
|
||||
}
|
||||
|
||||
// Infinite scroll
|
||||
function checkScroll() {
|
||||
const scrollPosition = window.innerHeight + window.scrollY;
|
||||
const threshold = document.documentElement.scrollHeight - 500;
|
||||
|
||||
if (scrollPosition >= threshold && !isLoading && hasMore) {
|
||||
loadMoreArticles();
|
||||
}
|
||||
}
|
||||
|
||||
// Throttle scroll event
|
||||
let scrollTimeout;
|
||||
window.addEventListener('scroll', function() {
|
||||
if (scrollTimeout) {
|
||||
clearTimeout(scrollTimeout);
|
||||
}
|
||||
scrollTimeout = setTimeout(checkScroll, 100);
|
||||
});
|
||||
|
||||
// Initial check in case content is short
|
||||
setTimeout(checkScroll, 500);
|
||||
})();
|
||||
</script>
|
||||
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
|
||||
@@ -40,6 +40,13 @@
|
||||
{{index .Tr "login_submit"}}
|
||||
</button>
|
||||
</form>
|
||||
|
||||
{{if .AllowRegistration}}
|
||||
<div class="mt-4 text-center">
|
||||
<span class="text-sm text-gray-600">{{index .Tr "login_no_account"}}</span>
|
||||
<a href="/register" class="text-sm text-blue-600 hover:text-blue-700 font-medium ml-1">{{index .Tr "login_register_link"}}</a>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</section>
|
||||
{{template "footer" .}}
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
{{define "register"}}
|
||||
{{template "header" .}}
|
||||
<section class="max-w-md mx-auto px-4 py-20">
|
||||
<div class="bg-white rounded-xl shadow-sm border border-gray-200 p-8">
|
||||
<h2 class="text-2xl font-bold text-gray-900 mb-6 text-center">{{index .Tr "register_title"}}</h2>
|
||||
|
||||
{{if .Error}}
|
||||
<div class="bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded-lg mb-6 text-sm">
|
||||
{{.Error}}
|
||||
</div>
|
||||
{{end}}
|
||||
|
||||
<form action="/register" method="post" class="space-y-5">
|
||||
<div>
|
||||
<label for="username" class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "register_username"}}</label>
|
||||
<input
|
||||
type="text"
|
||||
id="username"
|
||||
name="username"
|
||||
required
|
||||
minlength="3"
|
||||
maxlength="32"
|
||||
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors"
|
||||
placeholder="{{index .Tr "register_ph_username"}}"
|
||||
>
|
||||
<p class="text-xs text-gray-500 mt-1">{{index .Tr "register_username_hint"}}</p>
|
||||
</div>
|
||||
<div>
|
||||
<label for="display_name" class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "register_display_name"}}</label>
|
||||
<input
|
||||
type="text"
|
||||
id="display_name"
|
||||
name="display_name"
|
||||
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors"
|
||||
placeholder="{{index .Tr "register_ph_display_name"}}"
|
||||
>
|
||||
<p class="text-xs text-gray-500 mt-1">{{index .Tr "register_display_name_hint"}}</p>
|
||||
</div>
|
||||
<div>
|
||||
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "register_email"}}</label>
|
||||
<input
|
||||
type="email"
|
||||
id="email"
|
||||
name="email"
|
||||
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors"
|
||||
placeholder="{{index .Tr "register_ph_email"}}"
|
||||
>
|
||||
<p class="text-xs text-gray-500 mt-1">{{index .Tr "register_email_hint"}}</p>
|
||||
</div>
|
||||
<div>
|
||||
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "register_password"}}</label>
|
||||
<input
|
||||
type="password"
|
||||
id="password"
|
||||
name="password"
|
||||
required
|
||||
minlength="6"
|
||||
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors"
|
||||
placeholder="{{index .Tr "register_ph_password"}}"
|
||||
>
|
||||
<p class="text-xs text-gray-500 mt-1">{{index .Tr "register_password_hint"}}</p>
|
||||
</div>
|
||||
<div>
|
||||
<label for="confirm_password" class="block text-sm font-medium text-gray-700 mb-1">{{index .Tr "register_confirm_password"}}</label>
|
||||
<input
|
||||
type="password"
|
||||
id="confirm_password"
|
||||
name="confirm_password"
|
||||
required
|
||||
minlength="6"
|
||||
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors"
|
||||
placeholder="{{index .Tr "register_ph_confirm_password"}}"
|
||||
>
|
||||
</div>
|
||||
<button
|
||||
type="submit"
|
||||
class="w-full bg-blue-600 text-white py-2 px-4 rounded-lg font-medium hover:bg-blue-700 transition-colors cursor-pointer"
|
||||
>
|
||||
{{index .Tr "register_submit"}}
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<div class="mt-4 text-center">
|
||||
<span class="text-sm text-gray-600">{{index .Tr "register_have_account"}}</span>
|
||||
<a href="/login" class="text-sm text-blue-600 hover:text-blue-700 font-medium ml-1">{{index .Tr "register_login_link"}}</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
@@ -0,0 +1,241 @@
|
||||
{{define "search"}}
|
||||
{{template "header" .}}
|
||||
|
||||
<!-- Search Box -->
|
||||
<section class="max-w-5xl mx-auto px-4 py-6">
|
||||
<div class="flex justify-center">
|
||||
<form action="/search" method="get" class="w-full max-w-2xl">
|
||||
<div class="relative">
|
||||
<input type="text" name="q" value="{{.SearchKeyword}}" placeholder="{{index .Tr "search_placeholder"}}"
|
||||
class="w-full px-4 py-3 pl-12 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors">
|
||||
<svg class="absolute left-4 top-1/2 transform -translate-y-1/2 w-5 h-5 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
|
||||
</svg>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="max-w-7xl mx-auto px-4 py-8">
|
||||
<div class="flex gap-8">
|
||||
<!-- Main content (search results) -->
|
||||
<div class="flex-1">
|
||||
{{if .SearchKeyword}}
|
||||
<h2 class="text-2xl font-bold text-gray-900 mb-2">{{index .Tr "search_results_for"}}</h2>
|
||||
<p class="text-gray-600 mb-8">"{{.SearchKeyword}}" - {{if eq .Lang "zh"}}找到{{else}}Found{{end}} {{len .Articles}} {{if eq .Lang "zh"}}篇文章{{else}}articles{{end}}</p>
|
||||
{{else}}
|
||||
<h2 class="text-2xl font-bold text-gray-900 mb-8">{{index .Tr "search_title"}}</h2>
|
||||
{{end}}
|
||||
|
||||
<!-- Articles Container -->
|
||||
<div class="space-y-6">
|
||||
{{range .Articles}}
|
||||
<article class="article-card bg-white rounded-xl shadow-sm border border-gray-200 overflow-hidden hover:shadow-md transition-shadow" data-cover="{{.Cover}}">
|
||||
<a href="/article/{{.Slug}}" class="block article-link">
|
||||
<div class="article-content">
|
||||
<!-- Cover will be positioned by JS -->
|
||||
{{if .Cover}}
|
||||
<div class="article-cover">
|
||||
<img src="{{.Cover}}" alt="{{.Title}}" class="article-image" loading="lazy">
|
||||
</div>
|
||||
{{end}}
|
||||
|
||||
<div class="article-text p-6">
|
||||
<h3 class="text-xl font-semibold text-gray-800 mb-2">
|
||||
{{.Title}}
|
||||
{{if .IsTop}}<span class="align-middle text-xs bg-blue-100 text-blue-700 px-2 py-0.5 rounded ml-1">{{index $.Tr "article_is_top"}}</span>{{end}}
|
||||
</h3>
|
||||
{{if .Summary}}
|
||||
<p class="text-gray-500 text-sm line-clamp-3 mb-3">{{.Summary}}</p>
|
||||
{{end}}
|
||||
{{if .Tags}}
|
||||
<div class="flex items-center gap-2 flex-wrap mb-3">
|
||||
{{range .Tags}}
|
||||
<a href="/?tag={{.Slug}}" class="text-xs px-2 py-1 bg-gray-100 hover:bg-blue-100 text-gray-600 hover:text-blue-600 rounded transition-colors">
|
||||
{{if eq $.Lang "zh"}}{{.NameZh}}{{else}}{{.NameEn}}{{end}}
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
{{end}}
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="text-sm text-blue-600 font-medium">{{index $.Tr "home_read_more"}} →</span>
|
||||
<div class="flex items-center gap-4 text-sm text-gray-500">
|
||||
<span class="flex items-center gap-1">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"/>
|
||||
</svg>
|
||||
{{.ViewCount}}
|
||||
</span>
|
||||
<span class="flex items-center gap-1">
|
||||
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/>
|
||||
</svg>
|
||||
<span class="comment-count">{{index $.CommentCounts .ID}}</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</article>
|
||||
{{else}}
|
||||
<div class="text-center text-gray-500 py-12">
|
||||
{{if .SearchKeyword}}
|
||||
{{index .Tr "search_no_results"}}
|
||||
{{else}}
|
||||
{{index .Tr "home_no_posts"}}
|
||||
{{end}}
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Sidebar (tags) -->
|
||||
<aside class="w-72 flex-shrink-0 hidden lg:block">
|
||||
<div class="sticky top-6">
|
||||
<h3 class="text-lg font-bold text-gray-900 mb-4">{{index .Tr "tags_title"}}</h3>
|
||||
{{if .Tags}}
|
||||
<div class="flex flex-wrap gap-2">
|
||||
{{range .Tags}}
|
||||
<a href="/?tag={{.Slug}}"
|
||||
class="px-3 py-1 text-sm bg-gray-100 hover:bg-blue-100 text-gray-700 hover:text-blue-700 rounded-full transition-colors inline-flex items-center gap-1">
|
||||
<span>{{if eq $.Lang "zh"}}{{.NameZh}}{{else}}{{.NameEn}}{{end}}</span>
|
||||
<span class="text-xs text-gray-500">({{.Count}})</span>
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
{{else}}
|
||||
<p class="text-sm text-gray-500">{{if eq .Lang "zh"}}暂无标签{{else}}No tags yet{{end}}</p>
|
||||
{{end}}
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<style>
|
||||
/* Article card layouts */
|
||||
.article-card {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.article-link {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.article-content {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
/* Default: no cover or loading */
|
||||
.article-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* Horizontal layout (landscape image on top) */
|
||||
.article-card.layout-horizontal .article-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.article-card.layout-horizontal .article-cover {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
overflow: hidden;
|
||||
background: #f3f4f6;
|
||||
}
|
||||
|
||||
.article-card.layout-horizontal .article-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
/* Vertical layout (portrait/square image on left) */
|
||||
.article-card.layout-vertical .article-content {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.article-card.layout-vertical .article-cover {
|
||||
width: 280px;
|
||||
min-width: 280px;
|
||||
height: 200px;
|
||||
overflow: hidden;
|
||||
background: #f3f4f6;
|
||||
}
|
||||
|
||||
.article-card.layout-vertical .article-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.article-card.layout-vertical .article-text {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* Responsive adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.article-card.layout-vertical .article-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.article-card.layout-vertical .article-cover {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
aspect-ratio: 16 / 9;
|
||||
}
|
||||
}
|
||||
|
||||
/* Line clamp utility */
|
||||
.line-clamp-3 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 3;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
// Determine layout based on image aspect ratio
|
||||
function determineLayout(card) {
|
||||
const cover = card.getAttribute('data-cover');
|
||||
if (!cover) {
|
||||
return; // No cover, default column layout
|
||||
}
|
||||
|
||||
const img = card.querySelector('.article-image');
|
||||
if (!img) return;
|
||||
|
||||
// Wait for image to load
|
||||
if (!img.complete) {
|
||||
img.addEventListener('load', function() {
|
||||
applyLayout(card, img);
|
||||
});
|
||||
} else {
|
||||
applyLayout(card, img);
|
||||
}
|
||||
}
|
||||
|
||||
function applyLayout(card, img) {
|
||||
const width = img.naturalWidth;
|
||||
const height = img.naturalHeight;
|
||||
const aspectRatio = width / height;
|
||||
|
||||
// If aspect ratio > 1.2, use horizontal (landscape)
|
||||
// Otherwise use vertical (portrait/square on left)
|
||||
if (aspectRatio > 1.2) {
|
||||
card.classList.add('layout-horizontal');
|
||||
} else {
|
||||
card.classList.add('layout-vertical');
|
||||
}
|
||||
}
|
||||
|
||||
// Initialize existing articles
|
||||
document.querySelectorAll('.article-card').forEach(determineLayout);
|
||||
})();
|
||||
</script>
|
||||
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
@@ -48,6 +48,13 @@
|
||||
<p class="mt-1 text-sm text-gray-500">{{index .Tr "article_cover_help"}}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-2">{{index .Tr "article_published_at"}}</label>
|
||||
<input type="datetime-local" name="published_at" value="{{.FormPublishedAt}}"
|
||||
class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
||||
<p class="mt-1 text-sm text-gray-500">{{index .Tr "article_published_at_hint"}}</p>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700 mb-2">{{index .Tr "article_field_status"}}</label>
|
||||
|
||||
@@ -1,88 +0,0 @@
|
||||
# 权限边界修复验证
|
||||
|
||||
## 修复内容
|
||||
|
||||
### 问题
|
||||
普通用户(author角色)能够访问和修改平台设置,存在严重的权限漏洞。
|
||||
|
||||
### 修复的路由组
|
||||
|
||||
1. **平台设置路由** (`/admin/settings/*`)
|
||||
- 修复前: `middleware.AuthRequired()` - 任何登录用户都可访问
|
||||
- 修复后: `middleware.AuthRequired(), middleware.AdminRequired(db)` - 仅管理员可访问
|
||||
- 影响路由:
|
||||
- GET/POST `/admin/settings/site` - 站点设置
|
||||
- GET/POST `/admin/settings/upload` - 上传设置
|
||||
- GET/POST `/admin/settings/download` - 下载设置
|
||||
- GET/POST `/admin/settings/comments` - 评论设置
|
||||
|
||||
2. **评论管理路由** (`/admin/comments/*`)
|
||||
- 修复前: 在 admin 组下,仅 `AuthRequired()`
|
||||
- 修复后: 独立路由组,使用 `AuthRequired(), AdminRequired(db)`
|
||||
- 影响路由:
|
||||
- GET `/admin/comments` - 评论列表
|
||||
- POST `/admin/comments/:id/approve` - 批准评论
|
||||
- POST `/admin/comments/:id/reject` - 拒绝评论
|
||||
- POST `/admin/comments/:id/delete` - 删除评论
|
||||
|
||||
## 权限矩阵
|
||||
|
||||
| 路由组 | 功能 | 登录要求 | 角色要求 | 说明 |
|
||||
|--------|------|----------|----------|------|
|
||||
| `/admin` | 仪表板 | ✓ | - | 所有登录用户可访问 |
|
||||
| `/admin/articles` | 文章管理 | ✓ | - | 允许作者管理自己的文章 |
|
||||
| `/admin/articles/attachments` | 附件管理 | ✓ | - | 作者上传文章附件 |
|
||||
| `/admin/comments` | 评论管理 | ✓ | admin | ✅ 仅管理员 |
|
||||
| `/admin/users` | 用户管理 | ✓ | admin | ✅ 仅管理员 |
|
||||
| `/admin/settings` | 平台设置 | ✓ | admin | ✅ 仅管理员 |
|
||||
| `/profile` | 个人资料 | ✓ | - | 所有登录用户 |
|
||||
|
||||
## 验证步骤
|
||||
|
||||
### 1. 使用管理员账户测试
|
||||
```bash
|
||||
# 登录管理员账户
|
||||
curl -X POST http://localhost:3000/login \
|
||||
-d "username=admin&password=admin123"
|
||||
|
||||
# 应该能访问设置页面
|
||||
curl http://localhost:3000/admin/settings/site
|
||||
|
||||
# 应该能访问评论管理
|
||||
curl http://localhost:3000/admin/comments
|
||||
```
|
||||
|
||||
### 2. 使用普通用户账户测试
|
||||
```bash
|
||||
# 登录普通用户
|
||||
curl -X POST http://localhost:3000/login \
|
||||
-d "username=author&password=password"
|
||||
|
||||
# 应该被重定向到 /admin(403效果)
|
||||
curl -L http://localhost:3000/admin/settings/site
|
||||
|
||||
# 应该被重定向到 /admin(403效果)
|
||||
curl -L http://localhost:3000/admin/comments
|
||||
```
|
||||
|
||||
### 3. 预期行为
|
||||
- **管理员**: 可以访问所有 `/admin/*` 路由
|
||||
- **普通用户(author)**:
|
||||
- ✓ 可以访问 `/admin` 仪表板
|
||||
- ✓ 可以管理文章 (`/admin/articles/*`)
|
||||
- ✗ **不能**访问平台设置 (`/admin/settings/*`)
|
||||
- ✗ **不能**访问评论管理 (`/admin/comments/*`)
|
||||
- ✗ **不能**访问用户管理 (`/admin/users/*`)
|
||||
|
||||
## 安全建议
|
||||
|
||||
### 已修复
|
||||
- ✅ 平台设置访问控制
|
||||
- ✅ 评论管理访问控制
|
||||
- ✅ 用户管理访问控制
|
||||
|
||||
### 未来改进建议
|
||||
1. **细粒度文章权限**: 作者只能编辑/删除自己的文章
|
||||
2. **审计日志**: 记录敏感操作(设置修改、用户管理)
|
||||
3. **会话超时**: 考虑缩短敏感操作的会话时间
|
||||
4. **CSRF保护**: 为所有POST请求添加CSRF token
|
||||
Reference in New Issue
Block a user