forked from sheetjs/sheetjs
		
	- PK magic number bound (fixes #1013 h/t @wlpeter) - removed JSZip conflict (fixes #1017 h/t @seanmars) - updated CFB to 1.0.5 - demo HTML conversion `string`
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function getdatastr(data)/*:?string*/ {
 | |
| 	if(!data) return null;
 | |
| 	if(data.data) return debom(data.data);
 | |
| 	if(data.asNodeBuffer && has_buf) return debom(data.asNodeBuffer().toString('binary'));
 | |
| 	if(data.asBinary) return debom(data.asBinary());
 | |
| 	if(data._data && data._data.getContent) return debom(cc2str(Array.prototype.slice.call(data._data.getContent(),0)));
 | |
| 	return null;
 | |
| }
 | |
| 
 | |
| function getdatabin(data) {
 | |
| 	if(!data) return null;
 | |
| 	if(data.data) return char_codes(data.data);
 | |
| 	if(data.asNodeBuffer && has_buf) return data.asNodeBuffer();
 | |
| 	if(data._data && data._data.getContent) {
 | |
| 		var o = data._data.getContent();
 | |
| 		if(typeof o == "string") return char_codes(o);
 | |
| 		return Array.prototype.slice.call(o);
 | |
| 	}
 | |
| 	return null;
 | |
| }
 | |
| 
 | |
| function getdata(data) { return (data && data.name.slice(-4) === ".bin") ? getdatabin(data) : getdatastr(data); }
 | |
| 
 | |
| /* Part 2 Section 10.1.2 "Mapping Content Types" Names are case-insensitive */
 | |
| /* OASIS does not comment on filename case sensitivity */
 | |
| function safegetzipfile(zip, file/*:string*/) {
 | |
| 	var k = keys(zip.files);
 | |
| 	var f = file.toLowerCase(), g = f.replace(/\//g,'\\');
 | |
| 	for(var i=0; i<k.length; ++i) {
 | |
| 		var n = k[i].toLowerCase();
 | |
| 		if(f == n || g == n) return zip.files[k[i]];
 | |
| 	}
 | |
| 	return null;
 | |
| }
 | |
| 
 | |
| function getzipfile(zip, file/*:string*/) {
 | |
| 	var o = safegetzipfile(zip, file);
 | |
| 	if(o == null) throw new Error("Cannot find file " + file + " in zip");
 | |
| 	return o;
 | |
| }
 | |
| 
 | |
| function getzipdata(zip, file/*:string*/, safe/*:?boolean*/)/*:any*/ {
 | |
| 	if(!safe) return getdata(getzipfile(zip, file));
 | |
| 	if(!file) return null;
 | |
| 	try { return getzipdata(zip, file); } catch(e) { return null; }
 | |
| }
 | |
| 
 | |
| function getzipstr(zip, file/*:string*/, safe/*:?boolean*/)/*:?string*/ {
 | |
| 	if(!safe) return getdatastr(getzipfile(zip, file));
 | |
| 	if(!file) return null;
 | |
| 	try { return getzipstr(zip, file); } catch(e) { return null; }
 | |
| }
 | |
| 
 | |
| function zipentries(zip) {
 | |
| 	var k = keys(zip.files), o = [];
 | |
| 	for(var i = 0; i < k.length; ++i) if(k[i].slice(-1) != '/') o.push(k[i]);
 | |
| 	return o.sort();
 | |
| }
 | |
| 
 | |
| var jszip;
 | |
| /*:: declare var JSZipSync:any; */
 | |
| /*global JSZipSync:true */
 | |
| if(typeof JSZipSync !== 'undefined') jszip = JSZipSync;
 | |
| if(typeof exports !== 'undefined') {
 | |
| 	if(typeof module !== 'undefined' && module.exports) {
 | |
| 		if(typeof jszip === 'undefined') jszip = require('./jszip.js');
 | |
| 	}
 | |
| }
 | |
| 
 | |
| function resolve_path(path/*:string*/, base/*:string*/)/*:string*/ {
 | |
| 	var result = base.split('/');
 | |
| 	if(base.slice(-1) != "/") result.pop(); // folder path
 | |
| 	var target = path.split('/');
 | |
| 	while (target.length !== 0) {
 | |
| 		var step = target.shift();
 | |
| 		if (step === '..') result.pop();
 | |
| 		else if (step !== '.') result.push(step);
 | |
| 	}
 | |
| 	return result.join('/');
 | |
| }
 |