mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-04-26 03:24:31 +02:00
- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
102 lines
2.9 KiB
Go
102 lines
2.9 KiB
Go
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package shared
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
quota_model "forgejo.org/models/quota"
|
|
"forgejo.org/routers/api/v1/utils"
|
|
"forgejo.org/services/context"
|
|
"forgejo.org/services/convert"
|
|
)
|
|
|
|
func GetQuota(ctx *context.APIContext, userID int64) {
|
|
used, err := quota_model.GetUsedForUser(ctx, userID)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "quota_model.GetUsedForUser", err)
|
|
return
|
|
}
|
|
|
|
groups, err := quota_model.GetGroupsForUser(ctx, userID)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "quota_model.GetGroupsForUser", err)
|
|
return
|
|
}
|
|
|
|
result := convert.ToQuotaInfo(used, groups, false)
|
|
ctx.JSON(http.StatusOK, &result)
|
|
}
|
|
|
|
func CheckQuota(ctx *context.APIContext, userID int64) {
|
|
subjectQuery := ctx.FormTrim("subject")
|
|
|
|
subject, err := quota_model.ParseLimitSubject(subjectQuery)
|
|
if err != nil {
|
|
ctx.Error(http.StatusUnprocessableEntity, "quota_model.ParseLimitSubject", err)
|
|
return
|
|
}
|
|
|
|
ok, err := quota_model.EvaluateForUser(ctx, userID, subject)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "quota_model.EvaluateForUser", err)
|
|
return
|
|
}
|
|
|
|
ctx.JSON(http.StatusOK, &ok)
|
|
}
|
|
|
|
func ListQuotaAttachments(ctx *context.APIContext, userID int64) {
|
|
opts := utils.GetListOptions(ctx)
|
|
count, attachments, err := quota_model.GetQuotaAttachmentsForUser(ctx, userID, opts)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "GetQuotaAttachmentsForUser", err)
|
|
return
|
|
}
|
|
|
|
result, err := convert.ToQuotaUsedAttachmentList(ctx, *attachments)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "convert.ToQuotaUsedAttachmentList", err)
|
|
}
|
|
|
|
ctx.SetLinkHeader(int(count), opts.PageSize)
|
|
ctx.SetTotalCountHeader(count)
|
|
ctx.JSON(http.StatusOK, result)
|
|
}
|
|
|
|
func ListQuotaPackages(ctx *context.APIContext, userID int64) {
|
|
opts := utils.GetListOptions(ctx)
|
|
count, packages, err := quota_model.GetQuotaPackagesForUser(ctx, userID, opts)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "GetQuotaPackagesForUser", err)
|
|
return
|
|
}
|
|
|
|
result, err := convert.ToQuotaUsedPackageList(ctx, *packages)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "convert.ToQuotaUsedPackageList", err)
|
|
}
|
|
|
|
ctx.SetLinkHeader(int(count), opts.PageSize)
|
|
ctx.SetTotalCountHeader(count)
|
|
ctx.JSON(http.StatusOK, result)
|
|
}
|
|
|
|
func ListQuotaArtifacts(ctx *context.APIContext, userID int64) {
|
|
opts := utils.GetListOptions(ctx)
|
|
count, artifacts, err := quota_model.GetQuotaArtifactsForUser(ctx, userID, opts)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "GetQuotaArtifactsForUser", err)
|
|
return
|
|
}
|
|
|
|
result, err := convert.ToQuotaUsedArtifactList(ctx, *artifacts)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "convert.ToQuotaUsedArtifactList", err)
|
|
}
|
|
|
|
ctx.SetLinkHeader(int(count), opts.PageSize)
|
|
ctx.SetTotalCountHeader(count)
|
|
ctx.JSON(http.StatusOK, result)
|
|
}
|