change parameter names

This commit is contained in:
s1341 2013-11-17 21:01:02 +02:00
parent 29d8bb7716
commit 93fcab0461
3 changed files with 20 additions and 20 deletions

View file

@ -553,20 +553,20 @@ exports.deletePad = function(padID, callback)
} }
/** /**
copyPad(padID, newID) copies a pad copyPad(sourceID, destinationID) copies a pad
Example returns: Example returns:
{code: 0, message:"ok", data: null} {code: 0, message:"ok", data: null}
{code: 1, message:"padID does not exist", data: null} {code: 1, message:"padID does not exist", data: null}
*/ */
exports.copyPad = function(padID, newID, callback) exports.copyPad = function(sourceID, destinationID, callback)
{ {
getPadSafe(padID, true, function(err, pad) getPadSafe(sourceID, true, function(err, pad)
{ {
if(ERR(err, callback)) return; if(ERR(err, callback)) return;
pad.copy(newID, callback); pad.copy(destinationID, callback);
}); });
} }

View file

@ -406,13 +406,13 @@ Pad.prototype.init = function init(text, callback) {
}); });
}; };
Pad.prototype.copy = function copy(newID, callback) { Pad.prototype.copy = function copy(destinationID, callback) {
var padID = this.id; var sourceID = this.id;
var _this = this; var _this = this;
//kick everyone from this pad //kick everyone from this pad
// TODO: this presents a message on the client saying that the pad was 'deleted'. Fix this? // TODO: this presents a message on the client saying that the pad was 'deleted'. Fix this?
padMessageHandler.kickSessionsFromPad(padID); padMessageHandler.kickSessionsFromPad(sourceID);
// flush the source pad: // flush the source pad:
_this.saveToDatabase(); _this.saveToDatabase();
@ -421,9 +421,9 @@ Pad.prototype.copy = function copy(newID, callback) {
// if it's a group pad, let's make sure the group exists. // if it's a group pad, let's make sure the group exists.
function(callback) function(callback)
{ {
if (newID.indexOf("$") != -1) if (destinationID.indexOf("$") != -1)
{ {
groupManager.doesGroupExist(newID.split("$")[0], function (err, exists) groupManager.doesGroupExist(destinationID.split("$")[0], function (err, exists)
{ {
if(ERR(err, callback)) return; if(ERR(err, callback)) return;
@ -444,7 +444,7 @@ Pad.prototype.copy = function copy(newID, callback) {
// if the pad exists, we should abort. // if the pad exists, we should abort.
function(callback) function(callback)
{ {
padManager.doesPadExists(newID, function (err, exists) padManager.doesPadExists(destinationID, function (err, exists)
{ {
if(ERR(err, callback)) return; if(ERR(err, callback)) return;
@ -455,8 +455,8 @@ Pad.prototype.copy = function copy(newID, callback) {
//everything is fine, continue //everything is fine, continue
else else
{ {
db.get("pad:"+padID, function(err, pad) { db.get("pad:"+sourceID, function(err, pad) {
db.set("pad:"+newID, pad); db.set("pad:"+destinationID, pad);
callback(); callback();
}); });
} }
@ -473,8 +473,8 @@ Pad.prototype.copy = function copy(newID, callback) {
for(var i=0;i<=chatHead;i++) for(var i=0;i<=chatHead;i++)
{ {
db.get("pad:"+padID+":chat:"+i, function (err, chat) { db.get("pad:"+sourceID+":chat:"+i, function (err, chat) {
db.set("pad:"+newID+":chat:"+i, chat); db.set("pad:"+destinationID+":chat:"+i, chat);
}); });
} }
@ -487,9 +487,9 @@ Pad.prototype.copy = function copy(newID, callback) {
for(var i=0;i<=revHead;i++) for(var i=0;i<=revHead;i++)
{ {
db.get("pad:"+padID+":revs:"+i, function (err, rev) { db.get("pad:"+sourceID+":revs:"+i, function (err, rev) {
if (ERR(err, callback)) return; if (ERR(err, callback)) return;
db.set("pad:"+newID+":revs:"+i, rev); db.set("pad:"+destinationID+":revs:"+i, rev);
}); });
} }
@ -502,7 +502,7 @@ Pad.prototype.copy = function copy(newID, callback) {
authorIDs.forEach(function (authorID) authorIDs.forEach(function (authorID)
{ {
authorManager.addPad(authorID, newID); authorManager.addPad(authorID, destinationID);
}); });
callback(); callback();
@ -514,7 +514,7 @@ Pad.prototype.copy = function copy(newID, callback) {
], function(err) ], function(err)
{ {
if(ERR(err, callback)) return; if(ERR(err, callback)) return;
callback(null, {padID: newID}); callback(null, {padID: destinationID});
}); });
}; };

View file

@ -240,8 +240,8 @@ var version =
, "getRevisionChangeset" : ["padID", "rev"] , "getRevisionChangeset" : ["padID", "rev"]
, "getLastEdited" : ["padID"] , "getLastEdited" : ["padID"]
, "deletePad" : ["padID"] , "deletePad" : ["padID"]
, "copyPad" : ["padID", "newID"] , "copyPad" : ["sourceID", "destinationID"]
, "movePad" : ["padID", "newID"] , "movePad" : ["sourceID", "destinationID"]
, "getReadOnlyID" : ["padID"] , "getReadOnlyID" : ["padID"]
, "setPublicStatus" : ["padID", "publicStatus"] , "setPublicStatus" : ["padID", "publicStatus"]
, "getPublicStatus" : ["padID"] , "getPublicStatus" : ["padID"]