// 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{} ) // AuthRecoverPasswordRequest represents TL type `auth.recoverPassword#37096c70`. // Reset the 2FA password¹ using the recovery code sent using auth // requestPasswordRecovery². // // Links: // 1. https://core.telegram.org/api/srp // 2. https://core.telegram.org/method/auth.requestPasswordRecovery // // See https://core.telegram.org/method/auth.recoverPassword for reference. type AuthRecoverPasswordRequest struct { // Flags, see TL conditional fields¹ // // Links: // 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields Flags bin.Fields // Code received via email Code string // New password // // Use SetNewSettings and GetNewSettings helpers. NewSettings AccountPasswordInputSettings } // AuthRecoverPasswordRequestTypeID is TL type id of AuthRecoverPasswordRequest. const AuthRecoverPasswordRequestTypeID = 0x37096c70 // Ensuring interfaces in compile-time for AuthRecoverPasswordRequest. var ( _ bin.Encoder = &AuthRecoverPasswordRequest{} _ bin.Decoder = &AuthRecoverPasswordRequest{} _ bin.BareEncoder = &AuthRecoverPasswordRequest{} _ bin.BareDecoder = &AuthRecoverPasswordRequest{} ) func (r *AuthRecoverPasswordRequest) Zero() bool { if r == nil { return true } if !(r.Flags.Zero()) { return false } if !(r.Code == "") { return false } if !(r.NewSettings.Zero()) { return false } return true } // String implements fmt.Stringer. func (r *AuthRecoverPasswordRequest) String() string { if r == nil { return "AuthRecoverPasswordRequest(nil)" } type Alias AuthRecoverPasswordRequest return fmt.Sprintf("AuthRecoverPasswordRequest%+v", Alias(*r)) } // FillFrom fills AuthRecoverPasswordRequest from given interface. func (r *AuthRecoverPasswordRequest) FillFrom(from interface { GetCode() (value string) GetNewSettings() (value AccountPasswordInputSettings, ok bool) }) { r.Code = from.GetCode() if val, ok := from.GetNewSettings(); ok { r.NewSettings = val } } // TypeID returns type id in TL schema. // // See https://core.telegram.org/mtproto/TL-tl#remarks. func (*AuthRecoverPasswordRequest) TypeID() uint32 { return AuthRecoverPasswordRequestTypeID } // TypeName returns name of type in TL schema. func (*AuthRecoverPasswordRequest) TypeName() string { return "auth.recoverPassword" } // TypeInfo returns info about TL type. func (r *AuthRecoverPasswordRequest) TypeInfo() tdp.Type { typ := tdp.Type{ Name: "auth.recoverPassword", ID: AuthRecoverPasswordRequestTypeID, } if r == nil { typ.Null = true return typ } typ.Fields = []tdp.Field{ { Name: "Code", SchemaName: "code", }, { Name: "NewSettings", SchemaName: "new_settings", Null: !r.Flags.Has(0), }, } return typ } // SetFlags sets flags for non-zero fields. func (r *AuthRecoverPasswordRequest) SetFlags() { if !(r.NewSettings.Zero()) { r.Flags.Set(0) } } // Encode implements bin.Encoder. func (r *AuthRecoverPasswordRequest) Encode(b *bin.Buffer) error { if r == nil { return fmt.Errorf("can't encode auth.recoverPassword#37096c70 as nil") } b.PutID(AuthRecoverPasswordRequestTypeID) return r.EncodeBare(b) } // EncodeBare implements bin.BareEncoder. func (r *AuthRecoverPasswordRequest) EncodeBare(b *bin.Buffer) error { if r == nil { return fmt.Errorf("can't encode auth.recoverPassword#37096c70 as nil") } r.SetFlags() if err := r.Flags.Encode(b); err != nil { return fmt.Errorf("unable to encode auth.recoverPassword#37096c70: field flags: %w", err) } b.PutString(r.Code) if r.Flags.Has(0) { if err := r.NewSettings.Encode(b); err != nil { return fmt.Errorf("unable to encode auth.recoverPassword#37096c70: field new_settings: %w", err) } } return nil } // Decode implements bin.Decoder. func (r *AuthRecoverPasswordRequest) Decode(b *bin.Buffer) error { if r == nil { return fmt.Errorf("can't decode auth.recoverPassword#37096c70 to nil") } if err := b.ConsumeID(AuthRecoverPasswordRequestTypeID); err != nil { return fmt.Errorf("unable to decode auth.recoverPassword#37096c70: %w", err) } return r.DecodeBare(b) } // DecodeBare implements bin.BareDecoder. func (r *AuthRecoverPasswordRequest) DecodeBare(b *bin.Buffer) error { if r == nil { return fmt.Errorf("can't decode auth.recoverPassword#37096c70 to nil") } { if err := r.Flags.Decode(b); err != nil { return fmt.Errorf("unable to decode auth.recoverPassword#37096c70: field flags: %w", err) } } { value, err := b.String() if err != nil { return fmt.Errorf("unable to decode auth.recoverPassword#37096c70: field code: %w", err) } r.Code = value } if r.Flags.Has(0) { if err := r.NewSettings.Decode(b); err != nil { return fmt.Errorf("unable to decode auth.recoverPassword#37096c70: field new_settings: %w", err) } } return nil } // GetCode returns value of Code field. func (r *AuthRecoverPasswordRequest) GetCode() (value string) { if r == nil { return } return r.Code } // SetNewSettings sets value of NewSettings conditional field. func (r *AuthRecoverPasswordRequest) SetNewSettings(value AccountPasswordInputSettings) { r.Flags.Set(0) r.NewSettings = value } // GetNewSettings returns value of NewSettings conditional field and // boolean which is true if field was set. func (r *AuthRecoverPasswordRequest) GetNewSettings() (value AccountPasswordInputSettings, ok bool) { if r == nil { return } if !r.Flags.Has(0) { return value, false } return r.NewSettings, true } // AuthRecoverPassword invokes method auth.recoverPassword#37096c70 returning error if any. // Reset the 2FA password¹ using the recovery code sent using auth // requestPasswordRecovery². // // Links: // 1. https://core.telegram.org/api/srp // 2. https://core.telegram.org/method/auth.requestPasswordRecovery // // Possible errors: // // 400 CODE_EMPTY: The provided code is empty. // 400 NEW_SETTINGS_INVALID: The new password settings are invalid. // // See https://core.telegram.org/method/auth.recoverPassword for reference. func (c *Client) AuthRecoverPassword(ctx context.Context, request *AuthRecoverPasswordRequest) (AuthAuthorizationClass, error) { var result AuthAuthorizationBox if err := c.rpc.Invoke(ctx, request, &result); err != nil { return nil, err } return result.Authorization, nil }