2024-08-06 15:47:19 +08:00
|
|
|
|
import {PASSWORD_STRENGTH_LEVELS} from '@/utils/configure'
|
|
|
|
|
|
|
2024-06-26 15:11:05 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* @param {string} path
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function isExternal(path) {
|
|
|
|
|
|
return /^(https?:|mailto:|tel:)/.test(path)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param {string} str
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function validUsername(str) {
|
|
|
|
|
|
const valid_map = ['admin', 'editor']
|
|
|
|
|
|
return valid_map.indexOf(str.trim()) >= 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param {string} url
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function validURL(url) {
|
|
|
|
|
|
const reg = /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/
|
|
|
|
|
|
return reg.test(url)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param {string} str
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function validLowerCase(str) {
|
|
|
|
|
|
const reg = /^[a-z]+$/
|
|
|
|
|
|
return reg.test(str)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param {string} str
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function validUpperCase(str) {
|
|
|
|
|
|
const reg = /^[A-Z]+$/
|
|
|
|
|
|
return reg.test(str)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param {string} str
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function validAlphabets(str) {
|
|
|
|
|
|
const reg = /^[A-Za-z]+$/
|
|
|
|
|
|
return reg.test(str)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param {string} email
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function validEmail(email) {
|
|
|
|
|
|
const reg = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
|
|
|
|
|
|
return reg.test(email)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param {string} str
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function isString(str) {
|
2024-07-22 15:32:27 +08:00
|
|
|
|
return typeof str === 'string' || str instanceof String
|
2024-06-26 15:11:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param {Array} arg
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function isArray(arg) {
|
|
|
|
|
|
if (typeof Array.isArray === 'undefined') {
|
|
|
|
|
|
return Object.prototype.toString.call(arg) === '[object Array]'
|
|
|
|
|
|
}
|
|
|
|
|
|
return Array.isArray(arg)
|
|
|
|
|
|
}
|
2024-07-22 15:32:27 +08:00
|
|
|
|
|
2024-07-04 10:35:24 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 密码的正则表达式 最少8个字符,最多20个字符,至少一个字母,一个数字和一个特殊字符:
|
|
|
|
|
|
* @param {string} password
|
|
|
|
|
|
* @returns {Boolean}
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function validPwd(value) {
|
|
|
|
|
|
const reg = /^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{8,20}$/
|
|
|
|
|
|
return reg.test(value)
|
2024-07-22 15:32:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 弱:长度至少为8个字符。
|
|
|
|
|
|
* 一般:长度至少为8个字符,并包含至少一种字符类型。
|
|
|
|
|
|
* 强:长度至少为8个字符,并包含至少两种字符类型。
|
|
|
|
|
|
* 非常强:长度至少为8个字符,并包含所有四种字符类型。
|
|
|
|
|
|
* @param rule
|
|
|
|
|
|
* @param value
|
|
|
|
|
|
* @param callback
|
|
|
|
|
|
* @returns {*}
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
export function validatePassword(rule, value, callback) {
|
|
|
|
|
|
if (!value) {
|
2024-07-24 18:07:42 +08:00
|
|
|
|
return callback(new Error('请输入密码'))
|
2024-07-22 15:32:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-08-06 15:47:19 +08:00
|
|
|
|
const lengthRegex = /^.{8,20}$/
|
2024-07-24 18:07:42 +08:00
|
|
|
|
const uppercaseRegex = /[A-Z]/
|
|
|
|
|
|
const lowercaseRegex = /[a-z]/
|
|
|
|
|
|
const digitRegex = /\d/
|
|
|
|
|
|
const specialCharRegex = /[!@#$%^&*(),.?":{}|<>]/
|
|
|
|
|
|
|
|
|
|
|
|
if (!lengthRegex.test(value)) {
|
2024-08-06 15:47:19 +08:00
|
|
|
|
return callback(new Error('密码长度必须为8到20位'))
|
2024-07-24 18:07:42 +08:00
|
|
|
|
}
|
2024-07-22 15:32:27 +08:00
|
|
|
|
|
|
|
|
|
|
const checks = [
|
2024-07-24 18:07:42 +08:00
|
|
|
|
{ regex: uppercaseRegex, message: '必须包含至少一个大写字母' },
|
|
|
|
|
|
{ regex: lowercaseRegex, message: '必须包含至少一个小写字母' },
|
|
|
|
|
|
{ regex: digitRegex, message: '必须包含至少一个数字' },
|
|
|
|
|
|
{ regex: specialCharRegex, message: '必须包含至少一个特殊字符' }
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
let passedChecks = checks.filter(check => check.regex.test(value)).length
|
|
|
|
|
|
|
|
|
|
|
|
let requiredChecks
|
2024-08-06 15:47:19 +08:00
|
|
|
|
switch (PASSWORD_STRENGTH_LEVELS.STRONG) {
|
2024-07-22 15:32:27 +08:00
|
|
|
|
case 'weak':
|
2024-07-24 18:07:42 +08:00
|
|
|
|
requiredChecks = 1
|
|
|
|
|
|
break
|
2024-07-22 15:32:27 +08:00
|
|
|
|
case 'medium':
|
2024-07-24 18:07:42 +08:00
|
|
|
|
requiredChecks = 2
|
|
|
|
|
|
break
|
2024-07-22 15:32:27 +08:00
|
|
|
|
case 'strong':
|
2024-07-24 18:07:42 +08:00
|
|
|
|
requiredChecks = 3
|
|
|
|
|
|
break
|
2024-07-22 15:32:27 +08:00
|
|
|
|
case 'very-strong':
|
2024-07-24 18:07:42 +08:00
|
|
|
|
requiredChecks = 4
|
|
|
|
|
|
break
|
2024-07-22 15:32:27 +08:00
|
|
|
|
default:
|
2024-07-24 18:07:42 +08:00
|
|
|
|
return callback(new Error('请选择有效的密码强度'))
|
2024-07-22 15:32:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (passedChecks < requiredChecks) {
|
2024-07-24 18:07:42 +08:00
|
|
|
|
return callback(new Error(`密码至少包含 ${requiredChecks} 类字符(大写字母,小写字母,数字,特殊字符)`))
|
2024-07-22 15:32:27 +08:00
|
|
|
|
}
|
2024-07-24 18:07:42 +08:00
|
|
|
|
callback()
|
2024-07-22 15:32:27 +08:00
|
|
|
|
}
|