blob: 1f71429b4ef927a4025ea36e28f6ac18e2480014 [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 group
18
19import (
20 "net/http"
21
22 "k8s.io/apiserver/pkg/authentication/authenticator"
23 "k8s.io/apiserver/pkg/authentication/user"
24)
25
26// GroupAdder adds groups to an authenticated user.Info
27type GroupAdder struct {
28 // Authenticator is delegated to make the authentication decision
29 Authenticator authenticator.Request
30 // Groups are additional groups to add to the user.Info from a successful authentication
31 Groups []string
32}
33
34// NewGroupAdder wraps a request authenticator, and adds the specified groups to the returned user when authentication succeeds
35func NewGroupAdder(auth authenticator.Request, groups []string) authenticator.Request {
36 return &GroupAdder{auth, groups}
37}
38
39func (g *GroupAdder) AuthenticateRequest(req *http.Request) (user.Info, bool, error) {
40 u, ok, err := g.Authenticator.AuthenticateRequest(req)
41 if err != nil || !ok {
42 return nil, ok, err
43 }
44 return &user.DefaultInfo{
45 Name: u.GetName(),
46 UID: u.GetUID(),
47 Groups: append(u.GetGroups(), g.Groups...),
48 Extra: u.GetExtra(),
49 }, true, nil
50}