forked from lweeks/atmos-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEsuRestApi.py
More file actions
1599 lines (1159 loc) · 58.7 KB
/
Copy pathEsuRestApi.py
File metadata and controls
1599 lines (1159 loc) · 58.7 KB
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
from __future__ import print_function
import hmac, base64, hashlib, time
import urllib2, urllib
import socket
import re, urlparse
import traceback
import xml.etree
from xml.etree.ElementTree import fromstring, Element, ParseError
DEBUG = False
SIMULATE = False
READ_CHUNK_SIZE = 16 * 1024
ESU_XML_PARSE_ERROR = "000"
HDR_X_CLIENT_REQUEST_ID = "x-client-request-id"
TRACE_HEADERS = False
class EsuRestApi(object):
ID_EXTRACTOR = "/[0-9a-zA-Z]+/objects/([0-9a-f-]+)"
def __init__(self, host, port, uid, secret, timeout=60, ssl=False, client_id_header=False):
""" Constructor that sets up the URL and appropriate credentials used to sign HTTP requests """
self.host, self.port, self.uid, self.secret = host, port, uid, secret
self.timeout = float(timeout)
self.tag = "EsuRestApi"
# We support sending an identifier either via the request query string,
# or via the x-client-request-id header. That header was added
# in Atmos HF443.
self.client_id_header_mode = False
socket.setdefaulttimeout(self.timeout)
current_timeout = socket.getdefaulttimeout()
if current_timeout:
print("{}: socket timeout {}".format(self.tag, current_timeout))
else:
print("{}: no socket timeout set".format(self.tag))
if self.port == 443 or ssl is True:
print("{}: sending SSL HTTP request".format(self.tag))
self.scheme, self.netloc, self.path, self.params, self.query, self.fragment = "https", host, '', '', '', ''
self.urlparts = (self.scheme, self.netloc, self.path, self.params, self.query, self.fragment)
self.url = urlparse.urlunparse(self.urlparts)
else:
print("{}: sending HTTP request, no SSL".format(self.tag))
self.scheme, self.netloc, self.path, self.params, self.query, self.fragment = "http", host + ":" + str(port), '', '', '', ''
self.urlparts = (self.scheme, self.netloc, self.path, self.params, self.query, self.fragment)
self.url = urlparse.urlunparse(self.urlparts)
self.client_id_header_mode = client_id_header
def create_object(self, data="", user_acl=None, listable_meta=None, non_listable_meta=None, mime_type=None,
checksum=None, group_acl=None, keypool=None, generate_checksum=None, client_id=None,
force_overwrite=False):
""" Creates an object in the object interface and returns an object_id.
Keyword arguments:
listable_meta -- a dictionary containing key/value pairs. Ex. {"key1 : "value", "key2" : "value2", "key3" : "value3"} (default None)
non_listable_meta -- a dictionary containing key/value pairs. Ex. {"nl_key1/patriots" : "value", "nl_key2" : "value2", "nl_key3" : "value3"} (default None)
data -- the object data itself, must not be empty
"""
if mime_type == None and data != None:
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
headers = "POST\n"
headers += mime_type+"\n"
headers += "\n"
headers += now+"\n"
headers += "/rest/objects\n"
headers += "x-emc-date:"+now+"\n"
request = RequestWithMethod("POST", self.url+"/rest/objects")
request.add_header("content-type", mime_type)
self.__add_client_id_header(request, client_id)
request.add_data(data)
if force_overwrite:
headers += "x-emc-force-overwrite:true\n"
request.add_header("x-emc-force-overwrite", "true")
if generate_checksum:
hdr = "x-emc-generate-checksum"
val = generate_checksum
headers += hdr + ":" + val + "\n"
request.add_header(hdr, val)
if group_acl:
headers += "x-emc-groupacl:" + group_acl + "\n"
request.add_header('x-emc-groupacl', group_acl)
if listable_meta:
meta_string = self.__process_metadata(listable_meta)
headers += "x-emc-listable-meta:"+meta_string+"\n"
request.add_header("x-emc-listable-meta", meta_string)
if non_listable_meta:
nl_meta_string = self.__process_metadata(non_listable_meta)
headers += "x-emc-meta:"+nl_meta_string+"\n"
request.add_header("x-emc-meta", nl_meta_string)
if keypool:
hdr = "x-emc-pool"
val = keypool
headers += hdr + ":" + val + "\n"
request.add_header(hdr, val)
headers += "x-emc-uid:"+self.uid
if user_acl:
headers += "\nx-emc-useracl:"+user_acl
request.add_header("x-emc-useracl", user_acl)
if checksum:
headers += "\nx-emc-wschecksum:" + checksum
request.add_header("x-emc-wschecksum", checksum)
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
return_response = dict()
return_response['headers'] = dict()
try:
response = self.__send_request(request, hashout, headers)
for hdr in ('location', 'x-emc-delta', 'x-emc-policy', 'x-emc-content-checksum'):
return_response['headers'][hdr] = response.info().getheader(hdr)
except urllib2.HTTPError, e:
if e.code == 201:
return_response['object_id'] = self.__parse_location(e)
return return_response
else:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
# If there was no HTTPError, parse the location header in the response body to get the object_id
return_response['object_id'] = self.__parse_location(response)
return return_response
def create_object_on_path(self, path, user_acl=None, listable_meta=None, non_listable_meta=None, mime_type=None,
data="", group_acl=None, checksum=None, keypool=None, generate_checksum=None,
client_id=None, force_overwrite=False):
""" Creates an object in the namespace interface and returns an object_id.
Keyword arguments:
path -- the path in the namespace where the object should be created. Non-existent directories will be automatically created.
listable_meta -- a dictionary containing key/value pairs. Ex. {"key1 : "value", "key2" : "value2", "key3" : "value3"} (default None)
non_listable_meta -- a dictionary containing key/value pairs. Ex. {"nl_key1/patriots" : "value", "nl_key2" : "value2", "nl_key3" : "value3"} (default None)
data -- the object data itself, must not be empty
"""
if path[0] != "/":
path = "/" + path
if mime_type == None:
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
headers = "POST\n"
request = RequestWithMethod("POST", self.__get_query_client_id(
self.url+"/rest/namespace"+urllib.quote(path), client_id
))
headers += mime_type+"\n"
request.add_header("content-type", mime_type)
self.__add_client_id_header(request, client_id)
headers += "\n"
headers += now+"\n"
headers += self.__get_query_client_id("/rest/namespace"+str.lower(path), client_id, quote=False) + "\n"
headers += "x-emc-date:"+now+"\n"
if force_overwrite:
headers += "x-emc-force-overwrite:true\n"
request.add_header("x-emc-force-overwrite", "true")
if generate_checksum:
hdr = "x-emc-generate-checksum"
val = generate_checksum
headers += hdr + ":" + val + "\n"
request.add_header(hdr, val)
if group_acl:
headers += "x-emc-groupacl:" + group_acl + "\n"
request.add_header('x-emc-groupacl', group_acl)
if listable_meta:
meta_string = self.__process_metadata(listable_meta)
headers += "x-emc-listable-meta:"+meta_string+"\n"
request.add_header("x-emc-listable-meta", meta_string)
if non_listable_meta:
nl_meta_string = self.__process_metadata(non_listable_meta)
headers += "x-emc-meta:"+nl_meta_string+"\n"
request.add_header("x-emc-meta", nl_meta_string)
if keypool:
hdr = "x-emc-pool"
val = keypool
headers += hdr + ":" + val + "\n"
request.add_header(hdr, val)
headers += "x-emc-uid:"+self.uid
if user_acl:
headers += "\nx-emc-useracl:"+user_acl
request.add_header("x-emc-useracl", user_acl)
if checksum:
headers += "\nx-emc-wschecksum:" + checksum
request.add_header("x-emc-wschecksum", checksum)
request = self.__add_headers(request, now)
request.add_data(data)
hashout = self.__sign(headers)
return_response = dict()
return_response['headers'] = dict()
try:
response = self.__send_request(request, hashout, headers)
for hdr in ('location', 'x-emc-delta', 'x-emc-policy', 'x-emc-content-checksum'):
return_response['headers'][hdr] = response.info().getheader(hdr)
except urllib2.HTTPError, e:
if e.code == 201:
return_response['object_id'] = self.__parse_location(e)
return return_response
else:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
# If there was no HTTPError, parse the location header in the response body to get the object_id
return_response['object_id'] = self.__parse_location(response)
return return_response
def list_objects(self, metadata_key, include_meta=False, filter_user_tags=None):
""" Takes a listable metadata key and returns a list of objects that match.
Keyword arguments:
metadata_key -- the Atmos key portion of the key/value pair
include_meta -- optionally returns an object list with system and user metadata (default False)
"""
if metadata_key[0] == "/":
metadata_key = metadata_key[1:]
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
request = urllib2.Request(self.url+"/rest/objects")
headers = "GET\n"
headers += mime_type+"\n"
headers += "\n"
headers += now+"\n"
headers += "/rest/objects"+"\n"
headers += "x-emc-date:"+now+"\n"
if include_meta:
headers += "x-emc-include-meta:"+str(1)+"\n"
request.add_header("x-emc-include-meta", str(1))
headers += "x-emc-tags:"+metadata_key+"\n"
if filter_user_tags:
headers += "x-emc-uid:"+self.uid+"\n"
headers += "x-emc-user-tags:"+filter_user_tags
request.add_header("x-emc-user-tags", filter_user_tags)
else:
headers += "x-emc-uid:"+self.uid
request.add_header("content-type", mime_type)
request.add_header("x-emc-tags", metadata_key)
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
try:
response = self.__send_request(request, hashout, headers)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
object_list = response.read()
parsed_list = self.__parse_list_objects_response(object_list, include_meta=include_meta)
if response.info().getheader('x-emc-token'):
token = response.info().getheader('x-emc-token')
return parsed_list, token,
return parsed_list, None,
def list_directory(self, path, limit=None, include_meta=False, token=None, filter_user_tags=None):
""" Lists objects in the namespace based on path
Keyword arguments:
path -- the path used to generate a list of objects
"""
if path[0] != "/":
path = "/" + path
request = urllib2.Request(self.url+"/rest/namespace"+urllib.quote(path))
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
headers = "GET\n"
headers += mime_type+"\n"
headers += "\n"
headers += now+"\n"
headers += "/rest/namespace"+str.lower(path)+"\n"
headers += "x-emc-date:"+now+"\n"
if include_meta:
headers += "x-emc-include-meta:"+str(1)+"\n"
request.add_header("x-emc-include-meta", str(1))
if limit:
headers += "x-emc-limit:"+str(limit)+"\n"
request.add_header('x-emc-limit', limit)
if token:
headers += "x-emc-token:" + token + "\n"
request.add_header('x-emc-token', token)
if filter_user_tags:
headers += "x-emc-uid:"+self.uid+"\n"
headers += "x-emc-user-tags:"+filter_user_tags
request.add_header("x-emc-user-tags", filter_user_tags)
else:
headers += "x-emc-uid:"+self.uid
request.add_header("content-type", mime_type)
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
try:
response = self.__send_request(request, hashout, headers)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
dir_list = response.read()
parsed_list = self.__parse_list_directory_response(dir_list, include_meta=include_meta)
if response.info().getheader('x-emc-token'):
token = response.info().getheader('x-emc-token')
return parsed_list, token,
else:
return parsed_list, None,
def delete_object(self, object_id, client_id=None):
""" Deletes objects based on object_id. """
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
headers = "DELETE\n"
headers += mime_type+"\n"
headers += "\n"
headers += now+"\n"
headers += "/rest/objects/"+object_id+"\n"
headers += "x-emc-date:"+now+"\n"
headers += "x-emc-uid:"+self.uid
request = RequestWithMethod("DELETE", "%s/%s" % (self.url+"/rest/objects", object_id))
request.add_header("content-type", mime_type)
self.__add_client_id_header(request, client_id)
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
return_response = dict()
return_response['headers'] = dict()
try:
response = self.__send_request(request, hashout, headers)
for hdr in ('x-emc-policy', 'x-emc-delta'):
return_response['headers'][hdr] = response.info().getheader(hdr)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
return_response['code'] = response.getcode()
return return_response
def delete_object_from_path(self, path, keypool=None, client_id=None):
""" Deletes objects based on path. """
if path[0] != "/":
path = "/" + path
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
headers = "DELETE\n"
headers += mime_type+"\n"
headers += "\n"
headers += now+"\n"
headers += self.__get_query_client_id("/rest/namespace"+str.lower(path), client_id, quote=False) + "\n"
headers += "x-emc-date:"+now+"\n"
request = RequestWithMethod("DELETE", self.__get_query_client_id(self.url+"/rest/namespace"+urllib.quote(path), client_id))
request.add_header("content-type", mime_type)
self.__add_client_id_header(request, client_id)
if keypool:
hdr = "x-emc-pool"
val = keypool
headers += hdr + ":" + val + "\n"
request.add_header(hdr, val)
headers += "x-emc-uid:"+self.uid
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
return_response = dict()
return_response['headers'] = dict()
try:
response = self.__send_request(request, hashout, headers)
for hdr in ('x-emc-policy', 'x-emc-delta'):
return_response['headers'][hdr] = response.info().getheader(hdr)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
return_response['code'] = response.getcode()
return return_response
def delete_directory(self, path):
""" Deletes empty directories. """
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
headers = "DELETE\n"
headers += mime_type+"\n"
headers += "\n"
headers += now+"\n"
headers += "/rest/namespace/"+str.lower(path)+"\n"
headers += "x-emc-date:"+now+"\n"
headers += "x-emc-uid:"+self.uid
request = RequestWithMethod("DELETE", "%s/%s" % (self.url+"/rest/namespace", urllib.quote(path)))
request.add_header("content-type", mime_type)
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
try:
response = self.__send_request(request, hashout, headers)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else: # If there was no HTTPError, parse the location header in the response body to get the object_id
return response.getcode()
def read_object(self, object_id, extent=None, head=False, fp=None, get_md5=False, client_id=None, fobject=None):
""" Returns an entire object or a partial object based on a byte range.
Keyword arguments:
object_id -- the object ID of the object to be read
extent -- a byte range used to read portions of an object. Not setting the extent returns the entire object (Default None)
"""
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
if head:
request = RequestWithMethod("HEAD", "%s/%s" % (self.url+"/rest/objects", object_id))
headers = "HEAD\n"
else:
request = urllib2.Request(self.url+"/rest/objects/"+object_id)
headers = "GET\n"
headers += mime_type+"\n"
if extent:
headers += "Bytes="+extent+"\n"
request.add_header("Range", "Bytes="+extent)
else:
headers += "\n"
self.__add_client_id_header(request, client_id)
headers += now+"\n"
headers += "/rest/objects/"+object_id+"\n"
headers += "x-emc-date:"+now+"\n"
headers += "x-emc-uid:"+self.uid
request.add_header("content-type", mime_type)
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
return_response = dict()
return_response['headers'] = dict()
try:
response = self.__send_request(request, hashout, headers)
for hdr in ('x-emc-delta', 'x-emc-meta', 'x-emc-useracl', 'x-emc-groupacl'):
return_response['headers'][hdr] = response.info().getheader(hdr)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
if not SIMULATE:
if head:
group_acl = {}
user_acl = {}
system_meta = {}
policy = {}
if response.info().getheader('x-emc-groupacl'):
group_acl = response.info().getheader('x-emc-groupacl')
group_acl = dict(u.split("=") for u in group_acl.split(", ")) # Create a Python dictionary of the data in the header and return it.
if response.info().getheader('x-emc-user-acl'):
user_acl = response.info().getheader('x-emc-user-acl')
user_acl = dict(u.split("=") for u in user_acl.split(", "))
if response.info().getheader('x-emc-meta'):
system_meta = response.info().getheader('x-emc-meta')
system_meta = dict(u.split("=") for u in system_meta.split(", "))
if response.info().getheader('x-emc-policy'):
policy = response.info().getheader('x-emc-policy')
return {"group_acl" : group_acl, "user_acl" : user_acl, "system_meta" : system_meta, "policy" : policy}
else:
return_response['content-length'] = 0
return_response['body'] = None
if fp:
if get_md5:
md5 = hashlib.md5()
for chunk in self.__read_chunks(response):
return_response['content-length'] += len(chunk)
fp.write(chunk)
if fobject is not None:
fobject.data += chunk
if get_md5:
md5.update(chunk)
if get_md5:
return_response['md5'] = md5.hexdigest()
else:
return_response['body'] = response.read()
if fobject is not None:
fobject.data = return_response['body']
return_response['content-length'] = len(return_response['body'])
return return_response
def read_object_from_path(self, path, extent=None, head=False, keypool=None, fp=None, get_md5=False, client_id=None,
fobject=None):
""" Returns an entire object or a partial object based on a byte range from the namespace interface.
Keyword arguments:
path -- the complete path to the object to be read
extent -- a byte range used to read portions of an object. Not setting the extent returns the entire object (Default None)
"""
if path[0] == "/":
path = path[1:]
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
if head:
request = RequestWithMethod("HEAD", self.__get_query_client_id(
self.url+"/rest/namespace/"+urllib.quote(path), client_id, extent
))
headers = "HEAD\n"
else:
request = urllib2.Request(self.__get_query_client_id(
self.url+"/rest/namespace/"+urllib.quote(path), client_id, extent
))
headers = "GET\n"
headers += mime_type+"\n"
if extent:
headers += "bytes="+extent+"\n"
request.add_header("Range", "bytes="+extent)
else:
headers += "\n"
self.__add_client_id_header(request, client_id)
headers += now+"\n"
headers += self.__get_query_client_id("/rest/namespace/"+str.lower(path), client_id, extent, quote=False) + "\n"
headers += "x-emc-date:"+now+"\n"
if keypool:
hdr = "x-emc-pool"
val = keypool
headers += hdr + ":" + val + "\n"
request.add_header(hdr, val)
headers += "x-emc-uid:"+self.uid
request.add_header("content-type", mime_type)
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
return_response = dict()
return_response['headers'] = dict()
try:
response = self.__send_request(request, hashout, headers)
for hdr in ('x-emc-delta', 'x-emc-meta', 'x-emc-useracl', 'x-emc-groupacl'):
return_response['headers'][hdr] = response.info().getheader(hdr)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
if not SIMULATE:
if head:
group_acl = {}
user_acl = {}
system_meta = {}
policy = {}
if response.info().getheader('x-emc-groupacl'):
group_acl = response.info().getheader('x-emc-groupacl')
group_acl = dict(u.split("=") for u in group_acl.split(",")) # Create a Python dictionary of the data in the header and return it.
if response.info().getheader('x-emc-user-acl'):
user_acl = response.info().getheader('x-emc-user-acl')
user_acl = dict(u.split("=") for u in user_acl.split(","))
if response.info().getheader('x-emc-meta'):
system_meta = response.info().getheader('x-emc-meta')
system_meta = dict(u.split("=") for u in system_meta.split(", "))
if response.info().getheader('x-emc-policy'):
policy = response.info().getheader('x-emc-policy')
return {"group_acl" : group_acl, "user_acl" : user_acl, "system_meta" : system_meta, "policy" : policy}
else:
return_response['content-length'] = 0
return_response['body'] = None
if fp:
if get_md5:
md5 = hashlib.md5()
for chunk in self.__read_chunks(response):
return_response['content-length'] += len(chunk)
fp.write(chunk)
if fobject is not None:
fobject.data += chunk
if get_md5:
md5.update(chunk)
if get_md5:
return_response['md5'] = md5.hexdigest()
else:
return_response['body'] = response.read()
if fobject is not None:
fobject.data = return_response['body']
return_response['content-length'] = len(return_response['body'])
return return_response
def __read_chunks(self, data):
while True:
chunk = data.read(READ_CHUNK_SIZE)
if chunk:
yield chunk
else:
return
def update_object(self, object_id, data, extent=None, listable_meta=None, non_listable_meta=None, mime_type=None):
""" Updates an existing object with listable metadata, non-listable metadata, and/or bytes of actual object data based on range.
If the extent parameter is excluded and data is set to an empty string the object will be overwritten with an empty object. If the extent
parameter is excluded and the data parameter contains data the entire object is overwritten with new contents.
Keyword arguments:
object_id -- the object to update
extent -- the portion of the object to modify (default None)
listable_meta -- a dictionary containing key/value pairs Ex. {"key1 : "value", "key2" : "value2", "key3" : "value3"} (default None)
non_listable_meta -- a dictionary containing key/value pairs {"nl_key1/patriots" : "value", "nl_key2" : "value2", "nl_key3" : "value3"} (default None)
data -- actual or partial object content.
"""
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
request = RequestWithMethod("PUT", "%s/%s" % (self.url+"/rest/objects", object_id))
headers = "PUT\n"
headers += mime_type+"\n"
if extent:
headers += "Bytes="+extent
request.add_header("Range", "Bytes="+extent)
headers += "\n"
headers += now+"\n"
headers += "/rest/objects/"+object_id+"\n"
headers += "x-emc-date:"+now+"\n"
request.add_header("content-type", mime_type)
request = self.__add_headers(request, now)
request.add_data(data)
if listable_meta:
meta_string = self.__process_metadata(listable_meta)
headers += "x-emc-listable-meta:"+meta_string+"\n"
request.add_header("x-emc-listable-meta", meta_string)
if non_listable_meta:
nl_meta_string = self.__process_metadata(non_listable_meta)
headers += "x-emc-meta:"+nl_meta_string+"\n"
request.add_header("x-emc-meta", nl_meta_string)
headers += "x-emc-uid:"+self.uid
#print "String to Sign: " + headers
hashout = self.__sign(headers)
try:
response = self.__send_request(request, hashout, headers)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
def get_shareable_url(self, expiration, object_id=None, path=None):
""" Generates a pre-signed URL that is accessible to non-Atmos users
Keyword arguments:
object_id -- the object to which you want to provide access
path -- the full path to the object to which you want to create the shareable URL
expiration -- Epoch time in the future that determines how long a shareable URL is valid
"""
if path and path[0] == "/":
path = path[1:]
if object_id and path:
raise Exception("both object_id and path parameters cannot be set simultaneously")
if object_id == None and path == None:
raise Exception("at least one of the parameters, object_id or path, need to be set")
uid_dict = {}
uid_dict["uid"] = self.uid
encoded_uid = urllib.urlencode(uid_dict)
sb = "GET\n"
if object_id:
sb += "/rest/objects/"+str(object_id)+"\n"
resource = "/rest/objects/"+str(object_id)
if path:
sb += "/rest/namespace/"+str.lower(path)+"\n"
path = urllib.quote(path)
resource = "/rest/namespace/"+path
sb += self.uid+"\n"
sb += str(expiration)
signature = self.__sign(sb)
sig_dict = {}
sig_dict["signature"] = signature
encoded_sig = urllib.urlencode(sig_dict)
resource += "?" + encoded_uid + "&expires=" + str(expiration) + "&" + encoded_sig
url = self.scheme + "://" + self.host + resource
return url
def create_directory(self, path, user_acl=None, group_acl=None):
""" Creates a directory in the namespace interface. Returns an object_id.
Keyword arguments:
path -- directory path with no leading slash
"""
if path[-1] != "/": # Add a slash at the end if they didn't include one
path += "/"
if path[0] == "/":
path = path[1:]
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
content_type = "application/x-www-form-urlencoded" # Required by POST on some systems and by HTTP spec
request = RequestWithMethod("POST", "%s/%s" % (self.url+"/rest/namespace", urllib.quote(path)))
request = self.__add_headers(request, now)
request.add_header('content-type', content_type)
headers = "POST\n"
headers += content_type + "\n"
headers += "\n"
headers += now+"\n"
headers += "/rest/namespace/"+str.lower(path)+"\n"
headers += "x-emc-date:"+now+"\n"
if group_acl:
headers += "x-emc-groupacl:" + group_acl + "\n"
request.add_header('x-emc-groupacl', group_acl)
headers += "x-emc-uid:"+self.uid
if user_acl:
headers += "\nx-emc-useracl:" + user_acl
request.add_header('x-emc-useracl', user_acl)
#print 'String to Sign: ' + headers + "\n"
hashout = self.__sign(headers)
try:
response = self.__send_request(request, hashout, headers)
except urllib2.HTTPError, e:
if e.code == 201:
object_id = self.__parse_location(e)
return object_id
else:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else: # If there was no HTTPError, parse the location header in the response body to get the object_id
object_id = self.__parse_location(response)
return object_id
# Renames won't work before Atmos 1.3.x
def rename_object(self, source, destination, force):
""" Renames an object in the namespace interface.
Keyword arguments:
source -- The source path to the object Ex. path/to/object/foo.doc
destination -- The destination path to the object Ex. path/to/object/bar.doc
force -- If set to True, forces a rename
"""
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
headers = "POST\n"
headers += "\n"
headers += "\n"
headers += now+"\n"
headers += "/rest/namespace/"+str.lower(source)+"?rename"+"\n"
headers += "x-emc-date:"+now+"\n"
headers += "x-emc-path:"+str.lower(destination)+"\n"
headers += "x-emc-uid:"+self.uid
request = RequestWithMethod("POST", "%s/%s" % (self.url+"/rest/namespace", source+"?rename"))
request.add_header("x-emc-path", destination)
request = self.__add_headers(request, now)
hashout = self.__sign(headers)
try:
response = self.__send_request(request, hashout, headers)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
else:
return response
def set_user_metadata(self, object_id, listable_meta=None, non_listable_meta=None):
""" Updates an existing object with listable and/or non-listable user metadata
Keyword arguments:
object_id -- The object ID of the object that should be updated with user metadata
listable_meta -- a dictionary containing key/value pairs Ex. {"key1 : "value", "key2" : "value2", "key3" : "value3"} (default None)
non_listable_meta -- a dictionary containing key/value pairs {"nl_key1/patriots" : "value", "nl_key2" : "value2", "nl_key3" : "value3"} (default None)
"""
mime_type = "application/octet-stream"
now = time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime())
headers = "POST\n"
headers += mime_type+"\n"
headers += "\n"
headers += now+"\n"
headers += "/rest/objects/"+object_id+"?metadata/user"+"\n"
headers += "x-emc-date:"+now+"\n"
request = RequestWithMethod("POST", "%s/%s" % (self.url+"/rest/objects", object_id+"?metadata/user"))
request.add_header("content-type", mime_type)
request = self.__add_headers(request, now)
if listable_meta:
meta_string = self.__process_metadata(listable_meta)
headers += "x-emc-listable-meta:"+meta_string+"\n"
request.add_header("x-emc-listable-meta", meta_string)
if non_listable_meta:
nl_meta_string = self.__process_metadata(non_listable_meta)
headers += "x-emc-meta:"+nl_meta_string+"\n"
request.add_header("x-emc-meta", nl_meta_string)
headers += "x-emc-uid:"+self.uid
hashout = self.__sign(headers)
try:
response = self.__send_request(request, hashout, headers)
except urllib2.HTTPError, e:
error_message = e.read()
atmos_error = self.__parse_atmos_error(error_message)
raise EsuException(e.code, atmos_error)
def set_acl(self, object_id, user_acl):
""" Updates an existing object with the specified ACL
Keyword arguments:
object_id -- The object ID of the object that should be updated with user metadata
user_acl -- The key/value pair of the ACL to use to set on the object