mtcute/packages/client/src/methods/users/get-users.ts

41 lines
1.3 KiB
TypeScript

import { MaybeArray } from '@mtcute/core'
import { TelegramClient } from '../../client'
import { InputPeerLike, User } from '../../types'
import { normalizeToInputUser } from '../../utils/peer-utils'
/**
* Get information about a single user.
*
* @param id User's identifier. Can be ID, username, phone number, `"me"` or `"self"` or TL object
* @internal
*/
export async function getUsers(this: TelegramClient, id: InputPeerLike): Promise<User>
/**
* Get information about multiple users.
* You can retrieve up to 200 users at once.
*
* Note that order is not guaranteed.
*
* @param ids Users' identifiers. Can be ID, username, phone number, `"me"`, `"self"` or TL object
* @internal
*/
export async function getUsers(this: TelegramClient, ids: InputPeerLike[]): Promise<User[]>
/** @internal */
export async function getUsers(this: TelegramClient, ids: MaybeArray<InputPeerLike>): Promise<MaybeArray<User>> {
const isArray = Array.isArray(ids)
if (!isArray) ids = [ids as InputPeerLike]
const inputPeers = await this.resolvePeerMany(ids as InputPeerLike[], normalizeToInputUser)
let res = await this.call({
_: 'users.getUsers',
id: inputPeers,
})
res = res.filter((it) => it._ !== 'userEmpty')
return isArray ? res.map((it) => new User(this, it)) : new User(this, res[0])
}