62 lines
1.4 KiB
JavaScript
Raw Normal View History

2013-05-14 14:37:59 -07:00
exports.email = email
exports.pw = pw
exports.username = username
2013-06-18 09:42:42 -07:00
var requirements = exports.requirements = {
username: {
length: 'Name length must be less than or equal to 214 characters long',
lowerCase: 'Name must be lowercase',
urlSafe: 'Name may not contain non-url-safe chars',
dot: 'Name may not start with "."',
illegal: 'Name may not contain illegal character',
2013-06-18 09:42:42 -07:00
},
2014-06-05 15:18:15 -07:00
password: {},
2013-06-18 09:42:42 -07:00
email: {
length: 'Email length must be less then or equal to 254 characters long',
valid: 'Email must be an email address',
},
}
var illegalCharacterRe = new RegExp('([' + [
"'",
].join() + '])')
2013-06-18 09:42:42 -07:00
2013-05-14 14:37:59 -07:00
function username (un) {
if (un !== un.toLowerCase()) {
2013-06-18 09:42:42 -07:00
return new Error(requirements.username.lowerCase)
2013-05-14 14:37:59 -07:00
}
if (un !== encodeURIComponent(un)) {
2013-06-18 09:42:42 -07:00
return new Error(requirements.username.urlSafe)
2013-05-14 14:37:59 -07:00
}
if (un.charAt(0) === '.') {
2013-06-18 09:42:42 -07:00
return new Error(requirements.username.dot)
2013-05-14 14:37:59 -07:00
}
if (un.length > 214) {
return new Error(requirements.username.length)
}
var illegal = un.match(illegalCharacterRe)
if (illegal) {
return new Error(requirements.username.illegal + ' "' + illegal[0] + '"')
}
2013-05-14 14:37:59 -07:00
return null
}
function email (em) {
if (em.length > 254) {
return new Error(requirements.email.length)
}
if (!em.match(/^[^@]+@.+\..+$/)) {
2013-06-18 09:42:42 -07:00
return new Error(requirements.email.valid)
2013-05-14 14:37:59 -07:00
}
return null
}
function pw () {
2013-05-14 14:37:59 -07:00
return null
2013-06-18 09:42:42 -07:00
}