| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| """ |
| minio.xml_marshal |
| ~~~~~~~~~~~~~~~ |
| |
| This module contains the simple wrappers for XML marshaller's. |
| |
| :copyright: (c) 2015 by MinIO, Inc. |
| :license: Apache 2.0, see LICENSE for more details. |
| |
| """ |
|
|
| from __future__ import absolute_import |
|
|
| import io |
| from collections import defaultdict |
| from xml.etree import ElementTree as ET |
|
|
| _S3_NAMESPACE = 'http://s3.amazonaws.com/doc/2006-03-01/' |
|
|
|
|
| def Element(tag, with_namespace=False): |
| """Create ElementTree.Element with tag and namespace.""" |
| if with_namespace: |
| return ET.Element(tag, {'xmlns': _S3_NAMESPACE}) |
| return ET.Element(tag) |
|
|
|
|
| def SubElement(parent, tag, text=None): |
| """Create ElementTree.SubElement on parent with tag and text.""" |
| element = ET.SubElement(parent, tag) |
| if text is not None: |
| element.text = text |
| return element |
|
|
|
|
| def _get_xml_data(element): |
| """Get XML data of ElementTree.Element.""" |
| data = io.BytesIO() |
| ET.ElementTree(element).write(data, encoding=None, xml_declaration=False) |
| return data.getvalue() |
|
|
|
|
| def _etree_to_dict(elem): |
| """Converts ElementTree object to dict.""" |
| ns = '{' + _S3_NAMESPACE + '}' |
| elem.tag = elem.tag.replace(ns, '') |
|
|
| d = {elem.tag: {} if elem.attrib else None} |
| children = list(elem) |
| if children: |
| dd = defaultdict(list) |
| is_rule = children[0].tag.replace(ns, "") == "Rule" |
| |
| for dc in map(_etree_to_dict, children): |
| for k, v in dc.items(): |
| dd[k].append([v] if is_rule else v) |
| |
| d = {elem.tag: {k: v[0] if len(v) == 1 else v for k, v in dd.items()}} |
| if elem.attrib: |
| d[elem.tag].update(('@' + k, v) for k, v in elem.attrib.items()) |
| if elem.text: |
| text = elem.text.strip() |
| if children or elem.attrib: |
| if text: |
| d[elem.tag]['#text'] = text |
| else: |
| d[elem.tag] = text |
| return d |
|
|
|
|
| def xml_to_dict(in_xml): |
| """Convert XML to dict.""" |
| elem = ET.XML(in_xml) |
| return _etree_to_dict(elem) |
|
|
|
|
| def xml_marshal_bucket_encryption(rules): |
| """Encode bucket encryption to XML.""" |
|
|
| root = Element('ServerSideEncryptionConfiguration') |
|
|
| if rules: |
| |
| |
| apply_element = SubElement(SubElement(root, 'Rule'), |
| 'ApplyServerSideEncryptionByDefault') |
| SubElement(apply_element, 'SSEAlgorithm', |
| rules[0]['ApplyServerSideEncryptionByDefault'].get( |
| 'SSEAlgorithm', 'AES256')) |
| kms_text = rules[0]['ApplyServerSideEncryptionByDefault'].get( |
| 'KMSMasterKeyID') |
| if kms_text: |
| SubElement(apply_element, 'KMSMasterKeyID', kms_text) |
|
|
| return _get_xml_data(root) |
|
|
|
|
| def marshal_complete_multipart(uploaded_parts): |
| """ |
| Marshal's complete multipart upload request based on *uploaded_parts*. |
| |
| :param uploaded_parts: List of all uploaded parts, ordered by part number. |
| :return: Marshalled XML data. |
| """ |
| root = Element('CompleteMultipartUpload', with_namespace=True) |
| for uploaded_part in uploaded_parts: |
| part = SubElement(root, 'Part') |
| SubElement(part, 'PartNumber', str(uploaded_part.part_number)) |
| SubElement(part, 'ETag', '"' + uploaded_part.etag + '"') |
|
|
| return _get_xml_data(root) |
|
|
|
|
| def marshal_bucket_notifications(notifications): |
| """ |
| Marshals the notifications structure for sending to S3 compatible storage |
| |
| :param notifications: Dictionary with following structure: |
| |
| { |
| 'TopicConfigurations': [ |
| { |
| 'Id': 'string', |
| 'Arn': 'string', |
| 'Events': [ |
| 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'| |
| 's3:ObjectCreated:Put'|'s3:ObjectCreated:Post'| |
| 's3:ObjectCreated:Copy'| |
| 's3:ObjectCreated:CompleteMultipartUpload'| |
| 's3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'| |
| 's3:ObjectRemoved:DeleteMarkerCreated', |
| ], |
| 'Filter': { |
| 'Key': { |
| 'FilterRules': [ |
| { |
| 'Name': 'prefix'|'suffix', |
| 'Value': 'string' |
| }, |
| ] |
| } |
| } |
| }, |
| ], |
| 'QueueConfigurations': [ |
| { |
| 'Id': 'string', |
| 'Arn': 'string', |
| 'Events': [ |
| 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'| |
| 's3:ObjectCreated:Put'|'s3:ObjectCreated:Post'| |
| 's3:ObjectCreated:Copy'| |
| 's3:ObjectCreated:CompleteMultipartUpload'| |
| 's3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'| |
| 's3:ObjectRemoved:DeleteMarkerCreated', |
| ], |
| 'Filter': { |
| 'Key': { |
| 'FilterRules': [ |
| { |
| 'Name': 'prefix'|'suffix', |
| 'Value': 'string' |
| }, |
| ] |
| } |
| } |
| }, |
| ], |
| 'CloudFunctionConfigurations': [ |
| { |
| 'Id': 'string', |
| 'Arn': 'string', |
| 'Events': [ |
| 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'| |
| 's3:ObjectCreated:Put'|'s3:ObjectCreated:Post'| |
| 's3:ObjectCreated:Copy'| |
| 's3:ObjectCreated:CompleteMultipartUpload'| |
| 's3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'| |
| 's3:ObjectRemoved:DeleteMarkerCreated', |
| ], |
| 'Filter': { |
| 'Key': { |
| 'FilterRules': [ |
| { |
| 'Name': 'prefix'|'suffix', |
| 'Value': 'string' |
| }, |
| ] |
| } |
| } |
| }, |
| ] |
| } |
| |
| :return: Marshalled XML data |
| """ |
| root = Element('NotificationConfiguration', with_namespace=True) |
| _add_notification_config_to_xml( |
| root, |
| 'TopicConfiguration', |
| notifications.get('TopicConfigurations', []) |
| ) |
| _add_notification_config_to_xml( |
| root, |
| 'QueueConfiguration', |
| notifications.get('QueueConfigurations', []) |
| ) |
| _add_notification_config_to_xml( |
| root, |
| 'CloudFunctionConfiguration', |
| notifications.get('CloudFunctionConfigurations', []) |
| ) |
|
|
| return _get_xml_data(root) |
|
|
|
|
| NOTIFICATIONS_ARN_FIELDNAME_MAP = { |
| 'TopicConfiguration': 'Topic', |
| 'QueueConfiguration': 'Queue', |
| 'CloudFunctionConfiguration': 'CloudFunction', |
| } |
|
|
|
|
| def _add_notification_config_to_xml(node, element_name, configs): |
| """ |
| Internal function that builds the XML sub-structure for a given |
| kind of notification configuration. |
| |
| """ |
| for config in configs: |
| config_node = SubElement(node, element_name) |
|
|
| if 'Id' in config: |
| SubElement(config_node, 'Id', config['Id']) |
|
|
| SubElement(config_node, NOTIFICATIONS_ARN_FIELDNAME_MAP[element_name], |
| config['Arn']) |
|
|
| for event in config['Events']: |
| SubElement(config_node, 'Event', event) |
|
|
| filter_rules = config.get('Filter', {}).get( |
| 'Key', {}).get('FilterRules', []) |
| if filter_rules: |
| s3key_node = SubElement(SubElement(config_node, 'Filter'), 'S3Key') |
| for filter_rule in filter_rules: |
| filter_rule_node = SubElement(s3key_node, 'FilterRule') |
| SubElement(filter_rule_node, 'Name', filter_rule['Name']) |
| SubElement(filter_rule_node, 'Value', filter_rule['Value']) |
| return node |
|
|
|
|
| def xml_marshal_delete_objects(keys): |
| """ |
| Marshal Multi-Object Delete request body from object names. |
| |
| :param object_names: List of object keys to be deleted. |
| :return: Serialized XML string for multi-object delete request body. |
| """ |
| root = Element('Delete') |
|
|
| |
| |
| |
| SubElement(root, 'Quiet', "true") |
|
|
| |
| for key in keys: |
| version_id = None |
| if not isinstance(key, (str, bytes)): |
| version_id = key[1] |
| key = key[0] |
|
|
| element = SubElement(root, "Object") |
| SubElement(element, "Key", key) |
| if version_id: |
| SubElement(element, "VersionId", version_id) |
|
|
| return _get_xml_data(root) |
|
|