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: {
|
2016-09-22 07:59:37 -07:00
|
|
|
length: 'Name length must be less than or equal to 214 characters long',
|
2016-06-24 13:43:51 -07:00
|
|
|
lowerCase: 'Name must be lowercase',
|
|
|
|
urlSafe: 'Name may not contain non-url-safe chars',
|
2017-06-05 16:31:14 -07:00
|
|
|
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: {
|
|
|
|
valid: 'Email must be an email address'
|
|
|
|
}
|
2017-06-05 16:31:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-09-22 07:59:37 -07:00
|
|
|
if (un.length > 214) {
|
2016-06-24 13:43:51 -07:00
|
|
|
return new Error(requirements.username.length)
|
|
|
|
}
|
|
|
|
|
2017-06-05 16:31:14 -07:00
|
|
|
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.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 (pw) {
|
|
|
|
return null
|
2013-06-18 09:42:42 -07:00
|
|
|
}
|