pandorafms/pandora_console/include/web2image.js

72 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-05-28 17:47:40 +02:00
var system = require('system');
if (system.args.length < 3 || system.args.length > 11) {
2018-05-28 17:47:40 +02:00
phantom.exit(1);
}
var url = system.args[1];
2018-06-01 13:58:29 +02:00
var type_graph_pdf = system.args[2];
var url_params = system.args[3];
var url_params_comb = system.args[4];
var url_module_list = system.args[5];
var output_filename = system.args[6];
2018-06-19 19:07:36 +02:00
var viewport_width = system.args[7];
var viewport_height = system.args[8];
var session_id = system.args[9];
var base_64 = system.args[10];
2018-05-28 17:47:40 +02:00
2018-06-19 19:07:36 +02:00
if (!viewport_width) {
viewport_width = 750;
2018-05-28 17:47:40 +02:00
}
2018-06-19 19:07:36 +02:00
if (!viewport_height) {
viewport_height = 350;
2018-05-28 17:47:40 +02:00
}
2018-06-01 13:58:29 +02:00
if(type_graph_pdf == 'combined'){
2018-06-19 19:07:36 +02:00
post_data = "data=" + url_params +
"&data_combined=" + url_params_comb +
"&data_module_list=" + url_module_list +
"&type_graph_pdf=" + type_graph_pdf +
2018-06-20 11:31:43 +02:00
"&session_id=" + session_id;
2018-06-01 13:58:29 +02:00
}
else{
2018-06-19 19:07:36 +02:00
post_data = "data=" + url_params +
"&type_graph_pdf=" + type_graph_pdf +
2018-06-20 11:31:43 +02:00
"&session_id=" + session_id;
2018-06-01 13:58:29 +02:00
}
var page = require('webpage').create();
2018-06-20 11:31:43 +02:00
page.viewportSize = {
width: viewport_width,
height: viewport_height
};
2018-05-28 17:47:40 +02:00
page.zoomFactor = 1;
2018-06-20 11:31:43 +02:00
page.onConsoleMessage = function(msg){
console.log(msg);
};
page.onError = function(msg){
console.log(msg);
page.close();
}
2018-06-06 11:18:39 +02:00
page.onCallback = function (st) {
if (!base_64) {
page.render(output_filename, { format: 'png' });
} else {
2018-06-06 17:23:32 +02:00
var base64 = page.renderBase64('png');
// do not remove this console.output
2018-06-06 17:23:32 +02:00
console.log(base64);
}
phantom.exit();
};
page.open(url, 'POST', post_data, function (status) {
});
2018-05-28 17:47:40 +02:00