2013-01-22 21:44:45 +01:00
|
|
|
var _ = require('underscore')._;
|
|
|
|
|
|
|
|
var api = function(dbot) {
|
|
|
|
return {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a profile for a new primary user on a given server.
|
|
|
|
* If the server does not already exist, create it.
|
|
|
|
*/
|
|
|
|
"createProfile": function(server, primary){
|
|
|
|
if(!_.has(this.profiles, server)){
|
|
|
|
this.profiles[server] = {};
|
|
|
|
}
|
|
|
|
this.profiles[server][primary] = {};
|
|
|
|
_.defaults(this.profiles[server][primary], this.config.schema);
|
|
|
|
},
|
2013-01-24 00:32:50 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a server and "new" alias, resolve this alias to the user's
|
|
|
|
* new primary name and move profile data pertaining to the alias to
|
|
|
|
* the new primary name.
|
|
|
|
*/
|
|
|
|
'renameProfile': function(server, alias){
|
|
|
|
if(!_.has(this.profiles, server)) return;
|
|
|
|
var profiles = dbot.db.profiles[server];
|
|
|
|
|
|
|
|
if(_.has(profiles, alias)){
|
|
|
|
var primary = dbot.api.users.resolveUser(server, alias, true).toLowerCase();
|
|
|
|
alias = alias.trim().toLowerCase();
|
|
|
|
|
|
|
|
profiles[primary] = profiles[alias];
|
|
|
|
delete profiles[alias];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a server and a primary username which has been converted to a
|
|
|
|
* secondary alias find and remove the profile for the alias.
|
|
|
|
*/
|
|
|
|
'mergeProfile': function(server, mergeFromPrimary){
|
|
|
|
if(!_.has(this.profiles, server)) return;
|
|
|
|
var profiles = dbot.db.profiles[server];
|
|
|
|
|
|
|
|
mergeFromPrimary = mergeFromPrimary.toLowerCase();
|
|
|
|
var mergeToPrimary = dbot.api.users.resolveUser(server, mergeFromPrimary, true).toLowerCase();
|
|
|
|
if(!_.has(profiles, mergeToPrimary)
|
|
|
|
|| !_.has(profiles, mergeFromPrimary)) return;
|
|
|
|
|
|
|
|
// Remove the profile of the alias
|
|
|
|
delete profiles[mergeFromPrimary];
|
|
|
|
},
|
2013-01-22 21:44:45 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
|
|
|
return api(dbot);
|
|
|
|
};
|