news

package
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 10, 2021 License: AGPL-3.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewNewsServiceEndpoints

func NewNewsServiceEndpoints() []*api.Endpoint

func RegisterNewsServiceHandler

func RegisterNewsServiceHandler(s server.Server, hdlr NewsServiceHandler, opts ...server.HandlerOption) error

Types

type DeleteRequest

type DeleteRequest struct {
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
}

func (*DeleteRequest) Descriptor

func (*DeleteRequest) Descriptor() ([]byte, []int)

func (*DeleteRequest) GetUuid

func (m *DeleteRequest) GetUuid() string

func (*DeleteRequest) ProtoMessage

func (*DeleteRequest) ProtoMessage()

func (*DeleteRequest) Reset

func (m *DeleteRequest) Reset()

func (*DeleteRequest) String

func (m *DeleteRequest) String() string

func (*DeleteRequest) Validate

func (m *DeleteRequest) Validate() error

Validate checks the field values on DeleteRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

func (*DeleteRequest) XXX_DiscardUnknown

func (m *DeleteRequest) XXX_DiscardUnknown()

func (*DeleteRequest) XXX_Marshal

func (m *DeleteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteRequest) XXX_Merge

func (m *DeleteRequest) XXX_Merge(src proto.Message)

func (*DeleteRequest) XXX_Size

func (m *DeleteRequest) XXX_Size() int

func (*DeleteRequest) XXX_Unmarshal

func (m *DeleteRequest) XXX_Unmarshal(b []byte) error

type DeleteRequestValidationError

type DeleteRequestValidationError struct {
	// contains filtered or unexported fields
}

DeleteRequestValidationError is the validation error returned by DeleteRequest.Validate if the designated constraints aren't met.

func (DeleteRequestValidationError) Cause

Cause function returns cause value.

func (DeleteRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteRequestValidationError) ErrorName

func (e DeleteRequestValidationError) ErrorName() string

ErrorName returns error name.

func (DeleteRequestValidationError) Field

Field function returns field value.

func (DeleteRequestValidationError) Key

Key function returns key value.

func (DeleteRequestValidationError) Reason

Reason function returns reason value.

type GetRequest

type GetRequest struct {
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
}

func (*GetRequest) Descriptor

func (*GetRequest) Descriptor() ([]byte, []int)

func (*GetRequest) GetUuid

func (m *GetRequest) GetUuid() string

func (*GetRequest) ProtoMessage

func (*GetRequest) ProtoMessage()

func (*GetRequest) Reset

func (m *GetRequest) Reset()

func (*GetRequest) String

func (m *GetRequest) String() string

func (*GetRequest) Validate

func (m *GetRequest) Validate() error

Validate checks the field values on GetRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

func (*GetRequest) XXX_DiscardUnknown

func (m *GetRequest) XXX_DiscardUnknown()

func (*GetRequest) XXX_Marshal

func (m *GetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetRequest) XXX_Merge

func (m *GetRequest) XXX_Merge(src proto.Message)

func (*GetRequest) XXX_Size

func (m *GetRequest) XXX_Size() int

func (*GetRequest) XXX_Unmarshal

func (m *GetRequest) XXX_Unmarshal(b []byte) error

type GetRequestValidationError

type GetRequestValidationError struct {
	// contains filtered or unexported fields
}

GetRequestValidationError is the validation error returned by GetRequest.Validate if the designated constraints aren't met.

func (GetRequestValidationError) Cause

func (e GetRequestValidationError) Cause() error

Cause function returns cause value.

func (GetRequestValidationError) Error

Error satisfies the builtin error interface

func (GetRequestValidationError) ErrorName

func (e GetRequestValidationError) ErrorName() string

ErrorName returns error name.

func (GetRequestValidationError) Field

Field function returns field value.

func (GetRequestValidationError) Key

Key function returns key value.

func (GetRequestValidationError) Reason

