aboutsummaryrefslogtreecommitdiff
path: root/js/io/system/fileio.js
blob: f78ad17391846ae1bb1e2ffc35bccf030e2136e9 (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
/* <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,
	Component = require("montage/ui/component").Component;
////////////////////////////////////////////////////////////////////////
//Exporting as File I/O
exports.FileIo = Montage.create(Component, {
	////////////////////////////////////////////////////////////////////
    //Creating new file
    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({uri: 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);
    					status = create.status;
    					break;
    				default:
    					//Unknown Error
    					status = 500;
    					break;
    			}
	   		} else {
	    		//Unknown Error
	    		status = 500;
    		}
    		//Returning resulting code
    		return status;
		    //	204: File exists (not created) | 400: File exists | 404: File does not exists
		    //	201: File succesfully created | 500: Unknown
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //Reading contents from file
    readFile: {
    	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({uri: file.uri}), status, create, result;
    		//Upon successful check, handling results
    		if (check.success) {
    			//Handling status of check
    			switch (check.status) {
    				case 204:
    					//File exists
    					result = {};
    					result.content = this.application.ninja.coreIoApi.readFile(file).content;
    					result.details = this.infoFile(file);
    					status = check.status;
    					break;
    				case 404:
    					//File does not exists
    					status = check.status;
    					break;
    				default:
    					//Unknown Error
    					status = 500;
    					break;
    			}
	   		} else {
	    		//Unknown Error
	    		status = 500;
    		}
    		//Returning status and result (null if none)
    		return {status: status, file: result};
    		//Status Codes
    		//	204: File exists | 404: File does not exists | 500: Unknown
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //Saving file (existing file or creates and saves if none exists)
    saveFile: {
    	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({uri: file.uri}), status, result;
    		//Upon successful check, handling results
    		if (check.success) {
    			//Handling status of check
    			switch (check.status) {
    				case 204:
    					//File exists
    					result = this.application.ninja.coreIoApi.updateFile(file);
    					status = 204;
    					break;
    				case 404:
    					//File does not exists, ready to be created
    					result = this.application.ninja.coreIoApi.createFile(file);
    					status = 404;
    					break;
    				default:
    					//Unknown Error
    					status = 500;
    					break;
    			}
	   		} else {
	    		//Unknown Error
	    		status = 500;
    		}
    		//Returning status and result (null if none)
    		return {status: status, result: result};
    		//Status Codes
    		//	204: File exists | 404: File does not exists | 500: Unknown
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    deleteFile: {
    	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(file) {
    		//Checking for API to be available
    		if (!this.application.ninja.coreIoApi.cloudAvailable()) {
    			//API not available, no IO action taken
    			return null;
    		}
    		//
    		var check = this.application.ninja.coreIoApi.fileExists({uri: file.uri}), details;
    		//
    		if (check.success) {
    			//Handling status of check
    			switch (check.status) {
    				case 204:
    					//File exists
    					details = JSON.parse(this.application.ninja.coreIoApi.isFileWritable(file).content);
    					details.uri = file.uri;
    					details.name = this.getFileNameFromPath(file.uri);
    					details.extension = details.name.split('.')[details.name.split('.').length-1];
    					details.status = 204;
    					break;
    				case 404:
    					//File does not exists, ready to be created
    					details = {status: 404, uri: file.uri, name: this.getFileNameFromPath(file.uri)};
    					break;
    				default:
    					//Unknown Error
    					details = {status: 500, uri: file.uri, name: this.getFileNameFromPath(file.uri)};
    					break;
    			}
	   		} else {
	    		//Unknown Error
	    		details = {status: 500, uri: file.uri, name: this.getFileNameFromPath(file.uri)};
    		}
    		return details;
    	}
    },
    ////////////////////////////////////////////////////////////////////
    //
    getFileNameFromPath : {
        value: function(path) {
            path = path.replace(/[/\\]$/g,"");
            path = path.replace(/\\/g,"/");
            return path.substr(path.lastIndexOf('/') + 1);
        }
    }
    ////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////   
});
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////