aboutsummaryrefslogtreecommitdiff
path: root/js/io/system/fileio.js
blob: 4ab9860609c5f2ce4607edfca00079fdd0105b92 (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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/* <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:

	For newFile, only the 'uri' is required, if contents is empty, such
	empty file will be created. 'contents' should be a string to be saved
	as the file. 'contentType' is the mime type of the file.
	
	Core API reference in NINJA: this.application.ninja.coreIoApi
	
////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////// */
//
var Montage = 		require("montage/core/core").Montage;
////////////////////////////////////////////////////////////////////////
//Exporting as File I/O
exports.FileIo = Montage.create(Object.prototype, {
	////////////////////////////////////////////////////////////////////
    //newFile Object (*required): {uri*, contents, contentType}
    //Return codes
    //	204: File exists | 400: File exists | 404: File does not exists
    //	201: File succesfully created | 500: Unknown | undefined: Unknown
    newFile: {
    	enumerable: true,
    	value: function(file) {
    		//Checking for API to be available
    		if (!this.application.ninja.coreIoApi.cloudAvailable()) {
    			//API not available, no IO action taken
    			return null;
    		}
    		//Peforming check for file to exist
    		var check = this.application.ninja.coreIoApi.fileExists(file.uri), status, create;
    		//Upon successful check, handling results
    		if (check.success) {
    			//Handling status of check
    			switch (check.status) {
    				case 204:
    					//Storing status to be returned (for UI handling)
    					status = check.status;
    					break;
    				case 404:
    					//File does not exists, ready to be created
    					create = this.application.ninja.coreIoApi.createFile(file);
    					//Storing status to be returned (for UI handling)
    					if (create.success) {
    						status = check.status;
    					}
    					break;
    				default:
    					//Unknown Error
    					break;
    			}
	   		} else {
	    		//Unknown Error
    		}
    		//Returning resulting code
    		return status;
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    readFile: {
    	enumerable: true,
    	value: function() {
    		//Checking for API to be available
    		if (!this.application.ninja.coreIoApi.cloudAvailable()) {
    			//API not available, no IO action taken
    			return null;
    		}
    		//
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    saveFile: {
    	enumerable: true,
    	value: function() {
    		//Checking for API to be available
    		if (!this.application.ninja.coreIoApi.cloudAvailable()) {
    			//API not available, no IO action taken
    			return null;
    		}
    		//
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    copyFile: {
    	enumerable: true,
    	value: function() {
    		//Checking for API to be available
    		if (!this.application.ninja.coreIoApi.cloudAvailable()) {
    			//API not available, no IO action taken
    			return null;
    		}
    		//
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    infoFile: {
    	enumerable: true,
    	value: function() {
    		//Checking for API to be available
    		if (!this.application.ninja.coreIoApi.cloudAvailable()) {
    			//API not available, no IO action taken
    			return null;
    		}
    		//
    	}
    }
    ////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*
open: {
    	enumerable: true,
    	value: function(doc, type, uri, server) {
    		//
    		var file = {}, head, body, h, b;
    		file.uri = uri;
    		file.server = server;
    		//
    		if (doc.content) {
    			if (type === 'html' || type === 'htm') {
    				//
    				h = doc.content.split('</head>');
    				h = h[0].split('<head>');
    				head = h[1];
    				//
    				b = doc.content.split('</body>');
    				b = b[0].split('<body>');
    				body = b[1];
    				//
    				file.type = 'html';
    				file.head = head;
    				file.body = body;
    			} else {
    				//TODO: Add other file type routines
    				file.type = type;
    				file.content = doc.content;
    			}		
    		} else {
   				//TODO: File is empty
   				if (type === 'html' || type === 'htm') {
   					head = '';
   					body = '';
   					//
   					file.type = 'html';
    				file.head = head;
    				file.body = body;
   				} else {
   					//TODO: Add other file type routines
    				file.type = type;
    				file.content = doc.content;
   				}
   			}
   			//TODO: Load contents into App
            //documentManagerModule.DocumentManager.openDocument(file);
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    save: {
    	enumerable: true,
    	value: function(type, id, components) {
    		
    		
    		
    		//
    		var contents, counter = 0;
    		//Checking for document type to go through saving routine
    		switch (type.toLowerCase()) {
    			case 'html':
    				//Checking for components in components panel
    				if (components) {
    					var comps = '', comp, html, mbind, hackParams = '', compSerializer = Serializer.create();
    					//TODO: Check if this is needed since compSerializer was localized
						compSerializer._serializedObjects = [];
						//
    					html = document.getElementById(id).contentDocument.getElementById('UserContent').innerHTML;
    					//
    					for(var i in components){
    						//
    						comp = compSerializer.serializeObject(components[i]);
    						//TODO: Remove this HACK
    						if (components[i]._montage_metadata.__proto__.objectName == 'PhotoEditor') {
    							if (components[i].pathToJSON) {
    								hackParams = '"pathToJSON": "'+components[i].pathToJSON+'",\n';
    							}
    						} else {
    							
    						}
    						var split = comp.split('"element":U("m-obj://undefined/'+components[i]._element.uuid);
    						comp = split[0]+hackParams+'\t"element":E("#'+components[i]._element.id+split[1];
    						if (document.getElementById(id).contentDocument.getElementById(components[i]._originalElementId).innerHTML.length > 2) {
    							split = html.split(document.getElementById(id).contentDocument.getElementById(components[i]._originalElementId).innerHTML);
    							html = split[0]+split[1];
    						}
    						//
    						if (counter > 0) {
    							comps += ',\n'+comp;
    						} else {
    							comps += comp;
    						}
    						counter++;
    	       			}
            	
            			for(var i in components){
            				//
            				if (components[i]._bindingDescriptors){
            					var split = comps.split('U("m-obj://undefined/'+components[i]._bindingDescriptors.uuid+'", {\n    })');
    							comps = split[0]+'\n'+
    									'{\n'+
                                    	'"'+components[i].binding.sourceProperty+'": {\n'+
                                        '"boundObject": U("m-obj://'+components[i].binding.target._montage_metadata.__proto__.objectName+'/'+components[i].binding.target.uuid+'?mId='+components[i].binding.target._montage_metadata.__proto__.moduleId+'"),\n'+
                                        '"boundObjectPropertyPath": "'+components[i].binding.targetProperty+'"\n'+
                                    	'}\n'+
                                		'}\n'+
    									split[1];
    						}
            			}
    					var montage = 	'<script type="text/m-objects">\n\t\t\t{\n'+
    									'\t\t\t"$rootObject": U("m-obj://Application/application-uuid?mId=montage/application", {\n'+
            							'\t\t\t\t"components": [\n'+
           								comps+
            							'\n\t\t\t\t]\n\t\t\t})\n\t\t\t}\n\t\t</script>';
								    	
    					contents = '<html>\n\t<head>'+document.getElementById(id).contentDocument.getElementById('userHead').innerHTML+'\n\t\t'+montage+'\n\t</head>\n\t<body>\n'+html+'\n\t</body>\n</html>';
    				} else {
    					//No m-js components in file, so saving plain document HTML
    					contents = '<html>\n\t<head>'+document.getElementById(id).contentDocument.getElementById('userHead').innerHTML+'\n\t</head>\n\t<body>\n'+document.getElementById(id).contentDocument.getElementById('UserContent').innerHTML+'\n\t</body>\n</html>';
    				}
    				break;
    			case 'css':
    				contents = this.getCssFromRules(document.getElementById(id).contentDocument.styleSheets[document.getElementById(id).contentDocument.styleSheets.length-1].cssRules);
    				break;
    			case 'js':
    				break;
    			case 'text':
    				break;
    			default:
    				break;
    		}
    		
    		
    		return contents;
    		
    		
    		
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    saveAs: {
    	enumerable: true,
    	value: function(e) {
    		//TODO: Add functionality
    		console.log('FileIO: saveFileAs');
    	}
    },
    
    
    
    
    ////////////////////////////////////////////////////////////////////
    //Method to return a string from CSS rules (to be saved to a file)
    getCssFromRules: {
    	enumerable: false,
    	value: function (list) {
    		//Variable to store CSS definitions
    		var i, str, css = '';
    		//Looping through list
    		if (list && list.length > 0) {
    			//Adding each list item to string and also adding breaks
    			for (i = 0; list[i]; i++) {
    				str = list[i].cssText+' ';
    				str = str.replace( new RegExp( "{", "gi" ), "{\n\t" );
    				str = str.replace( new RegExp( "}", "gi" ), "}\n" );
    				str = str.replace( new RegExp( ";", "gi" ), ";\n\t" );
    				css += '\n'+str;
    			}
    		}
    		//Returning the CSS string
    		return css;
    	}
    }
*/
    
    
    

    
});
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////