Hook for export ocnvert control
This commit is contained in:
parent
8a79ae6e02
commit
4ae88b2ee7
|
@ -105,7 +105,7 @@ exports.doExport = function(req, res, padId, type)
|
||||||
//if this is a html export, we can send this from here directly
|
//if this is a html export, we can send this from here directly
|
||||||
if(type == "html")
|
if(type == "html")
|
||||||
{
|
{
|
||||||
// do any final changes the plugin might want to make cake
|
// do any final changes the plugin might want to make
|
||||||
hooks.aCallFirst("exportHTMLSend", html, function(err, newHTML){
|
hooks.aCallFirst("exportHTMLSend", html, function(err, newHTML){
|
||||||
if(newHTML.length) html = newHTML;
|
if(newHTML.length) html = newHTML;
|
||||||
res.send(html);
|
res.send(html);
|
||||||
|
@ -133,7 +133,19 @@ exports.doExport = function(req, res, padId, type)
|
||||||
function(callback)
|
function(callback)
|
||||||
{
|
{
|
||||||
destFile = tempDirectory + "/etherpad_export_" + randNum + "." + type;
|
destFile = tempDirectory + "/etherpad_export_" + randNum + "." + type;
|
||||||
convertor.convertFile(srcFile, destFile, type, callback);
|
|
||||||
|
var handledByPlugin = false;
|
||||||
|
// Allow plugins to overwrite the convert in export process
|
||||||
|
hooks.aCallAll("exportConvert", {srcFile: srcFile, destFile: destFile}, function(err, result){
|
||||||
|
if(!err && result.length > 0){
|
||||||
|
// console.log("export handled by plugin", destFile);
|
||||||
|
handledByPlugin = true;
|
||||||
|
callback();
|
||||||
|
}else{
|
||||||
|
convertor.convertFile(srcFile, destFile, type, callback);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
//send the file
|
//send the file
|
||||||
function(callback)
|
function(callback)
|
||||||
|
|
Loading…
Reference in New Issue