blob: 1b58f1638655dd28df3f6ef68e0db4a2bedec0e1 [file] [log] [blame]
Matthias Andreas Benkard832a54e2019-01-29 09:27:38 +01001/*
2Copyright 2016 The Kubernetes Authors.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17package filters
18
19import (
20 "net/http"
21 "strings"
22
23 "k8s.io/apimachinery/pkg/util/sets"
24 apirequest "k8s.io/apiserver/pkg/endpoints/request"
25)
26
27// BasicLongRunningRequestCheck returns true if the given request has one of the specified verbs or one of the specified subresources, or is a profiler request.
28func BasicLongRunningRequestCheck(longRunningVerbs, longRunningSubresources sets.String) apirequest.LongRunningRequestCheck {
29 return func(r *http.Request, requestInfo *apirequest.RequestInfo) bool {
30 if longRunningVerbs.Has(requestInfo.Verb) {
31 return true
32 }
33 if requestInfo.IsResourceRequest && longRunningSubresources.Has(requestInfo.Subresource) {
34 return true
35 }
36 if !requestInfo.IsResourceRequest && strings.HasPrefix(requestInfo.Path, "/debug/pprof/") {
37 return true
38 }
39 return false
40 }
41}