You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2031 lines
51 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: api/v1/article.proto
package v1
import (
context "context"
fmt "fmt"
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
github_com_gogo_protobuf_types "github.com/gogo/protobuf/types"
_ "google.golang.org/genproto/googleapis/api/annotations"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
emptypb "google.golang.org/protobuf/types/known/emptypb"
_ "google.golang.org/protobuf/types/known/timestamppb"
io "io"
math "math"
math_bits "math/bits"
time "time"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
var _ = time.Kitchen
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
// 文章
type Article struct {
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
Identifier string `protobuf:"bytes,2,opt,name=identifier,proto3" json:"identifier,omitempty"`
Author string `protobuf:"bytes,3,opt,name=author,proto3" json:"author,omitempty"`
ViewCount int64 `protobuf:"varint,4,opt,name=view_count,json=viewCount,proto3" json:"view_count,omitempty"`
Title string `protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty"`
Keywords string `protobuf:"bytes,6,opt,name=keywords,proto3" json:"keywords,omitempty"`
Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"`
Content string `protobuf:"bytes,8,opt,name=content,proto3" json:"content,omitempty"`
CreatedAt *time.Time `protobuf:"bytes,9,opt,name=created_at,json=createdAt,proto3,stdtime" json:"created_at,omitempty"`
UpdatedAt *time.Time `protobuf:"bytes,10,opt,name=updated_at,json=updatedAt,proto3,stdtime" json:"updated_at,omitempty"`
}
func (m *Article) Reset() { *m = Article{} }
func (m *Article) String() string { return proto.CompactTextString(m) }
func (*Article) ProtoMessage() {}
func (*Article) Descriptor() ([]byte, []int) {
return fileDescriptor_d5a9bcd2997b0bd3, []int{0}
}
func (m *Article) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Article) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Article.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Article) XXX_Merge(src proto.Message) {
xxx_messageInfo_Article.Merge(m, src)
}
func (m *Article) XXX_Size() int {
return m.Size()
}
func (m *Article) XXX_DiscardUnknown() {
xxx_messageInfo_Article.DiscardUnknown(m)
}
var xxx_messageInfo_Article proto.InternalMessageInfo
func (m *Article) GetId() int64 {
if m != nil {
return m.Id
}
return 0
}
func (m *Article) GetIdentifier() string {
if m != nil {
return m.Identifier
}
return ""
}
func (m *Article) GetAuthor() string {
if m != nil {
return m.Author
}
return ""
}
func (m *Article) GetViewCount() int64 {
if m != nil {
return m.ViewCount
}
return 0
}
func (m *Article) GetTitle() string {
if m != nil {
return m.Title
}
return ""
}
func (m *Article) GetKeywords() string {
if m != nil {
return m.Keywords
}
return ""
}
func (m *Article) GetDescription() string {
if m != nil {
return m.Description
}
return ""
}
func (m *Article) GetContent() string {
if m != nil {
return m.Content
}
return ""
}
func (m *Article) GetCreatedAt() *time.Time {
if m != nil {
return m.CreatedAt
}
return nil
}
func (m *Article) GetUpdatedAt() *time.Time {
if m != nil {
return m.UpdatedAt
}
return nil
}
// 删除文章请求传入单个或者多个文章ID
type DeleteArticleRequest struct {
Id []int64 `protobuf:"varint,1,rep,packed,name=id,proto3" json:"id,omitempty"`
}
func (m *DeleteArticleRequest) Reset() { *m = DeleteArticleRequest{} }
func (m *DeleteArticleRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteArticleRequest) ProtoMessage() {}
func (*DeleteArticleRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_d5a9bcd2997b0bd3, []int{1}
}
func (m *DeleteArticleRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *DeleteArticleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_DeleteArticleRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *DeleteArticleRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteArticleRequest.Merge(m, src)
}
func (m *DeleteArticleRequest) XXX_Size() int {
return m.Size()
}
func (m *DeleteArticleRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteArticleRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteArticleRequest proto.InternalMessageInfo
func (m *DeleteArticleRequest) GetId() []int64 {
if m != nil {
return m.Id
}
return nil
}
// 根据ID或者文章标识获取文章二选一
type GetArticleRequest struct {
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
Identifier string `protobuf:"bytes,2,opt,name=identifier,proto3" json:"identifier,omitempty"`
}
func (m *GetArticleRequest) Reset() { *m = GetArticleRequest{} }
func (m *GetArticleRequest) String() string { return proto.CompactTextString(m) }
func (*GetArticleRequest) ProtoMessage() {}
func (*GetArticleRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_d5a9bcd2997b0bd3, []int{2}
}
func (m *GetArticleRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetArticleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetArticleRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetArticleRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetArticleRequest.Merge(m, src)
}
func (m *GetArticleRequest) XXX_Size() int {
return m.Size()
}
func (m *GetArticleRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetArticleRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetArticleRequest proto.InternalMessageInfo
func (m *GetArticleRequest) GetId() int64 {
if m != nil {
return m.Id
}
return 0
}
func (m *GetArticleRequest) GetIdentifier() string {
if m != nil {
return m.Identifier
}
return ""
}
// 文章列表请求
type ListArticleRequest struct {
Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
Size_ int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
Wd string `protobuf:"bytes,3,opt,name=wd,proto3" json:"wd,omitempty"`
Field []string `protobuf:"bytes,4,rep,name=field,proto3" json:"field,omitempty"`
Order string `protobuf:"bytes,5,opt,name=order,proto3" json:"order,omitempty"`
}
func (m *ListArticleRequest) Reset() { *m = ListArticleRequest{} }
func (m *ListArticleRequest) String() string { return proto.CompactTextString(m) }
func (*ListArticleRequest) ProtoMessage() {}
func (*ListArticleRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_d5a9bcd2997b0bd3, []int{3}
}
func (m *ListArticleRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ListArticleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ListArticleRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ListArticleRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListArticleRequest.Merge(m, src)
}
func (m *ListArticleRequest) XXX_Size() int {
return m.Size()
}
func (m *ListArticleRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ListArticleRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ListArticleRequest proto.InternalMessageInfo
func (m *ListArticleRequest) GetPage() int64 {
if m != nil {
return m.Page
}
return 0
}
func (m *ListArticleRequest) GetSize_() int64 {
if m != nil {
return m.Size_
}
return 0
}
func (m *ListArticleRequest) GetWd() string {
if m != nil {
return m.Wd
}
return ""
}
func (m *ListArticleRequest) GetField() []string {
if m != nil {
return m.Field
}
return nil
}
func (m *ListArticleRequest) GetOrder() string {
if m != nil {
return m.Order
}
return ""
}
// 文章列表响应
type ListArticleReply struct {
Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
Article []*Article `protobuf:"bytes,2,rep,name=article,proto3" json:"article,omitempty"`
}
func (m *ListArticleReply) Reset() { *m = ListArticleReply{} }
func (m *ListArticleReply) String() string { return proto.CompactTextString(m) }
func (*ListArticleReply) ProtoMessage() {}
func (*ListArticleReply) Descriptor() ([]byte, []int) {
return fileDescriptor_d5a9bcd2997b0bd3, []int{4}
}
func (m *ListArticleReply) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ListArticleReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ListArticleReply.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ListArticleReply) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListArticleReply.Merge(m, src)
}
func (m *ListArticleReply) XXX_Size() int {
return m.Size()
}
func (m *ListArticleReply) XXX_DiscardUnknown() {
xxx_messageInfo_ListArticleReply.DiscardUnknown(m)
}
var xxx_messageInfo_ListArticleReply proto.InternalMessageInfo
func (m *ListArticleReply) GetTotal() int64 {
if m != nil {
return m.Total
}
return 0
}
func (m *ListArticleReply) GetArticle() []*Article {
if m != nil {
return m.Article
}
return nil
}
func init() {
proto.RegisterType((*Article)(nil), "api.v1.Article")
proto.RegisterType((*DeleteArticleRequest)(nil), "api.v1.DeleteArticleRequest")
proto.RegisterType((*GetArticleRequest)(nil), "api.v1.GetArticleRequest")
proto.RegisterType((*ListArticleRequest)(nil), "api.v1.ListArticleRequest")
proto.RegisterType((*ListArticleReply)(nil), "api.v1.ListArticleReply")
}
func init() { proto.RegisterFile("api/v1/article.proto", fileDescriptor_d5a9bcd2997b0bd3) }
var fileDescriptor_d5a9bcd2997b0bd3 = []byte{
// 621 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xc1, 0x6e, 0xd3, 0x4c,
0x10, 0xc7, 0x6b, 0x3b, 0x4d, 0x9a, 0x89, 0xfa, 0xf5, 0xeb, 0x2a, 0x2a, 0x8b, 0x29, 0x6e, 0xe4,
0x03, 0x0a, 0x3d, 0xd8, 0x6a, 0x11, 0x17, 0x38, 0xa0, 0xb4, 0x20, 0x84, 0xc4, 0xa1, 0x84, 0x72,
0xe1, 0x40, 0xe5, 0xc6, 0xd3, 0xb0, 0xc2, 0xf1, 0x1a, 0x7b, 0x93, 0x10, 0x8e, 0x3c, 0x41, 0x25,
0x5e, 0x8a, 0x13, 0xaa, 0xc4, 0x85, 0x1b, 0x55, 0xcb, 0x83, 0xa0, 0x5d, 0xef, 0x96, 0x36, 0x49,
0xa5, 0x8a, 0xdb, 0xcc, 0x7f, 0x3c, 0xbf, 0x89, 0xe7, 0x3f, 0x31, 0x34, 0xa3, 0x8c, 0x85, 0xa3,
0xad, 0x30, 0xca, 0x05, 0xeb, 0x25, 0x18, 0x64, 0x39, 0x17, 0x9c, 0x54, 0xa3, 0x8c, 0x05, 0xa3,
0x2d, 0x77, 0xa3, 0xcf, 0x79, 0x3f, 0xc1, 0x50, 0xa9, 0x87, 0xc3, 0xa3, 0x50, 0xb0, 0x01, 0x16,
0x22, 0x1a, 0x64, 0xe5, 0x83, 0x6e, 0xb3, 0xcf, 0xfb, 0x5c, 0x85, 0xa1, 0x8c, 0xb4, 0xba, 0xae,
0xdb, 0x24, 0x3b, 0x4a, 0x53, 0x2e, 0x22, 0xc1, 0x78, 0x5a, 0xe8, 0xea, 0x9d, 0x69, 0x28, 0x0e,
0x32, 0x31, 0x29, 0x8b, 0xfe, 0xa9, 0x0d, 0xb5, 0x4e, 0xf9, 0x5b, 0xc8, 0x7f, 0x60, 0xb3, 0x98,
0x5a, 0x2d, 0xab, 0xed, 0x74, 0x6d, 0x16, 0x13, 0x0f, 0x80, 0xc5, 0x98, 0x0a, 0x76, 0xc4, 0x30,
0xa7, 0x76, 0xcb, 0x6a, 0xd7, 0xbb, 0x97, 0x14, 0xb2, 0x06, 0xd5, 0x68, 0x28, 0xde, 0xf3, 0x9c,
0x3a, 0xaa, 0xa6, 0x33, 0x72, 0x17, 0x60, 0xc4, 0x70, 0x7c, 0xd0, 0xe3, 0xc3, 0x54, 0xd0, 0x8a,
0xe2, 0xd5, 0xa5, 0xb2, 0x2b, 0x05, 0xd2, 0x84, 0x45, 0xc1, 0x44, 0x82, 0x74, 0x51, 0x75, 0x95,
0x09, 0x71, 0x61, 0xe9, 0x03, 0x4e, 0xc6, 0x3c, 0x8f, 0x0b, 0x5a, 0x55, 0x85, 0x8b, 0x9c, 0xb4,
0xa0, 0x11, 0x63, 0xd1, 0xcb, 0x59, 0x26, 0xdf, 0x8b, 0xd6, 0x54, 0xf9, 0xb2, 0x44, 0x28, 0xd4,
0x7a, 0x3c, 0x15, 0x98, 0x0a, 0xba, 0xa4, 0xaa, 0x26, 0x25, 0x4f, 0x00, 0x7a, 0x39, 0x46, 0x02,
0xe3, 0x83, 0x48, 0xd0, 0x7a, 0xcb, 0x6a, 0x37, 0xb6, 0xdd, 0xa0, 0x5c, 0x49, 0x60, 0x56, 0x12,
0xec, 0x9b, 0x3d, 0xef, 0x54, 0x8e, 0x7f, 0x6d, 0x58, 0xdd, 0xba, 0xee, 0xe9, 0x28, 0xc0, 0x30,
0x8b, 0x0d, 0x00, 0x6e, 0x0a, 0xd0, 0x3d, 0x1d, 0xe1, 0xdf, 0x83, 0xe6, 0x53, 0x4c, 0x50, 0xa0,
0xde, 0x73, 0x17, 0x3f, 0x0e, 0xb1, 0x10, 0x17, 0xeb, 0x76, 0xca, 0x75, 0xfb, 0xbb, 0xb0, 0xfa,
0x1c, 0xc5, 0x35, 0x0f, 0xdd, 0xd0, 0x13, 0xff, 0x13, 0x90, 0x97, 0xac, 0x98, 0xa6, 0x10, 0xa8,
0x64, 0x51, 0x1f, 0x35, 0x47, 0xc5, 0x52, 0x2b, 0xd8, 0x67, 0x54, 0x0c, 0xa7, 0xab, 0x62, 0x39,
0x6d, 0x1c, 0x6b, 0x37, 0xed, 0x71, 0x2c, 0xad, 0x3a, 0x62, 0x98, 0xc4, 0xb4, 0xd2, 0x72, 0xa4,
0x55, 0x2a, 0x91, 0x2a, 0xcf, 0x63, 0xcc, 0x8d, 0x81, 0x2a, 0xf1, 0x5f, 0xc3, 0xff, 0x57, 0x26,
0x67, 0xc9, 0x44, 0x59, 0xcd, 0x45, 0x94, 0xe8, 0xc1, 0x65, 0x42, 0xee, 0x43, 0x4d, 0x9f, 0x3f,
0xb5, 0x5b, 0x4e, 0xbb, 0xb1, 0xbd, 0x12, 0x94, 0xf7, 0x1f, 0x98, 0x66, 0x53, 0xdf, 0xfe, 0xee,
0x00, 0x68, 0xb1, 0xb3, 0xf7, 0x82, 0xec, 0xc3, 0xf2, 0xae, 0x32, 0xc6, 0x9c, 0xec, 0x74, 0xa7,
0xbb, 0x36, 0xe3, 0xcc, 0x33, 0x79, 0xed, 0xbe, 0xfb, 0xe5, 0xc7, 0xef, 0xaf, 0x76, 0xd3, 0x5f,
0x09, 0xaf, 0xfe, 0x01, 0x1f, 0x59, 0x9b, 0x92, 0xfa, 0x46, 0xb9, 0xf5, 0xaf, 0x54, 0x77, 0x1e,
0xf5, 0x1d, 0x2c, 0x5f, 0xb1, 0x9d, 0xac, 0x1b, 0xea, 0xbc, 0x6b, 0xb8, 0x76, 0xc4, 0x2d, 0x35,
0x62, 0x75, 0x73, 0x7a, 0x04, 0x79, 0x05, 0xf0, 0xf7, 0x5c, 0xc8, 0x6d, 0x03, 0x9f, 0x39, 0x21,
0x77, 0xfa, 0x6d, 0x0c, 0x92, 0xcc, 0x20, 0x23, 0x68, 0x5c, 0xb2, 0x90, 0xb8, 0xa6, 0x71, 0xf6,
0xa2, 0x5c, 0x3a, 0xb7, 0x96, 0x25, 0x13, 0x7f, 0x5d, 0xd1, 0xd7, 0x48, 0x73, 0x8a, 0x1e, 0x26,
0xac, 0x10, 0x3b, 0x0f, 0xbf, 0x9d, 0x79, 0xd6, 0xc9, 0x99, 0x67, 0x9d, 0x9e, 0x79, 0xd6, 0xf1,
0xb9, 0xb7, 0x70, 0x72, 0xee, 0x2d, 0xfc, 0x3c, 0xf7, 0x16, 0x40, 0x7f, 0x03, 0xf7, 0xac, 0xb7,
0xab, 0x03, 0x9e, 0x63, 0xcc, 0x7b, 0x1a, 0xf0, 0x78, 0xb4, 0x75, 0x58, 0x55, 0x5b, 0x79, 0xf0,
0x27, 0x00, 0x00, 0xff, 0xff, 0x73, 0x36, 0x99, 0x7c, 0x3f, 0x05, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// ArticleAPIClient is the client API for ArticleAPI service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type ArticleAPIClient interface {
// 创建文章
CreateArticle(ctx context.Context, in *Article, opts ...grpc.CallOption) (*emptypb.Empty, error)
// 更新文章
UpdateArticle(ctx context.Context, in *Article, opts ...grpc.CallOption) (*emptypb.Empty, error)
// 删除文章
DeleteArticle(ctx context.Context, in *DeleteArticleRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
// 获取文章
GetArticle(ctx context.Context, in *GetArticleRequest, opts ...grpc.CallOption) (*Article, error)
// 文章列表
ListArticle(ctx context.Context, in *ListArticleRequest, opts ...grpc.CallOption) (*ListArticleReply, error)
}
type articleAPIClient struct {
cc *grpc.ClientConn
}
func NewArticleAPIClient(cc *grpc.ClientConn) ArticleAPIClient {
return &articleAPIClient{cc}
}
func (c *articleAPIClient) CreateArticle(ctx context.Context, in *Article, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.v1.ArticleAPI/CreateArticle", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *articleAPIClient) UpdateArticle(ctx context.Context, in *Article, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.v1.ArticleAPI/UpdateArticle", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *articleAPIClient) DeleteArticle(ctx context.Context, in *DeleteArticleRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
out := new(emptypb.Empty)
err := c.cc.Invoke(ctx, "/api.v1.ArticleAPI/DeleteArticle", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *articleAPIClient) GetArticle(ctx context.Context, in *GetArticleRequest, opts ...grpc.CallOption) (*Article, error) {
out := new(Article)
err := c.cc.Invoke(ctx, "/api.v1.ArticleAPI/GetArticle", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *articleAPIClient) ListArticle(ctx context.Context, in *ListArticleRequest, opts ...grpc.CallOption) (*ListArticleReply, error) {
out := new(ListArticleReply)
err := c.cc.Invoke(ctx, "/api.v1.ArticleAPI/ListArticle", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// ArticleAPIServer is the server API for ArticleAPI service.
type ArticleAPIServer interface {
// 创建文章
CreateArticle(context.Context, *Article) (*emptypb.Empty, error)
// 更新文章
UpdateArticle(context.Context, *Article) (*emptypb.Empty, error)
// 删除文章
DeleteArticle(context.Context, *DeleteArticleRequest) (*emptypb.Empty, error)
// 获取文章
GetArticle(context.Context, *GetArticleRequest) (*Article, error)
// 文章列表
ListArticle(context.Context, *ListArticleRequest) (*ListArticleReply, error)
}
// UnimplementedArticleAPIServer can be embedded to have forward compatible implementations.
type UnimplementedArticleAPIServer struct {
}
func (*UnimplementedArticleAPIServer) CreateArticle(ctx context.Context, req *Article) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateArticle not implemented")
}
func (*UnimplementedArticleAPIServer) UpdateArticle(ctx context.Context, req *Article) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateArticle not implemented")
}
func (*UnimplementedArticleAPIServer) DeleteArticle(ctx context.Context, req *DeleteArticleRequest) (*emptypb.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteArticle not implemented")
}
func (*UnimplementedArticleAPIServer) GetArticle(ctx context.Context, req *GetArticleRequest) (*Article, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetArticle not implemented")
}
func (*UnimplementedArticleAPIServer) ListArticle(ctx context.Context, req *ListArticleRequest) (*ListArticleReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method ListArticle not implemented")
}
func RegisterArticleAPIServer(s *grpc.Server, srv ArticleAPIServer) {
s.RegisterService(&_ArticleAPI_serviceDesc, srv)
}
func _ArticleAPI_CreateArticle_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Article)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ArticleAPIServer).CreateArticle(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.v1.ArticleAPI/CreateArticle",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ArticleAPIServer).CreateArticle(ctx, req.(*Article))
}
return interceptor(ctx, in, info, handler)
}
func _ArticleAPI_UpdateArticle_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Article)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ArticleAPIServer).UpdateArticle(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.v1.ArticleAPI/UpdateArticle",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ArticleAPIServer).UpdateArticle(ctx, req.(*Article))
}
return interceptor(ctx, in, info, handler)
}
func _ArticleAPI_DeleteArticle_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteArticleRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ArticleAPIServer).DeleteArticle(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.v1.ArticleAPI/DeleteArticle",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ArticleAPIServer).DeleteArticle(ctx, req.(*DeleteArticleRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ArticleAPI_GetArticle_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetArticleRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ArticleAPIServer).GetArticle(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.v1.ArticleAPI/GetArticle",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ArticleAPIServer).GetArticle(ctx, req.(*GetArticleRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ArticleAPI_ListArticle_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ListArticleRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ArticleAPIServer).ListArticle(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.v1.ArticleAPI/ListArticle",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ArticleAPIServer).ListArticle(ctx, req.(*ListArticleRequest))
}
return interceptor(ctx, in, info, handler)
}
var _ArticleAPI_serviceDesc = grpc.ServiceDesc{
ServiceName: "api.v1.ArticleAPI",
HandlerType: (*ArticleAPIServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "CreateArticle",
Handler: _ArticleAPI_CreateArticle_Handler,
},
{
MethodName: "UpdateArticle",
Handler: _ArticleAPI_UpdateArticle_Handler,
},
{
MethodName: "DeleteArticle",
Handler: _ArticleAPI_DeleteArticle_Handler,
},
{
MethodName: "GetArticle",
Handler: _ArticleAPI_GetArticle_Handler,
},
{
MethodName: "ListArticle",
Handler: _ArticleAPI_ListArticle_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "api/v1/article.proto",
}
func (m *Article) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *Article) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *Article) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if m.UpdatedAt != nil {
n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.UpdatedAt, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(*m.UpdatedAt):])
if err1 != nil {
return 0, err1
}
i -= n1
i = encodeVarintArticle(dAtA, i, uint64(n1))
i--
dAtA[i] = 0x52
}
if m.CreatedAt != nil {
n2, err2 := github_com_gogo_protobuf_types.StdTimeMarshalTo(*m.CreatedAt, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(*m.CreatedAt):])
if err2 != nil {
return 0, err2
}
i -= n2
i = encodeVarintArticle(dAtA, i, uint64(n2))
i--
dAtA[i] = 0x4a
}
if len(m.Content) > 0 {
i -= len(m.Content)
copy(dAtA[i:], m.Content)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Content)))
i--
dAtA[i] = 0x42
}
if len(m.Description) > 0 {
i -= len(m.Description)
copy(dAtA[i:], m.Description)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Description)))
i--
dAtA[i] = 0x3a
}
if len(m.Keywords) > 0 {
i -= len(m.Keywords)
copy(dAtA[i:], m.Keywords)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Keywords)))
i--
dAtA[i] = 0x32
}
if len(m.Title) > 0 {
i -= len(m.Title)
copy(dAtA[i:], m.Title)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Title)))
i--
dAtA[i] = 0x2a
}
if m.ViewCount != 0 {
i = encodeVarintArticle(dAtA, i, uint64(m.ViewCount))
i--
dAtA[i] = 0x20
}
if len(m.Author) > 0 {
i -= len(m.Author)
copy(dAtA[i:], m.Author)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Author)))
i--
dAtA[i] = 0x1a
}
if len(m.Identifier) > 0 {
i -= len(m.Identifier)
copy(dAtA[i:], m.Identifier)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Identifier)))
i--
dAtA[i] = 0x12
}
if m.Id != 0 {
i = encodeVarintArticle(dAtA, i, uint64(m.Id))
i--
dAtA[i] = 0x8
}
return len(dAtA) - i, nil
}
func (m *DeleteArticleRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *DeleteArticleRequest) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *DeleteArticleRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Id) > 0 {
dAtA4 := make([]byte, len(m.Id)*10)
var j3 int
for _, num1 := range m.Id {
num := uint64(num1)
for num >= 1<<7 {
dAtA4[j3] = uint8(uint64(num)&0x7f | 0x80)
num >>= 7
j3++
}
dAtA4[j3] = uint8(num)
j3++
}
i -= j3
copy(dAtA[i:], dAtA4[:j3])
i = encodeVarintArticle(dAtA, i, uint64(j3))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *GetArticleRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *GetArticleRequest) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *GetArticleRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Identifier) > 0 {
i -= len(m.Identifier)
copy(dAtA[i:], m.Identifier)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Identifier)))
i--
dAtA[i] = 0x12
}
if m.Id != 0 {
i = encodeVarintArticle(dAtA, i, uint64(m.Id))
i--
dAtA[i] = 0x8
}
return len(dAtA) - i, nil
}
func (m *ListArticleRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *ListArticleRequest) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *ListArticleRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Order) > 0 {
i -= len(m.Order)
copy(dAtA[i:], m.Order)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Order)))
i--
dAtA[i] = 0x2a
}
if len(m.Field) > 0 {
for iNdEx := len(m.Field) - 1; iNdEx >= 0; iNdEx-- {
i -= len(m.Field[iNdEx])
copy(dAtA[i:], m.Field[iNdEx])
i = encodeVarintArticle(dAtA, i, uint64(len(m.Field[iNdEx])))
i--
dAtA[i] = 0x22
}
}
if len(m.Wd) > 0 {
i -= len(m.Wd)
copy(dAtA[i:], m.Wd)
i = encodeVarintArticle(dAtA, i, uint64(len(m.Wd)))
i--
dAtA[i] = 0x1a
}
if m.Size_ != 0 {
i = encodeVarintArticle(dAtA, i, uint64(m.Size_))
i--
dAtA[i] = 0x10
}
if m.Page != 0 {
i = encodeVarintArticle(dAtA, i, uint64(m.Page))
i--
dAtA[i] = 0x8
}
return len(dAtA) - i, nil
}
func (m *ListArticleReply) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *ListArticleReply) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *ListArticleReply) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Article) > 0 {
for iNdEx := len(m.Article) - 1; iNdEx >= 0; iNdEx-- {
{
size, err := m.Article[iNdEx].MarshalToSizedBuffer(dAtA[:i])
if err != nil {
return 0, err
}
i -= size
i = encodeVarintArticle(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0x12
}
}
if m.Total != 0 {
i = encodeVarintArticle(dAtA, i, uint64(m.Total))
i--
dAtA[i] = 0x8
}
return len(dAtA) - i, nil
}
func encodeVarintArticle(dAtA []byte, offset int, v uint64) int {
offset -= sovArticle(v)
base := offset
for v >= 1<<7 {
dAtA[offset] = uint8(v&0x7f | 0x80)
v >>= 7
offset++
}
dAtA[offset] = uint8(v)
return base
}
func (m *Article) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if m.Id != 0 {
n += 1 + sovArticle(uint64(m.Id))
}
l = len(m.Identifier)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
l = len(m.Author)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
if m.ViewCount != 0 {
n += 1 + sovArticle(uint64(m.ViewCount))
}
l = len(m.Title)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
l = len(m.Keywords)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
l = len(m.Description)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
l = len(m.Content)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
if m.CreatedAt != nil {
l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.CreatedAt)
n += 1 + l + sovArticle(uint64(l))
}
if m.UpdatedAt != nil {
l = github_com_gogo_protobuf_types.SizeOfStdTime(*m.UpdatedAt)
n += 1 + l + sovArticle(uint64(l))
}
return n
}
func (m *DeleteArticleRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if len(m.Id) > 0 {
l = 0
for _, e := range m.Id {
l += sovArticle(uint64(e))
}
n += 1 + sovArticle(uint64(l)) + l
}
return n
}
func (m *GetArticleRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if m.Id != 0 {
n += 1 + sovArticle(uint64(m.Id))
}
l = len(m.Identifier)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
return n
}
func (m *ListArticleRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if m.Page != 0 {
n += 1 + sovArticle(uint64(m.Page))
}
if m.Size_ != 0 {
n += 1 + sovArticle(uint64(m.Size_))
}
l = len(m.Wd)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
if len(m.Field) > 0 {
for _, s := range m.Field {
l = len(s)
n += 1 + l + sovArticle(uint64(l))
}
}
l = len(m.Order)
if l > 0 {
n += 1 + l + sovArticle(uint64(l))
}
return n
}
func (m *ListArticleReply) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if m.Total != 0 {
n += 1 + sovArticle(uint64(m.Total))
}
if len(m.Article) > 0 {
for _, e := range m.Article {
l = e.Size()
n += 1 + l + sovArticle(uint64(l))
}
}
return n
}
func sovArticle(x uint64) (n int) {
return (math_bits.Len64(x|1) + 6) / 7
}
func sozArticle(x uint64) (n int) {
return sovArticle(uint64((x << 1) ^ uint64((int64(x) >> 63))))
}
func (m *Article) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: Article: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: Article: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
}
m.Id = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Id |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Identifier", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Identifier = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Author", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Author = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field ViewCount", wireType)
}
m.ViewCount = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.ViewCount |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Title", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Title = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 6:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Keywords", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Keywords = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 7:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Description = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 8:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Content", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Content = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 9:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field CreatedAt", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.CreatedAt == nil {
m.CreatedAt = new(time.Time)
}
if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.CreatedAt, dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
case 10:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field UpdatedAt", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
if m.UpdatedAt == nil {
m.UpdatedAt = new(time.Time)
}
if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(m.UpdatedAt, dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipArticle(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthArticle
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *DeleteArticleRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: DeleteArticleRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: DeleteArticleRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType == 0 {
var v int64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
v |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
m.Id = append(m.Id, v)
} else if wireType == 2 {
var packedLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
packedLen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if packedLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + packedLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
var elementCount int
var count int
for _, integer := range dAtA[iNdEx:postIndex] {
if integer < 128 {
count++
}
}
elementCount = count
if elementCount != 0 && len(m.Id) == 0 {
m.Id = make([]int64, 0, elementCount)
}
for iNdEx < postIndex {
var v int64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
v |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
m.Id = append(m.Id, v)
}
} else {
return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
}
default:
iNdEx = preIndex
skippy, err := skipArticle(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthArticle
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *GetArticleRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: GetArticleRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: GetArticleRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
}
m.Id = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Id |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Identifier", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Identifier = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipArticle(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthArticle
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ListArticleRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: ListArticleRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ListArticleRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Page", wireType)
}
m.Page = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Page |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Size_", wireType)
}
m.Size_ = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Size_ |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Wd", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Wd = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Field", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Field = append(m.Field, string(dAtA[iNdEx:postIndex]))
iNdEx = postIndex
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Order", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Order = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipArticle(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthArticle
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ListArticleReply) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: ListArticleReply: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ListArticleReply: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Total", wireType)
}
m.Total = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Total |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Article", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowArticle
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthArticle
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthArticle
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Article = append(m.Article, &Article{})
if err := m.Article[len(m.Article)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipArticle(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthArticle
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func skipArticle(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0
depth := 0
for iNdEx < l {
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowArticle
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
wireType := int(wire & 0x7)
switch wireType {
case 0:
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowArticle
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
iNdEx++
if dAtA[iNdEx-1] < 0x80 {
break
}
}
case 1:
iNdEx += 8
case 2:
var length int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowArticle
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
length |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if length < 0 {
return 0, ErrInvalidLengthArticle
}
iNdEx += length
case 3:
depth++
case 4:
if depth == 0 {
return 0, ErrUnexpectedEndOfGroupArticle
}
depth--
case 5:
iNdEx += 4
default:
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
}
if iNdEx < 0 {
return 0, ErrInvalidLengthArticle
}
if depth == 0 {
return iNdEx, nil
}
}
return 0, io.ErrUnexpectedEOF
}
var (
ErrInvalidLengthArticle = fmt.Errorf("proto: negative length found during unmarshaling")
ErrIntOverflowArticle = fmt.Errorf("proto: integer overflow")
ErrUnexpectedEndOfGroupArticle = fmt.Errorf("proto: unexpected end of group")
)