mirror of
https://github.com/goharbor/harbor
synced 2025-04-15 20:30:36 +00:00
71 lines
2.2 KiB
Go
71 lines
2.2 KiB
Go
// Copyright Project Harbor Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package quota
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/goharbor/harbor/src/controller/blob"
|
|
"github.com/goharbor/harbor/src/lib/errors"
|
|
"github.com/goharbor/harbor/src/lib/log"
|
|
"github.com/goharbor/harbor/src/pkg/quota/types"
|
|
)
|
|
|
|
// PostInitiateBlobUploadMiddleware middleware to add blob to project after mount blob success
|
|
func PostInitiateBlobUploadMiddleware() func(http.Handler) http.Handler {
|
|
return RequestMiddleware(RequestConfig{
|
|
ReferenceObject: projectReferenceObject,
|
|
Resources: postInitiateBlobUploadResources,
|
|
ResourcesExceeded: projectResourcesEvent(1),
|
|
ResourcesWarning: projectResourcesEvent(2),
|
|
})
|
|
}
|
|
|
|
func postInitiateBlobUploadResources(r *http.Request, reference, referenceID string) (types.ResourceList, error) {
|
|
query := r.URL.Query()
|
|
mount := query.Get("mount")
|
|
if mount == "" {
|
|
// it is not mount blob http request, skip to request the resources
|
|
return nil, nil
|
|
}
|
|
|
|
ctx := r.Context()
|
|
|
|
logger := log.G(ctx).WithFields(log.Fields{"middleware": "quota", "action": "request", "url": r.URL.Path})
|
|
|
|
blb, err := blobController.Get(ctx, mount)
|
|
if errors.IsNotFoundErr(err) {
|
|
// mount blob not found, skip to request the resources
|
|
return nil, nil
|
|
} else if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
projectID, _ := strconv.ParseInt(referenceID, 10, 64)
|
|
|
|
exist, err := blobController.Exist(ctx, blb.Digest, blob.IsAssociatedWithProject(projectID))
|
|
if err != nil {
|
|
logger.Errorf("checking blob %s is associated with project %d failed, error: %v", blb.Digest, projectID, err)
|
|
return nil, err
|
|
}
|
|
|
|
if exist {
|
|
return nil, nil
|
|
}
|
|
|
|
return types.ResourceList{types.ResourceStorage: blb.Size}, nil
|
|
}
|