func (e GetRequestValidationError) Reason() string

Reason function returns reason value.

type News

type News struct {
	Uuid        string            `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty" bson:"uuid"`
	Code        string            `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty" bson:"code"`
	Description string            `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty" bson:"description"`
	Title       string            `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty" bson:"title"`
	Body        string            `protobuf:"bytes,5,opt,name=body,proto3" json:"body,omitempty" bson:"body"`
	Author      string            `protobuf:"bytes,6,opt,name=author,proto3" json:"author,omitempty" bson:"author"`
	IsActive    bool              `protobuf:"varint,7,opt,name=is_active,json=isActive,proto3" json:"is_active,omitempty" bson:"is_active"`
	SortOrder   int64             `protobuf:"varint,8,opt,name=sort_order,json=sortOrder,proto3" json:"sort_order,omitempty" bson:"sort_order"`
	Image       map[string]string `` /* 164-byte string literal not displayed */
	LinkUuid    string            `protobuf:"bytes,10,opt,name=link_uuid,json=linkUuid,proto3" json:"link_uuid,omitempty" bson:"link_uuid"`
	CreatedAt   string            `protobuf:"bytes,1001,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty" bson:"created_at"`
	UpdatedAt   string            `protobuf:"bytes,1002,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty" bson:"updated_at"`
	PublishedAt string            `protobuf:"bytes,1011,opt,name=published_at,json=publishedAt,proto3" json:"published_at,omitempty" bson:"published_at"`
}

func (*News) Descriptor

func (*News) Descriptor() ([]byte, []int)

func (*News) GetAuthor

func (m *News) GetAuthor() string

func (*News) GetBody

func (m *News) GetBody() string

func (*News) GetCode

func (m *News) GetCode() string

func (*News) GetCreatedAt

func (m *News) GetCreatedAt() string

func (*News) GetDescription

func (m *News) GetDescription() string

func (*News) GetImage

func (m *News) GetImage() map[string]string

func (*News) GetIsActive

func (m *News) GetIsActive() bool

func (*News) GetLinkUuid

func (m *News) GetLinkUuid() string

func (*News) GetPublishedAt

func (m *News) GetPublishedAt() string

func (*News) GetSortOrder

func (m *News) GetSortOrder() int64

func (*News) GetTitle

func (m *News) GetTitle() string

func (*News) GetUpdatedAt

func (m *News) GetUpdatedAt() string

func (*News) GetUuid

func (m *News) GetUuid() string

func (*News) ProtoMessage

func (*News) ProtoMessage()

func (*News) Reset

func (m *News) Reset()

func (*News) String

func (m *News) String() string

func (*News) Validate

func (m *News) Validate() error

Validate checks the field values on News with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

func (*News) XXX_DiscardUnknown

func (m *News) XXX_DiscardUnknown()

func (*News) XXX_Marshal

func (m *News) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*News) XXX_Merge

func (m *News) XXX_Merge(src proto.Message)

func (*News) XXX_Size

func (m *News) XXX_Size() int

func (*News) XXX_Unmarshal

func (m *News) XXX_Unmarshal(b []byte) error

type NewsService

type NewsService interface {
	Create(ctx context.Context, in *Request, opts ...client.CallOption) (*Response, error)
	Update(ctx context.Context, in *Request, opts ...client.CallOption) (*Response, error)
	Delete(ctx context.Context, in *DeleteRequest, opts ...client.CallOption) (*empty.Empty, error)
	Paginate(ctx context.Context, in *PaginateRequest, opts ...client.CallOption) (*PaginateResponse, error)
	Get(ctx context.Context, in *GetRequest, opts ...client.CallOption) (*Response, error)
}

func NewNewsService

func NewNewsService(name string, c client.Client) NewsService

type NewsValidationError

type NewsValidationError struct {
	// contains filtered or unexported fields
}

NewsValidationError is the validation error returned by News.Validate if the designated constraints aren't met.

