summary refs log tree commit diff
path: root/src/api/util/utility/String.ts
blob: 0913013e7d57b5eee7ab33e1b8f161c99124ba11 (plain) (blame)
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
import { Request } from "express";
import { ntob } from "./Base64";
import { FieldErrors } from "@fosscord/util";

export function checkLength(
	str: string,
	min: number,
	max: number,
	key: string,
	req: Request,
) {
	if (str.length < min || str.length > max) {
		throw FieldErrors({
			[key]: {
				code: "BASE_TYPE_BAD_LENGTH",
				message: req.t("common:field.BASE_TYPE_BAD_LENGTH", {
					length: `${min} - ${max}`,
				}),
			},
		});
	}
}

export function generateCode() {
	return ntob(Date.now() + Math.randomIntBetween(0, 10000));
}