Merge remote-tracking branch 'origin/main'

This commit is contained in:
JACKYMYPERSON
2025-09-28 19:19:11 +08:00
4 changed files with 206 additions and 242 deletions

View File

@@ -11,31 +11,27 @@ import (
)
// ArticleList 数据库文章记录结构体
// 添加了与 ArticleOption 的关联
type ArticleList struct {
ArticleID int64 `gorm:"column:articleId;primaryKey;autoIncrement"`
PublishUserID string `gorm:"column:publish_user_id"`
Title string `gorm:"column:title"`
VoteType string `gorm:"column:vote_type"`
EndTime time.Time `gorm:"column:end_time"`
IsEnded bool `gorm:"column:is_ended"`
TotalVotersNum int `gorm:"column:total_voters_num"`
CreateTime time.Time `gorm:"column:create_time"`
// 这是关键:定义 Has Many 关联,表示一篇文章有多个选项
Options []ArticleOption `gorm:"foreignKey:VoteArticleID;references:ArticleID"`
ArticleID int64 `gorm:"column:articleId;primaryKey;autoIncrement"`
PublishUserID string `gorm:"column:publish_user_id"`
Title string `gorm:"column:title"`
VoteType string `gorm:"column:vote_type"`
EndTime time.Time `gorm:"column:end_time"`
IsEnded bool `gorm:"column:is_ended"`
TotalVotersNum int `gorm:"column:total_voters_num"`
CreateTime time.Time `gorm:"column:create_time"`
Options []ArticleOption `gorm:"foreignKey:VoteArticleID;references:ArticleID"`
}
// ArticleOption 文评选项结构
type ArticleOption struct {
ID int64 `gorm:"column:id"`
VoteArticleID int64 `gorm:"column:vote_article_id"` // 外键,关联 ArticleList
VoteArticleID int64 `gorm:"column:vote_article_id"`
OptionContent string `gorm:"column:option_content"`
OptionVotesNum int `gorm:"column:option_votes_num"`
SortOrder int `gorm:"column:sort_order"`
}
// UserVote 用户投票记录表结构
// ArticleOptionResp 格式化后的选项响应结构
type ArticleOptionResp struct {
ID int64 `json:"id"`
@@ -59,15 +55,16 @@ type ArticleResponse struct {
VotedOptionIDs []int64 `json:"user_voted_option_ids"`
}
// UserReq 请求参数结构体允许uid为空
type UserReq struct {
Uid string `json:"uid" binding:"required"`
Uid string `json:"uid" binding:"omitempty"` // 允许uid为空空字符串也合法
}
// ArticleListget 获取所有文评及选项信息(包含用户投票状态
// ArticleListget 获取所有文评及选项信息(支持空uid场景
func ArticleListget(c *gin.Context) {
var req UserReq
// 1. 解析并验证请求参数
// 1. 解析请求参数uid为空也能通过校验
if err := c.ShouldBindJSON(&req); err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": "参数解析失败",
@@ -76,7 +73,7 @@ func ArticleListget(c *gin.Context) {
return
}
// 2. 使用 Preload 一次性查询所有文章和它们的选项
// 2. 查询所有文章及关联的选项
var articles []ArticleList
if err := databaseInit.UserDB.Model(&ArticleList{}).
Preload("Options", func(db *gorm.DB) *gorm.DB {
@@ -89,35 +86,57 @@ func ArticleListget(c *gin.Context) {
return
}
// 3. 一次性查询当前用户的所有投票记录,并构建一个 map 方便查找
var userAllVotes []UserVote
if err := databaseInit.UserDB.Table("user_votes").Where("user_id = ?", req.Uid).Find(&userAllVotes).Error; err != nil && err != gorm.ErrRecordNotFound {
c.JSON(http.StatusInternalServerError, gin.H{
"error": "查询用户投票记录失败: " + err.Error(),
})
return
}
// 投票记录 mapkey: articleId, value: []optionId
// 3. 根据uid是否存在包括空字符串决定是否查询投票记录
userVotesMap := make(map[int64][]int64)
for _, vote := range userAllVotes {
userVotesMap[vote.VoteArticleID] = append(userVotesMap[vote.VoteArticleID], vote.OptionID)
}
// 判断uid是否有效非空字符串
uidValid := req.Uid != ""
// 4. 组装最终响应数据
if uidValid {
// 3.1 仅当uid有效时查询用户投票记录
var userAllVotes []UserVote
if err := databaseInit.UserDB.Table("user_votes").
Where("user_id = ?", req.Uid).
Find(&userAllVotes).Error; err != nil && err != gorm.ErrRecordNotFound {
c.JSON(http.StatusInternalServerError, gin.H{
"error": "查询用户投票记录失败: " + err.Error(),
})
return
}
// 构建投票记录映射
for _, vote := range userAllVotes {
userVotesMap[vote.VoteArticleID] = append(userVotesMap[vote.VoteArticleID], vote.OptionID)
}
}
// 3.2 当uid为空时不执行任何投票查询保持映射为空
// 4. 组装响应数据
var responseList []ArticleResponse
for _, article := range articles {
votedOptionIDs, userHasVoted := userVotesMap[article.ArticleID]
// 处理投票状态
var votedOptionIDs []int64
var userHasVoted bool
if uidValid {
votedOptionIDs, userHasVoted = userVotesMap[article.ArticleID]
} else {
// uid为空时默认未投票
votedOptionIDs = []int64{}
userHasVoted = false
}
// 格式化选项数据
// 处理选项列表
var optionList []ArticleOptionResp
for _, opt := range article.Options {
isVoted := false
for _, votedID := range votedOptionIDs {
if opt.ID == votedID {
isVoted = true
break
if uidValid {
// 仅在uid有效时检查是否投票
for _, votedID := range votedOptionIDs {
if opt.ID == votedID {
isVoted = true
break
}
}
}
// uid为空时isVoted保持false
optionList = append(optionList, ArticleOptionResp{
ID: opt.ID,
Name: opt.OptionContent,
@@ -126,6 +145,7 @@ func ArticleListget(c *gin.Context) {
})
}
// 组装文章响应
articleData := ArticleResponse{
ID: article.ArticleID,
Title: article.Title,
@@ -142,6 +162,7 @@ func ArticleListget(c *gin.Context) {
responseList = append(responseList, articleData)
}
// 5. 返回响应
c.JSON(http.StatusOK, gin.H{
"success": true,
"message": fmt.Sprintf("查询成功,共 %d 篇文章", len(responseList)),

View File

@@ -1,15 +1,9 @@
create table goods_list
(
id int auto_increment comment '商品ID'
primary key,
name varchar(100) not null comment '商品名称',
description text null comment '商品描述',
points int not null comment '所需积分',
stock int default 0 not null comment '库存数量',
image_url varchar(255) null comment '商品图片URL',
status tinyint default 1 not null comment '状态1-上架0-下架',
created_at datetime default CURRENT_TIMESTAMP not null comment '创建时间',
updated_at datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间'
gid varchar(20) not null,
stock int not null,
start_time datetime not null,
end_time datetime not null
);
create table host
@@ -33,6 +27,12 @@ create table login_log
)
charset = utf8mb3;
create table oders_list
(
order_id varchar(30) not null,
trade_time datetime not null
);
create table setting
(
id int auto_increment
@@ -43,6 +43,105 @@ create table setting
)
charset = utf8mb3;
create table task
(
id int auto_increment
primary key,
name varchar(32) not null,
level tinyint default 1 not null,
dependency_task_id varchar(64) default '' not null,
dependency_status tinyint default 1 not null,
spec varchar(64) not null,
protocol tinyint not null,
command varchar(256) not null,
http_method tinyint default 1 not null,
timeout mediumint default 0 not null,
multi tinyint default 1 not null,
retry_times tinyint default 0 not null,
retry_interval smallint default 0 not null,
notify_status tinyint default 1 not null,
notify_type tinyint default 0 not null,
notify_receiver_id varchar(256) default '' not null,
notify_keyword varchar(128) default '' not null,
tag varchar(32) default '' not null,
remark varchar(100) default '' not null,
status tinyint default 0 not null,
created datetime not null,
deleted datetime null
)
charset = utf8mb3;
create index IDX_task_level
on task (level);
create index IDX_task_protocol
on task (protocol);
create index IDX_task_status
on task (status);
create table task_host
(
id int auto_increment
primary key,
task_id int not null,
host_id smallint not null
)
charset = utf8mb3;
create index IDX_task_host_host_id
on task_host (host_id);
create index IDX_task_host_task_id
on task_host (task_id);
create table task_log
(
id bigint auto_increment
primary key,
task_id int default 0 not null,
name varchar(32) not null,
spec varchar(64) not null,
protocol tinyint not null,
command varchar(256) not null,
timeout mediumint default 0 not null,
retry_times tinyint default 0 not null,
hostname varchar(128) default '' not null,
start_time datetime null,
end_time datetime null,
status tinyint default 1 not null,
result mediumtext not null
)
charset = utf8mb3;
create index IDX_task_log_protocol
on task_log (protocol);
create index IDX_task_log_status
on task_log (status);
create index IDX_task_log_task_id
on task_log (task_id);
create table user
(
id int auto_increment
primary key,
name varchar(32) not null,
password char(32) not null,
salt char(6) not null,
email varchar(50) default '' not null,
created datetime not null,
updated datetime null,
is_admin tinyint default 0 not null,
status tinyint default 1 not null,
constraint UQE_user_email
unique (email),
constraint UQE_user_name
unique (name)
)
charset = utf8mb3;
create table user_info
(
uid varchar(40) not null
@@ -72,29 +171,6 @@ create table article_list
create_time datetime not null comment '投票创建时间',
constraint article_list_user_info_uid_fk
foreign key (publish_user_id) references user_info (uid)
on delete cascade
);
create table article_comments
(
id int auto_increment comment '评论唯一ID'
primary key,
articleId bigint not null comment '对应的文评ID',
user_id varchar(40) not null comment '对应的用户ID',
parent_id int null comment '关联本表的 id用于回复功能。 如果为 0 或 NULL则为顶级评论。',
content text not null comment '具体评论',
created_time datetime not null comment '评论创建时间',
update_time datetime not null comment '更新时间',
likes_count int default 0 not null comment '点赞数量',
status tinyint default 1 not null comment '1:正常2:已删除',
constraint article_comments_article_comments_id_fk
foreign key (parent_id) references article_comments (id),
constraint article_comments_article_list_articleId_fk
foreign key (articleId) references article_list (articleId)
on delete cascade,
constraint article_comments_user_info_uid_fk
foreign key (user_id) references user_info (uid)
on delete cascade
);
create table article_options
@@ -107,176 +183,18 @@ create table article_options
sort_order int null comment '选项的排序',
constraint article_options_article_list_articleId_fk
foreign key (vote_article_id) references article_list (articleId)
on delete cascade
);
create index idx_article_options_vote_article_id_sort_order
on article_options (vote_article_id, sort_order);
create table orders_list
(
id int auto_increment comment '订单ID'
primary key,
user_id varchar(40) not null comment '用户ID关联用户表',
total_points int not null comment '订单总消耗积分',
status tinyint default 0 not null comment '订单状态0-待处理1-已完成2-已取消3-已发货',
created_at datetime default CURRENT_TIMESTAMP not null comment '创建时间',
updated_at datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
constraint orders_list_user_info_uid_fk
foreign key (user_id) references user_info (uid)
on delete cascade
);
create table order_consumption
(
id int auto_increment comment '记录ID'
primary key,
user_id varchar(40) not null comment '用户ID',
order_id int not null comment '关联的订单ID',
points int not null comment '消费的积分数量',
created_at datetime default CURRENT_TIMESTAMP not null comment '消费时间',
constraint order_consumption_ibfk_1
foreign key (user_id) references user_info (uid)
on delete cascade,
constraint order_consumption_ibfk_2
foreign key (order_id) references orders_list (id)
on delete cascade
);
create index order_id
on order_consumption (order_id);
create index user_id
on order_consumption (user_id);
create table order_details
(
id int auto_increment comment '明细ID'
primary key,
order_id int not null comment '订单ID关联订单表',
goods_id int not null comment '商品ID关联商品表',
goods_name varchar(100) not null comment '商品名称(冗余存储,避免商品名称修改后订单显示异常)',
points int not null comment '购买时的积分(冗余存储)',
quantity int default 1 not null comment '购买数量',
created_at datetime default CURRENT_TIMESTAMP not null comment '创建时间',
constraint order_details_ibfk_1
foreign key (order_id) references orders_list (id)
on delete cascade,
constraint order_details_ibfk_2
foreign key (goods_id) references goods_list (id)
);
create index goods_id
on order_details (goods_id);
create index order_id
on order_details (order_id);
create table referral_codes
(
id int auto_increment comment '内推码Id'
primary key,
code int not null comment '内推码',
created_by varchar(40) not null comment '创建者ID',
valid_until datetime not null comment '有效期',
uses_num int not null comment '使用次数',
create_time datetime not null comment '创建时间',
constraint referral_codes_pk_2
unique (code),
constraint referral_codes_user_info_uid_fk
foreign key (created_by) references user_info (uid)
)
comment '内推码表';
create table lottery_campaigns
(
id int auto_increment comment '活动id'
primary key,
name varchar(255) not null comment '活动名称',
description text null comment '活动描述',
referral_code_id int not null comment '内推码id',
start_time datetime not null comment '活动开始时间',
end_time datetime not null comment '活动结束时间',
is_ended int not null comment '活动是否结束1:结束2未结束',
created_time datetime not null comment '创建时间',
update_time datetime not null comment '更新时间',
max_lottery_per_user int default 1 not null comment '每个用户的最大抽奖次数',
constraint lottery_campaigns_referral_codes_id_fk
foreign key (referral_code_id) references referral_codes (id)
)
comment '抽奖活动表';
create table lottery_prizes
(
id int auto_increment comment '奖项id'
primary key,
campaign_id int not null comment '关联活动ID',
name varchar(255) not null comment '奖项名称',
image_url varchar(255) not null comment '奖项图片URL',
probability float not null comment '奖项中奖概率',
max_wins int not null comment '最大中奖次数',
current_wins int default 0 not null comment '当前中奖人数',
create_time datetime not null comment '创建时间',
update_time datetime not null comment '更新时间',
constraint lottery_prizes_lottery_campaigns_id_fk
foreign key (campaign_id) references lottery_campaigns (id)
)
comment '抽奖奖项表';
create table lottery_records
(
id int auto_increment comment '记录ID'
primary key,
user_id varchar(40) not null comment '抽奖用户ID',
campaign_id int not null comment '关联活动ID',
referral_code_id int not null,
prize_id int not null comment '中奖选项ID',
is_win int not null comment '是否中奖1:中奖2:未中奖',
create_time datetime not null comment '抽奖时间',
constraint lottery_records_lottery_campaigns_id_fk
foreign key (campaign_id) references lottery_campaigns (id),
constraint lottery_records_lottery_prizes_id_fk
foreign key (prize_id) references lottery_prizes (id),
constraint lottery_records_referral_codes_id_fk
foreign key (referral_code_id) references referral_codes (id)
)
comment '抽奖记录表';
create table referral_code_bindings
(
id int auto_increment comment '关联记录ID'
primary key,
code_id int not null comment '关联内推码ID',
entity_type varchar(50) not null comment '业务类型',
entity_id int not null comment '关联实体ID',
create_time datetime not null comment '创建时间',
constraint referral_code_bindings_referral_codes_id_fk
foreign key (code_id) references referral_codes (id)
)
comment '内推码业务关联表';
create table user_msg
(
sender_id varchar(30) not null,
receiver_id varchar(30) not null,
message_type varchar(10) not null,
status tinyint not null,
sequence varchar(50) not null,
created_at time not null,
content text not null
);
create table user_points
(
id int auto_increment comment '添加积分操作的id'
primary key,
user_id varchar(40) not null comment '添加积分的用户',
points_change int not null comment '添加的积分',
source varchar(40) null comment '积分来源',
create_time datetime not null comment '创建时间',
constraint user_points_user_info_uid_fk
foreign key (user_id) references user_info (uid)
on delete cascade
sender_id varchar(40) not null comment '消息发送者的ID',
receiver_id varchar(40) not null comment '接收者的ID',
message_type varchar(40) not null,
status tinyint not null comment '通知状态1正常显示2软删除',
sequence varchar(50) not null,
created_at time not null,
content text not null comment '消息内容',
`is-read` tinyint default 0 not null comment '是否已读;1:已读0:未读'
);
create table user_votes
@@ -291,15 +209,40 @@ create table user_votes
unique (user_id, option_id, vote_article_id),
constraint user_votes_article_list_articleId_fk
foreign key (vote_article_id) references article_list (articleId)
on delete cascade
);
create index idx_option_id
create index user_vote_article_vote_id_fk
on user_votes (option_id);
create index idx_user_id
on user_votes (user_id);
create table vote_article
(
id bigint auto_increment comment '文章ID'
primary key,
title varchar(255) not null comment '文章标题',
content text null comment '文章内容',
cover_image varchar(512) null comment '封面图片URL',
author_id bigint not null comment '作者ID',
status tinyint default 0 not null comment '状态0草稿1待审核2已发布3已结束4已下架',
vote_start_time datetime not null comment '投票开始时间',
vote_end_time datetime not null comment '投票结束时间',
total_votes int default 0 not null comment '总投票数',
total_voters int default 0 not null comment '参与人数',
is_anonymous tinyint(1) default 0 not null comment '是否匿名投票01',
is_multiple tinyint(1) default 0 not null comment '是否允许多选0单选1多选',
max_choices int default 1 not null comment '最大可选数量',
view_count int default 0 not null comment '浏览次数',
created_at datetime default CURRENT_TIMESTAMP not null comment '创建时间',
updated_at datetime null on update CURRENT_TIMESTAMP comment '更新时间',
deleted_at datetime null comment '软删除时间'
)
comment '投票文章表';
create index idx_vote_article_id
on user_votes (vote_article_id);
create index idx_author_id
on vote_article (author_id);
create index idx_created_at
on vote_article (created_at desc);
create index idx_status_time
on vote_article (status, vote_start_time, vote_end_time);

BIN
opt/ttk/ttk-darwin-amd64.dmg Executable file → Normal file

Binary file not shown.

BIN
opt/ttk/ttk-linux-amd64 Executable file → Normal file

Binary file not shown.