func (NewsValidationError) Cause

func (e NewsValidationError) Cause() error

Cause function returns cause value.

func (NewsValidationError) Error

func (e NewsValidationError) Error() string

Error satisfies the builtin error interface

func (NewsValidationError) ErrorName

func (e NewsValidationError) ErrorName() string

ErrorName returns error name.

func (NewsValidationError) Field

func (e NewsValidationError) Field() string

Field function returns field value.

func (NewsValidationError) Key

func (e NewsValidationError) Key() bool

Key function returns key value.

func (NewsValidationError) Reason

func (e NewsValidationError) Reason() string

Reason function returns reason value.

type PaginateRequest

type PaginateRequest struct {
	Skip   int64                   `protobuf:"varint,1,opt,name=skip,proto3" json:"skip,omitempty"`
	Limit  int64                   `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Sort   string                  `protobuf:"bytes,3,opt,name=sort,proto3" json:"sort,omitempty"`
	Filter *PaginateRequest_Filter `protobuf:"bytes,4,opt,name=filter,proto3" json:"filter,omitempty"`
}

func (*PaginateRequest) Descriptor

func (*PaginateRequest) Descriptor() ([]byte, []int)

func (*PaginateRequest) GetFilter

func (m *PaginateRequest) GetFilter() *PaginateRequest_Filter

func (*PaginateRequest) GetLimit

func (m *PaginateRequest) GetLimit() int64

func (*PaginateRequest) GetSkip

func (m *PaginateRequest) GetSkip() int64

func (*PaginateRequest) GetSort

func (m *PaginateRequest) GetSort() string

func (*PaginateRequest) ProtoMessage

func (*PaginateRequest) ProtoMessage()

func (*PaginateRequest) Reset

func (m *PaginateRequest) Reset()

func (*PaginateRequest) String

func (m *PaginateRequest) String() string

func (*PaginateRequest) Validate

func (m *PaginateRequest) Validate() error

Validate checks the field values on PaginateRequest with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

func (*PaginateRequest) XXX_DiscardUnknown

func (m *PaginateRequest) XXX_DiscardUnknown()

func (*PaginateRequest) XXX_Marshal

func (m *PaginateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PaginateRequest) XXX_Merge

func (m *PaginateRequest) XXX_Merge(src proto.Message)

func (*PaginateRequest) XXX_Size

func (m *PaginateRequest) XXX_Size() int

func (*PaginateRequest) XXX_Unmarshal

func (m *PaginateRequest) XXX_Unmarshal(b []byte) error

type PaginateRequestValidationError

type PaginateRequestValidationError struct {
	// contains filtered or unexported fields
}

PaginateRequestValidationError is the validation error returned by PaginateRequest.Validate if the designated constraints aren't met.

func (PaginateRequestValidationError) Cause

Cause function returns cause value.

func (PaginateRequestValidationError) Error

Error satisfies the builtin error interface

func (PaginateRequestValidationError) ErrorName

func (e PaginateRequestValidationError) ErrorName() string

ErrorName returns error name.

func (PaginateRequestValidationError) Field

Field function returns field value.

func (PaginateRequestValidationError) Key

Key function returns key value.

func (PaginateRequestValidationError) Reason

Reason function returns reason value.

type PaginateRequest_Filter

type PaginateRequest_Filter struct {
	IsActive bool   `protobuf:"varint,1,opt,name=is_active,json=isActive,proto3" json:"is_active,omitempty"`
	LinkUuid string `protobuf:"bytes,2,opt,name=link_uuid,json=linkUuid,proto3" json:"link_uuid,omitempty"`
}

func (*PaginateRequest_Filter) Descriptor

func (*PaginateRequest_Filter) Descriptor() ([]byte, []int)

func (*PaginateRequest_Filter) GetIsActive

func (m *PaginateRequest_Filter) GetIsActive() bool

func (*PaginateRequest_Filter) GetLinkUuid

func (m *PaginateRequest_Filter) GetLinkUuid() string

func (*PaginateRequest_Filter) ProtoMessage

func (*PaginateRequest_Filter) ProtoMessage()

func (*PaginateRequest_Filter) Reset

func (m *PaginateRequest_Filter) Reset()

func (*PaginateRequest_Filter) String

func (m *PaginateRequest_Filter) String() string

func (*PaginateRequest_Filter) Validate

func (m *PaginateRequest_Filter) Validate() error

Validate checks the field values on PaginateRequest_Filter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

func (*PaginateRequest_Filter) XXX_DiscardUnknown

func (m *PaginateRequest_Filter) XXX_DiscardUnknown()

func (*PaginateRequest_Filter) XXX_Marshal

func (m *PaginateRequest_Filter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PaginateRequest_Filter) XXX_Merge

func (m *PaginateRequest_Filter) XXX_Merge(src proto.Message)

func (*PaginateRequest_Filter) XXX_Size

func (m *PaginateRequest_Filter) XXX_Size() int

func (*PaginateRequest_Filter) XXX_Unmarshal

func (m *PaginateRequest_Filter) XXX_Unmarshal(b []byte) error

type PaginateRequest_FilterValidationError

type PaginateRequest_FilterValidationError struct {
	// contains filtered or unexported fields
}

PaginateRequest_FilterValidationError is the validation error returned by PaginateRequest_Filter.Validate if the designated constraints aren't met.

func (PaginateRequest_FilterValidationError) Cause

Cause function returns cause value.

func (PaginateRequest_FilterValidationError) Error

Error satisfies the builtin error interface

func (PaginateRequest_FilterValidationError) ErrorName

ErrorName returns error name.

func (PaginateRequest_FilterValidationError) Field

Field function returns field value.

func (PaginateRequest_FilterValidationError) Key

Key function returns key value.

func (PaginateRequest_FilterValidationError) Reason

Reason function returns reason value.

type PaginateResponse

type PaginateResponse struct {
	Skip  int64   `protobuf:"varint,1,opt,name=skip,proto3" json:"skip,omitempty"`
	Limit int64   `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Total int64   `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
	Data  []*News `protobuf:"bytes,4,rep,name=data,proto3" json:"data,omitempty"`
}

func (*PaginateResponse) Descriptor

func (*PaginateResponse) Descriptor() ([]byte, []int)

func (*PaginateResponse) GetData

func (m *PaginateResponse) GetData() []*News

func (*PaginateResponse) GetLimit

func (m *PaginateResponse) GetLimit() int64

func (*PaginateResponse) GetSkip

func (m *PaginateResponse) GetSkip() int64

func (*PaginateResponse) GetTotal

func (m *PaginateResponse) GetTotal() int64

func (*PaginateResponse) ProtoMessage

func (*PaginateResponse) ProtoMessage()

func (*PaginateResponse) Reset

func (m *PaginateResponse) Reset()

func (*PaginateResponse) String

func (m *PaginateResponse) String() string

func (*PaginateResponse) Validate

func (m *PaginateResponse) Validate() error

Validate checks the field values on PaginateResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

func (*PaginateResponse) XXX_DiscardUnknown

func (m *PaginateResponse) XXX_DiscardUnknown()

func (*PaginateResponse) XXX_Marshal

func (m *PaginateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PaginateResponse) XXX_Merge

func (m *PaginateResponse) XXX_Merge(src proto.Message)

func (*PaginateResponse) XXX_Size

func (m *PaginateResponse) XXX_Size() int

func (*PaginateResponse) XXX_Unmarshal

func (m *PaginateResponse) XXX_Unmarshal(b []byte) error

type PaginateResponseValidationError

type PaginateResponseValidationError struct {
	// contains filtered or unexported fields
}

PaginateResponseValidationError is the validation error returned by PaginateResponse.Validate if the designated constraints aren't met.

func (PaginateResponseValidationError) Cause

Cause function returns cause value.

func (PaginateResponseValidationError) Error

Error satisfies the builtin error interface

func (PaginateResponseValidationError) ErrorName

ErrorName returns error name.

func (PaginateResponseValidationError) Field

Field function returns field value.

func (PaginateResponseValidationError) Key

Key function returns key value.

func (PaginateResponseValidationError) Reason

Reason function returns reason value.

type Request

type Request struct {
	Data *News `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}

