summaryrefslogtreecommitdiffstats
path: root/core/js/files/iedavclient.js
blob: bc6bce2f9aeb0c84277eac9366eaa139344656db (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
/*
 * Copyright (c) 2015
 *
 * This file is licensed under the Affero General Public License version 3
 * or later.
 *
 * See the COPYING-README file.
 *
 */

/* global dav */
(function(dav) {

	/**
	 * Override davclient.js methods with IE-compatible logic
	 */
	dav.Client.prototype = _.extend({}, dav.Client.prototype, {

		/**
		 * Generates a propFind request.
		 *
		 * @param {string} url Url to do the propfind request on
		 * @param {Array} properties List of properties to retrieve.
		 * @return {Promise}
		 */
		propFind : function(url, properties, depth) {

			if(typeof depth == "undefined") {
				depth = 0;
			}

			var headers = {
				Depth          : depth,
				'Content-Type' : 'application/xml; charset=utf-8'
			};

			var body =
				'<?xml version="1.0"?>\n' +
				'<d:propfind ';

			var namespace;
			for (namespace in this.xmlNamespaces) {
				body += ' xmlns:' + this.xmlNamespaces[namespace] + '="' + namespace + '"';
			}
			body += '>\n' +
				'  <d:prop>\n';

			for(var ii in properties) {
				var propText = properties[ii];
				if (typeof propText !== 'string') {
					// can happen on IE8
					continue;
				}
				var property = this.parseClarkNotation(properties[ii]);
				if (this.xmlNamespaces[property.namespace]) {
					body+='    <' + this.xmlNamespaces[property.namespace] + ':' + property.name + ' />\n';
				} else {
					body+='    <x:' + property.name + ' xmlns:x="' + property.namespace + '" />\n';
				}

			}
			body+='  </d:prop>\n';
			body+='</d:propfind>';

			return this.request('PROPFIND', url, headers, body).then(
				function(result) {
					var elements = this.parseMultiStatus(result.xhr.responseXML);
					var response;
					if (depth===0) {
						response = {
							status: result.status,
							body: elements[0]
						};
					} else {
						response = {
							status: result.status,
							body: elements
						};
					}
					return response;

				}.bind(this)
			);

		},


		_getElementsByTagName: function(node, name, resolver) {
			var parts = name.split(':');
			var tagName = parts[1];
			var namespace = resolver(parts[0]);
			if (node.getElementsByTagNameNS) {
				return node.getElementsByTagNameNS(namespace, tagName);
			}
			return node.getElementsByTagName(name);
		},

		/**
		 * Parses a multi-status response body.
		 *
		 * @param {string} xmlBody
		 * @param {Array}
		 */
		parseMultiStatus : function(doc) {

			var result = [];
			var resolver = function(foo) {
				var ii;
				for(ii in this.xmlNamespaces) {
					if (this.xmlNamespaces[ii] === foo) {
						return ii;
					}
				}
			}.bind(this);

			var responses = this._getElementsByTagName(doc, 'd:response', resolver);
			var i;
			for (i = 0; i < responses.length; i++) {
				var responseNode = responses[i];
				var response = {
					href : null,
					propStat : []
				};

				var hrefNode = this._getElementsByTagName(responseNode, 'd:href', resolver)[0];

				response.href = hrefNode.textContent || hrefNode.text;

				var propStatNodes = this._getElementsByTagName(responseNode, 'd:propstat', resolver);
				var j = 0;

				for (j = 0; j < propStatNodes.length; j++) {
					var propStatNode = propStatNodes[j];
					var statusNode = this._getElementsByTagName(propStatNode, 'd:status', resolver)[0];

					var propStat = {
						status : statusNode.textContent || statusNode.text,
						properties : []
					};

					var propNode = this._getElementsByTagName(propStatNode, 'd:prop', resolver)[0];
					if (!propNode) {
						continue;
					}
					var k = 0;
					for (k = 0; k < propNode.childNodes.length; k++) {
						var prop = propNode.childNodes[k];
						var value = prop.textContent || prop.text;
						if (prop.childNodes && prop.childNodes.length > 0 && prop.childNodes[0].nodeType === 1) {
							value = prop.childNodes;
						}
						propStat.properties['{' + prop.namespaceURI + '}' + (prop.localName || prop.baseName)] = value;

					}
					response.propStat.push(propStat);
				}

				result.push(response);
			}

			return result;

		}


	});

})(dav);