cubefs/objectnode/api_handler.go
Mervin 0a095a0012
Refactor: remove unused code
Signed-off-by: Mervin <mofei2816@gmail.com>
2020-03-10 11:55:30 +08:00

126 lines
3.0 KiB
Go

// Copyright 2018 The ChubaoFS 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 objectnode
import (
"errors"
"net/http"
"strings"
"github.com/gorilla/mux"
"github.com/chubaofs/chubaofs/util/log"
)
type RequestParam struct {
resource string
bucket string
object string
action Action
sourceIP string
conditionVars map[string][]string
vars map[string]string
accessKey string
}
func (p *RequestParam) Bucket() string {
return p.bucket
}
func (p *RequestParam) Object() string {
return p.object
}
func (p *RequestParam) Action() Action {
return p.action
}
func (p *RequestParam) GetVar(name string) string {
return p.vars[name]
}
func (p *RequestParam) GetConditionVar(name string) []string {
return p.conditionVars[name]
}
func (p *RequestParam) AccessKey() string {
return p.accessKey
}
func ParseRequestParam(r *http.Request) *RequestParam {
p := new(RequestParam)
p.vars = mux.Vars(r)
p.bucket = p.vars["bucket"]
p.object = p.vars["object"]
p.sourceIP = getRequestIP(r)
p.conditionVars = getCondtionValues(r)
if len(p.bucket) > 0 {
p.resource = p.bucket
if len(p.object) > 0 {
if strings.HasPrefix(p.object, "/") {
p.resource = p.bucket + p.object
} else {
p.resource = p.bucket + "/" + p.object
}
}
}
auth := parseRequestAuthInfo(r)
if auth != nil {
p.accessKey = auth.accessKey
}
p.action = GetActionFromContext(r)
if !p.action.IsKnown() {
p.action = ActionFromRouteName(mux.CurrentRoute(r).GetName())
}
return p
}
func (o *ObjectNode) getVol(bucket string) (vol *Volume, err error) {
if bucket == "" {
return nil, errors.New("bucket name is empty")
}
vol, err = o.vm.loadVolume(bucket)
if err != nil {
log.LogErrorf("parseRequestParams: load Volume fail, bucket(%v) err(%v)", bucket, err)
return nil, err
}
return vol, nil
}
func (o *ObjectNode) errorResponse(w http.ResponseWriter, r *http.Request, err error, ec *ErrorCode) {
if err != nil || ec != nil {
if err != nil {
log.LogErrorf("errorResponse: found error: requestID(%v) err(%v)",
GetRequestID(r), err)
}
if ec == nil {
ec = &InternalError
}
_ = ec.ServeResponse(w, r)
}
}
func (o *ObjectNode) unsupportedOperationHandler(w http.ResponseWriter, r *http.Request) {
var err error
if err = UnsupportedOperation.ServeResponse(w, r); err != nil {
log.LogErrorf("unsupportedOperationHandler: serve response fail: requestID(%v) err(%v)",
GetRequestID(r), err)
ServeInternalStaticErrorResponse(w, r)
}
return
}