[TASK] Implement /profile API handler.
This commit is contained in:
parent
9e154221a9
commit
87f08fc8e5
4
app.js
4
app.js
|
@ -16,6 +16,7 @@ var settings = require("./src/Settings.js");
|
||||||
//load api handler
|
//load api handler
|
||||||
var sessionAPIHandler = require("./src/Session.api.js");
|
var sessionAPIHandler = require("./src/Session.api.js");
|
||||||
var userAPIHandler = require("./src/User.api.js");
|
var userAPIHandler = require("./src/User.api.js");
|
||||||
|
var profileAPIHandler = require("./src/Profile.api.js");
|
||||||
|
|
||||||
//initialize couch connector
|
//initialize couch connector
|
||||||
cradle.setup(settings.couchdb);
|
cradle.setup(settings.couchdb);
|
||||||
|
@ -73,6 +74,9 @@ app.use("/session", new sessionAPIHandler(db));
|
||||||
//API: /user
|
//API: /user
|
||||||
app.use("/user", new userAPIHandler(db));
|
app.use("/user", new userAPIHandler(db));
|
||||||
|
|
||||||
|
//API: /profile
|
||||||
|
app.use("/profile", new profileAPIHandler(db));
|
||||||
|
|
||||||
//'automatic' error handling and/or responding to non-implemented http calls
|
//'automatic' error handling and/or responding to non-implemented http calls
|
||||||
//i know this is ugly as hell, but it might stay for a while.
|
//i know this is ugly as hell, but it might stay for a while.
|
||||||
app.use(function(err, req, res, next) {
|
app.use(function(err, req, res, next) {
|
||||||
|
|
|
@ -0,0 +1,143 @@
|
||||||
|
var tools = require("./Tools.js");
|
||||||
|
|
||||||
|
var constructor = function(db) {
|
||||||
|
var db = db;
|
||||||
|
|
||||||
|
var handler = function(req, res) {
|
||||||
|
res.setHeader("Content-Type", "application/json");
|
||||||
|
|
||||||
|
//profile api available only with login
|
||||||
|
if(req.session.data.login == false) {
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "You are not logged in!"
|
||||||
|
}));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//overwrite existing profile data
|
||||||
|
if(req.method == "PUT") {
|
||||||
|
var params = req.body;
|
||||||
|
if(tools.reqParamsGiven(["data"], params) == false) {
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "This method needs a data parameter!"
|
||||||
|
}));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//check if user already exists
|
||||||
|
db.get(params.username, function (err, doc) {
|
||||||
|
if(!err || err.error != "not_found") {
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Username already taken!"
|
||||||
|
}));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
scrypt.passwordHash(params.password, 10, function(err, pwHash) {
|
||||||
|
var userDoc = {
|
||||||
|
"_id": params.username,
|
||||||
|
"auth": pwHash,
|
||||||
|
"email": params.email,
|
||||||
|
"type": "user"
|
||||||
|
};
|
||||||
|
db.save(userDoc._id, userDoc, function(err, result) {
|
||||||
|
if(err) {
|
||||||
|
console.log(err)
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Could not create user document!"
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": true
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if(req.method == "GET") {
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": true,
|
||||||
|
"profile": req.session.data.profile
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
if(req.method == "POST") {
|
||||||
|
var params = req.body;
|
||||||
|
var changeset = {
|
||||||
|
"data": req.body.profile
|
||||||
|
};
|
||||||
|
db.merge(req.session.data.user.profile, changeset, function(err, result) {
|
||||||
|
if(err) {
|
||||||
|
console.log(err);
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Something went wrong updating the profile document!"
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": true
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if(req.method == "DELETE") {
|
||||||
|
//check if user document exists
|
||||||
|
db.get(req.session.data.user._id, function (err, doc) {
|
||||||
|
if(err && err.error == "not_found") {
|
||||||
|
console.log(err);
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "User document does not exist!"
|
||||||
|
}));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var userDocument = doc;
|
||||||
|
db.remove(userDocument._id, userDocument._rev, function(err, result) {
|
||||||
|
if(err) {
|
||||||
|
console.log(err);
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Could not delete user document!"
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
db.get(userDocument.profile, function(err, doc) {
|
||||||
|
if(err) {
|
||||||
|
console.log(err);
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Could not fetch profile document!"
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
var profileDocument = doc;
|
||||||
|
db.remove(profileDocument._id, profileDocument._rev, function(err, result) {
|
||||||
|
if(err) {
|
||||||
|
console.log(err);
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Could not delete profile document!"
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
//kill session data, too
|
||||||
|
delete req.session;
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": true
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return handler;
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = constructor;
|
|
@ -57,13 +57,25 @@ var constructor = function(db) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(!err && match == true) {
|
if(!err && match == true) {
|
||||||
|
db.get(userDocument.profile, function(err, doc) {
|
||||||
|
if(err) {
|
||||||
|
console.log(err);
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Could not fetch profile document!"
|
||||||
|
}));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var profileDocument = doc;
|
||||||
req.session.data.user = userDocument;
|
req.session.data.user = userDocument;
|
||||||
|
req.session.data.profile = profileDocument.data;
|
||||||
req.session.data.login = true;
|
req.session.data.login = true;
|
||||||
req.session.data.lastActivity = new Date().toString();
|
req.session.data.lastActivity = new Date().toString();
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": true
|
"success": true
|
||||||
}));
|
}));
|
||||||
return;
|
return;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -12,31 +12,46 @@ var constructor = function(db) {
|
||||||
if(tools.reqParamsGiven(["username", "password", "email"], params) == false) {
|
if(tools.reqParamsGiven(["username", "password", "email"], params) == false) {
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": false,
|
"success": false,
|
||||||
"err": "This method needs username, password and email!"
|
"error": "This method needs username, password and email!"
|
||||||
}));
|
}));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//check if user already exists
|
//check if user already exists
|
||||||
db.get(params.username, function (err, doc) {
|
db.get(params.username, function (err, doc) {
|
||||||
if(!err || err.error != "not_found" || err.reason != "missing") {
|
if(!err || err.error != "not_found") {
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": false,
|
"success": false,
|
||||||
"err": "Username already taken!"
|
"error": "Username already taken!"
|
||||||
}));
|
}));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
scrypt.passwordHash(params.password, 10, function(err, pwHash) {
|
scrypt.passwordHash(params.password, 10, function(err, pwHash) {
|
||||||
|
var profileDoc = {
|
||||||
|
"type": "profile",
|
||||||
|
"data": {}
|
||||||
|
}
|
||||||
|
db.save(profileDoc, function(err, result) {
|
||||||
|
if(err) {
|
||||||
|
console.log(err);
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Could not create profile document!"
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
var profileID = result.id;
|
||||||
var userDoc = {
|
var userDoc = {
|
||||||
"_id": params.username,
|
"_id": params.username,
|
||||||
"auth": pwHash,
|
"auth": pwHash,
|
||||||
"email": params.email,
|
"email": params.email,
|
||||||
|
"profile": profileID,
|
||||||
"type": "user"
|
"type": "user"
|
||||||
};
|
};
|
||||||
db.save(userDoc._id, userDoc, function(err, result) {
|
db.save(userDoc._id, userDoc, function(err, result) {
|
||||||
if(err) {
|
if(err) {
|
||||||
|
console.log(err);
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": false,
|
"success": false,
|
||||||
"err": err
|
"error": "Could not create user document!"
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
|
@ -44,6 +59,8 @@ var constructor = function(db) {
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -52,7 +69,7 @@ var constructor = function(db) {
|
||||||
if(req.session.data.login == true) {
|
if(req.session.data.login == true) {
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": true,
|
"success": true,
|
||||||
"data": req.session.data.user
|
"user": req.session.data.user
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
|
@ -110,21 +127,28 @@ var constructor = function(db) {
|
||||||
if(req.session.data.login == false) {
|
if(req.session.data.login == false) {
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": false,
|
"success": false,
|
||||||
"err": "You are not logged in!"
|
"error": "You are not logged in!"
|
||||||
}));
|
}));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//check if user document exists
|
//check if user document exists
|
||||||
db.get(req.session.data.user._id, function (err, doc) {
|
db.get(req.session.data.user._id, function (err, doc) {
|
||||||
console.log(["delete/db.get", arguments]);
|
if(err && err.error == "not_found") {
|
||||||
if(err && err.error == "not_found" && err.reason == "missing") {
|
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": false,
|
"success": false,
|
||||||
"err": "User document does not exist!"
|
"error": "User document does not exist!"
|
||||||
}));
|
}));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
db.remove(doc._id, doc._rev, function(err, result) {
|
var userDoc = doc;
|
||||||
|
db.remove(userDoc.profile, function(err, result) {
|
||||||
|
if(err) {
|
||||||
|
res.send(200, JSON.stringify({
|
||||||
|
"success": false,
|
||||||
|
"error": "Could not delete profile document!"
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
db.remove(userDoc._id, userDoc._rev, function(err, result) {
|
||||||
if(err) {
|
if(err) {
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": false,
|
"success": false,
|
||||||
|
@ -133,12 +157,13 @@ var constructor = function(db) {
|
||||||
} else {
|
} else {
|
||||||
//kill session data, too
|
//kill session data, too
|
||||||
delete req.session;
|
delete req.session;
|
||||||
//TODO: delete profile document here, too!
|
|
||||||
res.send(200, JSON.stringify({
|
res.send(200, JSON.stringify({
|
||||||
"success": true
|
"success": true
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue