-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathWFSCapabilitiesReader.js
156 lines (140 loc) · 5.6 KB
/
WFSCapabilitiesReader.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
/**
* Copyright (c) 2008-2012 The Open Source Geospatial Foundation
*
* Published under the BSD license.
* See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
* of the license.
*/
/**
* @include GeoExt/data/LayerRecord.js
* @require OpenLayers/Format/WFSCapabilities.js
* @require OpenLayers/Format/WFSCapabilities/v1_1_0.js
* @require OpenLayers/Protocol/WFS.js
* @require OpenLayers/Protocol/WFS/v1_0_0.js
* @require OpenLayers/Strategy/Fixed.js
* @require OpenLayers/Layer/Vector.js
*/
/** api: (define)
* module = GeoExt.data
* class = WFSCapabilitiesReader
* base_link = `Ext.data.DataReader <http://dev.sencha.com/deploy/dev/docs/?class=Ext.data.DataReader>`_
*/
Ext.namespace("GeoExt.data");
/** api: constructor
* .. class:: WFSCapabilitiesReader(meta, recordType)
*
* :param meta: ``Object`` Reader configuration from which:
* ``layerOptions`` is an optional object (or function that returns
* an object) passed as default options to the
* ``OpenLayers.Layer.Vector`` constructor.
* ``protocolOptions`` is an optional set of parameters to pass to the
* ``OpenLayers.Protocol.WFS`` constructor.
* :param recordType: ``Array | Ext.data.Record`` An array of field
* configuration objects or a record object. Default is
* :class:`GeoExt.data.LayerRecord`.
*
* Data reader class to create an array of
* :class:`GeoExt.data.LayerRecord` objects from a WFS GetCapabilities
* response.
*/
GeoExt.data.WFSCapabilitiesReader = function(meta, recordType) {
meta = meta || {};
if(!meta.format) {
meta.format = new OpenLayers.Format.WFSCapabilities();
}
if(!(typeof recordType === "function")) {
recordType = GeoExt.data.LayerRecord.create(
recordType || meta.fields || [
{name: "name", type: "string"},
{name: "title", type: "string"},
{name: "namespace", type: "string", mapping: "featureNS"},
{name: "abstract", type: "string"}
]
);
}
GeoExt.data.WFSCapabilitiesReader.superclass.constructor.call(
this, meta, recordType
);
};
Ext.extend(GeoExt.data.WFSCapabilitiesReader, Ext.data.DataReader, {
/** private: method[read]
* :param request: ``Object`` The XHR object which contains the parsed XML
* document.
* :return: ``Object`` A data block which is used by an ``Ext.data.Store``
* as a cache of ``Ext.data.Record`` objects.
*/
read: function(request) {
var data = request.responseXML;
if(!data || !data.documentElement) {
data = request.responseText;
}
return this.readRecords(data);
},
/** private: method[readRecords]
* :param data: ``DOMElement | String | Object`` A document element or XHR
* response string. As an alternative to fetching capabilities data
* from a remote source, an object representing the capabilities can
* be provided given that the structure mirrors that returned from the
* capabilities parser.
* :return: ``Object`` A data block which is used by an ``Ext.data.Store``
* as a cache of ``Ext.data.Record`` objects.
*
* Create a data block containing Ext.data.Records from an XML document.
*/
readRecords: function(data) {
if(typeof data === "string" || data.nodeType) {
data = this.meta.format.read(data);
}
var featureTypes = data.featureTypeList.featureTypes;
var fields = this.recordType.prototype.fields;
var featureType, values, field, v, parts, layer;
var layerOptions, protocolOptions;
// Will fail with WFS 1.1.0
var protocolDefaults = {
url: data.capability.request.getfeature.href.post
};
var records = [];
for(var i=0, lenI=featureTypes.length; i<lenI; i++) {
featureType = featureTypes[i];
if(featureType.name) {
values = {};
for(var j=0, lenJ=fields.length; j<lenJ; j++) {
field = fields.items[j];
v = featureType[field.mapping || field.name] ||
field.defaultValue;
v = field.convert(v);
values[field.name] = v;
}
protocolOptions = {
featureType: featureType.name,
featureNS: featureType.featureNS
};
if(this.meta.protocolOptions) {
Ext.apply(protocolOptions, this.meta.protocolOptions,
protocolDefaults);
} else {
Ext.apply(protocolOptions, {}, protocolDefaults);
}
layerOptions = {
protocol: new OpenLayers.Protocol.WFS(protocolOptions),
strategies: [new OpenLayers.Strategy.Fixed()]
};
var metaLayerOptions = this.meta.layerOptions;
if (metaLayerOptions) {
Ext.apply(layerOptions, Ext.isFunction(metaLayerOptions) ?
metaLayerOptions() : metaLayerOptions);
}
values.layer = new OpenLayers.Layer.Vector(
featureType.title || featureType.name,
layerOptions
);
records.push(new this.recordType(values, values.layer.id));
}
}
return {
totalRecords: records.length,
success: true,
records: records
};
}
});