github.com/greenpau/go-authcrunch@v1.1.4/pkg/credentials/generic.go (about)

     1  // Copyright 2022 Paul Greenberg greenpau@outlook.com
     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 credentials
    16  
    17  import (
    18  	"github.com/greenpau/go-authcrunch/pkg/errors"
    19  )
    20  
    21  // Generic represents username and password credentials, with optional
    22  // domain name field.
    23  type Generic struct {
    24  	Name     string `json:"name,omitempty" xml:"name,omitempty" yaml:"name,omitempty"`
    25  	Username string `json:"username,omitempty" xml:"username,omitempty" yaml:"username,omitempty"`
    26  	Password string `json:"password,omitempty" xml:"password,omitempty" yaml:"password,omitempty"`
    27  	Domain   string `json:"domain,omitempty" xml:"domain,omitempty" yaml:"domain,omitempty"`
    28  }
    29  
    30  // Validate validates Generic credentials.
    31  func (c *Generic) Validate() error {
    32  	if c.Name == "" {
    33  		return errors.ErrCredKeyValueEmpty.WithArgs("name")
    34  	}
    35  	if c.Username == "" {
    36  		return errors.ErrCredKeyValueEmpty.WithArgs("username")
    37  	}
    38  	if c.Password == "" {
    39  		return errors.ErrCredKeyValueEmpty.WithArgs("password")
    40  	}
    41  	return nil
    42  }