You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
4.0 KiB
168 lines
4.0 KiB
/**
|
|
* Created by PanJiaChen on 16/11/18.
|
|
*/
|
|
|
|
/**
|
|
* @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)
|
|
}
|
|
|
|
export function isvalidPhone(phone) {
|
|
const reg = /^1[3|4|5|7|8][0-9]\d{8}$/
|
|
return reg.test(phone)
|
|
}
|
|
|
|
/**
|
|
* @param {string} str
|
|
* @returns {Boolean}
|
|
*/
|
|
export function isString(str) {
|
|
if (typeof str === 'string' || str instanceof String) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
/**
|
|
* @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)
|
|
}
|
|
|
|
/**
|
|
* 是��法IP地�
|
|
* @param rule
|
|
* @param value
|
|
* @param callback
|
|
*/
|
|
export function validateIP(rule, value, callback) {
|
|
if (value === '' || value === undefined || value == null) {
|
|
callback()
|
|
} else {
|
|
const reg = /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/
|
|
if ((!reg.test(value)) && value !== '') {
|
|
callback(new Error('请输入æ£ç¡®çš„IP地å�€'))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
}
|
|
|
|
/* 是å�¦æ‰‹æœºå�·ç �或者固è¯�*/
|
|
export function validatePhoneTwo(rule, value, callback) {
|
|
const reg = /^((0\d{2,3}-\d{7,8})|(1[34578]\d{9}))$/
|
|
if (value === '' || value === undefined || value == null) {
|
|
callback()
|
|
} else {
|
|
if ((!reg.test(value)) && value !== '') {
|
|
callback(new Error('请输入æ£ç¡®çš„电è¯�å�·ç �或者固è¯�å�·ç �'))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
}
|
|
|
|
/* 是�固�*/
|
|
export function validateTelephone(rule, value, callback) {
|
|
const reg = /0\d{2}-\d{7,8}/
|
|
if (value === '' || value === undefined || value == null) {
|
|
callback()
|
|
} else {
|
|
if ((!reg.test(value)) && value !== '') {
|
|
callback(new Error('请输入æ£ç¡®çš„固è¯�ï¼ˆæ ¼å¼�:区å�·+å�·ç �,如010-1234567)'))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
}
|
|
|
|
/* 是å�¦æ‰‹æœºå�·ç �*/
|
|
export function validatePhone(rule, value, callback) {
|
|
const reg = /^[1][3,4,5,7,8][0-9]{9}$/
|
|
if (value === '' || value === undefined || value == null) {
|
|
callback()
|
|
} else {
|
|
if ((!reg.test(value)) && value !== '') {
|
|
callback(new Error('请输入æ£ç¡®çš„电è¯�å�·ç �'))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
}
|
|
|
|
/* 是å�¦èº«ä»½è¯�å�·ç �*/
|
|
export function validateIdNo(rule, value, callback) {
|
|
const reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/
|
|
if (value === '' || value === undefined || value == null) {
|
|
callback()
|
|
} else {
|
|
if ((!reg.test(value)) && value !== '') {
|
|
callback(new Error('请输入æ£ç¡®çš„身份è¯�å�·ç �'))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
}
|
|
|
|
|