Initial commit: Gitea Project Management System
Features: - Complete project management system with Epic/Story/Task hierarchy - Vue.js 3 + Element Plus frontend with kanban board - Go backend with Gin framework and GORM - OAuth2 integration with Gitea - Docker containerization with MySQL - RESTful API for project, task, and user management - JWT authentication and authorization - Responsive web interface with dashboard
This commit is contained in:
9
.dockerignore
Normal file
9
.dockerignore
Normal file
@@ -0,0 +1,9 @@
|
||||
.git
|
||||
.gitignore
|
||||
README.md
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
docker-compose.yml
|
||||
.DS_Store
|
||||
bin/
|
||||
*.log
|
33
.gitignore
vendored
Normal file
33
.gitignore
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# Go
|
||||
go.sum
|
||||
vendor/
|
||||
|
||||
# Docker
|
||||
docker-compose.override.yml
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# Database
|
||||
*.db
|
||||
*.sqlite3
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Build
|
||||
dist/
|
||||
build/
|
||||
|
||||
# Config (if contains sensitive data)
|
||||
# config/config.yaml
|
||||
|
||||
# Dependencies
|
||||
node_modules/
|
43
Dockerfile
Normal file
43
Dockerfile
Normal file
@@ -0,0 +1,43 @@
|
||||
FROM golang:1.21-alpine AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# 配置中国镜像源
|
||||
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
||||
|
||||
# 安装构建依赖
|
||||
RUN apk add --no-cache git
|
||||
|
||||
# 配置 Go 模块代理为国内镜像
|
||||
ENV GOPROXY=https://goproxy.cn,direct
|
||||
ENV GOSUMDB=sum.golang.google.cn
|
||||
|
||||
# 复制源码
|
||||
COPY . .
|
||||
|
||||
# 初始化模块并下载依赖
|
||||
RUN go mod tidy
|
||||
|
||||
# 构建应用
|
||||
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o giteapm cmd/main.go
|
||||
|
||||
# 使用最小镜像
|
||||
FROM alpine:latest
|
||||
|
||||
# 配置中国镜像源
|
||||
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
||||
|
||||
RUN apk --no-cache add ca-certificates
|
||||
|
||||
WORKDIR /root/
|
||||
|
||||
# 从构建阶段复制二进制文件
|
||||
COPY --from=builder /app/giteapm .
|
||||
COPY --from=builder /app/config ./config
|
||||
COPY --from=builder /app/web ./web
|
||||
|
||||
# 暴露端口
|
||||
EXPOSE 8080
|
||||
|
||||
# 运行应用
|
||||
CMD ["./giteapm"]
|
78
Makefile
Normal file
78
Makefile
Normal file
@@ -0,0 +1,78 @@
|
||||
.PHONY: build run dev test clean install docker
|
||||
|
||||
# 项目信息
|
||||
PROJECT_NAME := giteapm
|
||||
BINARY_NAME := giteapm
|
||||
VERSION := $(shell git describe --tags --always --dirty)
|
||||
BUILD_TIME := $(shell date +%Y-%m-%d\ %H:%M:%S)
|
||||
GO_VERSION := $(shell go version | cut -d ' ' -f 3)
|
||||
|
||||
# 构建参数
|
||||
LDFLAGS := -X 'main.Version=$(VERSION)' \
|
||||
-X 'main.BuildTime=$(BUILD_TIME)' \
|
||||
-X 'main.GoVersion=$(GO_VERSION)'
|
||||
|
||||
# 默认目标
|
||||
all: build
|
||||
|
||||
# 安装依赖
|
||||
install:
|
||||
go mod download
|
||||
go mod tidy
|
||||
|
||||
# 构建
|
||||
build:
|
||||
go build -ldflags "$(LDFLAGS)" -o bin/$(BINARY_NAME) cmd/main.go
|
||||
|
||||
# 运行
|
||||
run: build
|
||||
./bin/$(BINARY_NAME) -config config/config.yaml
|
||||
|
||||
# 开发模式运行
|
||||
dev:
|
||||
go run cmd/main.go -config config/config.yaml
|
||||
|
||||
# 运行测试
|
||||
test:
|
||||
go test -v ./...
|
||||
|
||||
# 代码检查
|
||||
lint:
|
||||
golangci-lint run
|
||||
|
||||
# 清理
|
||||
clean:
|
||||
rm -rf bin/
|
||||
go clean
|
||||
|
||||
# 数据库迁移
|
||||
migrate-up:
|
||||
mysql -u root -p < schema.sql
|
||||
|
||||
# Docker 构建
|
||||
docker-build:
|
||||
docker build -t $(PROJECT_NAME):$(VERSION) .
|
||||
docker tag $(PROJECT_NAME):$(VERSION) $(PROJECT_NAME):latest
|
||||
|
||||
# Docker 运行
|
||||
docker-run:
|
||||
docker-compose up -d
|
||||
|
||||
# Docker 停止
|
||||
docker-stop:
|
||||
docker-compose down
|
||||
|
||||
# 帮助
|
||||
help:
|
||||
@echo "可用命令:"
|
||||
@echo " install - 安装依赖"
|
||||
@echo " build - 构建应用"
|
||||
@echo " run - 运行应用"
|
||||
@echo " dev - 开发模式运行"
|
||||
@echo " test - 运行测试"
|
||||
@echo " lint - 代码检查"
|
||||
@echo " clean - 清理构建文件"
|
||||
@echo " migrate-up - 数据库迁移"
|
||||
@echo " docker-build - Docker 构建"
|
||||
@echo " docker-run - Docker 运行"
|
||||
@echo " docker-stop - Docker 停止"
|
272
README.md
Normal file
272
README.md
Normal file
@@ -0,0 +1,272 @@
|
||||
# Gitea Project Management
|
||||
|
||||
一个与 Gitea 深度集成的项目管理系统,支持需求管理、任务追踪、迭代规划和研发协作。
|
||||
|
||||
## 功能特性
|
||||
|
||||
### 核心功能
|
||||
- **需求管理**: 支持 Epic/Story/Task 三级需求分解
|
||||
- **项目管理**: 项目创建、成员管理、权限控制
|
||||
- **任务看板**: 可视化任务状态管理,支持拖拽操作
|
||||
- **迭代规划**: Sprint 管理、燃尽图、速度跟踪
|
||||
- **时间跟踪**: 工时记录和统计分析
|
||||
|
||||
### Gitea 集成
|
||||
- **OAuth 登录**: 使用 Gitea 账号直接登录
|
||||
- **仓库关联**: 任务与 Git 分支、提交、PR 自动关联
|
||||
- **Webhook 支持**: 监听 Gitea 事件自动更新任务状态
|
||||
- **权限同步**: 复用 Gitea 的用户和组织权限体系
|
||||
|
||||
### 协作功能
|
||||
- **评论系统**: 任务讨论和进度更新
|
||||
- **标签管理**: 自定义标签分类管理
|
||||
- **通知提醒**: 任务状态变更通知
|
||||
- **权限控制**: 细粒度的项目和功能权限
|
||||
|
||||
## 技术架构
|
||||
|
||||
### 后端技术栈
|
||||
- **Go 1.21+**: 主要开发语言
|
||||
- **Gin**: Web 框架
|
||||
- **GORM**: ORM 数据库操作
|
||||
- **MySQL**: 主数据库
|
||||
- **JWT**: 身份认证
|
||||
- **OAuth2**: Gitea 集成认证
|
||||
|
||||
### 前端技术栈
|
||||
- **Vue 3**: 前端框架
|
||||
- **Element Plus**: UI 组件库
|
||||
- **Axios**: HTTP 客户端
|
||||
|
||||
### 部署架构
|
||||
- **Docker**: 容器化部署
|
||||
- **Docker Compose**: 本地开发环境
|
||||
- **MySQL**: 数据持久化
|
||||
|
||||
## 快速开始
|
||||
|
||||
### 环境要求
|
||||
- Go 1.21+
|
||||
- MySQL 5.7+
|
||||
- Node.js 16+ (如需修改前端)
|
||||
- Docker & Docker Compose (可选)
|
||||
|
||||
### 配置 Gitea OAuth
|
||||
|
||||
1. 在 Gitea 中创建 OAuth 应用:
|
||||
- 进入 Gitea 管理后台 → 应用 → OAuth2 应用
|
||||
- 创建新应用,设置回调 URL: `http://localhost:8080/api/v1/auth/callback`
|
||||
- 记录 Client ID 和 Client Secret
|
||||
|
||||
2. 修改配置文件 `config/config.yaml`:
|
||||
```yaml
|
||||
gitea:
|
||||
base_url: "http://your-gitea-url"
|
||||
client_id: "your-client-id"
|
||||
client_secret: "your-client-secret"
|
||||
redirect_url: "http://localhost:8080/api/v1/auth/callback"
|
||||
```
|
||||
|
||||
### 使用 Docker Compose 部署
|
||||
|
||||
```bash
|
||||
# 克隆项目
|
||||
git clone <project-url>
|
||||
cd giteapm
|
||||
|
||||
# 修改配置文件
|
||||
cp config/config.yaml.example config/config.yaml
|
||||
# 编辑 config/config.yaml 设置 Gitea 连接信息
|
||||
|
||||
# 启动服务
|
||||
docker-compose up -d
|
||||
|
||||
# 查看日志
|
||||
docker-compose logs -f giteapm
|
||||
```
|
||||
|
||||
### 手动部署
|
||||
|
||||
```bash
|
||||
# 1. 安装依赖
|
||||
make install
|
||||
|
||||
# 2. 创建数据库
|
||||
mysql -u root -p -e "CREATE DATABASE giteapm CHARACTER SET utf8mb4;"
|
||||
|
||||
# 3. 导入数据库结构
|
||||
mysql -u root -p giteapm < schema.sql
|
||||
|
||||
# 4. 修改配置文件
|
||||
cp config/config.yaml.example config/config.yaml
|
||||
# 编辑数据库连接和 Gitea 配置
|
||||
|
||||
# 5. 构建并运行
|
||||
make build
|
||||
make run
|
||||
|
||||
# 或者直接运行开发模式
|
||||
make dev
|
||||
```
|
||||
|
||||
### 访问应用
|
||||
|
||||
打开浏览器访问: http://localhost:8080
|
||||
|
||||
点击"使用 Gitea 登录"按钮,会跳转到 Gitea 进行 OAuth 认证。
|
||||
|
||||
## 数据库设计
|
||||
|
||||
### 核心实体关系
|
||||
|
||||
```
|
||||
projects (项目)
|
||||
├── epics (史诗需求)
|
||||
│ └── stories (用户故事)
|
||||
│ └── tasks (任务)
|
||||
├── sprints (迭代)
|
||||
├── project_members (项目成员)
|
||||
└── webhook_configs (Webhook配置)
|
||||
|
||||
tasks (任务)
|
||||
├── gitea_relations (Git关联)
|
||||
├── time_logs (工时记录)
|
||||
├── comments (评论)
|
||||
└── entity_tags (标签)
|
||||
```
|
||||
|
||||
### 主要数据表
|
||||
|
||||
- `users`: 用户信息(与 Gitea 用户同步)
|
||||
- `projects`: 项目信息
|
||||
- `epics`: 大需求/史诗
|
||||
- `stories`: 用户故事
|
||||
- `tasks`: 具体任务
|
||||
- `gitea_relations`: 任务与 Git 对象的关联关系
|
||||
- `sprints`: 迭代/冲刺
|
||||
- `time_logs`: 工时记录
|
||||
- `comments`: 评论系统
|
||||
- `tags` & `entity_tags`: 标签系统
|
||||
|
||||
## API 文档
|
||||
|
||||
### 认证接口
|
||||
|
||||
- `GET /api/v1/auth/login` - 获取 Gitea OAuth 登录链接
|
||||
- `GET /api/v1/auth/callback` - OAuth 回调处理
|
||||
- `POST /api/v1/auth/logout` - 退出登录
|
||||
|
||||
### 项目管理
|
||||
|
||||
- `GET /api/v1/projects` - 获取项目列表
|
||||
- `POST /api/v1/projects` - 创建项目
|
||||
- `GET /api/v1/projects/:id` - 获取项目详情
|
||||
- `PUT /api/v1/projects/:id` - 更新项目
|
||||
- `DELETE /api/v1/projects/:id` - 删除项目
|
||||
|
||||
### 任务管理
|
||||
|
||||
- `GET /api/v1/tasks` - 获取任务列表
|
||||
- `POST /api/v1/tasks` - 创建任务
|
||||
- `GET /api/v1/tasks/:id` - 获取任务详情
|
||||
- `PUT /api/v1/tasks/:id` - 更新任务
|
||||
- `POST /api/v1/tasks/:id/time-logs` - 记录工时
|
||||
- `POST /api/v1/tasks/:id/gitea-relations` - 关联 Git 对象
|
||||
|
||||
详细 API 文档请参考: [API.md](docs/API.md)
|
||||
|
||||
## 开发指南
|
||||
|
||||
### 项目结构
|
||||
|
||||
```
|
||||
giteapm/
|
||||
├── cmd/ # 应用入口
|
||||
├── config/ # 配置文件
|
||||
├── internal/ # 内部代码
|
||||
│ ├── api/ # API 路由和处理器
|
||||
│ ├── models/ # 数据模型
|
||||
│ ├── services/ # 业务逻辑
|
||||
│ └── middleware/ # 中间件
|
||||
├── web/ # 前端资源
|
||||
│ ├── static/ # 静态文件
|
||||
│ └── templates/ # 模板文件
|
||||
├── docs/ # 文档
|
||||
├── schema.sql # 数据库结构
|
||||
├── docker-compose.yml # Docker 配置
|
||||
└── Makefile # 构建脚本
|
||||
```
|
||||
|
||||
### 添加新功能
|
||||
|
||||
1. **添加数据模型**: 在 `internal/models/` 中定义数据结构
|
||||
2. **实现业务逻辑**: 在 `internal/services/` 中实现业务逻辑
|
||||
3. **添加 API 接口**: 在 `internal/api/handlers/` 中添加 HTTP 处理器
|
||||
4. **更新路由**: 在 `internal/api/router.go` 中注册路由
|
||||
5. **更新前端**: 修改 `web/templates/index.html` 添加 UI 功能
|
||||
|
||||
### 代码规范
|
||||
|
||||
- 使用 `gofmt` 格式化代码
|
||||
- 遵循 Go 官方代码规范
|
||||
- API 返回统一的 JSON 格式
|
||||
- 数据库操作使用事务确保一致性
|
||||
- 添加适当的日志记录
|
||||
|
||||
## 部署建议
|
||||
|
||||
### 生产环境部署
|
||||
|
||||
1. **数据库优化**:
|
||||
- 使用独立的 MySQL 服务器
|
||||
- 配置数据库连接池
|
||||
- 定期备份数据
|
||||
|
||||
2. **安全配置**:
|
||||
- 使用 HTTPS
|
||||
- 配置防火墙规则
|
||||
- 定期更新依赖版本
|
||||
|
||||
3. **性能优化**:
|
||||
- 启用 Redis 缓存
|
||||
- 配置 CDN 加速静态资源
|
||||
- 使用负载均衡
|
||||
|
||||
4. **监控告警**:
|
||||
- 配置日志收集
|
||||
- 设置应用监控
|
||||
- 配置告警通知
|
||||
|
||||
## 故障排除
|
||||
|
||||
### 常见问题
|
||||
|
||||
1. **OAuth 认证失败**:
|
||||
- 检查 Gitea OAuth 应用配置
|
||||
- 确认回调 URL 正确
|
||||
- 检查网络连通性
|
||||
|
||||
2. **数据库连接失败**:
|
||||
- 检查数据库服务状态
|
||||
- 验证连接配置
|
||||
- 确认数据库权限
|
||||
|
||||
3. **Webhook 不工作**:
|
||||
- 检查 Gitea Webhook 配置
|
||||
- 验证网络可达性
|
||||
- 查看应用日志
|
||||
|
||||
## 贡献指南
|
||||
|
||||
1. Fork 项目
|
||||
2. 创建功能分支
|
||||
3. 提交代码更改
|
||||
4. 创建 Pull Request
|
||||
|
||||
## 许可证
|
||||
|
||||
MIT License
|
||||
|
||||
## 联系我们
|
||||
|
||||
如有问题或建议,请提交 Issue 或联系项目维护者。
|
66
cmd/main.go
Normal file
66
cmd/main.go
Normal file
@@ -0,0 +1,66 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"giteapm/config"
|
||||
"giteapm/internal/api"
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-contrib/cors"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func main() {
|
||||
var configPath string
|
||||
flag.StringVar(&configPath, "config", "config/config.yaml", "配置文件路径")
|
||||
flag.Parse()
|
||||
|
||||
cfg, err := config.Load(configPath)
|
||||
if err != nil {
|
||||
log.Fatalf("加载配置失败: %v", err)
|
||||
}
|
||||
|
||||
db, err := models.InitDB(cfg.Database)
|
||||
if err != nil {
|
||||
log.Fatalf("数据库初始化失败: %v", err)
|
||||
}
|
||||
|
||||
if cfg.Server.Mode == "release" {
|
||||
gin.SetMode(gin.ReleaseMode)
|
||||
}
|
||||
|
||||
router := gin.Default()
|
||||
|
||||
router.Use(cors.New(cors.Config{
|
||||
AllowOrigins: cfg.CORS.AllowOrigins,
|
||||
AllowMethods: cfg.CORS.AllowMethods,
|
||||
AllowHeaders: cfg.CORS.AllowHeaders,
|
||||
AllowCredentials: cfg.CORS.AllowCredentials,
|
||||
}))
|
||||
|
||||
router.Static("/static", "web/static")
|
||||
|
||||
router.GET("/", func(c *gin.Context) {
|
||||
log.Printf("访问首页")
|
||||
c.File("web/templates/index.html")
|
||||
})
|
||||
|
||||
// 添加测试路由来验证OAuth配置
|
||||
router.GET("/test-oauth", func(c *gin.Context) {
|
||||
authURL := fmt.Sprintf("http://218.84.152.14:65001/login/oauth/authorize?client_id=%s&redirect_uri=%s&response_type=code&scope=read:user&state=test-state",
|
||||
cfg.Gitea.ClientID,
|
||||
"http://localhost:8080/api/v1/auth/callback")
|
||||
c.Redirect(302, authURL)
|
||||
})
|
||||
|
||||
api.SetupRoutes(router, db, cfg)
|
||||
|
||||
addr := fmt.Sprintf("%s:%d", cfg.Server.Host, cfg.Server.Port)
|
||||
log.Printf("服务启动在 %s", addr)
|
||||
if err := router.Run(addr); err != nil {
|
||||
log.Fatalf("服务启动失败: %v", err)
|
||||
}
|
||||
}
|
102
config/config.go
Normal file
102
config/config.go
Normal file
@@ -0,0 +1,102 @@
|
||||
package config
|
||||
|
||||
import (
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
Server ServerConfig `mapstructure:"server"`
|
||||
Database DatabaseConfig `mapstructure:"database"`
|
||||
Gitea GiteaConfig `mapstructure:"gitea"`
|
||||
JWT JWTConfig `mapstructure:"jwt"`
|
||||
CORS CORSConfig `mapstructure:"cors"`
|
||||
}
|
||||
|
||||
type ServerConfig struct {
|
||||
Host string `mapstructure:"host"`
|
||||
Port int `mapstructure:"port"`
|
||||
Mode string `mapstructure:"mode"`
|
||||
}
|
||||
|
||||
type DatabaseConfig struct {
|
||||
Driver string `mapstructure:"driver"`
|
||||
Host string `mapstructure:"host"`
|
||||
Port int `mapstructure:"port"`
|
||||
Database string `mapstructure:"database"`
|
||||
Username string `mapstructure:"username"`
|
||||
Password string `mapstructure:"password"`
|
||||
Charset string `mapstructure:"charset"`
|
||||
}
|
||||
|
||||
type GiteaConfig struct {
|
||||
BaseURL string `mapstructure:"base_url"`
|
||||
ClientID string `mapstructure:"client_id"`
|
||||
ClientSecret string `mapstructure:"client_secret"`
|
||||
RedirectURL string `mapstructure:"redirect_url"`
|
||||
WebhookSecret string `mapstructure:"webhook_secret"`
|
||||
}
|
||||
|
||||
type JWTConfig struct {
|
||||
Secret string `mapstructure:"secret"`
|
||||
ExpireHour int `mapstructure:"expire_hour"`
|
||||
}
|
||||
|
||||
type CORSConfig struct {
|
||||
AllowOrigins []string `mapstructure:"allow_origins"`
|
||||
AllowMethods []string `mapstructure:"allow_methods"`
|
||||
AllowHeaders []string `mapstructure:"allow_headers"`
|
||||
AllowCredentials bool `mapstructure:"allow_credentials"`
|
||||
}
|
||||
|
||||
func Load(configPath string) (*Config, error) {
|
||||
viper.SetConfigFile(configPath)
|
||||
viper.SetConfigType("yaml")
|
||||
|
||||
// 启用环境变量
|
||||
viper.AutomaticEnv()
|
||||
viper.SetEnvPrefix("") // 不使用前缀
|
||||
|
||||
viper.SetDefault("server.host", "localhost")
|
||||
viper.SetDefault("server.port", 8080)
|
||||
viper.SetDefault("server.mode", "debug")
|
||||
|
||||
viper.SetDefault("database.driver", "mysql")
|
||||
viper.SetDefault("database.host", "localhost")
|
||||
viper.SetDefault("database.port", 3306)
|
||||
viper.SetDefault("database.charset", "utf8mb4")
|
||||
|
||||
viper.SetDefault("jwt.expire_hour", 24)
|
||||
|
||||
viper.SetDefault("cors.allow_origins", []string{"*"})
|
||||
viper.SetDefault("cors.allow_methods", []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"})
|
||||
viper.SetDefault("cors.allow_headers", []string{"*"})
|
||||
viper.SetDefault("cors.allow_credentials", true)
|
||||
|
||||
if err := viper.ReadInConfig(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
var config Config
|
||||
if err := viper.Unmarshal(&config); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// 覆盖数据库配置(如果环境变量存在)
|
||||
if host := viper.GetString("DB_HOST"); host != "" {
|
||||
config.Database.Host = host
|
||||
}
|
||||
if port := viper.GetInt("DB_PORT"); port != 0 {
|
||||
config.Database.Port = port
|
||||
}
|
||||
if user := viper.GetString("DB_USER"); user != "" {
|
||||
config.Database.Username = user
|
||||
}
|
||||
if password := viper.GetString("DB_PASSWORD"); password != "" {
|
||||
config.Database.Password = password
|
||||
}
|
||||
if database := viper.GetString("DB_NAME"); database != "" {
|
||||
config.Database.Database = database
|
||||
}
|
||||
|
||||
return &config, nil
|
||||
}
|
30
config/config.yaml
Normal file
30
config/config.yaml
Normal file
@@ -0,0 +1,30 @@
|
||||
server:
|
||||
host: "0.0.0.0"
|
||||
port: 8080
|
||||
mode: "debug"
|
||||
|
||||
database:
|
||||
driver: "mysql"
|
||||
host: "localhost"
|
||||
port: 3306
|
||||
database: "giteapm"
|
||||
username: "root"
|
||||
password: "password"
|
||||
charset: "utf8mb4"
|
||||
|
||||
gitea:
|
||||
base_url: "http://218.84.152.14:65001"
|
||||
client_id: "0671c92d-ae8b-4a5f-9fa9-0c17d971be01"
|
||||
client_secret: "gto_cdmdo4xp4tysa6oyhzpfk3kymeywbkkkybeplob2oxyw7h3no7pq"
|
||||
redirect_url: "http://hu.s7.tunnelfrp.com/api/v1/auth/callback"
|
||||
webhook_secret: "your-webhook-secret"
|
||||
|
||||
jwt:
|
||||
secret: "your-jwt-secret-key"
|
||||
expire_hour: 168 # 7 days
|
||||
|
||||
cors:
|
||||
allow_origins: ["http://218.84.152.14:65001", "http://localhost:8080","http://hu.s7.tunnelfrp.com"]
|
||||
allow_methods: ["GET", "POST", "PUT", "DELETE", "OPTIONS"]
|
||||
allow_headers: ["*"]
|
||||
allow_credentials: true
|
42
docker-compose.yml
Normal file
42
docker-compose.yml
Normal file
@@ -0,0 +1,42 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
mysql:
|
||||
image: mysql:8.0
|
||||
container_name: giteapm_mysql
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: password
|
||||
MYSQL_DATABASE: giteapm
|
||||
MYSQL_USER: giteapm
|
||||
MYSQL_PASSWORD: giteapm_password
|
||||
ports:
|
||||
- "3306:3306"
|
||||
volumes:
|
||||
- mysql_data:/var/lib/mysql
|
||||
- ./schema.sql:/docker-entrypoint-initdb.d/schema.sql
|
||||
command: --default-authentication-plugin=mysql_native_password
|
||||
healthcheck:
|
||||
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
|
||||
timeout: 20s
|
||||
retries: 10
|
||||
|
||||
giteapm:
|
||||
build: .
|
||||
container_name: giteapm_app
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
mysql:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
- DB_HOST=mysql
|
||||
- DB_PORT=3306
|
||||
- DB_USER=root
|
||||
- DB_PASSWORD=password
|
||||
- DB_NAME=giteapm
|
||||
volumes:
|
||||
- ./config/config.yaml:/root/config/config.yaml
|
||||
command: ["./giteapm", "-config", "config/config.yaml"]
|
||||
|
||||
volumes:
|
||||
mysql_data:
|
14
go.mod
Normal file
14
go.mod
Normal file
@@ -0,0 +1,14 @@
|
||||
module giteapm
|
||||
|
||||
go 1.21
|
||||
|
||||
require (
|
||||
github.com/gin-gonic/gin v1.9.1
|
||||
github.com/go-sql-driver/mysql v1.7.1
|
||||
github.com/golang-jwt/jwt/v5 v5.0.0
|
||||
github.com/spf13/viper v1.16.0
|
||||
gorm.io/driver/mysql v1.5.1
|
||||
gorm.io/gorm v1.25.4
|
||||
github.com/gin-contrib/cors v1.4.0
|
||||
golang.org/x/oauth2 v0.12.0
|
||||
)
|
159
internal/api/handlers/auth.go
Normal file
159
internal/api/handlers/auth.go
Normal file
@@ -0,0 +1,159 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
"giteapm/internal/middleware"
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/golang-jwt/jwt/v5"
|
||||
"golang.org/x/oauth2"
|
||||
)
|
||||
|
||||
type GiteaUser struct {
|
||||
ID int `json:"id"`
|
||||
Login string `json:"login"`
|
||||
FullName string `json:"full_name"`
|
||||
Email string `json:"email"`
|
||||
AvatarURL string `json:"avatar_url"`
|
||||
}
|
||||
|
||||
func (h *Handlers) GiteaLogin(c *gin.Context) {
|
||||
config := &oauth2.Config{
|
||||
ClientID: h.Cfg.Gitea.ClientID,
|
||||
ClientSecret: h.Cfg.Gitea.ClientSecret,
|
||||
RedirectURL: h.Cfg.Gitea.RedirectURL,
|
||||
Scopes: []string{"read:user"},
|
||||
Endpoint: oauth2.Endpoint{
|
||||
AuthURL: h.Cfg.Gitea.BaseURL + "/login/oauth/authorize",
|
||||
TokenURL: h.Cfg.Gitea.BaseURL + "/login/oauth/access_token",
|
||||
},
|
||||
}
|
||||
|
||||
state := "random-state-string"
|
||||
url := config.AuthCodeURL(state, oauth2.AccessTypeOffline)
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{
|
||||
"auth_url": url,
|
||||
}))
|
||||
}
|
||||
|
||||
func (h *Handlers) GiteaCallback(c *gin.Context) {
|
||||
// 记录所有查询参数用于调试
|
||||
fmt.Printf("OAuth回调收到的所有参数: %v\n", c.Request.URL.Query())
|
||||
|
||||
code := c.Query("code")
|
||||
state := c.Query("state")
|
||||
errorParam := c.Query("error")
|
||||
|
||||
fmt.Printf("OAuth回调 - code: %s, state: %s, error: %s\n", code, state, errorParam)
|
||||
|
||||
if errorParam != "" {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, fmt.Sprintf("OAuth授权失败: %s", errorParam)))
|
||||
return
|
||||
}
|
||||
|
||||
if code == "" {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "缺少授权码"))
|
||||
return
|
||||
}
|
||||
|
||||
config := &oauth2.Config{
|
||||
ClientID: h.Cfg.Gitea.ClientID,
|
||||
ClientSecret: h.Cfg.Gitea.ClientSecret,
|
||||
RedirectURL: h.Cfg.Gitea.RedirectURL,
|
||||
Scopes: []string{"read:user"},
|
||||
Endpoint: oauth2.Endpoint{
|
||||
AuthURL: h.Cfg.Gitea.BaseURL + "/login/oauth/authorize",
|
||||
TokenURL: h.Cfg.Gitea.BaseURL + "/login/oauth/access_token",
|
||||
},
|
||||
}
|
||||
|
||||
token, err := config.Exchange(c.Request.Context(), code)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "授权码交换失败"))
|
||||
return
|
||||
}
|
||||
|
||||
client := config.Client(c.Request.Context(), token)
|
||||
resp, err := client.Get(h.Cfg.Gitea.BaseURL + "/api/v1/user")
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取用户信息失败"))
|
||||
return
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
body, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "读取用户信息失败"))
|
||||
return
|
||||
}
|
||||
|
||||
var giteaUser GiteaUser
|
||||
if err := json.Unmarshal(body, &giteaUser); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "解析用户信息失败"))
|
||||
return
|
||||
}
|
||||
|
||||
user, err := models.GetUserByGiteaID(uint(giteaUser.ID))
|
||||
if err != nil {
|
||||
user = &models.User{
|
||||
GiteaUserID: func() *uint { id := uint(giteaUser.ID); return &id }(),
|
||||
Username: giteaUser.Login,
|
||||
Email: giteaUser.Email,
|
||||
FullName: giteaUser.FullName,
|
||||
AvatarURL: giteaUser.AvatarURL,
|
||||
Role: "developer",
|
||||
}
|
||||
if err := models.CreateUser(user); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "创建用户失败"))
|
||||
return
|
||||
}
|
||||
} else {
|
||||
user.Username = giteaUser.Login
|
||||
user.Email = giteaUser.Email
|
||||
user.FullName = giteaUser.FullName
|
||||
user.AvatarURL = giteaUser.AvatarURL
|
||||
if err := models.UpdateUser(user); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "更新用户失败"))
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
jwtToken, err := h.generateJWT(user)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "生成JWT失败"))
|
||||
return
|
||||
}
|
||||
|
||||
// 重定向到前端页面,并通过URL参数传递token
|
||||
redirectURL := fmt.Sprintf("/?token=%s", jwtToken)
|
||||
c.Redirect(http.StatusFound, redirectURL)
|
||||
}
|
||||
|
||||
func (h *Handlers) Logout(c *gin.Context) {
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{
|
||||
"message": "登出成功",
|
||||
}))
|
||||
}
|
||||
|
||||
func (h *Handlers) generateJWT(user *models.User) (string, error) {
|
||||
claims := &middleware.Claims{
|
||||
UserID: user.ID,
|
||||
Username: user.Username,
|
||||
Role: user.Role,
|
||||
RegisteredClaims: jwt.RegisteredClaims{
|
||||
ExpiresAt: jwt.NewNumericDate(time.Now().Add(time.Duration(h.Cfg.JWT.ExpireHour) * time.Hour)),
|
||||
IssuedAt: jwt.NewNumericDate(time.Now()),
|
||||
Subject: fmt.Sprintf("%d", user.ID),
|
||||
},
|
||||
}
|
||||
|
||||
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
||||
return token.SignedString([]byte(h.Cfg.JWT.Secret))
|
||||
}
|
40
internal/api/handlers/comments.go
Normal file
40
internal/api/handlers/comments.go
Normal file
@@ -0,0 +1,40 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func (h *Handlers) GetComments(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) CreateComment(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateComment(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) DeleteComment(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) ListTags(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) CreateTag(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateTag(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) DeleteTag(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
59
internal/api/handlers/epics.go
Normal file
59
internal/api/handlers/epics.go
Normal file
@@ -0,0 +1,59 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func (h *Handlers) ListEpics(c *gin.Context) {
|
||||
page, _ := strconv.Atoi(c.DefaultQuery("page", "1"))
|
||||
limit, _ := strconv.Atoi(c.DefaultQuery("limit", "20"))
|
||||
offset := (page - 1) * limit
|
||||
|
||||
filters := make(map[string]interface{})
|
||||
if projectID := c.Query("project_id"); projectID != "" {
|
||||
if id, err := strconv.ParseUint(projectID, 10, 32); err == nil {
|
||||
filters["project_id"] = uint(id)
|
||||
}
|
||||
}
|
||||
|
||||
epics, total, err := models.ListEpics(offset, limit, filters)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取Epic列表失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, PaginatedSuccessResponse(epics, total, page, limit))
|
||||
}
|
||||
|
||||
func (h *Handlers) CreateEpic(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetEpic(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的Epic ID"))
|
||||
return
|
||||
}
|
||||
|
||||
epic, err := models.GetEpicByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "Epic不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(epic))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateEpic(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) DeleteEpic(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
60
internal/api/handlers/handlers.go
Normal file
60
internal/api/handlers/handlers.go
Normal file
@@ -0,0 +1,60 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"giteapm/config"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Handlers struct {
|
||||
DB *gorm.DB
|
||||
Cfg *config.Config
|
||||
}
|
||||
|
||||
func NewHandlers(db *gorm.DB, cfg *config.Config) *Handlers {
|
||||
return &Handlers{
|
||||
DB: db,
|
||||
Cfg: cfg,
|
||||
}
|
||||
}
|
||||
|
||||
type Response struct {
|
||||
Code int `json:"code"`
|
||||
Message string `json:"message"`
|
||||
Data interface{} `json:"data,omitempty"`
|
||||
}
|
||||
|
||||
type PaginatedResponse struct {
|
||||
Code int `json:"code"`
|
||||
Message string `json:"message"`
|
||||
Data interface{} `json:"data"`
|
||||
Total int64 `json:"total"`
|
||||
Page int `json:"page"`
|
||||
Limit int `json:"limit"`
|
||||
}
|
||||
|
||||
func SuccessResponse(data interface{}) Response {
|
||||
return Response{
|
||||
Code: 200,
|
||||
Message: "success",
|
||||
Data: data,
|
||||
}
|
||||
}
|
||||
|
||||
func ErrorResponse(code int, message string) Response {
|
||||
return Response{
|
||||
Code: code,
|
||||
Message: message,
|
||||
}
|
||||
}
|
||||
|
||||
func PaginatedSuccessResponse(data interface{}, total int64, page, limit int) PaginatedResponse {
|
||||
return PaginatedResponse{
|
||||
Code: 200,
|
||||
Message: "success",
|
||||
Data: data,
|
||||
Total: total,
|
||||
Page: page,
|
||||
Limit: limit,
|
||||
}
|
||||
}
|
244
internal/api/handlers/projects.go
Normal file
244
internal/api/handlers/projects.go
Normal file
@@ -0,0 +1,244 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"giteapm/internal/middleware"
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
type CreateProjectRequest struct {
|
||||
Name string `json:"name" binding:"required"`
|
||||
Description string `json:"description"`
|
||||
GiteaOrg string `json:"gitea_org"`
|
||||
Priority string `json:"priority"`
|
||||
StartDate *time.Time `json:"start_date"`
|
||||
EndDate *time.Time `json:"end_date"`
|
||||
}
|
||||
|
||||
type AddMemberRequest struct {
|
||||
UserID uint `json:"user_id" binding:"required"`
|
||||
Role string `json:"role" binding:"required"`
|
||||
}
|
||||
|
||||
func (h *Handlers) ListProjects(c *gin.Context) {
|
||||
page, _ := strconv.Atoi(c.DefaultQuery("page", "1"))
|
||||
limit, _ := strconv.Atoi(c.DefaultQuery("limit", "20"))
|
||||
offset := (page - 1) * limit
|
||||
|
||||
filters := make(map[string]interface{})
|
||||
if status := c.Query("status"); status != "" {
|
||||
filters["status"] = status
|
||||
}
|
||||
if priority := c.Query("priority"); priority != "" {
|
||||
filters["priority"] = priority
|
||||
}
|
||||
|
||||
currentUser, _ := middleware.GetCurrentUser(c)
|
||||
if currentUser.Role != "admin" {
|
||||
projects, err := models.GetProjectsByUser(currentUser.ID)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取项目列表失败"))
|
||||
return
|
||||
}
|
||||
c.JSON(http.StatusOK, SuccessResponse(projects))
|
||||
return
|
||||
}
|
||||
|
||||
projects, total, err := models.ListProjects(offset, limit, filters)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取项目列表失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, PaginatedSuccessResponse(projects, total, page, limit))
|
||||
}
|
||||
|
||||
func (h *Handlers) CreateProject(c *gin.Context) {
|
||||
var req CreateProjectRequest
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
currentUser, err := middleware.GetCurrentUser(c)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusUnauthorized, ErrorResponse(401, "获取当前用户失败"))
|
||||
return
|
||||
}
|
||||
|
||||
project := &models.Project{
|
||||
Name: req.Name,
|
||||
Description: req.Description,
|
||||
GiteaOrg: req.GiteaOrg,
|
||||
Status: "planning",
|
||||
Priority: req.Priority,
|
||||
StartDate: req.StartDate,
|
||||
EndDate: req.EndDate,
|
||||
OwnerID: currentUser.ID,
|
||||
}
|
||||
|
||||
if project.Priority == "" {
|
||||
project.Priority = "medium"
|
||||
}
|
||||
|
||||
if err := models.CreateProject(project); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "创建项目失败"))
|
||||
return
|
||||
}
|
||||
|
||||
project.AddMember(currentUser.ID, "owner")
|
||||
|
||||
c.JSON(http.StatusCreated, SuccessResponse(project))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetProject(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的项目ID"))
|
||||
return
|
||||
}
|
||||
|
||||
project, err := models.GetProjectByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "项目不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(project))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateProject(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的项目ID"))
|
||||
return
|
||||
}
|
||||
|
||||
project, err := models.GetProjectByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "项目不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
var updateData map[string]interface{}
|
||||
if err := c.ShouldBindJSON(&updateData); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
if name, ok := updateData["name"].(string); ok {
|
||||
project.Name = name
|
||||
}
|
||||
if description, ok := updateData["description"].(string); ok {
|
||||
project.Description = description
|
||||
}
|
||||
if status, ok := updateData["status"].(string); ok {
|
||||
project.Status = status
|
||||
}
|
||||
if priority, ok := updateData["priority"].(string); ok {
|
||||
project.Priority = priority
|
||||
}
|
||||
|
||||
if err := models.UpdateProject(project); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "更新项目失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(project))
|
||||
}
|
||||
|
||||
func (h *Handlers) DeleteProject(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的项目ID"))
|
||||
return
|
||||
}
|
||||
|
||||
if err := models.DeleteProject(uint(id)); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "删除项目失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "删除成功"}))
|
||||
}
|
||||
|
||||
func (h *Handlers) AddProjectMember(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的项目ID"))
|
||||
return
|
||||
}
|
||||
|
||||
var req AddMemberRequest
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
project, err := models.GetProjectByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "项目不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
if err := project.AddMember(req.UserID, req.Role); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "添加成员失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "添加成员成功"}))
|
||||
}
|
||||
|
||||
func (h *Handlers) RemoveProjectMember(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的项目ID"))
|
||||
return
|
||||
}
|
||||
|
||||
userID, err := strconv.ParseUint(c.Param("user_id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的用户ID"))
|
||||
return
|
||||
}
|
||||
|
||||
project, err := models.GetProjectByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "项目不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
if err := project.RemoveMember(uint(userID)); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "移除成员失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "移除成员成功"}))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetProjectMembers(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的项目ID"))
|
||||
return
|
||||
}
|
||||
|
||||
project, err := models.GetProjectByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "项目不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
members, err := project.GetMembers()
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取成员列表失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(members))
|
||||
}
|
81
internal/api/handlers/sprints.go
Normal file
81
internal/api/handlers/sprints.go
Normal file
@@ -0,0 +1,81 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func (h *Handlers) ListSprints(c *gin.Context) {
|
||||
page, _ := strconv.Atoi(c.DefaultQuery("page", "1"))
|
||||
limit, _ := strconv.Atoi(c.DefaultQuery("limit", "20"))
|
||||
offset := (page - 1) * limit
|
||||
|
||||
filters := make(map[string]interface{})
|
||||
if projectID := c.Query("project_id"); projectID != "" {
|
||||
if id, err := strconv.ParseUint(projectID, 10, 32); err == nil {
|
||||
filters["project_id"] = uint(id)
|
||||
}
|
||||
}
|
||||
|
||||
sprints, total, err := models.ListSprints(offset, limit, filters)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取迭代列表失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, PaginatedSuccessResponse(sprints, total, page, limit))
|
||||
}
|
||||
|
||||
func (h *Handlers) CreateSprint(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetSprint(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的迭代ID"))
|
||||
return
|
||||
}
|
||||
|
||||
sprint, err := models.GetSprintByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "迭代不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(sprint))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateSprint(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) DeleteSprint(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetSprintBurndown(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的迭代ID"))
|
||||
return
|
||||
}
|
||||
|
||||
sprint, err := models.GetSprintByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "迭代不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
burndownData, err := sprint.GetBurndownData()
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取燃尽图数据失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(burndownData))
|
||||
}
|
64
internal/api/handlers/stories.go
Normal file
64
internal/api/handlers/stories.go
Normal file
@@ -0,0 +1,64 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func (h *Handlers) ListStories(c *gin.Context) {
|
||||
page, _ := strconv.Atoi(c.DefaultQuery("page", "1"))
|
||||
limit, _ := strconv.Atoi(c.DefaultQuery("limit", "20"))
|
||||
offset := (page - 1) * limit
|
||||
|
||||
filters := make(map[string]interface{})
|
||||
if projectID := c.Query("project_id"); projectID != "" {
|
||||
if id, err := strconv.ParseUint(projectID, 10, 32); err == nil {
|
||||
filters["project_id"] = uint(id)
|
||||
}
|
||||
}
|
||||
if epicID := c.Query("epic_id"); epicID != "" {
|
||||
if id, err := strconv.ParseUint(epicID, 10, 32); err == nil {
|
||||
filters["epic_id"] = uint(id)
|
||||
}
|
||||
}
|
||||
|
||||
stories, total, err := models.ListStories(offset, limit, filters)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取Story列表失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, PaginatedSuccessResponse(stories, total, page, limit))
|
||||
}
|
||||
|
||||
func (h *Handlers) CreateStory(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetStory(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的Story ID"))
|
||||
return
|
||||
}
|
||||
|
||||
story, err := models.GetStoryByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "Story不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(story))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateStory(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
||||
|
||||
func (h *Handlers) DeleteStory(c *gin.Context) {
|
||||
c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现"))
|
||||
}
|
291
internal/api/handlers/tasks.go
Normal file
291
internal/api/handlers/tasks.go
Normal file
@@ -0,0 +1,291 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"giteapm/internal/middleware"
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
type CreateTaskRequest struct {
|
||||
StoryID *uint `json:"story_id"`
|
||||
ProjectID uint `json:"project_id" binding:"required"`
|
||||
Title string `json:"title" binding:"required"`
|
||||
Description string `json:"description"`
|
||||
Priority string `json:"priority"`
|
||||
TaskType string `json:"task_type"`
|
||||
AssigneeID *uint `json:"assignee_id"`
|
||||
EstimatedHours *float64 `json:"estimated_hours"`
|
||||
DueDate *time.Time `json:"due_date"`
|
||||
}
|
||||
|
||||
type LogTimeRequest struct {
|
||||
Hours float64 `json:"hours" binding:"required"`
|
||||
Description string `json:"description"`
|
||||
LogDate time.Time `json:"log_date" binding:"required"`
|
||||
}
|
||||
|
||||
type LinkGiteaObjectRequest struct {
|
||||
RepoID uint `json:"repo_id" binding:"required"`
|
||||
RepoName string `json:"repo_name" binding:"required"`
|
||||
RelationType string `json:"relation_type" binding:"required"`
|
||||
ObjectID string `json:"object_id" binding:"required"`
|
||||
ObjectNumber *uint `json:"object_number"`
|
||||
Title string `json:"title"`
|
||||
URL string `json:"url"`
|
||||
}
|
||||
|
||||
func (h *Handlers) ListTasks(c *gin.Context) {
|
||||
page, _ := strconv.Atoi(c.DefaultQuery("page", "1"))
|
||||
limit, _ := strconv.Atoi(c.DefaultQuery("limit", "20"))
|
||||
offset := (page - 1) * limit
|
||||
|
||||
filters := make(map[string]interface{})
|
||||
if projectID := c.Query("project_id"); projectID != "" {
|
||||
if id, err := strconv.ParseUint(projectID, 10, 32); err == nil {
|
||||
filters["project_id"] = uint(id)
|
||||
}
|
||||
}
|
||||
if storyID := c.Query("story_id"); storyID != "" {
|
||||
if id, err := strconv.ParseUint(storyID, 10, 32); err == nil {
|
||||
filters["story_id"] = uint(id)
|
||||
}
|
||||
}
|
||||
if status := c.Query("status"); status != "" {
|
||||
filters["status"] = status
|
||||
}
|
||||
if assigneeID := c.Query("assignee_id"); assigneeID != "" {
|
||||
if id, err := strconv.ParseUint(assigneeID, 10, 32); err == nil {
|
||||
filters["assignee_id"] = uint(id)
|
||||
}
|
||||
}
|
||||
|
||||
tasks, total, err := models.ListTasks(offset, limit, filters)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取任务列表失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, PaginatedSuccessResponse(tasks, total, page, limit))
|
||||
}
|
||||
|
||||
func (h *Handlers) CreateTask(c *gin.Context) {
|
||||
var req CreateTaskRequest
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
currentUser, err := middleware.GetCurrentUser(c)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusUnauthorized, ErrorResponse(401, "获取当前用户失败"))
|
||||
return
|
||||
}
|
||||
|
||||
task := &models.Task{
|
||||
StoryID: req.StoryID,
|
||||
ProjectID: req.ProjectID,
|
||||
Title: req.Title,
|
||||
Description: req.Description,
|
||||
Status: "todo",
|
||||
Priority: req.Priority,
|
||||
TaskType: req.TaskType,
|
||||
AssigneeID: req.AssigneeID,
|
||||
ReporterID: currentUser.ID,
|
||||
EstimatedHours: req.EstimatedHours,
|
||||
DueDate: req.DueDate,
|
||||
}
|
||||
|
||||
if task.Priority == "" {
|
||||
task.Priority = "medium"
|
||||
}
|
||||
if task.TaskType == "" {
|
||||
task.TaskType = "feature"
|
||||
}
|
||||
|
||||
if err := models.CreateTask(task); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "创建任务失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusCreated, SuccessResponse(task))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetTask(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的任务ID"))
|
||||
return
|
||||
}
|
||||
|
||||
task, err := models.GetTaskByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "任务不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(task))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateTask(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的任务ID"))
|
||||
return
|
||||
}
|
||||
|
||||
task, err := models.GetTaskByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "任务不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
var updateData map[string]interface{}
|
||||
if err := c.ShouldBindJSON(&updateData); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
if title, ok := updateData["title"].(string); ok {
|
||||
task.Title = title
|
||||
}
|
||||
if description, ok := updateData["description"].(string); ok {
|
||||
task.Description = description
|
||||
}
|
||||
if status, ok := updateData["status"].(string); ok {
|
||||
task.Status = status
|
||||
}
|
||||
if priority, ok := updateData["priority"].(string); ok {
|
||||
task.Priority = priority
|
||||
}
|
||||
if assigneeID, ok := updateData["assignee_id"].(float64); ok {
|
||||
id := uint(assigneeID)
|
||||
task.AssigneeID = &id
|
||||
}
|
||||
|
||||
if err := models.UpdateTask(task); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "更新任务失败"))
|
||||
return
|
||||
}
|
||||
|
||||
if task.StoryID != nil {
|
||||
story, err := models.GetStoryByID(*task.StoryID)
|
||||
if err == nil {
|
||||
story.UpdateProgress()
|
||||
}
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(task))
|
||||
}
|
||||
|
||||
func (h *Handlers) DeleteTask(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的任务ID"))
|
||||
return
|
||||
}
|
||||
|
||||
if err := models.DeleteTask(uint(id)); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "删除任务失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "删除成功"}))
|
||||
}
|
||||
|
||||
func (h *Handlers) LogTime(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的任务ID"))
|
||||
return
|
||||
}
|
||||
|
||||
var req LogTimeRequest
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
currentUser, err := middleware.GetCurrentUser(c)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusUnauthorized, ErrorResponse(401, "获取当前用户失败"))
|
||||
return
|
||||
}
|
||||
|
||||
task, err := models.GetTaskByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "任务不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
if err := task.LogTime(currentUser.ID, req.Hours, req.Description, req.LogDate); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "记录工时失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "工时记录成功"}))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetTimeLogs(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的任务ID"))
|
||||
return
|
||||
}
|
||||
|
||||
timeLogs, err := models.GetTimeLogsByTask(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取工时记录失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(timeLogs))
|
||||
}
|
||||
|
||||
func (h *Handlers) LinkGiteaObject(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的任务ID"))
|
||||
return
|
||||
}
|
||||
|
||||
var req LinkGiteaObjectRequest
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
task, err := models.GetTaskByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "任务不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
if err := task.LinkGiteaObject(req.RepoID, req.RepoName, req.RelationType,
|
||||
req.ObjectID, req.ObjectNumber, req.Title, req.URL); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "关联Gitea对象失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "关联成功"}))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetGiteaRelations(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的任务ID"))
|
||||
return
|
||||
}
|
||||
|
||||
relations, err := models.GetGiteaRelationsByTask(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取Gitea关联失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(relations))
|
||||
}
|
131
internal/api/handlers/users.go
Normal file
131
internal/api/handlers/users.go
Normal file
@@ -0,0 +1,131 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
|
||||
"giteapm/internal/middleware"
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func (h *Handlers) ListUsers(c *gin.Context) {
|
||||
page, _ := strconv.Atoi(c.DefaultQuery("page", "1"))
|
||||
limit, _ := strconv.Atoi(c.DefaultQuery("limit", "20"))
|
||||
offset := (page - 1) * limit
|
||||
|
||||
users, total, err := models.ListUsers(offset, limit)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "获取用户列表失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, PaginatedSuccessResponse(users, total, page, limit))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetUser(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的用户ID"))
|
||||
return
|
||||
}
|
||||
|
||||
user, err := models.GetUserByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "用户不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(user))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateUser(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的用户ID"))
|
||||
return
|
||||
}
|
||||
|
||||
user, err := models.GetUserByID(uint(id))
|
||||
if err != nil {
|
||||
c.JSON(http.StatusNotFound, ErrorResponse(404, "用户不存在"))
|
||||
return
|
||||
}
|
||||
|
||||
var updateData map[string]interface{}
|
||||
if err := c.ShouldBindJSON(&updateData); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
if fullName, ok := updateData["full_name"].(string); ok {
|
||||
user.FullName = fullName
|
||||
}
|
||||
if email, ok := updateData["email"].(string); ok {
|
||||
user.Email = email
|
||||
}
|
||||
if role, ok := updateData["role"].(string); ok {
|
||||
user.Role = role
|
||||
}
|
||||
|
||||
if err := models.UpdateUser(user); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "更新用户失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(user))
|
||||
}
|
||||
|
||||
func (h *Handlers) DeleteUser(c *gin.Context) {
|
||||
id, err := strconv.ParseUint(c.Param("id"), 10, 32)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "无效的用户ID"))
|
||||
return
|
||||
}
|
||||
|
||||
if err := models.DeleteUser(uint(id)); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "删除用户失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "删除成功"}))
|
||||
}
|
||||
|
||||
func (h *Handlers) GetCurrentUser(c *gin.Context) {
|
||||
user, err := middleware.GetCurrentUser(c)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusUnauthorized, ErrorResponse(401, "获取当前用户失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(user))
|
||||
}
|
||||
|
||||
func (h *Handlers) UpdateCurrentUser(c *gin.Context) {
|
||||
user, err := middleware.GetCurrentUser(c)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusUnauthorized, ErrorResponse(401, "获取当前用户失败"))
|
||||
return
|
||||
}
|
||||
|
||||
var updateData map[string]interface{}
|
||||
if err := c.ShouldBindJSON(&updateData); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "请求参数无效"))
|
||||
return
|
||||
}
|
||||
|
||||
if fullName, ok := updateData["full_name"].(string); ok {
|
||||
user.FullName = fullName
|
||||
}
|
||||
if email, ok := updateData["email"].(string); ok {
|
||||
user.Email = email
|
||||
}
|
||||
|
||||
if err := models.UpdateUser(user); err != nil {
|
||||
c.JSON(http.StatusInternalServerError, ErrorResponse(500, "更新用户失败"))
|
||||
return
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(user))
|
||||
}
|
218
internal/api/handlers/webhook.go
Normal file
218
internal/api/handlers/webhook.go
Normal file
@@ -0,0 +1,218 @@
|
||||
package handlers
|
||||
|
||||
import (
|
||||
"crypto/hmac"
|
||||
"crypto/sha256"
|
||||
"encoding/hex"
|
||||
"encoding/json"
|
||||
"io"
|
||||
"net/http"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
type GiteaWebhookPayload struct {
|
||||
Action string `json:"action"`
|
||||
Number int `json:"number"`
|
||||
Repository struct {
|
||||
ID int `json:"id"`
|
||||
Name string `json:"name"`
|
||||
FullName string `json:"full_name"`
|
||||
} `json:"repository"`
|
||||
PullRequest *struct {
|
||||
ID int `json:"id"`
|
||||
Number int `json:"number"`
|
||||
Title string `json:"title"`
|
||||
State string `json:"state"`
|
||||
HTMLURL string `json:"html_url"`
|
||||
} `json:"pull_request,omitempty"`
|
||||
Commits []struct {
|
||||
ID string `json:"id"`
|
||||
Message string `json:"message"`
|
||||
URL string `json:"url"`
|
||||
} `json:"commits,omitempty"`
|
||||
Pusher struct {
|
||||
ID int `json:"id"`
|
||||
Username string `json:"username"`
|
||||
} `json:"pusher,omitempty"`
|
||||
}
|
||||
|
||||
func (h *Handlers) HandleGiteaWebhook(c *gin.Context) {
|
||||
// 验证 webhook 签名
|
||||
if !h.verifyWebhookSignature(c) {
|
||||
c.JSON(http.StatusUnauthorized, ErrorResponse(401, "Invalid webhook signature"))
|
||||
return
|
||||
}
|
||||
|
||||
// 读取请求体
|
||||
body, err := io.ReadAll(c.Request.Body)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "Failed to read request body"))
|
||||
return
|
||||
}
|
||||
|
||||
// 解析 payload
|
||||
var payload GiteaWebhookPayload
|
||||
if err := json.Unmarshal(body, &payload); err != nil {
|
||||
c.JSON(http.StatusBadRequest, ErrorResponse(400, "Invalid JSON payload"))
|
||||
return
|
||||
}
|
||||
|
||||
// 获取事件类型
|
||||
eventType := c.GetHeader("X-Gitea-Event")
|
||||
|
||||
// 处理不同类型的事件
|
||||
switch eventType {
|
||||
case "push":
|
||||
h.handlePushEvent(payload)
|
||||
case "pull_request":
|
||||
h.handlePullRequestEvent(payload)
|
||||
case "issues":
|
||||
h.handleIssueEvent(payload)
|
||||
default:
|
||||
// 忽略其他事件类型
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "Webhook processed successfully"}))
|
||||
}
|
||||
|
||||
func (h *Handlers) verifyWebhookSignature(c *gin.Context) bool {
|
||||
signature := c.GetHeader("X-Gitea-Signature")
|
||||
if signature == "" {
|
||||
return false
|
||||
}
|
||||
|
||||
// 读取请求体
|
||||
body, err := io.ReadAll(c.Request.Body)
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
|
||||
// 重新设置请求体,以便后续读取
|
||||
c.Request.Body = io.NopCloser(strings.NewReader(string(body)))
|
||||
|
||||
// 计算 HMAC-SHA256
|
||||
mac := hmac.New(sha256.New, []byte(h.Cfg.Gitea.WebhookSecret))
|
||||
mac.Write(body)
|
||||
expectedSignature := hex.EncodeToString(mac.Sum(nil))
|
||||
|
||||
// 比较签名
|
||||
return hmac.Equal([]byte(signature), []byte(expectedSignature))
|
||||
}
|
||||
|
||||
func (h *Handlers) handlePushEvent(payload GiteaWebhookPayload) {
|
||||
// 处理推送事件
|
||||
repoID := uint(payload.Repository.ID)
|
||||
|
||||
for _, commit := range payload.Commits {
|
||||
// 查找关联的任务
|
||||
_, err := models.GetGiteaRelationsByRepo(repoID, "commit")
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
|
||||
// 检查提交消息中是否包含任务引用(如 #123)
|
||||
commitMessage := commit.Message
|
||||
taskNumbers := extractTaskNumbers(commitMessage)
|
||||
|
||||
for _, taskNumber := range taskNumbers {
|
||||
// 创建或更新 Git 关联
|
||||
relation := &models.GiteaRelation{
|
||||
GiteaRepoID: repoID,
|
||||
GiteaRepoName: payload.Repository.FullName,
|
||||
RelationType: "commit",
|
||||
GiteaObjectID: commit.ID,
|
||||
GiteaObjectTitle: commitMessage,
|
||||
GiteaObjectURL: commit.URL,
|
||||
}
|
||||
|
||||
// 根据任务号查找任务
|
||||
if task := findTaskByNumber(taskNumber); task != nil {
|
||||
relation.TaskID = task.ID
|
||||
models.CreateGiteaRelation(relation)
|
||||
|
||||
// 可以根据提交消息自动更新任务状态
|
||||
if strings.Contains(strings.ToLower(commitMessage), "fix") ||
|
||||
strings.Contains(strings.ToLower(commitMessage), "resolve") {
|
||||
task.Status = "review"
|
||||
models.UpdateTask(task)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (h *Handlers) handlePullRequestEvent(payload GiteaWebhookPayload) {
|
||||
if payload.PullRequest == nil {
|
||||
return
|
||||
}
|
||||
|
||||
pr := payload.PullRequest
|
||||
repoID := uint(payload.Repository.ID)
|
||||
|
||||
// 检查 PR 标题中的任务引用
|
||||
taskNumbers := extractTaskNumbers(pr.Title)
|
||||
|
||||
for _, taskNumber := range taskNumbers {
|
||||
if task := findTaskByNumber(taskNumber); task != nil {
|
||||
relation := &models.GiteaRelation{
|
||||
TaskID: task.ID,
|
||||
GiteaRepoID: repoID,
|
||||
GiteaRepoName: payload.Repository.FullName,
|
||||
RelationType: "pull_request",
|
||||
GiteaObjectID: strconv.Itoa(pr.ID),
|
||||
GiteaObjectNumber: func() *uint { n := uint(pr.Number); return &n }(),
|
||||
GiteaObjectTitle: pr.Title,
|
||||
GiteaObjectURL: pr.HTMLURL,
|
||||
}
|
||||
|
||||
models.CreateGiteaRelation(relation)
|
||||
|
||||
// 根据 PR 状态自动更新任务状态
|
||||
switch payload.Action {
|
||||
case "opened":
|
||||
task.Status = "review"
|
||||
case "closed":
|
||||
if pr.State == "merged" {
|
||||
task.Status = "done"
|
||||
}
|
||||
}
|
||||
models.UpdateTask(task)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (h *Handlers) handleIssueEvent(payload GiteaWebhookPayload) {
|
||||
// 处理 Issue 事件,可以将 Gitea Issue 同步为任务
|
||||
// 这里可以根据需要实现
|
||||
}
|
||||
|
||||
// 从文本中提取任务编号(如 #123, fixes #456)
|
||||
func extractTaskNumbers(text string) []int {
|
||||
var numbers []int
|
||||
// 简单的正则匹配,实际可以使用更复杂的逻辑
|
||||
words := strings.Fields(text)
|
||||
for _, word := range words {
|
||||
if strings.HasPrefix(word, "#") {
|
||||
if num, err := strconv.Atoi(strings.TrimPrefix(word, "#")); err == nil {
|
||||
numbers = append(numbers, num)
|
||||
}
|
||||
}
|
||||
}
|
||||
return numbers
|
||||
}
|
||||
|
||||
// 根据任务编号查找任务(这里简化实现)
|
||||
func findTaskByNumber(taskNumber int) *models.Task {
|
||||
// 这里应该实现根据任务编号查找任务的逻辑
|
||||
// 可以在数据库中添加 task_number 字段,或者使用 ID
|
||||
task, err := models.GetTaskByID(uint(taskNumber))
|
||||
if err != nil {
|
||||
return nil
|
||||
}
|
||||
return task
|
||||
}
|
112
internal/api/router.go
Normal file
112
internal/api/router.go
Normal file
@@ -0,0 +1,112 @@
|
||||
package api
|
||||
|
||||
import (
|
||||
"giteapm/config"
|
||||
"giteapm/internal/api/handlers"
|
||||
"giteapm/internal/middleware"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
func SetupRoutes(router *gin.Engine, db *gorm.DB, cfg *config.Config) {
|
||||
h := handlers.NewHandlers(db, cfg)
|
||||
|
||||
v1 := router.Group("/api/v1")
|
||||
{
|
||||
auth := v1.Group("/auth")
|
||||
{
|
||||
auth.GET("/login", h.GiteaLogin)
|
||||
auth.GET("/callback", h.GiteaCallback)
|
||||
auth.POST("/logout", h.Logout)
|
||||
}
|
||||
|
||||
v1.Use(middleware.AuthMiddleware(cfg))
|
||||
{
|
||||
users := v1.Group("/users")
|
||||
{
|
||||
users.GET("", h.ListUsers)
|
||||
users.GET("/:id", h.GetUser)
|
||||
users.PUT("/:id", h.UpdateUser)
|
||||
users.DELETE("/:id", middleware.RequireRole("admin"), h.DeleteUser)
|
||||
users.GET("/me", h.GetCurrentUser)
|
||||
users.PUT("/me", h.UpdateCurrentUser)
|
||||
}
|
||||
|
||||
projects := v1.Group("/projects")
|
||||
{
|
||||
projects.GET("", h.ListProjects)
|
||||
projects.POST("", h.CreateProject)
|
||||
projects.GET("/:id", h.GetProject)
|
||||
projects.PUT("/:id", h.UpdateProject)
|
||||
projects.DELETE("/:id", h.DeleteProject)
|
||||
projects.POST("/:id/members", h.AddProjectMember)
|
||||
projects.DELETE("/:id/members/:user_id", h.RemoveProjectMember)
|
||||
projects.GET("/:id/members", h.GetProjectMembers)
|
||||
}
|
||||
|
||||
epics := v1.Group("/epics")
|
||||
{
|
||||
epics.GET("", h.ListEpics)
|
||||
epics.POST("", h.CreateEpic)
|
||||
epics.GET("/:id", h.GetEpic)
|
||||
epics.PUT("/:id", h.UpdateEpic)
|
||||
epics.DELETE("/:id", h.DeleteEpic)
|
||||
}
|
||||
|
||||
stories := v1.Group("/stories")
|
||||
{
|
||||
stories.GET("", h.ListStories)
|
||||
stories.POST("", h.CreateStory)
|
||||
stories.GET("/:id", h.GetStory)
|
||||
stories.PUT("/:id", h.UpdateStory)
|
||||
stories.DELETE("/:id", h.DeleteStory)
|
||||
}
|
||||
|
||||
tasks := v1.Group("/tasks")
|
||||
{
|
||||
tasks.GET("", h.ListTasks)
|
||||
tasks.POST("", h.CreateTask)
|
||||
tasks.GET("/:id", h.GetTask)
|
||||
tasks.PUT("/:id", h.UpdateTask)
|
||||
tasks.DELETE("/:id", h.DeleteTask)
|
||||
tasks.POST("/:id/time-logs", h.LogTime)
|
||||
tasks.GET("/:id/time-logs", h.GetTimeLogs)
|
||||
tasks.POST("/:id/gitea-relations", h.LinkGiteaObject)
|
||||
tasks.GET("/:id/gitea-relations", h.GetGiteaRelations)
|
||||
}
|
||||
|
||||
sprints := v1.Group("/sprints")
|
||||
{
|
||||
sprints.GET("", h.ListSprints)
|
||||
sprints.POST("", h.CreateSprint)
|
||||
sprints.GET("/:id", h.GetSprint)
|
||||
sprints.PUT("/:id", h.UpdateSprint)
|
||||
sprints.DELETE("/:id", h.DeleteSprint)
|
||||
sprints.GET("/:id/burndown", h.GetSprintBurndown)
|
||||
}
|
||||
|
||||
comments := v1.Group("/comments")
|
||||
{
|
||||
comments.GET("", h.GetComments)
|
||||
comments.POST("", h.CreateComment)
|
||||
comments.PUT("/:id", h.UpdateComment)
|
||||
comments.DELETE("/:id", h.DeleteComment)
|
||||
}
|
||||
|
||||
tags := v1.Group("/tags")
|
||||
{
|
||||
tags.GET("", h.ListTags)
|
||||
tags.POST("", h.CreateTag)
|
||||
tags.PUT("/:id", h.UpdateTag)
|
||||
tags.DELETE("/:id", h.DeleteTag)
|
||||
}
|
||||
|
||||
webhooks := v1.Group("/webhooks")
|
||||
{
|
||||
webhooks.POST("/gitea", h.HandleGiteaWebhook)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
93
internal/middleware/auth.go
Normal file
93
internal/middleware/auth.go
Normal file
@@ -0,0 +1,93 @@
|
||||
package middleware
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strings"
|
||||
|
||||
"giteapm/config"
|
||||
"giteapm/internal/models"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/golang-jwt/jwt/v5"
|
||||
)
|
||||
|
||||
type Claims struct {
|
||||
UserID uint `json:"user_id"`
|
||||
Username string `json:"username"`
|
||||
Role string `json:"role"`
|
||||
jwt.RegisteredClaims
|
||||
}
|
||||
|
||||
func AuthMiddleware(cfg *config.Config) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
tokenString := c.GetHeader("Authorization")
|
||||
if tokenString == "" {
|
||||
c.JSON(http.StatusUnauthorized, gin.H{"error": "缺少授权令牌"})
|
||||
c.Abort()
|
||||
return
|
||||
}
|
||||
|
||||
if strings.HasPrefix(tokenString, "Bearer ") {
|
||||
tokenString = tokenString[7:]
|
||||
}
|
||||
|
||||
token, err := jwt.ParseWithClaims(tokenString, &Claims{}, func(token *jwt.Token) (interface{}, error) {
|
||||
return []byte(cfg.JWT.Secret), nil
|
||||
})
|
||||
|
||||
if err != nil || !token.Valid {
|
||||
c.JSON(http.StatusUnauthorized, gin.H{"error": "无效的授权令牌"})
|
||||
c.Abort()
|
||||
return
|
||||
}
|
||||
|
||||
claims, ok := token.Claims.(*Claims)
|
||||
if !ok {
|
||||
c.JSON(http.StatusUnauthorized, gin.H{"error": "无效的令牌格式"})
|
||||
c.Abort()
|
||||
return
|
||||
}
|
||||
|
||||
user, err := models.GetUserByID(claims.UserID)
|
||||
if err != nil {
|
||||
c.JSON(http.StatusUnauthorized, gin.H{"error": "用户不存在"})
|
||||
c.Abort()
|
||||
return
|
||||
}
|
||||
|
||||
c.Set("user", user)
|
||||
c.Set("user_id", claims.UserID)
|
||||
c.Set("username", claims.Username)
|
||||
c.Set("role", claims.Role)
|
||||
c.Next()
|
||||
}
|
||||
}
|
||||
|
||||
func RequireRole(roles ...string) gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
userRole, exists := c.Get("role")
|
||||
if !exists {
|
||||
c.JSON(http.StatusForbidden, gin.H{"error": "无法获取用户角色"})
|
||||
c.Abort()
|
||||
return
|
||||
}
|
||||
|
||||
for _, role := range roles {
|
||||
if userRole == role {
|
||||
c.Next()
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
c.JSON(http.StatusForbidden, gin.H{"error": "权限不足"})
|
||||
c.Abort()
|
||||
}
|
||||
}
|
||||
|
||||
func GetCurrentUser(c *gin.Context) (*models.User, error) {
|
||||
user, exists := c.Get("user")
|
||||
if !exists {
|
||||
return nil, jwt.ErrTokenMalformed
|
||||
}
|
||||
return user.(*models.User), nil
|
||||
}
|
152
internal/models/common.go
Normal file
152
internal/models/common.go
Normal file
@@ -0,0 +1,152 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type Comment struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
EntityType string `json:"entity_type" gorm:"type:varchar(50)"`
|
||||
EntityID uint `json:"entity_id"`
|
||||
UserID uint `json:"user_id"`
|
||||
Content string `json:"content"`
|
||||
User User `json:"user" gorm:"foreignKey:UserID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
type EntityType string
|
||||
|
||||
const (
|
||||
EntityTypeProject EntityType = "project"
|
||||
EntityTypeEpic EntityType = "epic"
|
||||
EntityTypeStory EntityType = "story"
|
||||
EntityTypeTask EntityType = "task"
|
||||
)
|
||||
|
||||
type Tag struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
Name string `json:"name" gorm:"unique;not null"`
|
||||
Color string `json:"color" gorm:"default:'#1890ff'"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
||||
type EntityTag struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
EntityType EntityType `json:"entity_type" gorm:"type:varchar(50)"`
|
||||
EntityID uint `json:"entity_id"`
|
||||
TagID uint `json:"tag_id"`
|
||||
Tag Tag `json:"tag" gorm:"foreignKey:TagID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
||||
type TimeLog struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
TaskID uint `json:"task_id"`
|
||||
UserID uint `json:"user_id"`
|
||||
Hours float64 `json:"hours"`
|
||||
Description string `json:"description"`
|
||||
LogDate time.Time `json:"log_date"`
|
||||
Task Task `json:"task" gorm:"foreignKey:TaskID"`
|
||||
User User `json:"user" gorm:"foreignKey:UserID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
||||
func CreateComment(comment *Comment) error {
|
||||
return DB.Create(comment).Error
|
||||
}
|
||||
|
||||
func GetCommentsByEntity(entityType string, entityID uint) ([]Comment, error) {
|
||||
var comments []Comment
|
||||
err := DB.Where("entity_type = ? AND entity_id = ?", entityType, entityID).
|
||||
Preload("User").
|
||||
Order("created_at DESC").
|
||||
Find(&comments).Error
|
||||
return comments, err
|
||||
}
|
||||
|
||||
func UpdateComment(comment *Comment) error {
|
||||
return DB.Save(comment).Error
|
||||
}
|
||||
|
||||
func DeleteComment(id uint) error {
|
||||
return DB.Delete(&Comment{}, id).Error
|
||||
}
|
||||
|
||||
func CreateTag(tag *Tag) error {
|
||||
return DB.Create(tag).Error
|
||||
}
|
||||
|
||||
func GetAllTags() ([]Tag, error) {
|
||||
var tags []Tag
|
||||
err := DB.Find(&tags).Error
|
||||
return tags, err
|
||||
}
|
||||
|
||||
func GetTagByName(name string) (*Tag, error) {
|
||||
var tag Tag
|
||||
err := DB.Where("name = ?", name).First(&tag).Error
|
||||
return &tag, err
|
||||
}
|
||||
|
||||
func UpdateTag(tag *Tag) error {
|
||||
return DB.Save(tag).Error
|
||||
}
|
||||
|
||||
func DeleteTag(id uint) error {
|
||||
return DB.Delete(&Tag{}, id).Error
|
||||
}
|
||||
|
||||
func AddTagToEntity(entityType EntityType, entityID, tagID uint) error {
|
||||
entityTag := EntityTag{
|
||||
EntityType: entityType,
|
||||
EntityID: entityID,
|
||||
TagID: tagID,
|
||||
}
|
||||
return DB.Create(&entityTag).Error
|
||||
}
|
||||
|
||||
func RemoveTagFromEntity(entityType EntityType, entityID, tagID uint) error {
|
||||
return DB.Where("entity_type = ? AND entity_id = ? AND tag_id = ?",
|
||||
entityType, entityID, tagID).Delete(&EntityTag{}).Error
|
||||
}
|
||||
|
||||
func GetTagsByEntity(entityType EntityType, entityID uint) ([]Tag, error) {
|
||||
var tags []Tag
|
||||
err := DB.Joins("JOIN entity_tags ON tags.id = entity_tags.tag_id").
|
||||
Where("entity_tags.entity_type = ? AND entity_tags.entity_id = ?",
|
||||
entityType, entityID).
|
||||
Find(&tags).Error
|
||||
return tags, err
|
||||
}
|
||||
|
||||
func CreateTimeLog(timeLog *TimeLog) error {
|
||||
return DB.Create(timeLog).Error
|
||||
}
|
||||
|
||||
func GetTimeLogsByTask(taskID uint) ([]TimeLog, error) {
|
||||
var timeLogs []TimeLog
|
||||
err := DB.Where("task_id = ?", taskID).
|
||||
Preload("User").
|
||||
Order("log_date DESC").
|
||||
Find(&timeLogs).Error
|
||||
return timeLogs, err
|
||||
}
|
||||
|
||||
func GetTimeLogsByUser(userID uint, startDate, endDate time.Time) ([]TimeLog, error) {
|
||||
var timeLogs []TimeLog
|
||||
err := DB.Where("user_id = ? AND log_date BETWEEN ? AND ?",
|
||||
userID, startDate, endDate).
|
||||
Preload("Task.Project").
|
||||
Order("log_date DESC").
|
||||
Find(&timeLogs).Error
|
||||
return timeLogs, err
|
||||
}
|
||||
|
||||
func UpdateTimeLog(timeLog *TimeLog) error {
|
||||
return DB.Save(timeLog).Error
|
||||
}
|
||||
|
||||
func DeleteTimeLog(id uint) error {
|
||||
return DB.Delete(&TimeLog{}, id).Error
|
||||
}
|
60
internal/models/database.go
Normal file
60
internal/models/database.go
Normal file
@@ -0,0 +1,60 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"giteapm/config"
|
||||
|
||||
"gorm.io/driver/mysql"
|
||||
"gorm.io/gorm"
|
||||
"gorm.io/gorm/logger"
|
||||
)
|
||||
|
||||
var DB *gorm.DB
|
||||
|
||||
func InitDB(cfg config.DatabaseConfig) (*gorm.DB, error) {
|
||||
dsn := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s?charset=%s&parseTime=True&loc=Local",
|
||||
cfg.Username, cfg.Password, cfg.Host, cfg.Port, cfg.Database, cfg.Charset)
|
||||
|
||||
var err error
|
||||
DB, err = gorm.Open(mysql.Open(dsn), &gorm.Config{
|
||||
Logger: logger.Default.LogMode(logger.Info),
|
||||
})
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("连接数据库失败: %v", err)
|
||||
}
|
||||
|
||||
sqlDB, err := DB.DB()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("获取底层数据库连接失败: %v", err)
|
||||
}
|
||||
|
||||
sqlDB.SetMaxIdleConns(10)
|
||||
sqlDB.SetMaxOpenConns(100)
|
||||
sqlDB.SetConnMaxLifetime(time.Hour)
|
||||
|
||||
if err := autoMigrate(); err != nil {
|
||||
return nil, fmt.Errorf("数据库迁移失败: %v", err)
|
||||
}
|
||||
|
||||
return DB, nil
|
||||
}
|
||||
|
||||
func autoMigrate() error {
|
||||
return DB.AutoMigrate(
|
||||
&User{},
|
||||
&Project{},
|
||||
&ProjectMember{},
|
||||
&Epic{},
|
||||
&Story{},
|
||||
&Task{},
|
||||
&GiteaRelation{},
|
||||
&Sprint{},
|
||||
&Comment{},
|
||||
&Tag{},
|
||||
&EntityTag{},
|
||||
&TimeLog{},
|
||||
&WebhookConfig{},
|
||||
)
|
||||
}
|
129
internal/models/epic.go
Normal file
129
internal/models/epic.go
Normal file
@@ -0,0 +1,129 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Epic struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
ProjectID uint `json:"project_id"`
|
||||
Title string `json:"title" gorm:"not null"`
|
||||
Description string `json:"description"`
|
||||
Status string `json:"status" gorm:"default:'backlog'"`
|
||||
Priority string `json:"priority" gorm:"default:'medium'"`
|
||||
AssigneeID *uint `json:"assignee_id"`
|
||||
ReporterID uint `json:"reporter_id"`
|
||||
StartDate *time.Time `json:"start_date"`
|
||||
DueDate *time.Time `json:"due_date"`
|
||||
EstimatedHours *float64 `json:"estimated_hours"`
|
||||
ActualHours float64 `json:"actual_hours" gorm:"default:0"`
|
||||
ProgressPercentage int `json:"progress_percentage" gorm:"default:0"`
|
||||
Project Project `json:"project" gorm:"foreignKey:ProjectID"`
|
||||
Assignee *User `json:"assignee" gorm:"foreignKey:AssigneeID"`
|
||||
Reporter User `json:"reporter" gorm:"foreignKey:ReporterID"`
|
||||
Stories []Story `json:"stories" gorm:"foreignKey:EpicID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
type EpicStatus string
|
||||
|
||||
const (
|
||||
EpicStatusBacklog EpicStatus = "backlog"
|
||||
EpicStatusPlanning EpicStatus = "planning"
|
||||
EpicStatusInProgress EpicStatus = "in_progress"
|
||||
EpicStatusTesting EpicStatus = "testing"
|
||||
EpicStatusDone EpicStatus = "done"
|
||||
EpicStatusCancelled EpicStatus = "cancelled"
|
||||
)
|
||||
|
||||
func (e *Epic) BeforeCreate(tx *gorm.DB) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *Epic) UpdateProgress() error {
|
||||
var totalStories int64
|
||||
var completedStories int64
|
||||
|
||||
err := DB.Model(&Story{}).Where("epic_id = ?", e.ID).Count(&totalStories).Error
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if totalStories == 0 {
|
||||
e.ProgressPercentage = 0
|
||||
return DB.Save(e).Error
|
||||
}
|
||||
|
||||
err = DB.Model(&Story{}).Where("epic_id = ? AND status = 'done'", e.ID).Count(&completedStories).Error
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
e.ProgressPercentage = int(float64(completedStories) / float64(totalStories) * 100)
|
||||
return DB.Save(e).Error
|
||||
}
|
||||
|
||||
func (e *Epic) GetStories() ([]Story, error) {
|
||||
var stories []Story
|
||||
err := DB.Where("epic_id = ?", e.ID).Preload("Assignee").Find(&stories).Error
|
||||
return stories, err
|
||||
}
|
||||
|
||||
func CreateEpic(epic *Epic) error {
|
||||
return DB.Create(epic).Error
|
||||
}
|
||||
|
||||
func GetEpicByID(id uint) (*Epic, error) {
|
||||
var epic Epic
|
||||
err := DB.Preload("Project").Preload("Assignee").Preload("Reporter").
|
||||
Preload("Stories").First(&epic, id).Error
|
||||
return &epic, err
|
||||
}
|
||||
|
||||
func GetEpicsByProject(projectID uint) ([]Epic, error) {
|
||||
var epics []Epic
|
||||
err := DB.Where("project_id = ?", projectID).
|
||||
Preload("Assignee").Preload("Reporter").
|
||||
Find(&epics).Error
|
||||
return epics, err
|
||||
}
|
||||
|
||||
func UpdateEpic(epic *Epic) error {
|
||||
return DB.Save(epic).Error
|
||||
}
|
||||
|
||||
func DeleteEpic(id uint) error {
|
||||
return DB.Delete(&Epic{}, id).Error
|
||||
}
|
||||
|
||||
func ListEpics(offset, limit int, filters map[string]interface{}) ([]Epic, int64, error) {
|
||||
var epics []Epic
|
||||
var total int64
|
||||
|
||||
query := DB.Model(&Epic{})
|
||||
|
||||
for key, value := range filters {
|
||||
switch key {
|
||||
case "project_id":
|
||||
query = query.Where("project_id = ?", value)
|
||||
case "status":
|
||||
query = query.Where("status = ?", value)
|
||||
case "priority":
|
||||
query = query.Where("priority = ?", value)
|
||||
case "assignee_id":
|
||||
query = query.Where("assignee_id = ?", value)
|
||||
}
|
||||
}
|
||||
|
||||
err := query.Count(&total).Error
|
||||
if err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
err = query.Preload("Project").Preload("Assignee").Preload("Reporter").
|
||||
Offset(offset).Limit(limit).Find(&epics).Error
|
||||
return epics, total, err
|
||||
}
|
88
internal/models/gitea.go
Normal file
88
internal/models/gitea.go
Normal file
@@ -0,0 +1,88 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type GiteaRelation struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
TaskID uint `json:"task_id"`
|
||||
GiteaRepoID uint `json:"gitea_repo_id"`
|
||||
GiteaRepoName string `json:"gitea_repo_name"`
|
||||
RelationType string `json:"relation_type" gorm:"type:varchar(50)"`
|
||||
GiteaObjectID string `json:"gitea_object_id" gorm:"type:varchar(255)"`
|
||||
GiteaObjectNumber *uint `json:"gitea_object_number"`
|
||||
GiteaObjectTitle string `json:"gitea_object_title"`
|
||||
GiteaObjectURL string `json:"gitea_object_url"`
|
||||
Task Task `json:"task" gorm:"foreignKey:TaskID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
||||
type GiteaRelationType string
|
||||
|
||||
const (
|
||||
RelationTypeBranch GiteaRelationType = "branch"
|
||||
RelationTypeCommit GiteaRelationType = "commit"
|
||||
RelationTypePullRequest GiteaRelationType = "pull_request"
|
||||
RelationTypeIssue GiteaRelationType = "issue"
|
||||
)
|
||||
|
||||
type WebhookConfig struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
ProjectID uint `json:"project_id"`
|
||||
GiteaRepoID uint `json:"gitea_repo_id"`
|
||||
GiteaRepoName string `json:"gitea_repo_name"`
|
||||
WebhookURL string `json:"webhook_url"`
|
||||
Secret string `json:"secret"`
|
||||
Events string `json:"events"` // JSON string
|
||||
Active bool `json:"active" gorm:"default:true"`
|
||||
Project Project `json:"project" gorm:"foreignKey:ProjectID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
func CreateGiteaRelation(relation *GiteaRelation) error {
|
||||
return DB.Create(relation).Error
|
||||
}
|
||||
|
||||
func GetGiteaRelationsByTask(taskID uint) ([]GiteaRelation, error) {
|
||||
var relations []GiteaRelation
|
||||
err := DB.Where("task_id = ?", taskID).Find(&relations).Error
|
||||
return relations, err
|
||||
}
|
||||
|
||||
func GetGiteaRelationsByRepo(repoID uint, relationType string) ([]GiteaRelation, error) {
|
||||
var relations []GiteaRelation
|
||||
query := DB.Where("gitea_repo_id = ?", repoID)
|
||||
if relationType != "" {
|
||||
query = query.Where("relation_type = ?", relationType)
|
||||
}
|
||||
err := query.Preload("Task").Find(&relations).Error
|
||||
return relations, err
|
||||
}
|
||||
|
||||
func UpdateGiteaRelation(relation *GiteaRelation) error {
|
||||
return DB.Save(relation).Error
|
||||
}
|
||||
|
||||
func DeleteGiteaRelation(id uint) error {
|
||||
return DB.Delete(&GiteaRelation{}, id).Error
|
||||
}
|
||||
|
||||
func CreateWebhookConfig(config *WebhookConfig) error {
|
||||
return DB.Create(config).Error
|
||||
}
|
||||
|
||||
func GetWebhookConfigByRepo(repoID uint) (*WebhookConfig, error) {
|
||||
var config WebhookConfig
|
||||
err := DB.Where("gitea_repo_id = ?", repoID).First(&config).Error
|
||||
return &config, err
|
||||
}
|
||||
|
||||
func UpdateWebhookConfig(config *WebhookConfig) error {
|
||||
return DB.Save(config).Error
|
||||
}
|
||||
|
||||
func DeleteWebhookConfig(id uint) error {
|
||||
return DB.Delete(&WebhookConfig{}, id).Error
|
||||
}
|
163
internal/models/project.go
Normal file
163
internal/models/project.go
Normal file
@@ -0,0 +1,163 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Project struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
Name string `json:"name" gorm:"not null"`
|
||||
Description string `json:"description"`
|
||||
GiteaOrg string `json:"gitea_org"`
|
||||
Status string `json:"status" gorm:"default:'planning'"`
|
||||
Priority string `json:"priority" gorm:"default:'medium'"`
|
||||
StartDate *time.Time `json:"start_date"`
|
||||
EndDate *time.Time `json:"end_date"`
|
||||
OwnerID uint `json:"owner_id"`
|
||||
Owner User `json:"owner" gorm:"foreignKey:OwnerID"`
|
||||
Members []ProjectMember `json:"members" gorm:"foreignKey:ProjectID"`
|
||||
Epics []Epic `json:"epics" gorm:"foreignKey:ProjectID"`
|
||||
Stories []Story `json:"stories" gorm:"foreignKey:ProjectID"`
|
||||
Tasks []Task `json:"tasks" gorm:"foreignKey:ProjectID"`
|
||||
Sprints []Sprint `json:"sprints" gorm:"foreignKey:ProjectID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
type ProjectMember struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
ProjectID uint `json:"project_id"`
|
||||
UserID uint `json:"user_id"`
|
||||
Role string `json:"role" gorm:"default:'developer'"`
|
||||
User User `json:"user" gorm:"foreignKey:UserID"`
|
||||
JoinedAt time.Time `json:"joined_at"`
|
||||
}
|
||||
|
||||
type ProjectStatus string
|
||||
|
||||
const (
|
||||
ProjectStatusActive ProjectStatus = "active"
|
||||
ProjectStatusArchived ProjectStatus = "archived"
|
||||
ProjectStatusPlanning ProjectStatus = "planning"
|
||||
)
|
||||
|
||||
type ProjectPriority string
|
||||
|
||||
const (
|
||||
PriorityLow ProjectPriority = "low"
|
||||
PriorityMedium ProjectPriority = "medium"
|
||||
PriorityHigh ProjectPriority = "high"
|
||||
PriorityCritical ProjectPriority = "critical"
|
||||
)
|
||||
|
||||
type ProjectMemberRole string
|
||||
|
||||
const (
|
||||
ProjectRoleOwner ProjectMemberRole = "owner"
|
||||
ProjectRoleManager ProjectMemberRole = "manager"
|
||||
ProjectRoleDeveloper ProjectMemberRole = "developer"
|
||||
ProjectRoleTester ProjectMemberRole = "tester"
|
||||
ProjectRoleViewer ProjectMemberRole = "viewer"
|
||||
)
|
||||
|
||||
func (p *Project) BeforeCreate(tx *gorm.DB) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (p *Project) GetMembers() ([]User, error) {
|
||||
var users []User
|
||||
err := DB.Joins("JOIN project_members ON users.id = project_members.user_id").
|
||||
Where("project_members.project_id = ?", p.ID).
|
||||
Find(&users).Error
|
||||
return users, err
|
||||
}
|
||||
|
||||
func (p *Project) AddMember(userID uint, role string) error {
|
||||
member := ProjectMember{
|
||||
ProjectID: p.ID,
|
||||
UserID: userID,
|
||||
Role: role,
|
||||
JoinedAt: time.Now(),
|
||||
}
|
||||
return DB.Create(&member).Error
|
||||
}
|
||||
|
||||
func (p *Project) RemoveMember(userID uint) error {
|
||||
return DB.Where("project_id = ? AND user_id = ?", p.ID, userID).Delete(&ProjectMember{}).Error
|
||||
}
|
||||
|
||||
func (p *Project) GetProgress() (float64, error) {
|
||||
var totalTasks int64
|
||||
var completedTasks int64
|
||||
|
||||
err := DB.Model(&Task{}).Where("project_id = ?", p.ID).Count(&totalTasks).Error
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
|
||||
if totalTasks == 0 {
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
err = DB.Model(&Task{}).Where("project_id = ? AND status = 'done'", p.ID).Count(&completedTasks).Error
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
|
||||
return float64(completedTasks) / float64(totalTasks) * 100, nil
|
||||
}
|
||||
|
||||
func CreateProject(project *Project) error {
|
||||
return DB.Create(project).Error
|
||||
}
|
||||
|
||||
func GetProjectByID(id uint) (*Project, error) {
|
||||
var project Project
|
||||
err := DB.Preload("Owner").Preload("Members.User").First(&project, id).Error
|
||||
return &project, err
|
||||
}
|
||||
|
||||
func GetProjectsByUser(userID uint) ([]Project, error) {
|
||||
var projects []Project
|
||||
err := DB.Where("owner_id = ?", userID).
|
||||
Or("id IN (SELECT project_id FROM project_members WHERE user_id = ?)", userID).
|
||||
Preload("Owner").
|
||||
Find(&projects).Error
|
||||
return projects, err
|
||||
}
|
||||
|
||||
func UpdateProject(project *Project) error {
|
||||
return DB.Save(project).Error
|
||||
}
|
||||
|
||||
func DeleteProject(id uint) error {
|
||||
return DB.Delete(&Project{}, id).Error
|
||||
}
|
||||
|
||||
func ListProjects(offset, limit int, filters map[string]interface{}) ([]Project, int64, error) {
|
||||
var projects []Project
|
||||
var total int64
|
||||
|
||||
query := DB.Model(&Project{})
|
||||
|
||||
for key, value := range filters {
|
||||
switch key {
|
||||
case "status":
|
||||
query = query.Where("status = ?", value)
|
||||
case "priority":
|
||||
query = query.Where("priority = ?", value)
|
||||
case "owner_id":
|
||||
query = query.Where("owner_id = ?", value)
|
||||
}
|
||||
}
|
||||
|
||||
err := query.Count(&total).Error
|
||||
if err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
err = query.Preload("Owner").Offset(offset).Limit(limit).Find(&projects).Error
|
||||
return projects, total, err
|
||||
}
|
139
internal/models/sprint.go
Normal file
139
internal/models/sprint.go
Normal file
@@ -0,0 +1,139 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Sprint struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
ProjectID uint `json:"project_id"`
|
||||
Name string `json:"name" gorm:"not null"`
|
||||
Description string `json:"description"`
|
||||
Status string `json:"status" gorm:"default:'planning'"`
|
||||
StartDate *time.Time `json:"start_date"`
|
||||
EndDate *time.Time `json:"end_date"`
|
||||
Goal string `json:"goal"`
|
||||
Project Project `json:"project" gorm:"foreignKey:ProjectID"`
|
||||
Stories []Story `json:"stories" gorm:"foreignKey:SprintID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
type SprintStatus string
|
||||
|
||||
const (
|
||||
SprintStatusPlanning SprintStatus = "planning"
|
||||
SprintStatusActive SprintStatus = "active"
|
||||
SprintStatusCompleted SprintStatus = "completed"
|
||||
)
|
||||
|
||||
func (s *Sprint) BeforeCreate(tx *gorm.DB) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *Sprint) GetVelocity() (int, error) {
|
||||
var totalStoryPoints int
|
||||
err := DB.Model(&Story{}).
|
||||
Where("sprint_id = ? AND status = 'done'", s.ID).
|
||||
Select("COALESCE(SUM(story_points), 0)").
|
||||
Scan(&totalStoryPoints).Error
|
||||
return totalStoryPoints, err
|
||||
}
|
||||
|
||||
func (s *Sprint) GetBurndownData() ([]map[string]interface{}, error) {
|
||||
var stories []Story
|
||||
err := DB.Where("sprint_id = ?", s.ID).Find(&stories).Error
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
var burndownData []map[string]interface{}
|
||||
|
||||
// Calculate total story points
|
||||
totalPoints := 0
|
||||
for _, story := range stories {
|
||||
if story.StoryPoints != nil {
|
||||
totalPoints += *story.StoryPoints
|
||||
}
|
||||
}
|
||||
|
||||
// This is a simplified version - in a real implementation,
|
||||
// you'd track daily progress
|
||||
burndownData = append(burndownData, map[string]interface{}{
|
||||
"date": s.StartDate,
|
||||
"remaining": totalPoints,
|
||||
"ideal": totalPoints,
|
||||
})
|
||||
|
||||
if s.EndDate != nil {
|
||||
burndownData = append(burndownData, map[string]interface{}{
|
||||
"date": s.EndDate,
|
||||
"remaining": 0,
|
||||
"ideal": 0,
|
||||
})
|
||||
}
|
||||
|
||||
return burndownData, nil
|
||||
}
|
||||
|
||||
func CreateSprint(sprint *Sprint) error {
|
||||
return DB.Create(sprint).Error
|
||||
}
|
||||
|
||||
func GetSprintByID(id uint) (*Sprint, error) {
|
||||
var sprint Sprint
|
||||
err := DB.Preload("Project").Preload("Stories.Assignee").
|
||||
First(&sprint, id).Error
|
||||
return &sprint, err
|
||||
}
|
||||
|
||||
func GetSprintsByProject(projectID uint) ([]Sprint, error) {
|
||||
var sprints []Sprint
|
||||
err := DB.Where("project_id = ?", projectID).
|
||||
Preload("Stories").
|
||||
Find(&sprints).Error
|
||||
return sprints, err
|
||||
}
|
||||
|
||||
func GetActiveSprintByProject(projectID uint) (*Sprint, error) {
|
||||
var sprint Sprint
|
||||
err := DB.Where("project_id = ? AND status = 'active'", projectID).
|
||||
Preload("Stories.Assignee").
|
||||
First(&sprint).Error
|
||||
return &sprint, err
|
||||
}
|
||||
|
||||
func UpdateSprint(sprint *Sprint) error {
|
||||
return DB.Save(sprint).Error
|
||||
}
|
||||
|
||||
func DeleteSprint(id uint) error {
|
||||
return DB.Delete(&Sprint{}, id).Error
|
||||
}
|
||||
|
||||
func ListSprints(offset, limit int, filters map[string]interface{}) ([]Sprint, int64, error) {
|
||||
var sprints []Sprint
|
||||
var total int64
|
||||
|
||||
query := DB.Model(&Sprint{})
|
||||
|
||||
for key, value := range filters {
|
||||
switch key {
|
||||
case "project_id":
|
||||
query = query.Where("project_id = ?", value)
|
||||
case "status":
|
||||
query = query.Where("status = ?", value)
|
||||
}
|
||||
}
|
||||
|
||||
err := query.Count(&total).Error
|
||||
if err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
err = query.Preload("Project").
|
||||
Offset(offset).Limit(limit).Find(&sprints).Error
|
||||
return sprints, total, err
|
||||
}
|
159
internal/models/story.go
Normal file
159
internal/models/story.go
Normal file
@@ -0,0 +1,159 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Story struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
EpicID *uint `json:"epic_id"`
|
||||
ProjectID uint `json:"project_id"`
|
||||
Title string `json:"title" gorm:"not null"`
|
||||
Description string `json:"description"`
|
||||
AcceptanceCriteria string `json:"acceptance_criteria"`
|
||||
Status string `json:"status" gorm:"default:'backlog'"`
|
||||
Priority string `json:"priority" gorm:"default:'medium'"`
|
||||
StoryPoints *int `json:"story_points"`
|
||||
AssigneeID *uint `json:"assignee_id"`
|
||||
ReporterID uint `json:"reporter_id"`
|
||||
SprintID *uint `json:"sprint_id"`
|
||||
EstimatedHours *float64 `json:"estimated_hours"`
|
||||
ActualHours float64 `json:"actual_hours" gorm:"default:0"`
|
||||
Epic *Epic `json:"epic" gorm:"foreignKey:EpicID"`
|
||||
Project Project `json:"project" gorm:"foreignKey:ProjectID"`
|
||||
Assignee *User `json:"assignee" gorm:"foreignKey:AssigneeID"`
|
||||
Reporter User `json:"reporter" gorm:"foreignKey:ReporterID"`
|
||||
Sprint *Sprint `json:"sprint" gorm:"foreignKey:SprintID"`
|
||||
Tasks []Task `json:"tasks" gorm:"foreignKey:StoryID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
type StoryStatus string
|
||||
|
||||
const (
|
||||
StoryStatusBacklog StoryStatus = "backlog"
|
||||
StoryStatusTodo StoryStatus = "todo"
|
||||
StoryStatusInProgress StoryStatus = "in_progress"
|
||||
StoryStatusReview StoryStatus = "review"
|
||||
StoryStatusTesting StoryStatus = "testing"
|
||||
StoryStatusDone StoryStatus = "done"
|
||||
StoryStatusCancelled StoryStatus = "cancelled"
|
||||
)
|
||||
|
||||
func (s *Story) BeforeCreate(tx *gorm.DB) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *Story) GetTasks() ([]Task, error) {
|
||||
var tasks []Task
|
||||
err := DB.Where("story_id = ?", s.ID).Preload("Assignee").Find(&tasks).Error
|
||||
return tasks, err
|
||||
}
|
||||
|
||||
func (s *Story) UpdateProgress() error {
|
||||
var totalTasks int64
|
||||
var completedTasks int64
|
||||
|
||||
err := DB.Model(&Task{}).Where("story_id = ?", s.ID).Count(&totalTasks).Error
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if totalTasks == 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
err = DB.Model(&Task{}).Where("story_id = ? AND status = 'done'", s.ID).Count(&completedTasks).Error
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if completedTasks == totalTasks {
|
||||
s.Status = string(StoryStatusDone)
|
||||
} else if completedTasks > 0 {
|
||||
s.Status = string(StoryStatusInProgress)
|
||||
}
|
||||
|
||||
return DB.Save(s).Error
|
||||
}
|
||||
|
||||
func CreateStory(story *Story) error {
|
||||
return DB.Create(story).Error
|
||||
}
|
||||
|
||||
func GetStoryByID(id uint) (*Story, error) {
|
||||
var story Story
|
||||
err := DB.Preload("Epic").Preload("Project").Preload("Assignee").
|
||||
Preload("Reporter").Preload("Sprint").Preload("Tasks").
|
||||
First(&story, id).Error
|
||||
return &story, err
|
||||
}
|
||||
|
||||
func GetStoriesByProject(projectID uint) ([]Story, error) {
|
||||
var stories []Story
|
||||
err := DB.Where("project_id = ?", projectID).
|
||||
Preload("Epic").Preload("Assignee").Preload("Reporter").
|
||||
Find(&stories).Error
|
||||
return stories, err
|
||||
}
|
||||
|
||||
func GetStoriesByEpic(epicID uint) ([]Story, error) {
|
||||
var stories []Story
|
||||
err := DB.Where("epic_id = ?", epicID).
|
||||
Preload("Assignee").Preload("Reporter").
|
||||
Find(&stories).Error
|
||||
return stories, err
|
||||
}
|
||||
|
||||
func GetStoriesBySprint(sprintID uint) ([]Story, error) {
|
||||
var stories []Story
|
||||
err := DB.Where("sprint_id = ?", sprintID).
|
||||
Preload("Assignee").Preload("Reporter").
|
||||
Find(&stories).Error
|
||||
return stories, err
|
||||
}
|
||||
|
||||
func UpdateStory(story *Story) error {
|
||||
return DB.Save(story).Error
|
||||
}
|
||||
|
||||
func DeleteStory(id uint) error {
|
||||
return DB.Delete(&Story{}, id).Error
|
||||
}
|
||||
|
||||
func ListStories(offset, limit int, filters map[string]interface{}) ([]Story, int64, error) {
|
||||
var stories []Story
|
||||
var total int64
|
||||
|
||||
query := DB.Model(&Story{})
|
||||
|
||||
for key, value := range filters {
|
||||
switch key {
|
||||
case "project_id":
|
||||
query = query.Where("project_id = ?", value)
|
||||
case "epic_id":
|
||||
query = query.Where("epic_id = ?", value)
|
||||
case "sprint_id":
|
||||
query = query.Where("sprint_id = ?", value)
|
||||
case "status":
|
||||
query = query.Where("status = ?", value)
|
||||
case "priority":
|
||||
query = query.Where("priority = ?", value)
|
||||
case "assignee_id":
|
||||
query = query.Where("assignee_id = ?", value)
|
||||
}
|
||||
}
|
||||
|
||||
err := query.Count(&total).Error
|
||||
if err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
err = query.Preload("Epic").Preload("Project").Preload("Assignee").
|
||||
Preload("Reporter").Preload("Sprint").
|
||||
Offset(offset).Limit(limit).Find(&stories).Error
|
||||
return stories, total, err
|
||||
}
|
166
internal/models/task.go
Normal file
166
internal/models/task.go
Normal file
@@ -0,0 +1,166 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Task struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
StoryID *uint `json:"story_id"`
|
||||
ProjectID uint `json:"project_id"`
|
||||
Title string `json:"title" gorm:"not null"`
|
||||
Description string `json:"description"`
|
||||
Status string `json:"status" gorm:"default:'todo'"`
|
||||
Priority string `json:"priority" gorm:"default:'medium'"`
|
||||
TaskType string `json:"task_type" gorm:"default:'feature'"`
|
||||
AssigneeID *uint `json:"assignee_id"`
|
||||
ReporterID uint `json:"reporter_id"`
|
||||
EstimatedHours *float64 `json:"estimated_hours"`
|
||||
ActualHours float64 `json:"actual_hours" gorm:"default:0"`
|
||||
DueDate *time.Time `json:"due_date"`
|
||||
Story *Story `json:"story" gorm:"foreignKey:StoryID"`
|
||||
Project Project `json:"project" gorm:"foreignKey:ProjectID"`
|
||||
Assignee *User `json:"assignee" gorm:"foreignKey:AssigneeID"`
|
||||
Reporter User `json:"reporter" gorm:"foreignKey:ReporterID"`
|
||||
GiteaRelations []GiteaRelation `json:"gitea_relations" gorm:"foreignKey:TaskID"`
|
||||
TimeLogs []TimeLog `json:"time_logs" gorm:"foreignKey:TaskID"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
type TaskStatus string
|
||||
|
||||
const (
|
||||
TaskStatusTodo TaskStatus = "todo"
|
||||
TaskStatusInProgress TaskStatus = "in_progress"
|
||||
TaskStatusReview TaskStatus = "review"
|
||||
TaskStatusTesting TaskStatus = "testing"
|
||||
TaskStatusDone TaskStatus = "done"
|
||||
TaskStatusBlocked TaskStatus = "blocked"
|
||||
)
|
||||
|
||||
type TaskType string
|
||||
|
||||
const (
|
||||
TaskTypeFeature TaskType = "feature"
|
||||
TaskTypeBug TaskType = "bug"
|
||||
TaskTypeImprovement TaskType = "improvement"
|
||||
TaskTypeResearch TaskType = "research"
|
||||
TaskTypeDocumentation TaskType = "documentation"
|
||||
)
|
||||
|
||||
func (t *Task) BeforeCreate(tx *gorm.DB) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *Task) LogTime(userID uint, hours float64, description string, logDate time.Time) error {
|
||||
timeLog := TimeLog{
|
||||
TaskID: t.ID,
|
||||
UserID: userID,
|
||||
Hours: hours,
|
||||
Description: description,
|
||||
LogDate: logDate,
|
||||
}
|
||||
|
||||
if err := DB.Create(&timeLog).Error; err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
t.ActualHours += hours
|
||||
return DB.Save(t).Error
|
||||
}
|
||||
|
||||
func (t *Task) LinkGiteaObject(repoID uint, repoName, relationType, objectID string, objectNumber *uint, title, url string) error {
|
||||
relation := GiteaRelation{
|
||||
TaskID: t.ID,
|
||||
GiteaRepoID: repoID,
|
||||
GiteaRepoName: repoName,
|
||||
RelationType: relationType,
|
||||
GiteaObjectID: objectID,
|
||||
GiteaObjectNumber: objectNumber,
|
||||
GiteaObjectTitle: title,
|
||||
GiteaObjectURL: url,
|
||||
}
|
||||
|
||||
return DB.Create(&relation).Error
|
||||
}
|
||||
|
||||
func CreateTask(task *Task) error {
|
||||
return DB.Create(task).Error
|
||||
}
|
||||
|
||||
func GetTaskByID(id uint) (*Task, error) {
|
||||
var task Task
|
||||
err := DB.Preload("Story").Preload("Project").Preload("Assignee").
|
||||
Preload("Reporter").Preload("GiteaRelations").Preload("TimeLogs").
|
||||
First(&task, id).Error
|
||||
return &task, err
|
||||
}
|
||||
|
||||
func GetTasksByProject(projectID uint) ([]Task, error) {
|
||||
var tasks []Task
|
||||
err := DB.Where("project_id = ?", projectID).
|
||||
Preload("Story").Preload("Assignee").Preload("Reporter").
|
||||
Find(&tasks).Error
|
||||
return tasks, err
|
||||
}
|
||||
|
||||
func GetTasksByStory(storyID uint) ([]Task, error) {
|
||||
var tasks []Task
|
||||
err := DB.Where("story_id = ?", storyID).
|
||||
Preload("Assignee").Preload("Reporter").
|
||||
Find(&tasks).Error
|
||||
return tasks, err
|
||||
}
|
||||
|
||||
func GetTasksByAssignee(assigneeID uint) ([]Task, error) {
|
||||
var tasks []Task
|
||||
err := DB.Where("assignee_id = ?", assigneeID).
|
||||
Preload("Story").Preload("Project").
|
||||
Find(&tasks).Error
|
||||
return tasks, err
|
||||
}
|
||||
|
||||
func UpdateTask(task *Task) error {
|
||||
return DB.Save(task).Error
|
||||
}
|
||||
|
||||
func DeleteTask(id uint) error {
|
||||
return DB.Delete(&Task{}, id).Error
|
||||
}
|
||||
|
||||
func ListTasks(offset, limit int, filters map[string]interface{}) ([]Task, int64, error) {
|
||||
var tasks []Task
|
||||
var total int64
|
||||
|
||||
query := DB.Model(&Task{})
|
||||
|
||||
for key, value := range filters {
|
||||
switch key {
|
||||
case "project_id":
|
||||
query = query.Where("project_id = ?", value)
|
||||
case "story_id":
|
||||
query = query.Where("story_id = ?", value)
|
||||
case "status":
|
||||
query = query.Where("status = ?", value)
|
||||
case "priority":
|
||||
query = query.Where("priority = ?", value)
|
||||
case "task_type":
|
||||
query = query.Where("task_type = ?", value)
|
||||
case "assignee_id":
|
||||
query = query.Where("assignee_id = ?", value)
|
||||
}
|
||||
}
|
||||
|
||||
err := query.Count(&total).Error
|
||||
if err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
err = query.Preload("Story").Preload("Project").Preload("Assignee").
|
||||
Preload("Reporter").Preload("GiteaRelations").
|
||||
Offset(offset).Limit(limit).Find(&tasks).Error
|
||||
return tasks, total, err
|
||||
}
|
96
internal/models/user.go
Normal file
96
internal/models/user.go
Normal file
@@ -0,0 +1,96 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type User struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
GiteaUserID *uint `json:"gitea_user_id" gorm:"uniqueIndex"`
|
||||
Username string `json:"username" gorm:"unique;not null"`
|
||||
Email string `json:"email" gorm:"not null"`
|
||||
FullName string `json:"full_name"`
|
||||
AvatarURL string `json:"avatar_url"`
|
||||
Role string `json:"role" gorm:"default:'developer'"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
}
|
||||
|
||||
type UserRole string
|
||||
|
||||
const (
|
||||
RoleAdmin UserRole = "admin"
|
||||
RoleManager UserRole = "manager"
|
||||
RoleDeveloper UserRole = "developer"
|
||||
RoleTester UserRole = "tester"
|
||||
RoleViewer UserRole = "viewer"
|
||||
)
|
||||
|
||||
func (u *User) BeforeCreate(tx *gorm.DB) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (u *User) GetOwnedProjects() ([]Project, error) {
|
||||
var projects []Project
|
||||
err := DB.Where("owner_id = ?", u.ID).Find(&projects).Error
|
||||
return projects, err
|
||||
}
|
||||
|
||||
func (u *User) GetJoinedProjects() ([]Project, error) {
|
||||
var projects []Project
|
||||
err := DB.Joins("JOIN project_members ON projects.id = project_members.project_id").
|
||||
Where("project_members.user_id = ?", u.ID).
|
||||
Find(&projects).Error
|
||||
return projects, err
|
||||
}
|
||||
|
||||
func (u *User) GetAssignedTasks() ([]Task, error) {
|
||||
var tasks []Task
|
||||
err := DB.Where("assignee_id = ?", u.ID).Find(&tasks).Error
|
||||
return tasks, err
|
||||
}
|
||||
|
||||
func CreateUser(user *User) error {
|
||||
return DB.Create(user).Error
|
||||
}
|
||||
|
||||
func GetUserByID(id uint) (*User, error) {
|
||||
var user User
|
||||
err := DB.First(&user, id).Error
|
||||
return &user, err
|
||||
}
|
||||
|
||||
func GetUserByUsername(username string) (*User, error) {
|
||||
var user User
|
||||
err := DB.Where("username = ?", username).First(&user).Error
|
||||
return &user, err
|
||||
}
|
||||
|
||||
func GetUserByGiteaID(giteaUserID uint) (*User, error) {
|
||||
var user User
|
||||
err := DB.Where("gitea_user_id = ?", giteaUserID).First(&user).Error
|
||||
return &user, err
|
||||
}
|
||||
|
||||
func UpdateUser(user *User) error {
|
||||
return DB.Save(user).Error
|
||||
}
|
||||
|
||||
func DeleteUser(id uint) error {
|
||||
return DB.Delete(&User{}, id).Error
|
||||
}
|
||||
|
||||
func ListUsers(offset, limit int) ([]User, int64, error) {
|
||||
var users []User
|
||||
var total int64
|
||||
|
||||
err := DB.Model(&User{}).Count(&total).Error
|
||||
if err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
err = DB.Offset(offset).Limit(limit).Find(&users).Error
|
||||
return users, total, err
|
||||
}
|
213
schema.sql
Normal file
213
schema.sql
Normal file
@@ -0,0 +1,213 @@
|
||||
-- Gitea Project Management Database Schema
|
||||
|
||||
-- Users table (can sync with Gitea users)
|
||||
CREATE TABLE users (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
gitea_user_id BIGINT UNIQUE,
|
||||
username VARCHAR(255) NOT NULL UNIQUE,
|
||||
email VARCHAR(255) NOT NULL,
|
||||
full_name VARCHAR(255),
|
||||
avatar_url VARCHAR(500),
|
||||
role ENUM('admin', 'manager', 'developer', 'tester', 'viewer') DEFAULT 'developer',
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
||||
);
|
||||
|
||||
-- Projects table
|
||||
CREATE TABLE projects (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
name VARCHAR(255) NOT NULL,
|
||||
description TEXT,
|
||||
gitea_org VARCHAR(255),
|
||||
status ENUM('active', 'archived', 'planning') DEFAULT 'planning',
|
||||
priority ENUM('low', 'medium', 'high', 'critical') DEFAULT 'medium',
|
||||
start_date DATE,
|
||||
end_date DATE,
|
||||
owner_id BIGINT,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (owner_id) REFERENCES users(id)
|
||||
);
|
||||
|
||||
-- Project members table
|
||||
CREATE TABLE project_members (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
project_id BIGINT,
|
||||
user_id BIGINT,
|
||||
role ENUM('owner', 'manager', 'developer', 'tester', 'viewer') DEFAULT 'developer',
|
||||
joined_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE,
|
||||
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE,
|
||||
UNIQUE KEY unique_project_user (project_id, user_id)
|
||||
);
|
||||
|
||||
-- Epics table (大型需求)
|
||||
CREATE TABLE epics (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
project_id BIGINT,
|
||||
title VARCHAR(255) NOT NULL,
|
||||
description TEXT,
|
||||
status ENUM('backlog', 'planning', 'in_progress', 'testing', 'done', 'cancelled') DEFAULT 'backlog',
|
||||
priority ENUM('low', 'medium', 'high', 'critical') DEFAULT 'medium',
|
||||
assignee_id BIGINT,
|
||||
reporter_id BIGINT,
|
||||
start_date DATE,
|
||||
due_date DATE,
|
||||
estimated_hours DECIMAL(8,2),
|
||||
actual_hours DECIMAL(8,2) DEFAULT 0,
|
||||
progress_percentage TINYINT DEFAULT 0,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE,
|
||||
FOREIGN KEY (assignee_id) REFERENCES users(id),
|
||||
FOREIGN KEY (reporter_id) REFERENCES users(id)
|
||||
);
|
||||
|
||||
-- Stories table (用户故事)
|
||||
CREATE TABLE stories (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
epic_id BIGINT,
|
||||
project_id BIGINT,
|
||||
title VARCHAR(255) NOT NULL,
|
||||
description TEXT,
|
||||
acceptance_criteria TEXT,
|
||||
status ENUM('backlog', 'todo', 'in_progress', 'review', 'testing', 'done', 'cancelled') DEFAULT 'backlog',
|
||||
priority ENUM('low', 'medium', 'high', 'critical') DEFAULT 'medium',
|
||||
story_points TINYINT,
|
||||
assignee_id BIGINT,
|
||||
reporter_id BIGINT,
|
||||
sprint_id BIGINT,
|
||||
estimated_hours DECIMAL(8,2),
|
||||
actual_hours DECIMAL(8,2) DEFAULT 0,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (epic_id) REFERENCES epics(id) ON DELETE SET NULL,
|
||||
FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE,
|
||||
FOREIGN KEY (assignee_id) REFERENCES users(id),
|
||||
FOREIGN KEY (reporter_id) REFERENCES users(id)
|
||||
);
|
||||
|
||||
-- Tasks table (具体任务)
|
||||
CREATE TABLE tasks (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
story_id BIGINT,
|
||||
project_id BIGINT,
|
||||
title VARCHAR(255) NOT NULL,
|
||||
description TEXT,
|
||||
status ENUM('todo', 'in_progress', 'review', 'testing', 'done', 'blocked') DEFAULT 'todo',
|
||||
priority ENUM('low', 'medium', 'high', 'critical') DEFAULT 'medium',
|
||||
task_type ENUM('feature', 'bug', 'improvement', 'research', 'documentation') DEFAULT 'feature',
|
||||
assignee_id BIGINT,
|
||||
reporter_id BIGINT,
|
||||
estimated_hours DECIMAL(8,2),
|
||||
actual_hours DECIMAL(8,2) DEFAULT 0,
|
||||
due_date DATE,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (story_id) REFERENCES stories(id) ON DELETE SET NULL,
|
||||
FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE,
|
||||
FOREIGN KEY (assignee_id) REFERENCES users(id),
|
||||
FOREIGN KEY (reporter_id) REFERENCES users(id)
|
||||
);
|
||||
|
||||
-- Gitea integrations table (关联 Gitea 仓库对象)
|
||||
CREATE TABLE gitea_relations (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
task_id BIGINT,
|
||||
gitea_repo_id BIGINT,
|
||||
gitea_repo_name VARCHAR(255),
|
||||
relation_type ENUM('branch', 'commit', 'pull_request', 'issue') NOT NULL,
|
||||
gitea_object_id VARCHAR(255) NOT NULL,
|
||||
gitea_object_number BIGINT,
|
||||
gitea_object_title VARCHAR(255),
|
||||
gitea_object_url VARCHAR(500),
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (task_id) REFERENCES tasks(id) ON DELETE CASCADE,
|
||||
INDEX idx_task_relation (task_id, relation_type),
|
||||
INDEX idx_gitea_object (gitea_repo_id, relation_type, gitea_object_id)
|
||||
);
|
||||
|
||||
-- Sprints/Iterations table
|
||||
CREATE TABLE sprints (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
project_id BIGINT,
|
||||
name VARCHAR(255) NOT NULL,
|
||||
description TEXT,
|
||||
status ENUM('planning', 'active', 'completed') DEFAULT 'planning',
|
||||
start_date DATE,
|
||||
end_date DATE,
|
||||
goal TEXT,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE
|
||||
);
|
||||
|
||||
-- Comments table
|
||||
CREATE TABLE comments (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
entity_type ENUM('project', 'epic', 'story', 'task') NOT NULL,
|
||||
entity_id BIGINT NOT NULL,
|
||||
user_id BIGINT,
|
||||
content TEXT NOT NULL,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (user_id) REFERENCES users(id),
|
||||
INDEX idx_entity (entity_type, entity_id)
|
||||
);
|
||||
|
||||
-- Tags table
|
||||
CREATE TABLE tags (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
name VARCHAR(100) NOT NULL UNIQUE,
|
||||
color VARCHAR(7) DEFAULT '#1890ff',
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
||||
|
||||
-- Entity tags table (many-to-many)
|
||||
CREATE TABLE entity_tags (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
entity_type ENUM('project', 'epic', 'story', 'task') NOT NULL,
|
||||
entity_id BIGINT NOT NULL,
|
||||
tag_id BIGINT,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE CASCADE,
|
||||
UNIQUE KEY unique_entity_tag (entity_type, entity_id, tag_id)
|
||||
);
|
||||
|
||||
-- Time logs table
|
||||
CREATE TABLE time_logs (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
task_id BIGINT,
|
||||
user_id BIGINT,
|
||||
hours DECIMAL(8,2) NOT NULL,
|
||||
description TEXT,
|
||||
log_date DATE NOT NULL,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (task_id) REFERENCES tasks(id) ON DELETE CASCADE,
|
||||
FOREIGN KEY (user_id) REFERENCES users(id)
|
||||
);
|
||||
|
||||
-- Webhooks configuration table
|
||||
CREATE TABLE webhook_configs (
|
||||
id BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
project_id BIGINT,
|
||||
gitea_repo_id BIGINT,
|
||||
gitea_repo_name VARCHAR(255),
|
||||
webhook_url VARCHAR(500),
|
||||
secret VARCHAR(255),
|
||||
events JSON,
|
||||
active BOOLEAN DEFAULT TRUE,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE
|
||||
);
|
||||
|
||||
-- Add indexes for better performance
|
||||
CREATE INDEX idx_projects_status ON projects(status);
|
||||
CREATE INDEX idx_epics_project_status ON epics(project_id, status);
|
||||
CREATE INDEX idx_stories_project_status ON stories(project_id, status);
|
||||
CREATE INDEX idx_stories_epic ON stories(epic_id);
|
||||
CREATE INDEX idx_tasks_project_status ON tasks(project_id, status);
|
||||
CREATE INDEX idx_tasks_story ON tasks(story_id);
|
||||
CREATE INDEX idx_tasks_assignee ON tasks(assignee_id);
|
||||
CREATE INDEX idx_gitea_relations_task ON gitea_relations(task_id);
|
522
web/templates/index.html
Normal file
522
web/templates/index.html
Normal file
@@ -0,0 +1,522 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Gitea Project Management</title>
|
||||
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
|
||||
<script src="https://unpkg.com/element-plus@2.4.0/dist/index.full.min.js"></script>
|
||||
<link rel="stylesheet" href="https://unpkg.com/element-plus@2.4.0/dist/index.css">
|
||||
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
||||
<style>
|
||||
.main-container {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.header {
|
||||
background: #001529;
|
||||
color: white;
|
||||
padding: 0 20px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 60px;
|
||||
}
|
||||
.content {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
}
|
||||
.sidebar {
|
||||
width: 240px;
|
||||
background: #f0f2f5;
|
||||
border-right: 1px solid #d9d9d9;
|
||||
}
|
||||
.main-content {
|
||||
flex: 1;
|
||||
padding: 20px;
|
||||
background: white;
|
||||
}
|
||||
.kanban-board {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
padding: 20px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
.kanban-column {
|
||||
min-width: 300px;
|
||||
background: #f7f8fa;
|
||||
border-radius: 6px;
|
||||
padding: 16px;
|
||||
}
|
||||
.kanban-header {
|
||||
font-weight: 500;
|
||||
margin-bottom: 16px;
|
||||
padding: 8px 12px;
|
||||
background: white;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.task-card {
|
||||
background: white;
|
||||
border: 1px solid #e1e4e8;
|
||||
border-radius: 6px;
|
||||
padding: 12px;
|
||||
margin-bottom: 8px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.task-card:hover {
|
||||
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
||||
}
|
||||
.task-title {
|
||||
font-weight: 500;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.task-meta {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-size: 12px;
|
||||
color: #586069;
|
||||
}
|
||||
.priority-high { border-left: 4px solid #f5222d; }
|
||||
.priority-medium { border-left: 4px solid #fa8c16; }
|
||||
.priority-low { border-left: 4px solid #52c41a; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<div class="main-container">
|
||||
<div class="header">
|
||||
<div>
|
||||
<h2 style="margin: 0;">Gitea Project Management</h2>
|
||||
</div>
|
||||
<div v-if="user">
|
||||
<el-dropdown>
|
||||
<el-avatar :src="user.avatar_url" :size="36">{{ user.username[0] }}</el-avatar>
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu>
|
||||
<el-dropdown-item>{{ user.full_name || user.username }}</el-dropdown-item>
|
||||
<el-dropdown-item divided @click="logout">退出登录</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</template>
|
||||
</el-dropdown>
|
||||
</div>
|
||||
<div v-else>
|
||||
<el-button type="primary" @click.prevent="login">登录</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content" v-if="user">
|
||||
<div class="sidebar">
|
||||
<el-menu :default-active="activeMenu" @select="handleMenuSelect">
|
||||
<el-menu-item index="dashboard">
|
||||
<el-icon><house /></el-icon>
|
||||
<span>仪表板</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="projects">
|
||||
<el-icon><folder /></el-icon>
|
||||
<span>项目管理</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="tasks">
|
||||
<el-icon><document /></el-icon>
|
||||
<span>任务看板</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="sprints">
|
||||
<el-icon><calendar /></el-icon>
|
||||
<span>迭代管理</span>
|
||||
</el-menu-item>
|
||||
<el-menu-item index="reports">
|
||||
<el-icon><data-line /></el-icon>
|
||||
<span>报表统计</span>
|
||||
</el-menu-item>
|
||||
</el-menu>
|
||||
</div>
|
||||
|
||||
<div class="main-content">
|
||||
<!-- 项目管理页面 -->
|
||||
<div v-if="activeMenu === 'projects'">
|
||||
<div style="margin-bottom: 20px; display: flex; justify-content: between; align-items: center;">
|
||||
<h3>项目管理</h3>
|
||||
<el-button type="primary" @click="showCreateProject = true">创建项目</el-button>
|
||||
</div>
|
||||
|
||||
<el-table :data="projects" style="width: 100%">
|
||||
<el-table-column prop="name" label="项目名称"></el-table-column>
|
||||
<el-table-column prop="description" label="描述"></el-table-column>
|
||||
<el-table-column prop="status" label="状态">
|
||||
<template #default="scope">
|
||||
<el-tag :type="getStatusType(scope.row.status)">{{ scope.row.status }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="priority" label="优先级">
|
||||
<template #default="scope">
|
||||
<el-tag :type="getPriorityType(scope.row.priority)">{{ scope.row.priority }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="owner.username" label="负责人"></el-table-column>
|
||||
<el-table-column label="操作">
|
||||
<template #default="scope">
|
||||
<el-button size="small" @click="viewProject(scope.row)">查看</el-button>
|
||||
<el-button size="small" type="primary" @click="editProject(scope.row)">编辑</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
|
||||
<!-- 任务看板页面 -->
|
||||
<div v-if="activeMenu === 'tasks'">
|
||||
<div style="margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center;">
|
||||
<h3>任务看板</h3>
|
||||
<div>
|
||||
<el-select v-model="selectedProject" placeholder="选择项目" @change="loadTasks" style="margin-right: 10px;">
|
||||
<el-option
|
||||
v-for="project in projects"
|
||||
:key="project.id"
|
||||
:label="project.name"
|
||||
:value="project.id">
|
||||
</el-option>
|
||||
</el-select>
|
||||
<el-button type="primary" @click="showCreateTask = true" :disabled="!selectedProject">创建任务</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="kanban-board">
|
||||
<div class="kanban-column" v-for="status in taskStatuses" :key="status.value">
|
||||
<div class="kanban-header">{{ status.label }}</div>
|
||||
<div class="task-card"
|
||||
v-for="task in getTasksByStatus(status.value)"
|
||||
:key="task.id"
|
||||
:class="`priority-${task.priority}`"
|
||||
@click="viewTask(task)">
|
||||
<div class="task-title">{{ task.title }}</div>
|
||||
<div class="task-meta">
|
||||
<span>{{ task.assignee?.username || '未分配' }}</span>
|
||||
<el-tag size="small" :type="getPriorityType(task.priority)">{{ task.priority }}</el-tag>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 仪表板页面 -->
|
||||
<div v-if="activeMenu === 'dashboard'">
|
||||
<h3>仪表板</h3>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="6">
|
||||
<el-card>
|
||||
<el-statistic title="总项目数" :value="projects.length"></el-statistic>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-card>
|
||||
<el-statistic title="总任务数" :value="tasks.length"></el-statistic>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-card>
|
||||
<el-statistic title="已完成任务" :value="getCompletedTasks()"></el-statistic>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-card>
|
||||
<el-statistic title="我的任务" :value="getMyTasks()"></el-statistic>
|
||||
</el-card>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
|
||||
<!-- 其他页面占位符 -->
|
||||
<div v-if="activeMenu === 'sprints'">
|
||||
<h3>迭代管理</h3>
|
||||
<p>功能开发中...</p>
|
||||
</div>
|
||||
|
||||
<div v-if="activeMenu === 'reports'">
|
||||
<h3>报表统计</h3>
|
||||
<p>功能开发中...</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 未登录状态 -->
|
||||
<div v-else style="display: flex; justify-content: center; align-items: center; height: 80vh;">
|
||||
<el-card style="width: 400px;">
|
||||
<h2 style="text-align: center; margin-bottom: 30px;">Gitea Project Management</h2>
|
||||
<p style="text-align: center; margin-bottom: 30px;">请登录以开始使用项目管理功能</p>
|
||||
<el-button type="primary" @click.prevent="login" style="width: 100%;">使用 Gitea 登录</el-button>
|
||||
</el-card>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 创建项目对话框 -->
|
||||
<el-dialog v-model="showCreateProject" title="创建项目" width="600px">
|
||||
<el-form :model="newProject" label-width="100px">
|
||||
<el-form-item label="项目名称" required>
|
||||
<el-input v-model="newProject.name" placeholder="请输入项目名称"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="项目描述">
|
||||
<el-input type="textarea" v-model="newProject.description" placeholder="请输入项目描述"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="优先级">
|
||||
<el-select v-model="newProject.priority" placeholder="选择优先级">
|
||||
<el-option label="低" value="low"></el-option>
|
||||
<el-option label="中" value="medium"></el-option>
|
||||
<el-option label="高" value="high"></el-option>
|
||||
<el-option label="紧急" value="critical"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<el-button @click="showCreateProject = false">取消</el-button>
|
||||
<el-button type="primary" @click="createProject">创建</el-button>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
<!-- 创建任务对话框 -->
|
||||
<el-dialog v-model="showCreateTask" title="创建任务" width="600px">
|
||||
<el-form :model="newTask" label-width="100px">
|
||||
<el-form-item label="任务标题" required>
|
||||
<el-input v-model="newTask.title" placeholder="请输入任务标题"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="任务描述">
|
||||
<el-input type="textarea" v-model="newTask.description" placeholder="请输入任务描述"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="优先级">
|
||||
<el-select v-model="newTask.priority" placeholder="选择优先级">
|
||||
<el-option label="低" value="low"></el-option>
|
||||
<el-option label="中" value="medium"></el-option>
|
||||
<el-option label="高" value="high"></el-option>
|
||||
<el-option label="紧急" value="critical"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="任务类型">
|
||||
<el-select v-model="newTask.task_type" placeholder="选择任务类型">
|
||||
<el-option label="功能" value="feature"></el-option>
|
||||
<el-option label="缺陷" value="bug"></el-option>
|
||||
<el-option label="改进" value="improvement"></el-option>
|
||||
<el-option label="研究" value="research"></el-option>
|
||||
<el-option label="文档" value="documentation"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<el-button @click="showCreateTask = false">取消</el-button>
|
||||
<el-button type="primary" @click="createTask">创建</el-button>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const { createApp, ref, reactive, onMounted } = Vue;
|
||||
const { ElMessage } = ElementPlus;
|
||||
|
||||
createApp({
|
||||
setup() {
|
||||
const user = ref(null);
|
||||
const activeMenu = ref('dashboard');
|
||||
const projects = ref([]);
|
||||
const tasks = ref([]);
|
||||
const selectedProject = ref(null);
|
||||
const showCreateProject = ref(false);
|
||||
const showCreateTask = ref(false);
|
||||
|
||||
const newProject = reactive({
|
||||
name: '',
|
||||
description: '',
|
||||
priority: 'medium'
|
||||
});
|
||||
|
||||
const newTask = reactive({
|
||||
title: '',
|
||||
description: '',
|
||||
priority: 'medium',
|
||||
task_type: 'feature'
|
||||
});
|
||||
|
||||
const taskStatuses = [
|
||||
{ value: 'todo', label: '待办' },
|
||||
{ value: 'in_progress', label: '进行中' },
|
||||
{ value: 'review', label: '待审核' },
|
||||
{ value: 'testing', label: '测试中' },
|
||||
{ value: 'done', label: '已完成' }
|
||||
];
|
||||
|
||||
// 设置 axios 默认配置
|
||||
const token = localStorage.getItem('token');
|
||||
if (token) {
|
||||
axios.defaults.headers.common['Authorization'] = `Bearer ${token}`;
|
||||
}
|
||||
|
||||
const login = async () => {
|
||||
try {
|
||||
const response = await axios.get('/api/v1/auth/login');
|
||||
console.log('Login response:', response.data);
|
||||
if (response.data && response.data.code === 200 && response.data.data && response.data.data.auth_url) {
|
||||
console.log('Redirecting to:', response.data.data.auth_url);
|
||||
window.location.href = response.data.data.auth_url;
|
||||
} else {
|
||||
ElMessage.error('获取登录URL失败');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Login error:', error);
|
||||
ElMessage.error('登录失败');
|
||||
}
|
||||
};
|
||||
|
||||
const logout = () => {
|
||||
localStorage.removeItem('token');
|
||||
user.value = null;
|
||||
delete axios.defaults.headers.common['Authorization'];
|
||||
};
|
||||
|
||||
const loadCurrentUser = async () => {
|
||||
try {
|
||||
const response = await axios.get('/api/v1/users/me');
|
||||
user.value = response.data.data;
|
||||
} catch (error) {
|
||||
logout();
|
||||
}
|
||||
};
|
||||
|
||||
const loadProjects = async () => {
|
||||
try {
|
||||
const response = await axios.get('/api/v1/projects');
|
||||
projects.value = response.data.data || [];
|
||||
} catch (error) {
|
||||
ElMessage.error('加载项目失败');
|
||||
}
|
||||
};
|
||||
|
||||
const loadTasks = async () => {
|
||||
if (!selectedProject.value) return;
|
||||
try {
|
||||
const response = await axios.get(`/api/v1/tasks?project_id=${selectedProject.value}`);
|
||||
tasks.value = response.data.data || [];
|
||||
} catch (error) {
|
||||
ElMessage.error('加载任务失败');
|
||||
}
|
||||
};
|
||||
|
||||
const createProject = async () => {
|
||||
try {
|
||||
await axios.post('/api/v1/projects', newProject);
|
||||
ElMessage.success('创建项目成功');
|
||||
showCreateProject.value = false;
|
||||
Object.assign(newProject, { name: '', description: '', priority: 'medium' });
|
||||
loadProjects();
|
||||
} catch (error) {
|
||||
ElMessage.error('创建项目失败');
|
||||
}
|
||||
};
|
||||
|
||||
const createTask = async () => {
|
||||
try {
|
||||
const taskData = { ...newTask, project_id: selectedProject.value };
|
||||
await axios.post('/api/v1/tasks', taskData);
|
||||
ElMessage.success('创建任务成功');
|
||||
showCreateTask.value = false;
|
||||
Object.assign(newTask, { title: '', description: '', priority: 'medium', task_type: 'feature' });
|
||||
loadTasks();
|
||||
} catch (error) {
|
||||
ElMessage.error('创建任务失败');
|
||||
}
|
||||
};
|
||||
|
||||
const handleMenuSelect = (index) => {
|
||||
activeMenu.value = index;
|
||||
if (index === 'projects') {
|
||||
loadProjects();
|
||||
}
|
||||
};
|
||||
|
||||
const getTasksByStatus = (status) => {
|
||||
return tasks.value.filter(task => task.status === status);
|
||||
};
|
||||
|
||||
const getStatusType = (status) => {
|
||||
const types = {
|
||||
'planning': 'info',
|
||||
'active': 'success',
|
||||
'archived': 'warning'
|
||||
};
|
||||
return types[status] || '';
|
||||
};
|
||||
|
||||
const getPriorityType = (priority) => {
|
||||
const types = {
|
||||
'low': 'success',
|
||||
'medium': 'warning',
|
||||
'high': 'danger',
|
||||
'critical': 'danger'
|
||||
};
|
||||
return types[priority] || '';
|
||||
};
|
||||
|
||||
const getCompletedTasks = () => {
|
||||
return tasks.value.filter(task => task.status === 'done').length;
|
||||
};
|
||||
|
||||
const getMyTasks = () => {
|
||||
return tasks.value.filter(task => task.assignee?.id === user.value?.id).length;
|
||||
};
|
||||
|
||||
const viewProject = (project) => {
|
||||
ElMessage.info('项目详情功能开发中');
|
||||
};
|
||||
|
||||
const editProject = (project) => {
|
||||
ElMessage.info('编辑项目功能开发中');
|
||||
};
|
||||
|
||||
const viewTask = (task) => {
|
||||
ElMessage.info('任务详情功能开发中');
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
// 检查是否有 token 参数(OAuth 回调)
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
const token = urlParams.get('token');
|
||||
if (token) {
|
||||
localStorage.setItem('token', token);
|
||||
axios.defaults.headers.common['Authorization'] = `Bearer ${token}`;
|
||||
window.history.replaceState({}, document.title, window.location.pathname);
|
||||
}
|
||||
|
||||
if (localStorage.getItem('token')) {
|
||||
loadCurrentUser();
|
||||
loadProjects();
|
||||
}
|
||||
});
|
||||
|
||||
return {
|
||||
user,
|
||||
activeMenu,
|
||||
projects,
|
||||
tasks,
|
||||
selectedProject,
|
||||
showCreateProject,
|
||||
showCreateTask,
|
||||
newProject,
|
||||
newTask,
|
||||
taskStatuses,
|
||||
login,
|
||||
logout,
|
||||
loadTasks,
|
||||
createProject,
|
||||
createTask,
|
||||
handleMenuSelect,
|
||||
getTasksByStatus,
|
||||
getStatusType,
|
||||
getPriorityType,
|
||||
getCompletedTasks,
|
||||
getMyTasks,
|
||||
viewProject,
|
||||
editProject,
|
||||
viewTask
|
||||
};
|
||||
}
|
||||
}).use(ElementPlus).mount('#app');
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user