/**
|
* Created by jiachenpan on 16/11/18.
|
*/
|
|
export function isExternal(path) {
|
return /^(https?:|mailto:|tel:)/.test(path)
|
}
|
|
export function validUsername(str) {
|
const valid_map = ['admin', 'editor']
|
return valid_map.indexOf(str.trim()) >= 0
|
}
|
|
/* 合法uri*/
|
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)
|
}
|
|
/* 小写字母*/
|
export function validLowerCase(str) {
|
const reg = /^[a-z]+$/
|
return reg.test(str)
|
}
|
|
/* 大写字母*/
|
export function validUpperCase(str) {
|
const reg = /^[A-Z]+$/
|
return reg.test(str)
|
}
|
|
/* 大小写字母*/
|
export function validAlphabets(str) {
|
const reg = /^[A-Za-z]+$/
|
return reg.test(str)
|
}
|
|
/**
|
* validate email
|
* @param email
|
* @returns {boolean}
|
*/
|
export function validEmail(email) {
|
const re = /^(([^<>()\[\]\\.,;:\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 re.test(email)
|
}
|
|
export function validateRole(user_roles, role_codes) {
|
let roles = user_roles
|
if (roles && roles.length > 0) {
|
roles = JSON.parse(roles)
|
for (const role of roles) {
|
for (const role_code of role_codes) {
|
if (role.code == role_code) {
|
return true
|
}
|
}
|
}
|
}
|
return false
|
}
|