Script.js
12.3 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
/* Copyright (c) 2006-2011 by OpenLayers Contributors (see authors.txt for
* full list of contributors). Published under the Clear BSD license.
* See http://svn.openlayers.org/trunk/openlayers/license.txt for the
* full text of the license. */
/**
* @requires OpenLayers/Protocol.js
* @requires OpenLayers/Feature/Vector.js
* @requires OpenLayers/Format/GeoJSON.js
*/
/**
* Class: OpenLayers.Protocol.Script
* A basic Script protocol for vector layers. Create a new instance with the
* <OpenLayers.Protocol.Script> constructor. A script protocol is used to
* get around the same origin policy. It works with services that return
* JSONP - that is, JSON wrapped in a client-specified callback. The
* protocol handles fetching and parsing of feature data and sends parsed
* features to the <callback> configured with the protocol. The protocol
* expects features serialized as GeoJSON by default, but can be configured
* to work with other formats by setting the <format> property.
*
* Inherits from:
* - <OpenLayers.Protocol>
*/
OpenLayers.Protocol.Script = OpenLayers.Class(OpenLayers.Protocol, {
/**
* APIProperty: url
* {String} Service URL. The service is expected to return serialized
* features wrapped in a named callback (where the callback name is
* generated by this protocol).
* Read-only, set through the options passed to the constructor.
*/
url: null,
/**
* APIProperty: params
* {Object} Query string parameters to be appended to the URL.
* Read-only, set through the options passed to the constructor.
* Example: {maxFeatures: 50}
*/
params: null,
/**
* APIProperty: callback
* {Object} Function to be called when the <read> operation completes.
*/
callback: null,
/**
* APIProperty: scope
* {Object} Optional ``this`` object for the callback. Read-only, set
* through the options passed to the constructor.
*/
scope: null,
/**
* APIProperty: format
* {<OpenLayers.Format>} Format for parsing features. Default is an
* <OpenLayers.Format.GeoJSON> format. If an alternative is provided,
* the format's read method must take an object and return an array
* of features.
*/
format: null,
/**
* APIProperty: callbackKey
* {String} The name of the query string parameter that the service
* recognizes as the callback identifier. Default is "callback".
* This key is used to generate the URL for the script. For example
* setting <callbackKey> to "myCallback" would result in a URL like
* http://example.com/?myCallback=...
*/
callbackKey: "callback",
/**
* APIProperty: callbackPrefix
* {String} Where a service requires that the callback query string
* parameter value is prefixed by some string, this value may be set.
* For example, setting <callbackPrefix> to "foo:" would result in a
* URL like http://example.com/?callback=foo:... Default is "".
*/
callbackPrefix: "",
/**
* Property: pendingRequests
* {Object} References all pending requests. Property names are script
* identifiers and property values are script elements.
*/
pendingRequests: null,
/**
* APIProperty: srsInBBOX
* {Boolean} Include the SRS identifier in BBOX query string parameter.
* Setting this property has no effect if a custom filterToParams method
* is provided. Default is false. If true and the layer has a
* projection object set, any BBOX filter will be serialized with a
* fifth item identifying the projection.
* E.g. bbox=-1000,-1000,1000,1000,EPSG:900913
*/
srsInBBOX: false,
/**
* Constructor: OpenLayers.Protocol.Script
* A class for giving layers generic Script protocol.
*
* Parameters:
* options - {Object} Optional object whose properties will be set on the
* instance.
*
* Valid options include:
* url - {String}
* params - {Object}
* callback - {Function}
* scope - {Object}
*/
initialize: function(options) {
options = options || {};
this.params = {};
this.pendingRequests = {};
OpenLayers.Protocol.prototype.initialize.apply(this, arguments);
if (!this.format) {
this.format = new OpenLayers.Format.GeoJSON();
}
if (!this.filterToParams && OpenLayers.Format.QueryStringFilter) {
var format = new OpenLayers.Format.QueryStringFilter({
srsInBBOX: this.srsInBBOX
});
this.filterToParams = function(filter, params) {
return format.write(filter, params);
}
}
},
/**
* APIMethod: read
* Construct a request for reading new features.
*
* Parameters:
* options - {Object} Optional object for configuring the request.
* This object is modified and should not be reused.
*
* Valid options:
* url - {String} Url for the request.
* params - {Object} Parameters to get serialized as a query string.
* filter - {<OpenLayers.Filter>} Filter to get serialized as a
* query string.
*
* Returns:
* {<OpenLayers.Protocol.Response>} A response object, whose "priv" property
* references the injected script. This object is also passed to the
* callback function when the request completes, its "features" property
* is then populated with the features received from the server.
*/
read: function(options) {
OpenLayers.Protocol.prototype.read.apply(this, arguments);
options = OpenLayers.Util.applyDefaults(options, this.options);
options.params = OpenLayers.Util.applyDefaults(
options.params, this.options.params
);
if (options.filter && this.filterToParams) {
options.params = this.filterToParams(
options.filter, options.params
);
}
var response = new OpenLayers.Protocol.Response({requestType: "read"});
var request = this.createRequest(
options.url,
options.params,
OpenLayers.Function.bind(function(data) {
response.data = data;
this.handleRead(response, options);
}, this)
);
response.priv = request;
return response;
},
/**
* APIMethod: filterToParams
* Optional method to translate an <OpenLayers.Filter> object into an object
* that can be serialized as request query string provided. If a custom
* method is not provided, any filter will not be serialized.
*
* Parameters:
* filter - {<OpenLayers.Filter>} filter to convert.
* params - {Object} The parameters object.
*
* Returns:
* {Object} The resulting parameters object.
*/
/**
* Method: createRequest
* Issues a request for features by creating injecting a script in the
* document head.
*
* Parameters:
* url - {String} Service URL.
* params - {Object} Query string parameters.
* callback - {Function} Callback to be called with resulting data.
*
* Returns:
* {HTMLScriptElement} The script pending execution.
*/
createRequest: function(url, params, callback) {
var id = OpenLayers.Protocol.Script.register(callback);
var name = "OpenLayers.Protocol.Script.registry[" + id + "]";
params = OpenLayers.Util.extend({}, params);
params[this.callbackKey] = this.callbackPrefix + name;
url = OpenLayers.Util.urlAppend(
url, OpenLayers.Util.getParameterString(params)
);
var script = document.createElement("script");
script.type = "text/javascript";
script.src = url;
script.id = "OpenLayers_Protocol_Script_" + id;
this.pendingRequests[script.id] = script;
var head = document.getElementsByTagName("head")[0];
head.appendChild(script);
return script;
},
/**
* Method: destroyRequest
* Remove a script node associated with a response from the document. Also
* unregisters the callback and removes the script from the
* <pendingRequests> object.
*
* Parameters:
* script - {HTMLScriptElement}
*/
destroyRequest: function(script) {
OpenLayers.Protocol.Script.unregister(script.id.split("_").pop());
delete this.pendingRequests[script.id];
if (script.parentNode) {
script.parentNode.removeChild(script);
}
},
/**
* Method: handleRead
* Individual callbacks are created for read, create and update, should
* a subclass need to override each one separately.
*
* Parameters:
* response - {<OpenLayers.Protocol.Response>} The response object to pass to
* the user callback.
* options - {Object} The user options passed to the read call.
*/
handleRead: function(response, options) {
this.handleResponse(response, options);
},
/**
* Method: handleResponse
* Called by CRUD specific handlers.
*
* Parameters:
* response - {<OpenLayers.Protocol.Response>} The response object to pass to
* any user callback.
* options - {Object} The user options passed to the create, read, update,
* or delete call.
*/
handleResponse: function(response, options) {
if (options.callback) {
if (response.data) {
response.features = this.parseFeatures(response.data);
response.code = OpenLayers.Protocol.Response.SUCCESS;
} else {
response.code = OpenLayers.Protocol.Response.FAILURE;
}
this.destroyRequest(response.priv);
options.callback.call(options.scope, response);
}
},
/**
* Method: parseFeatures
* Read Script response body and return features.
*
* Parameters:
* data - {Object} The data sent to the callback function by the server.
*
* Returns:
* {Array({<OpenLayers.Feature.Vector>})} or
* {<OpenLayers.Feature.Vector>} Array of features or a single feature.
*/
parseFeatures: function(data) {
return this.format.read(data);
},
/**
* APIMethod: abort
* Abort an ongoing request. If no response is provided, all pending
* requests will be aborted.
*
* Parameters:
* response - {<OpenLayers.Protocol.Response>} The response object returned
* from a <read> request.
*/
abort: function(response) {
if (response) {
this.destroyRequest(response.priv);
} else {
for (var key in this.pendingRequests) {
this.destroyRequest(this.pendingRequests[key]);
}
}
},
/**
* APIMethod: destroy
* Clean up the protocol.
*/
destroy: function() {
this.abort();
delete this.params;
delete this.format;
OpenLayers.Protocol.prototype.destroy.apply(this);
},
CLASS_NAME: "OpenLayers.Protocol.Script"
});
(function() {
var o = OpenLayers.Protocol.Script;
var counter = 0;
o.registry = [];
/**
* Function: OpenLayers.Protocol.Script.register
* Register a callback for a newly created script.
*
* Parameters:
* callback: {Function} The callback to be executed when the newly added
* script loads. This callback will be called with a single argument
* that is the JSON returned by the service.
*
* Returns:
* {Number} An identifier for retreiving the registered callback.
*/
o.register = function(callback) {
var id = ++counter;
o.registry[id] = function() {
o.unregister(id);
callback.apply(this, arguments);
};
return id;
};
/**
* Function: OpenLayers.Protocol.Script.unregister
* Unregister a callback previously registered with the register function.
*
* Parameters:
* id: {Number} The identifer returned by the register function.
*/
o.unregister = function(id) {
delete o.registry[id];
};
})();