autogits/bots-common/gitea-generated/models/compare.go

125 lines
2.7 KiB
Go
Raw Normal View History

2024-07-07 21:08:41 +02:00
// 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"
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// Compare Compare represents a comparison between two commits.
//
// swagger:model Compare
type Compare struct {
// commits
Commits []*Commit `json:"commits"`
// total commits
TotalCommits int64 `json:"total_commits,omitempty"`
}
// Validate validates this compare
func (m *Compare) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateCommits(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Compare) validateCommits(formats strfmt.Registry) error {
if swag.IsZero(m.Commits) { // not required
return nil
}
for i := 0; i < len(m.Commits); i++ {
if swag.IsZero(m.Commits[i]) { // not required
continue
}
if m.Commits[i] != nil {
if err := m.Commits[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("commits" + "." + strconv.Itoa(i))
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("commits" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
// ContextValidate validate this compare based on the context it is used
func (m *Compare) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateCommits(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Compare) contextValidateCommits(ctx context.Context, formats strfmt.Registry) error {
for i := 0; i < len(m.Commits); i++ {
if m.Commits[i] != nil {
if swag.IsZero(m.Commits[i]) { // not required
return nil
}
if err := m.Commits[i].ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("commits" + "." + strconv.Itoa(i))
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("commits" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
// MarshalBinary interface implementation
func (m *Compare) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Compare) UnmarshalBinary(b []byte) error {
var res Compare
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}