Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
123 lines
3.7 KiB
Go
123 lines
3.7 KiB
Go
package admin
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/Wei-Shaw/sub2api/internal/pkg/response"
|
|
"github.com/Wei-Shaw/sub2api/internal/service"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type upstreamBillingProbeEnabledRequest struct {
|
|
Enabled *bool `json:"enabled" binding:"required"`
|
|
}
|
|
|
|
type upstreamBillingProbeBatchRequest struct {
|
|
AccountIDs []int64 `json:"account_ids" binding:"required"`
|
|
}
|
|
|
|
func (h *AccountHandler) GetUpstreamBillingProbeSettings(c *gin.Context) {
|
|
if h.upstreamBillingProbe == nil {
|
|
response.ErrorFrom(c, service.ErrUpstreamBillingProbeUnavailable)
|
|
return
|
|
}
|
|
settings, err := h.upstreamBillingProbe.GetSettings(c.Request.Context())
|
|
if err != nil {
|
|
response.ErrorFrom(c, err)
|
|
return
|
|
}
|
|
response.Success(c, settings)
|
|
}
|
|
|
|
func (h *AccountHandler) UpdateUpstreamBillingProbeSettings(c *gin.Context) {
|
|
if h.upstreamBillingProbe == nil {
|
|
response.ErrorFrom(c, service.ErrUpstreamBillingProbeUnavailable)
|
|
return
|
|
}
|
|
var req service.UpstreamBillingProbeSettings
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
response.BadRequest(c, "Invalid request: "+err.Error())
|
|
return
|
|
}
|
|
if err := h.upstreamBillingProbe.UpdateSettings(c.Request.Context(), &req); err != nil {
|
|
response.ErrorFrom(c, err)
|
|
return
|
|
}
|
|
settings, err := h.upstreamBillingProbe.GetSettings(c.Request.Context())
|
|
if err != nil {
|
|
response.ErrorFrom(c, err)
|
|
return
|
|
}
|
|
response.Success(c, settings)
|
|
}
|
|
|
|
func (h *AccountHandler) SetUpstreamBillingProbeEnabled(c *gin.Context) {
|
|
if h.upstreamBillingProbe == nil {
|
|
response.ErrorFrom(c, service.ErrUpstreamBillingProbeUnavailable)
|
|
return
|
|
}
|
|
accountID, err := strconv.ParseInt(c.Param("id"), 10, 64)
|
|
if err != nil || accountID <= 0 {
|
|
response.BadRequest(c, "Invalid account ID")
|
|
return
|
|
}
|
|
var req upstreamBillingProbeEnabledRequest
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
response.BadRequest(c, "Invalid request: "+err.Error())
|
|
return
|
|
}
|
|
if err := h.upstreamBillingProbe.SetAccountEnabled(c.Request.Context(), accountID, *req.Enabled); err != nil {
|
|
response.ErrorFrom(c, err)
|
|
return
|
|
}
|
|
response.Success(c, gin.H{"account_id": accountID, "enabled": *req.Enabled})
|
|
}
|
|
|
|
func (h *AccountHandler) ProbeUpstreamBilling(c *gin.Context) {
|
|
if h.upstreamBillingProbe == nil {
|
|
response.ErrorFrom(c, service.ErrUpstreamBillingProbeUnavailable)
|
|
return
|
|
}
|
|
accountID, err := strconv.ParseInt(c.Param("id"), 10, 64)
|
|
if err != nil || accountID <= 0 {
|
|
response.BadRequest(c, "Invalid account ID")
|
|
return
|
|
}
|
|
snapshot, err := h.upstreamBillingProbe.ProbeAccount(c.Request.Context(), accountID)
|
|
if err != nil {
|
|
response.ErrorFrom(c, err)
|
|
return
|
|
}
|
|
response.Success(c, service.UpstreamBillingProbeResult{AccountID: accountID, Snapshot: snapshot})
|
|
}
|
|
|
|
func (h *AccountHandler) ProbeUpstreamBillingBatch(c *gin.Context) {
|
|
if h.upstreamBillingProbe == nil {
|
|
response.ErrorFrom(c, service.ErrUpstreamBillingProbeUnavailable)
|
|
return
|
|
}
|
|
var req upstreamBillingProbeBatchRequest
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
response.BadRequest(c, "Invalid request: "+err.Error())
|
|
return
|
|
}
|
|
if len(req.AccountIDs) == 0 || len(req.AccountIDs) > service.UpstreamBillingProbeMaxBatchSize {
|
|
response.BadRequest(c, "account_ids must contain between 1 and 20 items")
|
|
return
|
|
}
|
|
seen := make(map[int64]struct{}, len(req.AccountIDs))
|
|
accountIDs := make([]int64, 0, len(req.AccountIDs))
|
|
for _, accountID := range req.AccountIDs {
|
|
if accountID <= 0 {
|
|
response.BadRequest(c, "account_ids must contain positive IDs")
|
|
return
|
|
}
|
|
if _, exists := seen[accountID]; exists {
|
|
continue
|
|
}
|
|
seen[accountID] = struct{}{}
|
|
accountIDs = append(accountIDs, accountID)
|
|
}
|
|
response.Success(c, gin.H{"results": h.upstreamBillingProbe.ProbeAccounts(c.Request.Context(), accountIDs)})
|
|
}
|