slate/common/validations.js

99 lines
1.4 KiB
JavaScript
Raw Normal View History

import * as Strings from "~/common/strings";
const USERNAME_REGEX = new RegExp("^[a-zA-Z0-9_]{0,}[a-zA-Z]+[0-9]*$");
const MIN_PASSWORD_LENGTH = 8;
2020-08-07 02:28:54 +03:00
// TODO(jim): Regex should cover some of this.
const REJECT_LIST = [
2020-08-07 02:28:54 +03:00
"..",
"_",
"_next",
"next",
"webpack",
"system",
"experience",
"root",
"www",
"website",
"index",
"api",
"public",
"static",
"admin",
"administrator",
"webmaster",
"403",
"404",
"500",
2020-08-19 21:17:12 +03:00
"maintenance",
"updates",
"login",
2020-08-07 02:28:54 +03:00
"authenticate",
"sign-in",
2020-08-07 02:28:54 +03:00
"sign_in",
"signin",
"log-in",
2020-08-07 02:28:54 +03:00
"log_in",
"logout",
];
export const userRoute = (text) => {
if (!USERNAME_REGEX.test(text)) {
return false;
}
if (REJECT_LIST.includes(text)) {
return false;
}
return true;
};
export const username = (text) => {
if (Strings.isEmpty(text)) {
return false;
}
if (!userRoute(text)) {
return false;
}
return true;
};
export const password = (text) => {
if (Strings.isEmpty(text)) {
return false;
}
if (text.length < MIN_PASSWORD_LENGTH) {
return false;
}
return true;
};
export const isFileTypeAllowed = (type = "") => {
if (type.startsWith("application/pdf")) {
return true;
}
2020-08-10 13:10:44 +03:00
if (type.startsWith("application/epub")) {
return true;
}
if (type.startsWith("audio/")) {
return true;
}
if (type.startsWith("image/")) {
return true;
}
if (type.startsWith("video/")) {
return true;
}
return false;
};