-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathencryption_schema_validation.js
51 lines (50 loc) · 1.48 KB
/
encryption_schema_validation.js
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
import Joi from "joi"
import { ERROR_STATUES } from "@sama/constants/errors.js"
export const encryptionSchemaValidation = {
device_register: Joi.object({
identity_key: Joi.string()
.max(255)
.required()
.error(
new Error(ERROR_STATUES.INCORRECT_IDENTITY_KEY.message, {
cause: ERROR_STATUES.INCORRECT_IDENTITY_KEY,
})
),
signed_key: Joi.string()
.max(255)
.required()
.error(
new Error(ERROR_STATUES.INCORRECT_SIGNED_KEY.message, {
cause: ERROR_STATUES.INCORRECT_SIGNED_KEY,
})
),
one_time_pre_keys: Joi.alternatives(Joi.object().max(100), Joi.array().items(Joi.string().max(255)).max(100))
.required()
.error(
new Error(ERROR_STATUES.INCORRECT_ONE_TIME_PRE_KEYS.message, {
cause: ERROR_STATUES.INCORRECT_ONE_TIME_PRE_KEYS,
})
),
}),
device_list: Joi.object({}),
request_keys: Joi.object({
user_ids: Joi.array()
.items(
Joi.string().error(
new Error(ERROR_STATUES.INCORRECT_USER_ID.message, {
cause: ERROR_STATUES.INCORRECT_USER_ID,
})
)
)
.max(50)
.required()
.error(
new Error(ERROR_STATUES.INCORRECT_USERS_ARRAY.message, {
cause: ERROR_STATUES.INCORRECT_USERS_ARRAY,
})
),
}),
device_delete: Joi.object({
device_id: Joi.alternatives().try(Joi.number().max(255).required(), Joi.string().max(255).required()).required(),
}),
}