2011-03-26 14:10:41 +01:00
|
|
|
/**
|
2011-05-30 16:53:11 +02:00
|
|
|
* The Pad Manager is a Factory for pad Objects
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2011-08-11 16:26:41 +02:00
|
|
|
* 2011 Peter 'Pita' Martischka (Primary Technology Ltd)
|
2011-03-26 14:10:41 +01:00
|
|
|
*
|
|
|
|
* 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 19:52:23 +02:00
|
|
|
require("../db/Pad");
|
2011-08-03 20:31:25 +02:00
|
|
|
var db = require("./DB").db;
|
2011-03-26 14:10:41 +01:00
|
|
|
|
2011-09-30 06:41:46 +02:00
|
|
|
/**
|
|
|
|
* An Object containing all known Pads. Provides "get" and "set" functions,
|
|
|
|
* which should be used instead of indexing with brackets. These prepend a
|
|
|
|
* colon to the key, to avoid conflicting with built-in Object methods or with
|
|
|
|
* these functions themselves.
|
|
|
|
*
|
|
|
|
* If this is needed in other places, it would be wise to make this a prototype
|
|
|
|
* that's defined somewhere more sensible.
|
2011-03-26 14:10:41 +01:00
|
|
|
*/
|
2011-09-30 06:41:46 +02:00
|
|
|
globalPads = {
|
|
|
|
get: function (name) { return this[':'+name]; },
|
|
|
|
set: function (name, value) { this[':'+name] = value; },
|
|
|
|
remove: function (name) { delete this[':'+name]; }
|
|
|
|
};
|
2011-03-26 14:10:41 +01:00
|
|
|
|
|
|
|
/**
|
2011-05-30 16:53:11 +02:00
|
|
|
* Returns a Pad Object with the callback
|
2011-03-26 14:10:41 +01:00
|
|
|
* @param id A String with the id of the pad
|
2011-06-02 14:11:46 +02:00
|
|
|
* @param {Function} callback
|
2011-03-26 14:10:41 +01:00
|
|
|
*/
|
2011-08-04 20:20:14 +02:00
|
|
|
exports.getPad = function(id, text, callback)
|
2011-05-17 17:33:54 +02:00
|
|
|
{
|
2011-08-08 18:35:40 +02:00
|
|
|
//check if this is a valid padId
|
2011-08-04 17:07:58 +02:00
|
|
|
if(!exports.isValidPadId(id))
|
2011-08-08 18:35:40 +02:00
|
|
|
{
|
|
|
|
callback({stop: id + " is not a valid padId"});
|
|
|
|
return;
|
|
|
|
}
|
2011-08-04 17:07:58 +02:00
|
|
|
|
2011-08-04 20:20:14 +02:00
|
|
|
//make text an optional parameter
|
|
|
|
if(typeof text == "function")
|
|
|
|
{
|
|
|
|
callback = text;
|
|
|
|
text = null;
|
|
|
|
}
|
|
|
|
|
2011-08-08 18:35:40 +02:00
|
|
|
//check if this is a valid text
|
|
|
|
if(text != null)
|
|
|
|
{
|
|
|
|
//check if text is a string
|
|
|
|
if(typeof text != "string")
|
|
|
|
{
|
|
|
|
callback({stop: "text is not a string"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//check if text is less than 100k chars
|
|
|
|
if(text.length > 100000)
|
|
|
|
{
|
|
|
|
callback({stop: "text must be less than 100k chars"});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-30 06:41:46 +02:00
|
|
|
var pad = globalPads.get(id);
|
2011-05-17 17:33:54 +02:00
|
|
|
|
|
|
|
//return pad if its already loaded
|
|
|
|
if(pad != null)
|
|
|
|
{
|
|
|
|
callback(null, pad);
|
|
|
|
}
|
|
|
|
//try to load pad
|
|
|
|
else
|
2011-03-26 14:10:41 +01:00
|
|
|
{
|
2011-05-16 16:30:21 +02:00
|
|
|
pad = new Pad(id);
|
2011-05-17 17:33:54 +02:00
|
|
|
|
|
|
|
//initalize the pad
|
2011-08-04 20:20:14 +02:00
|
|
|
pad.init(text, function(err)
|
2011-05-17 17:33:54 +02:00
|
|
|
{
|
|
|
|
if(err)
|
|
|
|
{
|
|
|
|
callback(err, null);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-30 06:41:46 +02:00
|
|
|
globalPads.set(id, pad);
|
2011-05-17 17:33:54 +02:00
|
|
|
callback(null, pad);
|
|
|
|
}
|
|
|
|
});
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
2011-08-03 20:31:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//checks if a pad exists
|
|
|
|
exports.doesPadExists = function(padId, callback)
|
|
|
|
{
|
|
|
|
db.get("pad:"+padId, function(err, value)
|
|
|
|
{
|
|
|
|
callback(err, value != null);
|
|
|
|
});
|
2011-05-16 20:01:19 +02:00
|
|
|
}
|
2011-08-04 17:07:58 +02:00
|
|
|
|
|
|
|
exports.isValidPadId = function(padId)
|
|
|
|
{
|
2011-08-13 18:48:36 +02:00
|
|
|
return /^(g.[a-zA-Z0-9]{16}\$)?[^$]{1,50}$/.test(padId);
|
2011-08-04 17:07:58 +02:00
|
|
|
}
|
|
|
|
|
2011-08-16 21:02:30 +02:00
|
|
|
//removes a pad from the array
|
|
|
|
exports.unloadPad = function(padId)
|
|
|
|
{
|
2011-09-30 06:41:46 +02:00
|
|
|
if(globalPads.get(padId))
|
|
|
|
globalPads.remove(padId);
|
2011-08-16 21:02:30 +02:00
|
|
|
}
|