49 lines
976 B
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 576 characters long',
lowerCase: 'Name must be lowercase',
urlSafe: 'Name may not contain non-url-safe chars',
dot: 'Name may not start with "."'
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'
}
};
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 > 576) {
return new Error(requirements.username.length)
}
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
}