All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 5m39s
- 新增企业设备授权模块(Model、DTO、Service、Handler、Store) - 实现设备授权的创建、查询、更新、删除等完整业务逻辑 - 添加企业卡授权与设备授权的关联关系 - 新增 2 个数据库迁移脚本 - 同步 OpenSpec delta specs 到 main specs - 归档 add-enterprise-device-authorization 变更 - 更新 API 文档和路由配置 - 新增完整的集成测试和单元测试覆盖
108 lines
2.9 KiB
Go
108 lines
2.9 KiB
Go
package h5
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
"github.com/break/junhong_cmp_fiber/internal/model/dto"
|
|
enterpriseDeviceService "github.com/break/junhong_cmp_fiber/internal/service/enterprise_device"
|
|
"github.com/break/junhong_cmp_fiber/pkg/errors"
|
|
"github.com/break/junhong_cmp_fiber/pkg/response"
|
|
)
|
|
|
|
type EnterpriseDeviceHandler struct {
|
|
service *enterpriseDeviceService.Service
|
|
}
|
|
|
|
func NewEnterpriseDeviceHandler(service *enterpriseDeviceService.Service) *EnterpriseDeviceHandler {
|
|
return &EnterpriseDeviceHandler{service: service}
|
|
}
|
|
|
|
func (h *EnterpriseDeviceHandler) ListDevices(c *fiber.Ctx) error {
|
|
var req dto.H5EnterpriseDeviceListReq
|
|
if err := c.QueryParser(&req); err != nil {
|
|
return errors.New(errors.CodeInvalidParam, "请求参数解析失败")
|
|
}
|
|
|
|
serviceReq := &dto.EnterpriseDeviceListReq{
|
|
Page: req.Page,
|
|
PageSize: req.PageSize,
|
|
DeviceNo: req.DeviceNo,
|
|
}
|
|
|
|
result, err := h.service.ListDevicesForEnterprise(c.UserContext(), serviceReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return response.SuccessWithPagination(c, result.List, result.Total, req.Page, req.PageSize)
|
|
}
|
|
|
|
func (h *EnterpriseDeviceHandler) GetDeviceDetail(c *fiber.Ctx) error {
|
|
deviceIDStr := c.Params("device_id")
|
|
deviceID, err := strconv.ParseUint(deviceIDStr, 10, 64)
|
|
if err != nil {
|
|
return errors.New(errors.CodeInvalidParam, "设备ID格式错误")
|
|
}
|
|
|
|
result, err := h.service.GetDeviceDetail(c.UserContext(), uint(deviceID))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return response.Success(c, result)
|
|
}
|
|
|
|
func (h *EnterpriseDeviceHandler) SuspendCard(c *fiber.Ctx) error {
|
|
deviceIDStr := c.Params("device_id")
|
|
deviceID, err := strconv.ParseUint(deviceIDStr, 10, 64)
|
|
if err != nil {
|
|
return errors.New(errors.CodeInvalidParam, "设备ID格式错误")
|
|
}
|
|
|
|
cardIDStr := c.Params("card_id")
|
|
cardID, err := strconv.ParseUint(cardIDStr, 10, 64)
|
|
if err != nil {
|
|
return errors.New(errors.CodeInvalidParam, "卡ID格式错误")
|
|
}
|
|
|
|
var req dto.DeviceCardOperationReq
|
|
if err := c.BodyParser(&req); err != nil {
|
|
return errors.New(errors.CodeInvalidParam, "请求参数解析失败")
|
|
}
|
|
|
|
result, err := h.service.SuspendCard(c.UserContext(), uint(deviceID), uint(cardID), &req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return response.Success(c, result)
|
|
}
|
|
|
|
func (h *EnterpriseDeviceHandler) ResumeCard(c *fiber.Ctx) error {
|
|
deviceIDStr := c.Params("device_id")
|
|
deviceID, err := strconv.ParseUint(deviceIDStr, 10, 64)
|
|
if err != nil {
|
|
return errors.New(errors.CodeInvalidParam, "设备ID格式错误")
|
|
}
|
|
|
|
cardIDStr := c.Params("card_id")
|
|
cardID, err := strconv.ParseUint(cardIDStr, 10, 64)
|
|
if err != nil {
|
|
return errors.New(errors.CodeInvalidParam, "卡ID格式错误")
|
|
}
|
|
|
|
var req dto.DeviceCardOperationReq
|
|
if err := c.BodyParser(&req); err != nil {
|
|
return errors.New(errors.CodeInvalidParam, "请求参数解析失败")
|
|
}
|
|
|
|
result, err := h.service.ResumeCard(c.UserContext(), uint(deviceID), uint(cardID), &req)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return response.Success(c, result)
|
|
}
|