Files
mautrix-telegram/pkg/gotd/tgtest/exchange.go
T
2025-06-27 20:03:37 -07:00

58 lines
1.3 KiB
Go

package tgtest
import (
"context"
"github.com/go-faster/errors"
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
"go.mau.fi/mautrix-telegram/pkg/gotd/crypto"
"go.mau.fi/mautrix-telegram/pkg/gotd/exchange"
"go.mau.fi/mautrix-telegram/pkg/gotd/proto/codec"
"go.mau.fi/mautrix-telegram/pkg/gotd/transport"
)
type exchangeConn struct {
transport.Conn
}
func (e exchangeConn) Recv(ctx context.Context, b *bin.Buffer) error {
for {
if err := e.Conn.Recv(ctx, b); err != nil {
return err
}
var authKeyID [8]byte
if err := b.PeekN(authKeyID[:], len(authKeyID)); err != nil {
return errors.Wrap(err, "peek id")
}
if authKeyID != [8]byte{} {
// TODO(tdakkota): what if client send registered auth key during key exchange?
buf := bin.Buffer{}
buf.PutInt32(-codec.CodeAuthKeyNotFound)
if err := e.Conn.Send(ctx, &buf); err != nil {
return errors.Wrap(err, "send")
}
continue
}
return nil
}
}
// exchange starts MTProto key exchange.
func (s *Server) exchange(ctx context.Context, conn transport.Conn) (crypto.AuthKey, error) {
r, err := exchange.NewExchanger(conn, s.dcID).
WithClock(s.clock).
WithLogger(s.log.Named("exchange")).
WithRand(s.cipher.Rand()).
Server(s.key).Run(ctx)
if err != nil {
return crypto.AuthKey{}, err
}
return r.Key, nil
}