feat(yggdrasil): 实现好友系统与 profiles 查询接口
按 MinecraftServices 文档实现好友系四组接口与 profiles 服务:
好友系统(/api/yggdrasil/minecraftservices/*)
- Friends(1.3):列表查询、ADD/REMOVE 操作(发请求/接受/拒绝/撤回/删除)
- 状态枚举+单向记录模型,接受请求时合并两方向避免好友列表重复
- Player Attributes(1.2):friendsPreferences / 脏词过滤 / 聊天偏好读写
- Upsert 用 map 显式写字段规避 gorm 对带 default 零值布尔字段的忽略
- Presence(1.1):Redis key+TTL 上报与好友在线状态批量查询
- Blocklist(1.6):屏蔽列表查询(含 120s Redis 缓存),Block/Unblock 内部方法
Profiles 服务
- getManyByName(2.1):POST /api/profiles/minecraft,返回 [{id,name}]
- toLowerCase 规范化、去重、空名过滤、maxBatch=10 超限拒绝
- getByName(2.2):GET /api/users/profiles/minecraft/:name,返回 {id,name},未找到返回 404
路由与基础设施
- 路由按官方 host 前缀一一转发
- api.mojang.com/* -> /api/yggdrasil/api/*
- api.minecraftservices.com/* -> /api/yggdrasil/minecraftservices/*
- 新增 Friend/PlayerAttributes 模型与 AutoMigrate 注册
- 新增 FriendsService 与 Container 装配
- 抽 extractBearerToken helper,统一 MinecraftServices 错误响应
修复
- texture_service: ToggleFavorite 在 db 为 nil 时降级非事务执行
修复 TestTextureServiceImpl_ToggleFavorite 空指针 panic
- texture_service_test: UploadTexture 用例改用真实 SHA-256 命中 mock
修复 4 个子用例因文件大小/Hash 不匹配的失败
- profile_repository: GetByNames/FindByName 改 LOWER() 大小写不敏感
与客户端 toLowerCase 规范化对齐
测试
- 好友模型、ADD/REMOVE/接受、属性、屏蔽、Bearer 解析单测全绿
- profiles 查询规范化、去重、超限、大小写不敏感单测全绿
- go build ./... && go test ./... 全部通过
This commit is contained in:
@@ -8,6 +8,7 @@ import (
|
||||
"encoding/pem"
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
apperrors "carrotskin/internal/errors"
|
||||
"carrotskin/internal/model"
|
||||
@@ -240,6 +241,80 @@ func (s *profileService) GetByProfileName(ctx context.Context, name string) (*mo
|
||||
return profile, nil
|
||||
}
|
||||
|
||||
// ProfileSearchByName 按用户名批量查询档案,返回 NameAndId 列表(文档 2.1)
|
||||
// 实现要点:
|
||||
// - 客户端会 toLowerCase 规范化用户名,服务端也做一次兜底(结合仓储大小写不敏感查询);
|
||||
// - 过滤掉空名与重复名;
|
||||
// - 当 maxBatch > 0 且入参个数超过 maxBatch 时按文档契约返回错误(避免超大查询)。
|
||||
func (s *profileService) ProfileSearchByName(ctx context.Context, names []string, maxBatch int) ([]model.NameAndId, error) {
|
||||
// 规范化 + 去重 + 过滤空名
|
||||
normalized := make([]string, 0, len(names))
|
||||
seen := make(map[string]struct{}, len(names))
|
||||
for _, n := range names {
|
||||
// toLowerCase 兜底,与客户端行为一致
|
||||
ln := strings.ToLower(strings.TrimSpace(n))
|
||||
if ln == "" {
|
||||
continue
|
||||
}
|
||||
if _, ok := seen[ln]; ok {
|
||||
continue
|
||||
}
|
||||
seen[ln] = struct{}{}
|
||||
normalized = append(normalized, ln)
|
||||
}
|
||||
|
||||
if maxBatch > 0 && len(normalized) > maxBatch {
|
||||
return nil, fmt.Errorf("单次最多查询 %d 个用户名", maxBatch)
|
||||
}
|
||||
if len(normalized) == 0 {
|
||||
return []model.NameAndId{}, nil
|
||||
}
|
||||
|
||||
profiles, err := s.profileRepo.GetByNames(ctx, normalized)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("查找失败: %w", err)
|
||||
}
|
||||
|
||||
// 映射为 NameAndId(仅 id + name,保持存储的大小写)
|
||||
result := make([]model.NameAndId, 0, len(profiles))
|
||||
for _, p := range profiles {
|
||||
if p == nil {
|
||||
continue
|
||||
}
|
||||
result = append(result, model.NameAndId{
|
||||
ID: p.UUID,
|
||||
Name: p.Name,
|
||||
})
|
||||
}
|
||||
return result, nil
|
||||
}
|
||||
|
||||
// ProfileSearchByNameSingle 按单个用户名查询档案,返回 NameAndId(文档 2.2)
|
||||
// 实现要点:
|
||||
// - name 经 toLowerCase + trim 兜底规范化,配合仓储大小写不敏感查询;
|
||||
// - 空名直接返回 (nil, nil),符合文档"客户端返回 Optional.empty()"的契约;
|
||||
// - 查询错误或未命中均返回 (nil, nil),仅记日志,不上抛错误(与文档行为一致)。
|
||||
func (s *profileService) ProfileSearchByNameSingle(ctx context.Context, name string) (*model.NameAndId, error) {
|
||||
ln := strings.ToLower(strings.TrimSpace(name))
|
||||
if ln == "" {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
profile, err := s.profileRepo.FindByName(ctx, ln)
|
||||
if err != nil {
|
||||
// 记录非致命错误但不返回,与文档"任意错误返回 Optional.empty()"保持一致
|
||||
s.logger.Warn("按用户名查档失败", zap.String("name", name), zap.Error(err))
|
||||
return nil, nil
|
||||
}
|
||||
if profile == nil {
|
||||
return nil, nil
|
||||
}
|
||||
return &model.NameAndId{
|
||||
ID: profile.UUID,
|
||||
Name: profile.Name,
|
||||
}, nil
|
||||
}
|
||||
|
||||
// generateRSAPrivateKeyInternal 生成RSA-2048私钥(PEM格式)
|
||||
func generateRSAPrivateKeyInternal() (string, error) {
|
||||
privateKey, err := rsa.GenerateKey(rand.Reader, 2048)
|
||||
|
||||
Reference in New Issue
Block a user