2018-02-03 20:46:32 +00:00
|
|
|
var _fs;
|
|
|
|
if(typeof require !== 'undefined') try { _fs = require('fs'); } catch(e) {}
|
|
|
|
|
|
|
|
/* normalize data for blob ctor */
|
|
|
|
function blobify(data) {
|
|
|
|
if(typeof data === "string") return s2ab(data);
|
|
|
|
if(Array.isArray(data)) return a2u(data);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
/* write or download file */
|
|
|
|
function write_dl(fname/*:string*/, payload/*:any*/, enc/*:?string*/) {
|
2020-03-15 07:42:05 +00:00
|
|
|
/*global IE_SaveFile, Blob, navigator, saveAs, document, File, chrome */
|
2018-02-03 20:46:32 +00:00
|
|
|
if(typeof _fs !== 'undefined' && _fs.writeFileSync) return enc ? _fs.writeFileSync(fname, payload, enc) : _fs.writeFileSync(fname, payload);
|
|
|
|
var data = (enc == "utf8") ? utf8write(payload) : payload;
|
|
|
|
/*:: declare var IE_SaveFile: any; */
|
|
|
|
if(typeof IE_SaveFile !== 'undefined') return IE_SaveFile(data, fname);
|
|
|
|
if(typeof Blob !== 'undefined') {
|
|
|
|
var blob = new Blob([blobify(data)], {type:"application/octet-stream"});
|
|
|
|
/*:: declare var navigator: any; */
|
|
|
|
if(typeof navigator !== 'undefined' && navigator.msSaveBlob) return navigator.msSaveBlob(blob, fname);
|
|
|
|
/*:: declare var saveAs: any; */
|
|
|
|
if(typeof saveAs !== 'undefined') return saveAs(blob, fname);
|
|
|
|
if(typeof URL !== 'undefined' && typeof document !== 'undefined' && document.createElement && URL.createObjectURL) {
|
2018-03-29 04:31:36 +00:00
|
|
|
var url = URL.createObjectURL(blob);
|
|
|
|
/*:: declare var chrome: any; */
|
|
|
|
if(typeof chrome === 'object' && typeof (chrome.downloads||{}).download == "function") {
|
|
|
|
if(URL.revokeObjectURL && typeof setTimeout !== 'undefined') setTimeout(function() { URL.revokeObjectURL(url); }, 60000);
|
|
|
|
return chrome.downloads.download({ url: url, filename: fname, saveAs: true});
|
|
|
|
}
|
2018-02-03 20:46:32 +00:00
|
|
|
var a = document.createElement("a");
|
|
|
|
if(a.download != null) {
|
|
|
|
/*:: if(document.body == null) throw new Error("unreachable"); */
|
|
|
|
a.download = fname; a.href = url; document.body.appendChild(a); a.click();
|
|
|
|
/*:: if(document.body == null) throw new Error("unreachable"); */ document.body.removeChild(a);
|
|
|
|
if(URL.revokeObjectURL && typeof setTimeout !== 'undefined') setTimeout(function() { URL.revokeObjectURL(url); }, 60000);
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-08 18:21:39 +00:00
|
|
|
// $FlowIgnore
|
|
|
|
if(typeof $ !== 'undefined' && typeof File !== 'undefined' && typeof Folder !== 'undefined') try { // extendscript
|
|
|
|
// $FlowIgnore
|
|
|
|
var out = File(fname); out.open("w"); out.encoding = "binary";
|
|
|
|
if(Array.isArray(payload)) payload = a2s(payload);
|
|
|
|
out.write(payload); out.close(); return payload;
|
|
|
|
} catch(e) { if(!e.message || !e.message.match(/onstruct/)) throw e; }
|
|
|
|
throw new Error("cannot save file " + fname);
|
2018-02-03 20:46:32 +00:00
|
|
|
}
|
|
|
|
|
2018-02-08 18:21:39 +00:00
|
|
|
/* read binary data from file */
|
|
|
|
function read_binary(path/*:string*/) {
|
|
|
|
if(typeof _fs !== 'undefined') return _fs.readFileSync(path);
|
|
|
|
// $FlowIgnore
|
|
|
|
if(typeof $ !== 'undefined' && typeof File !== 'undefined' && typeof Folder !== 'undefined') try { // extendscript
|
|
|
|
// $FlowIgnore
|
|
|
|
var infile = File(path); infile.open("r"); infile.encoding = "binary";
|
|
|
|
var data = infile.read(); infile.close();
|
|
|
|
return data;
|
|
|
|
} catch(e) { if(!e.message || !e.message.match(/onstruct/)) throw e; }
|
|
|
|
throw new Error("Cannot access file " + path);
|
|
|
|
}
|