autogits/bots-common/gitea-generated/models/deploy_key.go
Adam Majer 598ecbbd5a .
2024-07-07 21:12:40 +02:00

152 lines
3.2 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// DeployKey DeployKey a deploy key
//
// swagger:model DeployKey
type DeployKey struct {
// created
// Format: date-time
Created strfmt.DateTime `json:"created_at,omitempty"`
// fingerprint
Fingerprint string `json:"fingerprint,omitempty"`
// ID
ID int64 `json:"id,omitempty"`
// key
Key string `json:"key,omitempty"`
// key ID
KeyID int64 `json:"key_id,omitempty"`
// read only
ReadOnly bool `json:"read_only,omitempty"`
// title
Title string `json:"title,omitempty"`
// URL
URL string `json:"url,omitempty"`
// repository
Repository *Repository `json:"repository,omitempty"`
}
// Validate validates this deploy key
func (m *DeployKey) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateCreated(formats); err != nil {
res = append(res, err)
}
if err := m.validateRepository(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *DeployKey) validateCreated(formats strfmt.Registry) error {
if swag.IsZero(m.Created) { // not required
return nil
}
if err := validate.FormatOf("created_at", "body", "date-time", m.Created.String(), formats); err != nil {
return err
}
return nil
}
func (m *DeployKey) validateRepository(formats strfmt.Registry) error {
if swag.IsZero(m.Repository) { // not required
return nil
}
if m.Repository != nil {
if err := m.Repository.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("repository")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("repository")
}
return err
}
}
return nil
}
// ContextValidate validate this deploy key based on the context it is used
func (m *DeployKey) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateRepository(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *DeployKey) contextValidateRepository(ctx context.Context, formats strfmt.Registry) error {
if m.Repository != nil {
if swag.IsZero(m.Repository) { // not required
return nil
}
if err := m.Repository.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("repository")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("repository")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *DeployKey) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *DeployKey) UnmarshalBinary(b []byte) error {
var res DeployKey
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}