github.com/spinnaker/spin@v1.30.0/config/auth/oauth2/config.go (about)

     1  // Copyright (c) 2018, Google, Inc.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //   http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  //   Unless required by applicable law or agreed to in writing, software
    10  //   distributed under the License is distributed on an "AS IS" BASIS,
    11  //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  //   See the License for the specific language governing permissions and
    13  //   limitations under the License.
    14  
    15  package oauth2
    16  
    17  import (
    18  	"golang.org/x/oauth2"
    19  )
    20  
    21  // Config is the configuration for using OAuth2.0 to
    22  // authenticate with Spinnaker
    23  type Config struct {
    24  	TokenUrl     string        `json:"tokenUrl" yaml:"tokenUrl"`
    25  	AuthUrl      string        `json:"authUrl" yaml:"authUrl"`
    26  	ClientId     string        `json:"clientId" yaml:"clientId"`
    27  	ClientSecret string        `json:"clientSecret" yaml:"clientSecret"`
    28  	Scopes       []string      `json:"scopes" yaml:"scopes"`
    29  	CachedToken  *oauth2.Token `json:"cachedToken,omitempty" yaml:"cachedToken,omitempty"`
    30  }
    31  
    32  func (x *Config) IsValid() bool {
    33  	return x.TokenUrl != "" && x.AuthUrl != "" && len(x.Scopes) != 0
    34  }