130 lines
3.9 KiB
Go
130 lines
3.9 KiB
Go
// This file is part of MinIO Console Server
|
|
// Copyright (c) 2021 MinIO, Inc.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package restapi
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/go-openapi/swag"
|
|
|
|
"github.com/go-openapi/runtime/middleware"
|
|
"github.com/minio/console/restapi/operations"
|
|
"github.com/minio/console/restapi/operations/user_api"
|
|
|
|
"github.com/minio/madmin-go"
|
|
|
|
"github.com/minio/console/models"
|
|
)
|
|
|
|
func registerBucketQuotaHandlers(api *operations.ConsoleAPI) {
|
|
// set bucket quota
|
|
api.UserAPISetBucketQuotaHandler = user_api.SetBucketQuotaHandlerFunc(func(params user_api.SetBucketQuotaParams, session *models.Principal) middleware.Responder {
|
|
err := setBucketQuotaResponse(session, params)
|
|
if err != nil {
|
|
return user_api.NewSetBucketQuotaDefault(int(err.Code)).WithPayload(err)
|
|
}
|
|
return user_api.NewSetBucketQuotaOK()
|
|
})
|
|
|
|
// get bucket quota
|
|
api.UserAPIGetBucketQuotaHandler = user_api.GetBucketQuotaHandlerFunc(func(params user_api.GetBucketQuotaParams, session *models.Principal) middleware.Responder {
|
|
resp, err := getBucketQuotaResponse(session, params)
|
|
if err != nil {
|
|
return user_api.NewGetBucketQuotaDefault(int(err.Code)).WithPayload(err)
|
|
}
|
|
return user_api.NewGetBucketQuotaOK().WithPayload(resp)
|
|
})
|
|
}
|
|
|
|
func setBucketQuotaResponse(session *models.Principal, params user_api.SetBucketQuotaParams) *models.Error {
|
|
mAdmin, err := NewMinioAdminClient(session)
|
|
if err != nil {
|
|
return prepareError(err)
|
|
}
|
|
// create a minioClient interface implementation
|
|
// defining the client to be used
|
|
adminClient := AdminClient{Client: mAdmin}
|
|
|
|
if err := setBucketQuota(params.HTTPRequest.Context(), &adminClient, ¶ms.Name, params.Body); err != nil {
|
|
return &models.Error{
|
|
Code: 500,
|
|
Message: swag.String(err.Error()),
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func setBucketQuota(ctx context.Context, ac *AdminClient, bucket *string, bucketQuota *models.SetBucketQuota) error {
|
|
if bucketQuota == nil {
|
|
return errors.New("nil bucket quota was provided")
|
|
}
|
|
if *bucketQuota.Enabled {
|
|
var quotaType madmin.QuotaType
|
|
switch bucketQuota.QuotaType {
|
|
case models.SetBucketQuotaQuotaTypeFifo:
|
|
quotaType = madmin.FIFOQuota
|
|
case models.SetBucketQuotaQuotaTypeHard:
|
|
quotaType = madmin.HardQuota
|
|
}
|
|
if err := ac.setBucketQuota(ctx, *bucket, &madmin.BucketQuota{
|
|
Quota: uint64(bucketQuota.Amount),
|
|
Type: quotaType,
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if err := ac.Client.SetBucketQuota(ctx, *bucket, &madmin.BucketQuota{}); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func getBucketQuotaResponse(session *models.Principal, params user_api.GetBucketQuotaParams) (*models.BucketQuota, *models.Error) {
|
|
|
|
mAdmin, err := NewMinioAdminClient(session)
|
|
if err != nil {
|
|
return nil, prepareError(err)
|
|
}
|
|
|
|
// create a minioClient interface implementation
|
|
// defining the client to be used
|
|
adminClient := AdminClient{Client: mAdmin}
|
|
quota, err := getBucketQuota(params.HTTPRequest.Context(), &adminClient, ¶ms.Name)
|
|
if err != nil {
|
|
return nil, &models.Error{
|
|
Code: 500,
|
|
Message: swag.String(err.Error()),
|
|
}
|
|
}
|
|
return quota, nil
|
|
}
|
|
|
|
func getBucketQuota(ctx context.Context, ac *AdminClient, bucket *string) (*models.BucketQuota, error) {
|
|
|
|
quota, err := ac.getBucketQuota(ctx, *bucket)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &models.BucketQuota{
|
|
Quota: int64(quota.Quota),
|
|
Type: string(quota.Type),
|
|
}, nil
|
|
}
|