212 lines
4.7 KiB
Go
212 lines
4.7 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"
|
|
)
|
|
|
|
// FileResponse FileResponse contains information about a repo's file
|
|
//
|
|
// swagger:model FileResponse
|
|
type FileResponse struct {
|
|
|
|
// commit
|
|
Commit *FileCommitResponse `json:"commit,omitempty"`
|
|
|
|
// content
|
|
Content *ContentsResponse `json:"content,omitempty"`
|
|
|
|
// verification
|
|
Verification *PayloadCommitVerification `json:"verification,omitempty"`
|
|
}
|
|
|
|
// Validate validates this file response
|
|
func (m *FileResponse) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateCommit(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateContent(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateVerification(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *FileResponse) validateCommit(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Commit) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.Commit != nil {
|
|
if err := m.Commit.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("commit")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("commit")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *FileResponse) validateContent(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Content) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.Content != nil {
|
|
if err := m.Content.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("content")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("content")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *FileResponse) validateVerification(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Verification) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.Verification != nil {
|
|
if err := m.Verification.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("verification")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("verification")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this file response based on the context it is used
|
|
func (m *FileResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateCommit(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.contextValidateContent(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.contextValidateVerification(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *FileResponse) contextValidateCommit(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.Commit != nil {
|
|
|
|
if swag.IsZero(m.Commit) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := m.Commit.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("commit")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("commit")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *FileResponse) contextValidateContent(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.Content != nil {
|
|
|
|
if swag.IsZero(m.Content) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := m.Content.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("content")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("content")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *FileResponse) contextValidateVerification(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.Verification != nil {
|
|
|
|
if swag.IsZero(m.Verification) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := m.Verification.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("verification")
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("verification")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *FileResponse) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *FileResponse) UnmarshalBinary(b []byte) error {
|
|
var res FileResponse
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|