mirror of https://github.com/lukechilds/node.git
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.
43 lines
830 B
43 lines
830 B
exports.email = email
|
|
exports.pw = pw
|
|
exports.username = username
|
|
|
|
var requirements = exports.requirements = {
|
|
username: {
|
|
lowerCase: 'Username must be lowercase',
|
|
urlSafe: 'Username may not contain non-url-safe chars',
|
|
dot: 'Username may not start with "."'
|
|
},
|
|
password: {},
|
|
email: {
|
|
valid: 'Email must be an email address'
|
|
}
|
|
};
|
|
|
|
function username (un) {
|
|
if (un !== un.toLowerCase()) {
|
|
return new Error(requirements.username.lowerCase)
|
|
}
|
|
|
|
if (un !== encodeURIComponent(un)) {
|
|
return new Error(requirements.username.urlSafe)
|
|
}
|
|
|
|
if (un.charAt(0) === '.') {
|
|
return new Error(requirements.username.dot)
|
|
}
|
|
|
|
return null
|
|
}
|
|
|
|
function email (em) {
|
|
if (!em.match(/^.+@.+\..+$/)) {
|
|
return new Error(requirements.email.valid)
|
|
}
|
|
|
|
return null
|
|
}
|
|
|
|
function pw (pw) {
|
|
return null
|
|
}
|
|
|