-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTLSSigAPIv2.ts
256 lines (227 loc) · 8.6 KB
/
TLSSigAPIv2.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
import * as crypto from "crypto";
import * as zlib from "zlib";
class Base64URL {
unescape(str: string) {
return (str + Array(5 - (str.length % 4)))
.replace(/_/g, "=")
.replace(/\-/g, "/")
.replace(/\*/g, "+");
}
escape(str: string) {
return str.replace(/\+/g, "*").replace(/\//g, "-").replace(/=/g, "_");
}
encode(str: string) {
return this.escape(Buffer.from(str).toString("base64"));
}
decode(str: string) {
return Buffer.from(this.unescape(str), "base64").toString();
}
}
function base64encode(str: Buffer) {
return Buffer.from(str).toString("base64");
}
function base64decode(str: string) {
return Buffer.from(str, "base64").toString();
}
export class Api {
private readonly sdkappid: number;
private readonly key: string;
private readonly base64url = new Base64URL();
constructor(sdkappid: string | number, key: string) {
this.sdkappid = Number(sdkappid);
this.key = key;
}
/**
* 通过传入参数生成 base64 的 hmac 值
* @param identifier
* @param currTime
* @param expire
*/
private _hmacsha256(
identifier: string,
currTime: number,
expire: number,
base64UserBuf?: string
) {
let contentToBeSigned = "TLS.identifier:" + identifier + "\n";
contentToBeSigned += "TLS.sdkappid:" + this.sdkappid + "\n";
contentToBeSigned += "TLS.time:" + currTime + "\n";
contentToBeSigned += "TLS.expire:" + expire + "\n";
if (null != base64UserBuf) {
contentToBeSigned += "TLS.userbuf:" + base64UserBuf + "\n";
}
const hmac = crypto.createHmac("sha256", this.key);
return hmac.update(contentToBeSigned).digest("base64");
}
/**
* TRTC业务进房权限加密串需使用用户定义的userbuf
* @brief 生成 userbuf
* @param account 用户名
* @param dwSdkappid sdkappid
* @param dwAuthID 数字房间号
* @param dwExpTime 过期时间:该权限加密串的过期时间,建议300秒,实际过期时间:now+dwExpTime
* @param dwPrivilegeMap 用户权限,255表示所有权限
* @param dwAccountType 用户类型,默认为0
* @param roomstr 字符串房间号
* @return userbuf {string} 返回的userbuf
*/
_genUserbuf(
account: string,
dwAuthID: number,
dwExpTime: number,
dwPrivilegeMap: number,
dwAccountType: number,
roomstr?: string
) {
const accountLength = account.length;
let roomstrlength = 0;
let length = 1 + 2 + accountLength + 20;
if (null != roomstr) {
roomstrlength = roomstr.length;
length = length + 2 + roomstrlength;
}
let offset = 0;
const userBuf = Buffer.alloc(length);
//cVer
if (null != roomstr) userBuf[offset++] = 1;
else userBuf[offset++] = 0;
//wAccountLen
userBuf[offset++] = (accountLength & 0xff00) >> 8;
userBuf[offset++] = accountLength & 0x00ff;
//buffAccount
for (; offset < 3 + accountLength; ++offset) {
userBuf[offset] = account.charCodeAt(offset - 3);
}
//dwSdkAppid
userBuf[offset++] = (this.sdkappid & 0xff000000) >> 24;
userBuf[offset++] = (this.sdkappid & 0x00ff0000) >> 16;
userBuf[offset++] = (this.sdkappid & 0x0000ff00) >> 8;
userBuf[offset++] = this.sdkappid & 0x000000ff;
//dwAuthId
userBuf[offset++] = (dwAuthID & 0xff000000) >> 24;
userBuf[offset++] = (dwAuthID & 0x00ff0000) >> 16;
userBuf[offset++] = (dwAuthID & 0x0000ff00) >> 8;
userBuf[offset++] = dwAuthID & 0x000000ff;
//过期时间:dwExpTime+now
const expire = Date.now() / 1000 + dwExpTime;
userBuf[offset++] = (expire & 0xff000000) >> 24;
userBuf[offset++] = (expire & 0x00ff0000) >> 16;
userBuf[offset++] = (expire & 0x0000ff00) >> 8;
userBuf[offset++] = expire & 0x000000ff;
//dwPrivilegeMap
userBuf[offset++] = (dwPrivilegeMap & 0xff000000) >> 24;
userBuf[offset++] = (dwPrivilegeMap & 0x00ff0000) >> 16;
userBuf[offset++] = (dwPrivilegeMap & 0x0000ff00) >> 8;
userBuf[offset++] = dwPrivilegeMap & 0x000000ff;
//dwAccountType
userBuf[offset++] = (dwAccountType & 0xff000000) >> 24;
userBuf[offset++] = (dwAccountType & 0x00ff0000) >> 16;
userBuf[offset++] = (dwAccountType & 0x0000ff00) >> 8;
userBuf[offset++] = dwAccountType & 0x000000ff;
if (null != roomstr) {
//roomstrlength
userBuf[offset++] = (roomstr.length & 0xff00) >> 8;
userBuf[offset++] = roomstr.length & 0x00ff;
//roomstr
for (; offset < length; ++offset) {
userBuf[offset] = account.charCodeAt(
offset - (length - roomstr.length)
);
}
}
return userBuf;
}
genSig(userid: string, expire: number, userBuf?: Buffer) {
const currTime = Math.floor(Date.now() / 1000);
const sigDoc: {
"TLS.ver": string;
"TLS.identifier": string;
"TLS.sdkappid": number;
"TLS.time": number;
"TLS.expire": number;
"TLS.userbuf"?: string;
"TLS.sig"?: string;
} = {
"TLS.ver": "2.0",
"TLS.identifier": "" + userid,
"TLS.sdkappid": Number(this.sdkappid),
"TLS.time": Number(currTime),
"TLS.expire": Number(expire),
};
let sig = "";
if (null != userBuf) {
const base64UserBuf = base64encode(userBuf);
sigDoc["TLS.userbuf"] = base64UserBuf;
sig = this._hmacsha256(userid, currTime, expire, base64UserBuf);
} else {
sig = this._hmacsha256(userid, currTime, expire);
}
sigDoc["TLS.sig"] = sig;
const compressed = zlib
.deflateSync(Buffer.from(JSON.stringify(sigDoc)))
.toString("base64");
return this.base64url.escape(compressed);
}
/**
*【功能说明】用于签发 TRTC 和 IM 服务中必须要使用的 UserSig 鉴权票据
*
*【参数说明】
* @param userid - 用户id,限制长度为32字节,只允许包含大小写英文字母(a-zA-Z)、数字(0-9)及下划线和连词符。
* @param expire - UserSig 票据的过期时间,单位是秒,比如 86400 代表生成的 UserSig 票据在一天后就无法再使用了。
*/
genUserSig(userid: string, expire: number) {
return this.genSig(userid, expire);
}
/**
*【功能说明】
* 用于签发 TRTC 进房参数中可选的 PrivateMapKey 权限票据。
* PrivateMapKey 需要跟 UserSig 一起使用,但 PrivateMapKey 比 UserSig 有更强的权限控制能力:
* - UserSig 只能控制某个 UserID 有无使用 TRTC 服务的权限,只要 UserSig 正确,其对应的 UserID 可以进出任意房间。
* - PrivateMapKey 则是将 UserID 的权限控制的更加严格,包括能不能进入某个房间,能不能在该房间里上行音视频等等。
* 如果要开启 PrivateMapKey 严格权限位校验,需要在【实时音视频控制台】=>【应用管理】=>【应用信息】中打开“启动权限密钥”开关。
*
*【参数说明】
* @param userid - 用户id,限制长度为32字节,只允许包含大小写英文字母(a-zA-Z)、数字(0-9)及下划线和连词符。
* @param expire - PrivateMapKey 票据的过期时间,单位是秒,比如 86400 生成的 PrivateMapKey 票据在一天后就无法再使用了。
* @param roomid - 房间号,用于指定该 userid 可以进入的房间号
* @param privilegeMap - 权限位,使用了一个字节中的 8 个比特位,分别代表八个具体的功能权限开关:
* - 第 1 位:0000 0001 = 1,创建房间的权限
* - 第 2 位:0000 0010 = 2,加入房间的权限
* - 第 3 位:0000 0100 = 4,发送语音的权限
* - 第 4 位:0000 1000 = 8,接收语音的权限
* - 第 5 位:0001 0000 = 16,发送视频的权限
* - 第 6 位:0010 0000 = 32,接收视频的权限
* - 第 7 位:0100 0000 = 64,发送辅路(也就是屏幕分享)视频的权限
* - 第 8 位:1000 0000 = 200,接收辅路(也就是屏幕分享)视频的权限
* - privilegeMap == 1111 1111 == 255 代表该 userid 在该 roomid 房间内的所有功能权限。
* - privilegeMap == 0010 1010 == 42 代表该 userid 拥有加入房间和接收音视频数据的权限,但不具备其他权限。
*/
genPrivateMapKey(
userid: string,
expire: number,
roomid: number,
privilegeMap: number
) {
const userBuf = this._genUserbuf(userid, roomid, expire, privilegeMap, 0);
return this.genSig(userid, expire, userBuf);
}
genPrivateMapKeyWithStringRoomID(
userid: string,
expire: number,
roomstr: string,
privilegeMap: number
) {
const userBuf = this._genUserbuf(
userid,
0,
expire,
privilegeMap,
0,
roomstr
);
return this.genSig(userid, expire, userBuf);
}
}
export default {
Api,
};