func (*Request) Descriptor

func (*Request) Descriptor() ([]byte, []int)

func (*Request) GetData

func (m *Request) GetData() *News

func (*Request) ProtoMessage

func (*Request) ProtoMessage()

func (*Request) Reset

func (m *Request) Reset()

func (*Request) String

func (m *Request) String() string

func (*Request) Validate

func (m *Request) Validate() error

Validate checks the field values on Request with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

func (*Request) XXX_DiscardUnknown

func (m *Request) XXX_DiscardUnknown()

func (*Request) XXX_Marshal

func (m *Request) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Request) XXX_Merge

func (m *Request) XXX_Merge(src proto.Message)

func (*Request) XXX_Size

func (m *Request) XXX_Size() int

func (*Request) XXX_Unmarshal

func (m *Request) XXX_Unmarshal(b []byte) error

type RequestValidationError

type RequestValidationError struct {
	// contains filtered or unexported fields
}

RequestValidationError is the validation error returned by Request.Validate if the designated constraints aren't met.

func (RequestValidationError) Cause

func (e RequestValidationError) Cause() error

Cause function returns cause value.

func (RequestValidationError) Error

func (e RequestValidationError) Error() string

Error satisfies the builtin error interface

func (RequestValidationError) ErrorName

func (e RequestValidationError) ErrorName() string

