2014-10-16 21:18:16 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-10-16 21:18:16 +00:00
|
|
|
|
|
|
|
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 authorizer
|
|
|
|
|
2014-11-03 15:57:08 +00:00
|
|
|
import (
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/auth/user"
|
2014-11-03 15:57:08 +00:00
|
|
|
)
|
|
|
|
|
2014-10-16 21:18:16 +00:00
|
|
|
// Attributes is an interface used by an Authorizer to get information about a request
|
|
|
|
// that is used to make an authorization decision.
|
|
|
|
type Attributes interface {
|
2014-11-02 06:50:00 +00:00
|
|
|
// The user string which the request was authenticated as, or empty if
|
2015-08-08 21:29:57 +00:00
|
|
|
// no authentication occurred and the request was allowed to proceed.
|
2014-11-03 15:57:08 +00:00
|
|
|
GetUserName() string
|
2014-12-16 15:20:05 +00:00
|
|
|
|
|
|
|
// The list of group names the authenticated user is a member of. Can be
|
|
|
|
// empty if the authenticated user is not in any groups, or if no
|
|
|
|
// authentication occurred.
|
|
|
|
GetGroups() []string
|
2014-11-02 06:50:00 +00:00
|
|
|
|
|
|
|
// When IsReadOnly() == true, the request has no side effects, other than
|
|
|
|
// caching, logging, and other incidentals.
|
|
|
|
IsReadOnly() bool
|
|
|
|
|
|
|
|
// The namespace of the object, if a request is for a REST object.
|
|
|
|
GetNamespace() string
|
|
|
|
|
|
|
|
// The kind of object, if a request is for a REST object.
|
2015-01-29 19:14:54 +00:00
|
|
|
GetResource() string
|
2014-10-16 21:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Authorizer makes an authorization decision based on information gained by making
|
|
|
|
// zero or more calls to methods of the Attributes interface. It returns nil when an action is
|
|
|
|
// authorized, otherwise it returns an error.
|
|
|
|
type Authorizer interface {
|
|
|
|
Authorize(a Attributes) (err error)
|
|
|
|
}
|
2014-11-03 15:57:08 +00:00
|
|
|
|
2015-05-06 20:05:00 +00:00
|
|
|
type AuthorizerFunc func(a Attributes) error
|
|
|
|
|
|
|
|
func (f AuthorizerFunc) Authorize(a Attributes) error {
|
|
|
|
return f(a)
|
|
|
|
}
|
|
|
|
|
2014-11-03 15:57:08 +00:00
|
|
|
// AttributesRecord implements Attributes interface.
|
|
|
|
type AttributesRecord struct {
|
2014-11-02 06:50:00 +00:00
|
|
|
User user.Info
|
|
|
|
ReadOnly bool
|
|
|
|
Namespace string
|
2015-01-29 19:14:54 +00:00
|
|
|
Resource string
|
2014-11-03 15:57:08 +00:00
|
|
|
}
|
|
|
|
|
2014-10-06 23:11:04 +00:00
|
|
|
func (a AttributesRecord) GetUserName() string {
|
2014-11-03 15:57:08 +00:00
|
|
|
return a.User.GetName()
|
|
|
|
}
|
2014-11-02 06:50:00 +00:00
|
|
|
|
2014-12-16 15:20:05 +00:00
|
|
|
func (a AttributesRecord) GetGroups() []string {
|
|
|
|
return a.User.GetGroups()
|
|
|
|
}
|
|
|
|
|
2014-10-06 23:11:04 +00:00
|
|
|
func (a AttributesRecord) IsReadOnly() bool {
|
2014-11-02 06:50:00 +00:00
|
|
|
return a.ReadOnly
|
|
|
|
}
|
|
|
|
|
2014-10-06 23:11:04 +00:00
|
|
|
func (a AttributesRecord) GetNamespace() string {
|
2014-11-02 06:50:00 +00:00
|
|
|
return a.Namespace
|
|
|
|
}
|
|
|
|
|
2015-01-29 19:14:54 +00:00
|
|
|
func (a AttributesRecord) GetResource() string {
|
|
|
|
return a.Resource
|
2014-11-02 06:50:00 +00:00
|
|
|
}
|