| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // Copyright 2019 Yunion
- //
- // 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 azure
- import (
- "net/http"
- "net/http/httputil"
- "github.com/Azure/go-autorest/autorest"
- "yunion.io/x/log"
- )
- func LogRequest() autorest.PrepareDecorator {
- return func(p autorest.Preparer) autorest.Preparer {
- return autorest.PreparerFunc(func(r *http.Request) (*http.Request, error) {
- r, err := p.Prepare(r)
- if err != nil {
- log.Errorln(err)
- }
- auth := r.Header.Get("Authorization")
- if len(auth) > 0 {
- log.Debugf("Authorization: %s", auth)
- }
- return r, err
- })
- }
- }
- func LogResponse() autorest.RespondDecorator {
- return func(p autorest.Responder) autorest.Responder {
- return autorest.ResponderFunc(func(r *http.Response) error {
- err := p.Respond(r)
- if err != nil {
- log.Errorln(err)
- }
- dump, _ := httputil.DumpResponse(r, true)
- log.Errorf("%s", string(dump))
- return err
- })
- }
- }
|