-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.ts
205 lines (181 loc) · 5.36 KB
/
users.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import { user } from '@roll-network/api'
import { printTable } from 'console-table-printer'
import inquirer from 'inquirer'
import { InteractionType } from '@roll-network/auth-sdk'
import config, { platformUserConfig } from './config.js'
import logger from './logger.js'
import { generateClientPool } from './utils.js'
export const getUser = async () => {
try {
const { clientPool } = await generateClientPool(config)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userId',
message: 'User ID',
},
])
const userResponse = await user.getUser(
clientPool.getClient(InteractionType.ClientCredentials).call,
answers,
)
printTable([
{
id: userResponse.userID,
name: userResponse.name,
username: userResponse.username,
profilePic: userResponse.profilePic,
},
])
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}
export const createPlatformUser = async () => {
try {
const { clientPool } = await generateClientPool(platformUserConfig)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userType',
message: 'User Type (discord, telegram)',
},
{
type: 'input',
name: 'platformUserId',
message: 'User ID from the external platform',
},
])
const response = await user.createPlatformUser(
clientPool.getClient(InteractionType.ClientCredentials).call,
{
userType: answers.userType,
platformUserId: answers.platformUserId,
},
)
printTable([response])
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}
export const loginPlatformUser = async () => {
try {
const { clientPool, sdkPool } = await generateClientPool(platformUserConfig)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userId',
message: 'Roll UserID',
},
])
const masqueradeToken = await user.getUserMasqueradeToken(
clientPool.getClient(InteractionType.ClientCredentials).call,
{
userId: answers.userId,
},
)
const clientToken = await sdkPool
.getSDK(InteractionType.ClientCredentials)
.getToken()
if (!clientToken) {
throw new Error('Client token is undefined.')
}
const credentials = await sdkPool
.getSDK(InteractionType.MasqueradeToken)
.generateToken({
clientToken: clientToken.access_token,
masqueradeToken: masqueradeToken.token,
})
printTable([credentials.user])
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}
export const loginMultiplePlatformUsers = async () => {
try {
const { clientPool, sdkPool } = await generateClientPool(platformUserConfig)
const userIds = []
let enterUserIdAgain = true
while (enterUserIdAgain) {
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userId',
message: 'Platform roll UserID',
},
{
type: 'confirm',
name: 'enterUserIdAgain',
message: 'Do you want to log in with another user?',
default: false,
},
])
userIds.push(answers.userId)
enterUserIdAgain = answers.enterUserIdAgain
}
const credentials = await Promise.all(
userIds.map(async (userId) => {
const masqueradeToken = await user.getUserMasqueradeToken(
clientPool.getClient(InteractionType.ClientCredentials).call,
{
userId: userId,
},
)
const clientToken = await sdkPool
.getSDK(InteractionType.ClientCredentials)
.getToken()
if (!clientToken) {
throw new Error('Client token is undefined.')
}
return await sdkPool
.getSDK(InteractionType.MasqueradeToken)
.generateToken({
clientToken: clientToken.access_token,
masqueradeToken: masqueradeToken.token,
})
}),
)
const credentialsUserIds = credentials.map(
(credential) => credential.user?.userID,
)
const usersFromSdk = await Promise.all(
credentialsUserIds.map((userId) =>
sdkPool.getSDK(InteractionType.MasqueradeToken).getCredentials(userId),
),
)
printTable(
usersFromSdk.map((userFromSdk) => ({
userId: userFromSdk?.id,
username: userFromSdk?.user?.username,
token: userFromSdk?.token.access_token,
interactionType: userFromSdk?.interactionType,
})),
)
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}
export const getPlatformUserDepositAddress = async () => {
try {
const { clientPool } = await generateClientPool(platformUserConfig)
const answers = await inquirer.prompt([
{
type: 'input',
name: 'userType',
message: 'User Type (discord, telegram)',
},
{
type: 'input',
name: 'platformUserId',
message: 'User ID from the external platform',
},
])
const response = await user.getPlatformUserDepositAddress(
clientPool.getClient(InteractionType.ClientCredentials).call,
{ userType: answers.userType, platformUserId: answers.platformUserId },
)
printTable([response])
} catch (error) {
logger.fatal(JSON.stringify(error as Error))
}
}