![Rohith](/assets/img/avatar_default.png)
- standardize the authentication interface - required the unrequire - first draft cleanup and reduction of code
64 lines
1.5 KiB
Go
64 lines
1.5 KiB
Go
/*
|
|
Copyright 2015 Home Office All rights reserved.
|
|
|
|
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 main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/hashicorp/vault/api"
|
|
)
|
|
|
|
// token authentication plugin
|
|
type authTokenPlugin struct {
|
|
// the vault client
|
|
client *api.Client
|
|
}
|
|
|
|
// NewUserTokenPlugin ... creates a new User Token plugin
|
|
func NewUserTokenPlugin(client *api.Client) AuthInterface {
|
|
return &authTokenPlugin{
|
|
client: client,
|
|
}
|
|
}
|
|
|
|
// create ... retrieves the token from an environment variable or file
|
|
func (r authTokenPlugin) Create(cfg map[string]string) (string, error) {
|
|
filename, _ := cfg["filename"]
|
|
if filename != "" {
|
|
|
|
content, err := readConfigFile(filename)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
// check: ensure we have a token in the file
|
|
token, found := content["token"]
|
|
if !found {
|
|
fmt.Errorf("the auth file: %s does not contain a token", filename)
|
|
}
|
|
|
|
return token, nil
|
|
}
|
|
|
|
// step: check the VAULT_TOKEN
|
|
if val := os.Getenv("VAULT_TOKEN"); val != "" {
|
|
return val, nil
|
|
}
|
|
|
|
return "", fmt.Errorf("no token provided")
|
|
}
|