mirror of
https://codeberg.org/git-pages/git-pages.git
synced 2026-05-18 05:01:34 +00:00
465 lines
12 KiB
Go
465 lines
12 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.9
|
|
// protoc v6.30.2
|
|
// source: schema.proto
|
|
|
|
package main
|
|
|
|
import (
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
unsafe "unsafe"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
type Type int32
|
|
|
|
const (
|
|
// Invalid entry.
|
|
Type_Invalid Type = 0
|
|
// Directory.
|
|
Type_Directory Type = 1
|
|
// Inline file. `Blob.Data` contains file contents.
|
|
Type_InlineFile Type = 2
|
|
// External file. `Blob.Data` contains object reference.
|
|
Type_ExternalFile Type = 3
|
|
// Symlink. `Blob.Data` contains relative path.
|
|
Type_Symlink Type = 4
|
|
)
|
|
|
|
// Enum value maps for Type.
|
|
var (
|
|
Type_name = map[int32]string{
|
|
0: "Invalid",
|
|
1: "Directory",
|
|
2: "InlineFile",
|
|
3: "ExternalFile",
|
|
4: "Symlink",
|
|
}
|
|
Type_value = map[string]int32{
|
|
"Invalid": 0,
|
|
"Directory": 1,
|
|
"InlineFile": 2,
|
|
"ExternalFile": 3,
|
|
"Symlink": 4,
|
|
}
|
|
)
|
|
|
|
func (x Type) Enum() *Type {
|
|
p := new(Type)
|
|
*p = x
|
|
return p
|
|
}
|
|
|
|
func (x Type) String() string {
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
}
|
|
|
|
func (Type) Descriptor() protoreflect.EnumDescriptor {
|
|
return file_schema_proto_enumTypes[0].Descriptor()
|
|
}
|
|
|
|
func (Type) Type() protoreflect.EnumType {
|
|
return &file_schema_proto_enumTypes[0]
|
|
}
|
|
|
|
func (x Type) Number() protoreflect.EnumNumber {
|
|
return protoreflect.EnumNumber(x)
|
|
}
|
|
|
|
// Deprecated: Use Type.Descriptor instead.
|
|
func (Type) EnumDescriptor() ([]byte, []int) {
|
|
return file_schema_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
type Entry struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Type *Type `protobuf:"varint,1,opt,name=type,enum=Type" json:"type,omitempty"`
|
|
// Only present for `type == InlineFile` and `type == ExternalFile`
|
|
Size *uint32 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"`
|
|
// Meaning depends on `type`:
|
|
// - If `type == InlineFile`, contains file data.
|
|
// - If `type == ExternalFile`, contains blob name (an otherwise unspecified
|
|
// cryptographically secure content hash).
|
|
// - If `type == Symlink`, contains link target.
|
|
// - Otherwise not present.
|
|
Data []byte `protobuf:"bytes,3,opt,name=data" json:"data,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Entry) Reset() {
|
|
*x = Entry{}
|
|
mi := &file_schema_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Entry) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Entry) ProtoMessage() {}
|
|
|
|
func (x *Entry) ProtoReflect() protoreflect.Message {
|
|
mi := &file_schema_proto_msgTypes[0]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Entry.ProtoReflect.Descriptor instead.
|
|
func (*Entry) Descriptor() ([]byte, []int) {
|
|
return file_schema_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *Entry) GetType() Type {
|
|
if x != nil && x.Type != nil {
|
|
return *x.Type
|
|
}
|
|
return Type_Invalid
|
|
}
|
|
|
|
func (x *Entry) GetSize() uint32 {
|
|
if x != nil && x.Size != nil {
|
|
return *x.Size
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Entry) GetData() []byte {
|
|
if x != nil {
|
|
return x.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// See https://docs.netlify.com/manage/routing/redirects/overview/ for details.
|
|
// Only a subset of the Netlify specification is representable here.
|
|
type Redirect struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
From *string `protobuf:"bytes,1,opt,name=from" json:"from,omitempty"`
|
|
To *string `protobuf:"bytes,2,opt,name=to" json:"to,omitempty"`
|
|
Status *uint32 `protobuf:"varint,3,opt,name=status" json:"status,omitempty"`
|
|
Force *bool `protobuf:"varint,4,opt,name=force" json:"force,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Redirect) Reset() {
|
|
*x = Redirect{}
|
|
mi := &file_schema_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Redirect) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Redirect) ProtoMessage() {}
|
|
|
|
func (x *Redirect) ProtoReflect() protoreflect.Message {
|
|
mi := &file_schema_proto_msgTypes[1]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Redirect.ProtoReflect.Descriptor instead.
|
|
func (*Redirect) Descriptor() ([]byte, []int) {
|
|
return file_schema_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *Redirect) GetFrom() string {
|
|
if x != nil && x.From != nil {
|
|
return *x.From
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Redirect) GetTo() string {
|
|
if x != nil && x.To != nil {
|
|
return *x.To
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Redirect) GetStatus() uint32 {
|
|
if x != nil && x.Status != nil {
|
|
return *x.Status
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Redirect) GetForce() bool {
|
|
if x != nil && x.Force != nil {
|
|
return *x.Force
|
|
}
|
|
return false
|
|
}
|
|
|
|
type Problem struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Path *string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
|
|
Cause *string `protobuf:"bytes,2,opt,name=cause" json:"cause,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Problem) Reset() {
|
|
*x = Problem{}
|
|
mi := &file_schema_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Problem) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Problem) ProtoMessage() {}
|
|
|
|
func (x *Problem) ProtoReflect() protoreflect.Message {
|
|
mi := &file_schema_proto_msgTypes[2]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Problem.ProtoReflect.Descriptor instead.
|
|
func (*Problem) Descriptor() ([]byte, []int) {
|
|
return file_schema_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *Problem) GetPath() string {
|
|
if x != nil && x.Path != nil {
|
|
return *x.Path
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Problem) GetCause() string {
|
|
if x != nil && x.Cause != nil {
|
|
return *x.Cause
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Manifest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// Source metadata
|
|
RepoUrl *string `protobuf:"bytes,1,opt,name=repo_url,json=repoUrl" json:"repo_url,omitempty"`
|
|
Branch *string `protobuf:"bytes,2,opt,name=branch" json:"branch,omitempty"`
|
|
Commit *string `protobuf:"bytes,3,opt,name=commit" json:"commit,omitempty"`
|
|
// Contents
|
|
Contents map[string]*Entry `protobuf:"bytes,4,rep,name=contents" json:"contents,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
TotalSize *uint32 `protobuf:"varint,5,opt,name=total_size,json=totalSize" json:"total_size,omitempty"`
|
|
// Netlify-style `_redirects`
|
|
Redirects []*Redirect `protobuf:"bytes,6,rep,name=redirects" json:"redirects,omitempty"`
|
|
// Diagnostics for non-fatal errors
|
|
Problems []*Problem `protobuf:"bytes,7,rep,name=problems" json:"problems,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Manifest) Reset() {
|
|
*x = Manifest{}
|
|
mi := &file_schema_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Manifest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Manifest) ProtoMessage() {}
|
|
|
|
func (x *Manifest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_schema_proto_msgTypes[3]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Manifest.ProtoReflect.Descriptor instead.
|
|
func (*Manifest) Descriptor() ([]byte, []int) {
|
|
return file_schema_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *Manifest) GetRepoUrl() string {
|
|
if x != nil && x.RepoUrl != nil {
|
|
return *x.RepoUrl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Manifest) GetBranch() string {
|
|
if x != nil && x.Branch != nil {
|
|
return *x.Branch
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Manifest) GetCommit() string {
|
|
if x != nil && x.Commit != nil {
|
|
return *x.Commit
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Manifest) GetContents() map[string]*Entry {
|
|
if x != nil {
|
|
return x.Contents
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Manifest) GetTotalSize() uint32 {
|
|
if x != nil && x.TotalSize != nil {
|
|
return *x.TotalSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Manifest) GetRedirects() []*Redirect {
|
|
if x != nil {
|
|
return x.Redirects
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Manifest) GetProblems() []*Problem {
|
|
if x != nil {
|
|
return x.Problems
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var File_schema_proto protoreflect.FileDescriptor
|
|
|
|
const file_schema_proto_rawDesc = "" +
|
|
"\n" +
|
|
"\fschema.proto\"J\n" +
|
|
"\x05Entry\x12\x19\n" +
|
|
"\x04type\x18\x01 \x01(\x0e2\x05.TypeR\x04type\x12\x12\n" +
|
|
"\x04size\x18\x02 \x01(\rR\x04size\x12\x12\n" +
|
|
"\x04data\x18\x03 \x01(\fR\x04data\"\\\n" +
|
|
"\bRedirect\x12\x12\n" +
|
|
"\x04from\x18\x01 \x01(\tR\x04from\x12\x0e\n" +
|
|
"\x02to\x18\x02 \x01(\tR\x02to\x12\x16\n" +
|
|
"\x06status\x18\x03 \x01(\rR\x06status\x12\x14\n" +
|
|
"\x05force\x18\x04 \x01(\bR\x05force\"3\n" +
|
|
"\aProblem\x12\x12\n" +
|
|
"\x04path\x18\x01 \x01(\tR\x04path\x12\x14\n" +
|
|
"\x05cause\x18\x02 \x01(\tR\x05cause\"\xbd\x02\n" +
|
|
"\bManifest\x12\x19\n" +
|
|
"\brepo_url\x18\x01 \x01(\tR\arepoUrl\x12\x16\n" +
|
|
"\x06branch\x18\x02 \x01(\tR\x06branch\x12\x16\n" +
|
|
"\x06commit\x18\x03 \x01(\tR\x06commit\x123\n" +
|
|
"\bcontents\x18\x04 \x03(\v2\x17.Manifest.ContentsEntryR\bcontents\x12\x1d\n" +
|
|
"\n" +
|
|
"total_size\x18\x05 \x01(\rR\ttotalSize\x12'\n" +
|
|
"\tredirects\x18\x06 \x03(\v2\t.RedirectR\tredirects\x12$\n" +
|
|
"\bproblems\x18\a \x03(\v2\b.ProblemR\bproblems\x1aC\n" +
|
|
"\rContentsEntry\x12\x10\n" +
|
|
"\x03key\x18\x01 \x01(\tR\x03key\x12\x1c\n" +
|
|
"\x05value\x18\x02 \x01(\v2\x06.EntryR\x05value:\x028\x01*Q\n" +
|
|
"\x04Type\x12\v\n" +
|
|
"\aInvalid\x10\x00\x12\r\n" +
|
|
"\tDirectory\x10\x01\x12\x0e\n" +
|
|
"\n" +
|
|
"InlineFile\x10\x02\x12\x10\n" +
|
|
"\fExternalFile\x10\x03\x12\v\n" +
|
|
"\aSymlink\x10\x04B'Z%codeberg.org/git-pages/git-pages/mainb\beditionsp\xe8\a"
|
|
|
|
var (
|
|
file_schema_proto_rawDescOnce sync.Once
|
|
file_schema_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_schema_proto_rawDescGZIP() []byte {
|
|
file_schema_proto_rawDescOnce.Do(func() {
|
|
file_schema_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_schema_proto_rawDesc), len(file_schema_proto_rawDesc)))
|
|
})
|
|
return file_schema_proto_rawDescData
|
|
}
|
|
|
|
var file_schema_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
var file_schema_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
|
|
var file_schema_proto_goTypes = []any{
|
|
(Type)(0), // 0: Type
|
|
(*Entry)(nil), // 1: Entry
|
|
(*Redirect)(nil), // 2: Redirect
|
|
(*Problem)(nil), // 3: Problem
|
|
(*Manifest)(nil), // 4: Manifest
|
|
nil, // 5: Manifest.ContentsEntry
|
|
}
|
|
var file_schema_proto_depIdxs = []int32{
|
|
0, // 0: Entry.type:type_name -> Type
|
|
5, // 1: Manifest.contents:type_name -> Manifest.ContentsEntry
|
|
2, // 2: Manifest.redirects:type_name -> Redirect
|
|
3, // 3: Manifest.problems:type_name -> Problem
|
|
1, // 4: Manifest.ContentsEntry.value:type_name -> Entry
|
|
5, // [5:5] is the sub-list for method output_type
|
|
5, // [5:5] is the sub-list for method input_type
|
|
5, // [5:5] is the sub-list for extension type_name
|
|
5, // [5:5] is the sub-list for extension extendee
|
|
0, // [0:5] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_schema_proto_init() }
|
|
func file_schema_proto_init() {
|
|
if File_schema_proto != nil {
|
|
return
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_schema_proto_rawDesc), len(file_schema_proto_rawDesc)),
|
|
NumEnums: 1,
|
|
NumMessages: 5,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_schema_proto_goTypes,
|
|
DependencyIndexes: file_schema_proto_depIdxs,
|
|
EnumInfos: file_schema_proto_enumTypes,
|
|
MessageInfos: file_schema_proto_msgTypes,
|
|
}.Build()
|
|
File_schema_proto = out.File
|
|
file_schema_proto_goTypes = nil
|
|
file_schema_proto_depIdxs = nil
|
|
}
|