pad.pub0.org/node/db/AuthorManager.js

176 lines
4.6 KiB
JavaScript
Raw Normal View History

2011-03-26 13:10:41 +00:00
/**
2011-05-30 14:53:11 +00:00
* The AuthorManager controlls all information about the Pad authors
*/
/*
2011-03-26 13:10:41 +00:00
* 2011 Peter 'Pita' Martischka
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2011-07-27 17:52:23 +00:00
var db = require("./DB").db;
var async = require("async");
2011-03-26 13:10:41 +00:00
/**
* Returns the Author Id for a token. If the token is unkown,
* it creates a author for the token
2011-06-02 12:11:46 +00:00
* @param {String} token The token
* @param {Function} callback callback (err, author)
2011-05-30 14:53:11 +00:00
* The callback function that is called when the result is here
2011-03-26 13:10:41 +00:00
*/
exports.getAuthor4Token = function (token, callback)
{
2011-03-26 13:10:41 +00:00
var author;
async.series([
//try to get the author for this token
function(callback)
2011-03-26 13:10:41 +00:00
{
db.get("token2author:" + token, function (err, _author)
{
author = _author;
callback(err);
});
},
function(callback)
{
//there is no author with this token, so create one
if(author == null)
{
2011-07-31 14:18:55 +00:00
createAuthor(token, function(err, _author)
{
author = _author;
callback(err);
});
}
//there is a author with this token
else
{
//check if there is also an author object for this token, if not, create one
db.get("globalAuthor:" + author, function(err, authorObject)
{
if(authorObject == null)
{
2011-07-31 14:18:55 +00:00
createAuthor(token, function(err, _author)
{
author = _author;
callback(err);
});
}
2011-07-31 14:18:55 +00:00
//the author exists, update the timestamp of this author
else
{
db.setSub("globalAuthor:" + author, ["timestamp"], new Date().getTime());
2011-07-31 14:18:55 +00:00
callback();
}
});
}
2011-03-26 13:10:41 +00:00
}
], function(err)
2011-03-26 13:10:41 +00:00
{
callback(err, author);
});
2011-03-26 13:10:41 +00:00
}
/**
* Internal function that creates the database entry for an author
* @param {String} token The token
*/
2011-07-31 14:18:55 +00:00
function createAuthor (token, callback)
{
//create the new author name
2011-07-31 14:18:55 +00:00
var author = "g." + _randomString(16);
2011-07-31 14:18:55 +00:00
//create the globalAuthors db entry
var authorObj = {colorId : Math.floor(Math.random()*32), name: null, timestamp: new Date().getTime()};
2011-07-31 14:18:55 +00:00
//we do this in series to ensure this db entries are written in the correct order
async.series([
//set the global author db entry
function(callback)
{
db.set("globalAuthor:" + author, authorObj, callback);
},
//set the token2author db entry
function(callback)
{
db.set("token2author:" + token, author, callback);
}
], function(err)
{
callback(err, author);
});
}
/**
* Returns the Author Obj of the author
* @param {String} author The id of the author
* @param {Function} callback callback(err, authorObj)
*/
exports.getAuthor = function (author, callback)
{
db.get("globalAuthor:" + author, callback);
}
2011-03-26 13:10:41 +00:00
/**
* Returns the color Id of the author
2011-06-02 12:11:46 +00:00
* @param {String} author The id of the author
* @param {Function} callback callback(err, colorId)
2011-03-26 13:10:41 +00:00
*/
exports.getAuthorColorId = function (author, callback)
2011-03-26 13:10:41 +00:00
{
db.getSub("globalAuthor:" + author, ["colorId"], callback);
2011-03-26 13:10:41 +00:00
}
/**
* Sets the color Id of the author
2011-06-02 12:11:46 +00:00
* @param {String} author The id of the author
* @param {Function} callback (optional)
2011-03-26 13:10:41 +00:00
*/
exports.setAuthorColorId = function (author, colorId, callback)
2011-03-26 13:10:41 +00:00
{
db.setSub("globalAuthor:" + author, ["colorId"], colorId, callback);
2011-03-26 13:10:41 +00:00
}
/**
* Returns the name of the author
2011-06-02 12:11:46 +00:00
* @param {String} author The id of the author
* @param {Function} callback callback(err, name)
2011-03-26 13:10:41 +00:00
*/
exports.getAuthorName = function (author, callback)
2011-03-26 13:10:41 +00:00
{
db.getSub("globalAuthor:" + author, ["name"], callback);
2011-03-26 13:10:41 +00:00
}
/**
* Sets the name of the author
2011-06-02 12:11:46 +00:00
* @param {String} author The id of the author
* @param {Function} callback (optional)
2011-03-26 13:10:41 +00:00
*/
exports.setAuthorName = function (author, name, callback)
2011-03-26 13:10:41 +00:00
{
db.setSub("globalAuthor:" + author, ["name"], name, callback);
2011-03-26 13:10:41 +00:00
}
/**
* Generates a random String with the given length. Is needed to generate the Author Ids
*/
function _randomString(len) {
// use only numbers and lowercase letters
var pieces = [];
for(var i=0;i<len;i++) {
pieces.push(Math.floor(Math.random()*36).toString(36).slice(-1));
}
return pieces.join('');
}