ErrorName returns error name.

func (RequestValidationError) Field

func (e RequestValidationError) Field() string

Field function returns field value.

func (RequestValidationError) Key

func (e RequestValidationError) Key() bool

Key function returns key value.

func (RequestValidationError) Reason

func (e RequestValidationError) Reason() string

Reason function returns reason value.

type Response

type Response struct {
	Data *News `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}

func (*Response) Descriptor

func (*Response) Descriptor() ([]byte, []int)

func (*Response) GetData

func (m *Response) GetData() *News

func (*Response) ProtoMessage

func (*Response) ProtoMessage()

func (*Response) Reset

func (m *Response) Reset()

func (*Response) String

func (m *Response) String() string

func (*Response) Validate

func (m *Response) Validate() error

Validate checks the field values on Response with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

func (*Response) XXX_DiscardUnknown

func (m *Response) XXX_DiscardUnknown()

func (*Response) XXX_Marshal

func (m *Response) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Response) XXX_Merge

func (m *Response) XXX_Merge(src proto.Message)

func (*Response) XXX_Size

func (m *Response) XXX_Size() int

func (*Response) XXX_Unmarshal

func (m *Response) XXX_Unmarshal(b []byte) error

type ResponseValidationError

type ResponseValidationError struct {
	// contains filtered or unexported fields
}

ResponseValidationError is the validation error returned by Response.Validate if the designated constraints aren't met.

func (ResponseValidationError) Cause

func (e ResponseValidationError) Cause() error

Cause function returns cause value.

func (ResponseValidationError) Error

func (e ResponseValidationError) Error() string

Error satisfies the builtin error interface

func (ResponseValidationError) ErrorName

func (e ResponseValidationError) ErrorName() string

ErrorName returns error name.

func (ResponseValidationError) Field

func (e ResponseValidationError) Field() string

Field function returns field value.

func (ResponseValidationError) Key

func (e ResponseValidationError) Key() bool

Key function returns key value.

func (ResponseValidationError) Reason

func (e ResponseValidationError) Reason() string

Reason function returns reason value.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL