- youmeb-redis
- youmeb-rest-auth
- youmeb-sequelize
You must install :
- Redis : How to install this? see that
http://redis.io/download
or Click me - mysql
- YoumebJS project !!! How to install? see that: Click me
- signup-success
$ npm install --save youmeb-redis youmeb-rest-auth youmeb-sequelize youmeb-users mysql
{
"packages": {
//....
"sequelize": { // youmeb-sequelize setting
"db": "your mysqlDB name",
"username": "your User name",
"password": "your password",
"options": {
"host": "your mysql url. ex:127.0.0.1"
}
},
"users": { // youmeb-users setting
"redis-database": 2,
"token-expire": 604800,
"nonce-expire": 300
}
}
}
"Package" is our YoumebJS main architecture . On this youmeb-users project , we build a user login
package which will help you to generate new table(users) and set all of users's table
parameters in your MySQL database.
First, you must build a new migration setting file, on cli:
$ youmeb sequelize:generate:migration
Second, see /migrations/
file , you can see a new XXXXXXXX-users.js
file, and edit this migration file:
var users = require('youmeb-users');
module.exports = {
up: users.createTable,
down: users.dropTable
};
Third, come back to your cli:
$ youmeb sequelize:migrate
It will help you to build a new users table automatically.
First, in your cli:
$ youmeb sequelize:generate:model
Generate a 'user' model,and edit it at /models/user.js
:
var users = require('youmeb-users');
module.exports = function(sequelize, DataTypes) {
var schema = users.schema(DataTypes);
return sequelize.define('User', schema);
};
Setting Password hashing:
app.js
module.exports = function () {
this.invoke(function ($users) {
$users.setPasswordHasher(function (pass, done) {
done(null, sha1(pass)); // sha1 is your crypto algo function
});
});
};
Hint! Before you using this code , you must define a crypto algo function ! (Here is sha1 for a example)
var users = require('youmeb-users');
module.exports = function (sequelize, DataTypes) {
var schema = users.schema;
schema.test = DataTypes.STRING;
return sequelize.define('User', schema);
};
var users = require('youmeb-users');
module.exports = {
up: function (migration, DataTypes, done) {
var schema = users.schema;
schema.test = DataTypes.STRING;
users.createTable(sequelize, DataTypes, done);
}
// ...
};
And don't forget to update your MySQL database(table).
-
Method: POST
-
Path: /api/user/signup
-
Data:
- Reauired:
password
- User Passwordlogin
- User Account Nameemail
- User Email Address
- Optional:
display
- User Display Name (Nickname or Real Name)
- Reauired:
-
Response:
{ "success": Boolean, // true or false "error": String, // error code "data": { "user": {/* ... */} } }
-
Method: GET
-
Path: /api/rest-auth/nonce
-
Response:
{ "success": Boolean, "data": { "nonce": String, "key": String } }
-
Method: POST
-
Path: /api/rest-auth/login
-
Data:
- Reauired:
login
- User Account Namecnonce
- Client Noncehash
- sha1([hash(password), cnonce, nonce].sort().join(''))key
- Reauired:
-
Response:
{ "success": Boolean, "data": { "loginSuccess": Boolean, "token": String } }
(jQuery like:)
$.get('/api/rest-auth/nonce', function (data) {
if (!data.success) {
return alert(data.error.code);
}
var password = sha1('123'); // you must define crypto algo function
var hash = sha1([password, data.data.nonce, 'cnonce'].sort().join(''));
$.post('/api/rest-auth/login', function (data) {
if (!data.success) {
return alert(data.error.code);
}
alert('Hello ' + data.data.user.display);
});
});
(Angular like:)
$http.get('/api/rest-auth/nonce').success(function (data) {
var password = hash('123'); // you must define crypto algo function
var hash = sha1([password, data.data.nonce, 'cnonce'].sort().join(''));
$http.post('/api/rest-auth/login', {
login:'123',cnonce:'cnonce',hash:hash,key:data.data.key
}).success(function (data) {
console.log(data);
});
});
});
(The MIT License)
Copyright (c) 2013 YouMeb and contributors.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.