-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatmos.js
441 lines (381 loc) · 12.6 KB
/
atmos.js
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
function get_date() {
return new Date().toGMTString();
}
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g,"");
}
function normalizeWS (str) {
str = str.replace(/\n/," ");
return str.replace(/\s+/," ");
}
function AtmosRest(k,u, host) {
this.key = k;
this.uid = u;
this.endpoint = host;
this.client = new XMLHttpRequest();
this.setKey = function(k) {
this.key = k;
}
this.setUID = function(u) {
this.uid = u;
}
this.http = function (method, endpoint, emcheaders,data,callback) {
if(!this.client) {
this.client = new XMLHttpRequest();
}
var temparray = new Array()
emcheaders.each(function(h) {
temparray.push(h.key);
});
this.client.open(method, endpoint, true);
for ( var i = 0; i < temparray.length ; i ++) {
this.client.setRequestHeader(temparray[i], emcheaders.get(temparray[i]));
}
this.client.onreadystatechange = callback;
//This may need to be removed - Force all mime types to user defined?
//this.client.overrideMimeType('text/plain; charset=x-user-defined');
if(method == "PUT") {
this.client.sendAsBinary(data);
} else {
this.client.send(data);
}
}
this.emcrest = function(method, endpoint,hdrs,content_type,range, path, data, callback) {
var date = get_date();
var emcheaders;
if (hdrs == "") {
emcheaders= new Hash();
} else {
emcheaders = hdrs;
}
if( content_type == "" || content_type == undefined) {
content_type = "text/plain;charset=UTF-8";
}
if ( content_type.indexOf("charset") == -1 ) { content_type += "; charset=UTF-8";}
emcheaders.set("X-Emc-Date", date);
emcheaders.set("X-Emc-Uid", this.uid);
var path = "/rest/namespace" + path;
var hash_string = this.build_hash_string(method, content_type,range, "",path, emcheaders);
signature = this.do_signature(hash_string,this.key);
emcheaders.set("X-Emc-Signature",signature);
emcheaders.set("content-type",content_type);
console.log(content_type);
this.http(method, endpoint+path, emcheaders,data, callback);
}
this.getShareableURL = function(path, expiry) {
var method = "GET";
var resource = "/rest/namespace" + path;
//ghetto sign
var stringToSign = method + "\n";
stringToSign += resource.toLowerCase() + "\n";
stringToSign += this.uid + "\n";
stringToSign += expiry;
sig = this.do_signature(stringToSign, this.key);
var shareable = this.endpoint + resource + "?uid=" + this.uid + "&expires=" + expiry + "&signature=" + encodeURIComponent(sig);
return shareable;
}
this.build_hash_string = function(method, content_type, range, date, path, headers){
var emcheaders = headers;
var string = "";
string = method + "\n";
if (content_type) {
string += content_type + "\n";
} else {
string +="\n";
}
if (range) {
string += range + "\n";
} else {
string +="\n";
}
if (date) {
string += date+'\n';
} else {
string +="\n";
}
string += path.toLowerCase().trim() + "\n";
emcheaders.each(function(pair) {
var key = normalizeWS(pair.key.toLowerCase().trim());
var value = normalizeWS(pair.value.trim());
emcheaders.unset(pair.key);
emcheaders.set(key,value);
});
emcheaders.keys().sort().each (function (k) {
string += k+":" + emcheaders.get(k) + "\n";
});
return string.trim();
}
this.do_signature = function(string, secret) {
var sig = Crypto.HMAC(Crypto.SHA1,string, Crypto.util.base64ToBytes(secret), {asBytes:true});
return Crypto.util.bytesToBase64(sig);
}
//acls = UID=FULL_CONTROL etc
//groupacls not support currently
this.setACL = function(path, acls, onComp) {
path += "?acl";
var method = "POST";
var range = "";
var acllist = ""
if (acls == undefined) {
metadata = new Hash() ;
}
acls.each ( function(pair) {
if (acllist != "") {
acllist += "," + pair.key + "=" + pair.value;
} else {
acllist += pair.key + "=" + pair.value;
}
});
var hdrs = new Hash();
if(acllist.length>2) {
hdrs.set("x-emc-useracl", acllist);
}
var client = this.client;
this.emcrest(method, this.endpoint, hdrs, "", range, path, "",function() {
if(client.status == 200 && client.readyState == 4) {
if(client.responseXML != null)
;// console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 200) {
;//console.log("non 200 failure");
;//console.log(client.responseText);
}
});
}
this.list = function(path, onComp) {
var method = "GET";
var content_type = "";//"text/plain;charset=UTF-8";
var range = "";
var client = this.client;
if(!onComp) { onComp="";}
this.emcrest(method, this.endpoint, "", content_type, range, path,"",function() {
if(client.status == 200 && client.readyState == 4) {
var parser=new DOMParser();
xmlDoc=parser.parseFromString(client.responseText,"text/xml");
if (onComp.onSuccess) onComp.onSuccess(xmlDoc);
if(client.responseXML != null)
;
else
;
} else if (client.readyState == 4 && client.status != 200) {
;
if (onComp.onFailure) onComp.onFailure();
}
});
}
this.getACL = function (path, onComp) {
path +="?acl"
var method = "GET";
var content_type = "";//"text/plain;charset=UTF-8";
var range = "";
var client = this.client
this.emcrest(method, this.endpoint, "", content_type, range, path, "",function() {
if(client.status == 200 && client.readyState == 4) {
;//console.log(client.responseText);
if(client.responseXML != null)
;//console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 200) {
;//console.log(client.responseText);
}
});
}
this.getListableTags = function getListableTags(datapath) {
var method = "GET";
var range = "";
var client = this.client;
this.emcrest(method, this.endpoint, "", content_type, range, path, "",function() {
if(client.status == 200 && client.readyState == 4) {
;//console.log(client.responseText);
if(client.responseXML != null)
;//console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 200) {
;//console.log(client.responseText);
}
});
}
this.getUserMetaData = function(path, onComp) {
path +="?metadata/user";
var method = "GET";
var range = "";
var client= this.client;
this.emcrest(method, this.endpoint, "", "", range, path, "",function() {
if(client.status == 200 && client.readyState == 4) {
;//console.log(client.getResponseHeader("x-emc-listable-meta"));
;//console.log(client.responseText);
if(client.responseXML != null)
;//console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 200) {
;//console.log(client.responseText);
}
});
}
this.getVersions = function(path, onComp) {
path +="?versions";
var method = "GET";
var range = "";
var client= this.client;
this.emcrest(method, this.endpoint, "", "", range, path, "",function() {
if(client.status == 200 && client.readyState == 4) {
;//console.log(client.responseText);
if(client.responseXML != null)
;//console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 200) {
;//console.log(client.responseText);
}
});
}
this.getSystemMetaData = function(path, onComp) {
path +="?metadata/system";
var method = "GET";
var range = "";
var client= this.client;
this.emcrest(method, this.endpoint, "", "", range, path, "",function() {
if(client.status == 200 && client.readyState == 4) {
;//console.log(client.responseText);
;//console.log(client.getResponseHeader("x-emc-meta"));
if(client.responseXML != null)
;//console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 200) {
;//console.log(client.responseText);
}
});
}
this.version = function(path,onComp) {
path +="?versions";
var method = "POST";
var range = "";
var client = this.client;
var content_type = "";
if(!onComp) { onComp = "";}
this.emcrest(method, this.endpoint, "", content_type, range, path, "",function() {
if(client.status == 201) {
;//console.log(client.responseText);
if (onComp.onSuccess) onComp.onSuccess();
} else if (client.readyState == 4 && client.status != 200) {
;//console.log(client.responseText);
if (onComp.onFailure) onComp.onFailure();
}
});
}
//unlistablemetadata = {key: value, key2 : value2}
//listablemetadata = = {key: value, key2 : value2}
this.setUserMetaData = function(path, metadata, nonlistable,onComp) {
path += "?metadata/user";
var method = "POST";
var range = "";
var listable = "";
var unlistable = "";
if(!onComp) {onComp = "";}
if (!metadata) {
metadata = new Hash() ;
}
if(!nonlistable) {
nonlistable = new Hash();
}
metadata.each ( function(pair) {
if (listable != "") {
listable += "," + pair.key + "=" + pair.value;
} else {
listable += pair.key + "=" + pair.value;
}
});
nonlistable.each ( function(pair) {
if (unlistable != "") {
unlistable += "," + pair.key + "=" + pair.value;
} else {
unlistable += pair.key + "=" + pair.value;
}
});
var hdrs = new Hash();
if(listable.length>2) {
hdrs.set("x-emc-listable-meta", listable);
}
if(unlistable.length >2) {
hdrs.set("x-emc-meta",unlistable);
}
var client = this.client;
this.emcrest(method, this.endpoint, hdrs, "", range, path, "",function() {
if(client.status == 200 && client.readyState == 4) {
;//console.log(client.responseText);
if(onComp.onSuccess) { onComp.onSuccess();}
if(client.responseXML != null)
;//console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 200) {
;//console.log(client.responseText);
}
});
}
this.create = function(path, content_type,onComp) {
var method = "POST";
var range = "";
var client = this.client;
if (!content_type) {
content_type = "application/octet-strem";
}
if (!onComp) {onComp="";}
this.emcrest(method, this.endpoint, "", content_type, range, path, "",function() {
if(client.status == 201 && client.readyState == 4) {
;//console.log("201 response text\n" + client.responseText);
if (onComp.onSuccess) onComp.onSuccess();
} else if (client.readyState == 4 && client.status != 200) {
;//console.log("ready &&!=200" + client.responseText);
if (onComp.onFailure) onComp.onFailure();
}
});
}
this.jsdelete = function (path, onComp) {
var method = "DELETE";
var content_type = "text/plain;charset=UTF-8";
var range = "";
var client = this.client
if (!onComp) {onComp = "";};
this.emcrest(method, this.endpoint, "", content_type, range, path,"",function() {
if(client.status == 204 && client.readyState == 4) {
;//console.log(client.responseText);
if (onComp.onSuccess) {onComp.onSuccess();}
if(client.responseXML != null)
;//console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 204) {
if(onComp.onFailure) { onComp.onFailure();}
;//console.log(client.responseText);
}
});
}
this.update = function(path, data,content_type, onComp) {
var method = "PUT";
if(!content_type) {
content_type = "text/html;charset=UTF-8";
}
if (onComp == undefined) { onComp = ""; }
var range = "";
var client = this.client
this.emcrest(method, this.endpoint, "", content_type, range, path, data,function() {
if(client.status == 200 && client.readyState == 4) {
if (onComp.onSuccess) onComp.onSuccess();
;//console.log(client.responseText);
if(client.responseXML != null)
;//console.log("success");
else
;//console.log(client.responseText);
} else if (client.readyState == 4 && client.status != 200) {
if (onComp.onFailure) onComp.onFailure();
;//console.log(client.responseText);
}
});
}
}