aboutsummaryrefslogtreecommitdiff
path: root/js/io/system/chromeapi.js
blob: e53d484107730dd843cb7260bf271ccee0189939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
</copyright> */

/* /////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
NOTES:

	The init function starts up the file system API, and a size must be
	set, no unlimited available as of now.
	
////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////// */
//
var Montage = require("montage/core/core").Montage;
////////////////////////////////////////////////////////////////////////
//
exports.ChromeApi = Montage.create(Object.prototype, {
	////////////////////////////////////////////////////////////////////
    //Needs size in MBs for fileSystem init
    init: {
    	enumerable: true,
    	value: function(size) {
    		//
    		if (window.webkitRequestFileSystem) {
    			//Current way to init Chrome's fileSystem API
    			window.webkitRequestFileSystem(window.PERSISTENT, size*1024*1024, function (fs) {
    				//Storing reference to instance
    				this.fileSystem = fs;
    				//Dispatching action ready event
    				var readyEvent = document.createEvent("CustomEvent");
            		readyEvent.initEvent('ready', true, true);
            		this.dispatchEvent(readyEvent);
    				//Building data of local Ninja Library
    				this._listNinjaChromeLibrary();
    			}.bind(this), function (e) {return false}); //Returns false on error (not able to init)
    			//
    			return true;
    		} else {
    			//No fileSystem API
    			return false;
    		}
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    _fileSystem: {
        enumerable: false,
        value: null
    },
    ////////////////////////////////////////////////////////////////////
    //
    fileSystem: {
    	enumerable: false,
    	get: function() {
            return this._fileSystem;
        },
        set: function(value) {
        	this._fileSystem = value;
        }
    },
    ////////////////////////////////////////////////////////////////////
    //
    fileNew: {
    	enumerable: true,
    	value: function(filePath, content, callback) {
    		//
    		this.fileSystem.root.getFile(filePath, {create: true}, function(f) {
				//
				f.createWriter(function(writer) {
					//
					var mime, blob = new window.WebKitBlobBuilder, type = filePath.split('.');
					type = type[type.length-1];
					switch (type) {
						case 'bmp':
							mime = 'image/bmp';
							break;
						case 'gif':
							mime = 'image/gif';
							break;
						case 'jpeg':
							mime = 'image/jpeg';
							break;
						case 'jpg':
							mime = 'image/jpeg';
							break;
						case 'png':
							mime = 'image/png';
							break;
						case 'rtf':
							mime = 'application/rtf';
							break;
						case 'tif':
							mime = 'image/tiff';
							break;
						case 'tiff':
							mime = 'image/tiff';
							break;
						case 'pdf':
							mime = 'application/pdf';
							break;
						case 'zip':
							mime = 'application/zip';
							break;
						case 'svg':
							mime = 'image/svg+xml';
							break;
						default:
							mime = 'text/'+type;
							break;
					}
					//
               		blob.append(content);
               		writer.write(blob.getBlob(mime));
               		//
               		if (callback) callback(true);
				}, function (e) {if (callback) callback(false)});
			}, function (e) {if (callback) callback(false)});
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    fileDelete: {
    	enumerable: true,
    	value: function(filePath, callback) {
    		this.fileSystem.root.getFile(filePath, {create: false}, function(file) {
    			file.remove(function() {
    				if (callback) callback(true);
    			});
    		}, function (e) {if (callback) callback(false)});
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    fileContent: {
    	enumerable: true,
    	value: function(filePath, callback) {
    		//
    		this.fileSystem.root.getFile(filePath, {}, function(f) {
    			f.file(function(file) {
    				var reader = new FileReader();
    				reader.onloadend = function(e) {
         				if (callback) {
         					callback({content: this.result, data: file, file: f, url: f.toURL()});
         				}
       				};
       				reader.readAsArrayBuffer(file);
    			}, function (e) {if (callback) callback(false)});
    		}, function (e) {if (callback) callback(false)});
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    fileCopy: {
    	enumerable: true,
    	value: function() {
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    fileRename: {
    	enumerable: true,
    	value: function() {
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    fileMove: {
    	enumerable: true,
    	value: function() {
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //Creating directory from path, callback optional
    directoryNew: {
    	enumerable: true,
    	value: function(directoryPath, callback) {
    		//Checking for directory not to already exist
    		this.fileSystem.root.getDirectory(directoryPath, {}, function(dir) {
    			if (callback) callback(false);
    			return false; //Directory already exists
    		});
    		//Creating new directory
    		this.fileSystem.root.getDirectory(directoryPath, {create: true}, function(dir) {
				if (callback) callback(true);
			}, function (e) {if (callback) callback(false)});
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    directoryDelete: {
    	enumerable: true,
    	value: function(directoryPath, callback) {
    		//
    		this.fileSystem.root.getDirectory(directoryPath, {}, function(dir) {
    			//
    			dir.removeRecursively(function() {
      				if (callback) callback(true);
    			});
    		}, function (e) {if (callback) callback(false)});
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //Returns the directory contents to a callback function
    directoryContents: {
    	enumerable: true,
    	value: function(directory, callback) {
    		//Creating instance of directory reader
    		this.fileSystem.directoryReader = directory.createReader();
    		//Getting directory contents and sending results to callback
    		this.fileSystem.directoryReader.readEntries(function(results) {
    			//Calling callback with results (null if invalid directory)
    			callback(results);
    		}, function (e) {callback(null)});
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    directoryCopy: {
    	enumerable: true,
    	value: function() {
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    directoryRename: {
    	enumerable: true,
    	value: function() {
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    directoryMove: {
    	enumerable: true,
    	value: function() {
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    _listNinjaChromeLibrary: {
    	enumerable: false,
        value: function () {
        	function parseLibrary (contents) {
        		//
        		var lib = [];
        		//
        		for(var i=0; contents[i]; i++) {
        			//
        			if (contents[i].isDirectory) {
        				lib.push(contents[i].name);
        			}
        		}
        		//Dispatching action ready event
    			var libraryEvent = document.createEvent("CustomEvent");
            	libraryEvent.initEvent('library', true, true);
            	libraryEvent.ninjaChromeLibrary = lib;
            	this.dispatchEvent(libraryEvent);
        	};
        	//
        	this.directoryContents(this.fileSystem.root, parseLibrary.bind(this));
        }
    }
    ////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////   
});
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////