move gotd fork into repo. (#111)
- update to latest telegram layer - remove some references to fields in tg.Entities that don't exist in the schema - originally added here: https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e - referenced here - https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3 - https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
This commit is contained in:
@@ -0,0 +1,212 @@
|
||||
// Code generated by gotdgen, DO NOT EDIT.
|
||||
|
||||
package tg
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"sort"
|
||||
"strings"
|
||||
|
||||
"go.uber.org/multierr"
|
||||
|
||||
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
|
||||
"go.mau.fi/mautrix-telegram/pkg/gotd/tdjson"
|
||||
"go.mau.fi/mautrix-telegram/pkg/gotd/tdp"
|
||||
"go.mau.fi/mautrix-telegram/pkg/gotd/tgerr"
|
||||
)
|
||||
|
||||
// No-op definition for keeping imports.
|
||||
var (
|
||||
_ = bin.Buffer{}
|
||||
_ = context.Background()
|
||||
_ = fmt.Stringer(nil)
|
||||
_ = strings.Builder{}
|
||||
_ = errors.Is
|
||||
_ = multierr.AppendInto
|
||||
_ = sort.Ints
|
||||
_ = tdp.Format
|
||||
_ = tgerr.Error{}
|
||||
_ = tdjson.Encoder{}
|
||||
)
|
||||
|
||||
// UploadGetFileHashesRequest represents TL type `upload.getFileHashes#9156982a`.
|
||||
// Get SHA256 hashes for verifying downloaded files
|
||||
//
|
||||
// See https://core.telegram.org/method/upload.getFileHashes for reference.
|
||||
type UploadGetFileHashesRequest struct {
|
||||
// File
|
||||
Location InputFileLocationClass
|
||||
// Offset from which to get file hashes
|
||||
Offset int64
|
||||
}
|
||||
|
||||
// UploadGetFileHashesRequestTypeID is TL type id of UploadGetFileHashesRequest.
|
||||
const UploadGetFileHashesRequestTypeID = 0x9156982a
|
||||
|
||||
// Ensuring interfaces in compile-time for UploadGetFileHashesRequest.
|
||||
var (
|
||||
_ bin.Encoder = &UploadGetFileHashesRequest{}
|
||||
_ bin.Decoder = &UploadGetFileHashesRequest{}
|
||||
_ bin.BareEncoder = &UploadGetFileHashesRequest{}
|
||||
_ bin.BareDecoder = &UploadGetFileHashesRequest{}
|
||||
)
|
||||
|
||||
func (g *UploadGetFileHashesRequest) Zero() bool {
|
||||
if g == nil {
|
||||
return true
|
||||
}
|
||||
if !(g.Location == nil) {
|
||||
return false
|
||||
}
|
||||
if !(g.Offset == 0) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
// String implements fmt.Stringer.
|
||||
func (g *UploadGetFileHashesRequest) String() string {
|
||||
if g == nil {
|
||||
return "UploadGetFileHashesRequest(nil)"
|
||||
}
|
||||
type Alias UploadGetFileHashesRequest
|
||||
return fmt.Sprintf("UploadGetFileHashesRequest%+v", Alias(*g))
|
||||
}
|
||||
|
||||
// FillFrom fills UploadGetFileHashesRequest from given interface.
|
||||
func (g *UploadGetFileHashesRequest) FillFrom(from interface {
|
||||
GetLocation() (value InputFileLocationClass)
|
||||
GetOffset() (value int64)
|
||||
}) {
|
||||
g.Location = from.GetLocation()
|
||||
g.Offset = from.GetOffset()
|
||||
}
|
||||
|
||||
// TypeID returns type id in TL schema.
|
||||
//
|
||||
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
||||
func (*UploadGetFileHashesRequest) TypeID() uint32 {
|
||||
return UploadGetFileHashesRequestTypeID
|
||||
}
|
||||
|
||||
// TypeName returns name of type in TL schema.
|
||||
func (*UploadGetFileHashesRequest) TypeName() string {
|
||||
return "upload.getFileHashes"
|
||||
}
|
||||
|
||||
// TypeInfo returns info about TL type.
|
||||
func (g *UploadGetFileHashesRequest) TypeInfo() tdp.Type {
|
||||
typ := tdp.Type{
|
||||
Name: "upload.getFileHashes",
|
||||
ID: UploadGetFileHashesRequestTypeID,
|
||||
}
|
||||
if g == nil {
|
||||
typ.Null = true
|
||||
return typ
|
||||
}
|
||||
typ.Fields = []tdp.Field{
|
||||
{
|
||||
Name: "Location",
|
||||
SchemaName: "location",
|
||||
},
|
||||
{
|
||||
Name: "Offset",
|
||||
SchemaName: "offset",
|
||||
},
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
// Encode implements bin.Encoder.
|
||||
func (g *UploadGetFileHashesRequest) Encode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode upload.getFileHashes#9156982a as nil")
|
||||
}
|
||||
b.PutID(UploadGetFileHashesRequestTypeID)
|
||||
return g.EncodeBare(b)
|
||||
}
|
||||
|
||||
// EncodeBare implements bin.BareEncoder.
|
||||
func (g *UploadGetFileHashesRequest) EncodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't encode upload.getFileHashes#9156982a as nil")
|
||||
}
|
||||
if g.Location == nil {
|
||||
return fmt.Errorf("unable to encode upload.getFileHashes#9156982a: field location is nil")
|
||||
}
|
||||
if err := g.Location.Encode(b); err != nil {
|
||||
return fmt.Errorf("unable to encode upload.getFileHashes#9156982a: field location: %w", err)
|
||||
}
|
||||
b.PutLong(g.Offset)
|
||||
return nil
|
||||
}
|
||||
|
||||
// Decode implements bin.Decoder.
|
||||
func (g *UploadGetFileHashesRequest) Decode(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode upload.getFileHashes#9156982a to nil")
|
||||
}
|
||||
if err := b.ConsumeID(UploadGetFileHashesRequestTypeID); err != nil {
|
||||
return fmt.Errorf("unable to decode upload.getFileHashes#9156982a: %w", err)
|
||||
}
|
||||
return g.DecodeBare(b)
|
||||
}
|
||||
|
||||
// DecodeBare implements bin.BareDecoder.
|
||||
func (g *UploadGetFileHashesRequest) DecodeBare(b *bin.Buffer) error {
|
||||
if g == nil {
|
||||
return fmt.Errorf("can't decode upload.getFileHashes#9156982a to nil")
|
||||
}
|
||||
{
|
||||
value, err := DecodeInputFileLocation(b)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode upload.getFileHashes#9156982a: field location: %w", err)
|
||||
}
|
||||
g.Location = value
|
||||
}
|
||||
{
|
||||
value, err := b.Long()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to decode upload.getFileHashes#9156982a: field offset: %w", err)
|
||||
}
|
||||
g.Offset = value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// GetLocation returns value of Location field.
|
||||
func (g *UploadGetFileHashesRequest) GetLocation() (value InputFileLocationClass) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Location
|
||||
}
|
||||
|
||||
// GetOffset returns value of Offset field.
|
||||
func (g *UploadGetFileHashesRequest) GetOffset() (value int64) {
|
||||
if g == nil {
|
||||
return
|
||||
}
|
||||
return g.Offset
|
||||
}
|
||||
|
||||
// UploadGetFileHashes invokes method upload.getFileHashes#9156982a returning error if any.
|
||||
// Get SHA256 hashes for verifying downloaded files
|
||||
//
|
||||
// Possible errors:
|
||||
//
|
||||
// 400 LOCATION_INVALID: The provided location is invalid.
|
||||
//
|
||||
// See https://core.telegram.org/method/upload.getFileHashes for reference.
|
||||
// Can be used by bots.
|
||||
func (c *Client) UploadGetFileHashes(ctx context.Context, request *UploadGetFileHashesRequest) ([]FileHash, error) {
|
||||
var result FileHashVector
|
||||
|
||||
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return []FileHash(result.Elems), nil
|
||||
}
|
||||
Reference in New Issue
Block a user