Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 2x 2x 2x 1x 1x 1x 2x 2x 2x 2x 2x 2x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 14x 14x 7x 14x 2x 14x 14x 14x 14x | import Logger from "../Utils/LoggerByDefault"; /** * @classdesc * Standard WPS * * @constructor * @alias Gp.Formats.WPS * @param {Object} options - options * @param {Object} options.data - objet * @param {String} options.method - POST|GET * @param {String} options.param.service - "WPS" * @param {String} options.param.version - "1.0.0" * @param {String} options.param.identifier - "gs:WPSElevation|gs:WPSLineElevation" * @param {String} options.param.rawdataoutput - "result" * @param {String} options.param.request - "Execute" * @param {Function} options.onsuccess - function callback success (TODO) * @param {Function} options.onerror - function callback error (TODO) * @private */ function WPS (options) { this.logger = Logger.getLogger(); this.logger.trace("[Constructeur WPS()]"); Iif (!(this instanceof WPS)) { throw new TypeError("WPS constructor cannot be called as a function."); } this.options = options || {}; /** * Objet DATA */ this.DataObject = this.options.data; Iif (!this.DataObject) { throw new TypeError("This data object is not defined !"); } /** * param service. * Par defaut, "WPS". */ this.paramservice = this.options.param.service || "WPS"; /** * param version. * Par defaut, "1.0.0". */ this.paramversion = this.options.param.version || "1.0.0"; /** * param identifier * Par defaut, "gs:WPS" */ this.paramidentifier = this.options.param.identifier || "gs:WPS"; /** * param rawdataoutput * Par defaut, "result". */ this.paramrawdataoutput = this.options.param.rawdataoutput || "result"; /** * param request * Par defaut, "Execute". */ this.paramrequest = this.options.param.request || "Execute"; /** * methode. * Par defaut, "GET". */ this.method = this.options.method || "GET"; } WPS.prototype = { /** * @lends module:WPS# */ /** * request * @type {String} */ requestString : null, /** * Constructeur (alias) */ constructor : WPS, /** * Template de la requête. */ template : { get : { value : "service=__SERVICE__" + "&version=__VERSION__" + "&rawdataoutput=__RAWDATAOUTPUT__" + "&identifier=__IDENTIFIER__" + "&request=__REQUEST__" + "&datainputs=<!-- __DATAINPUTS__ -->", input : "__KEY__=__DATA__" }, post : { value : "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + "<wps:__REQUEST__ version=\"__VERSION__\" service=\"__SERVICE__\" " + "__NAMESPACE__ __SCHEMALOCATION__>" + "<ows:Identifier>__IDENTIFIER__</ows:Identifier>" + "<wps:DataInputs>" + "<!-- __DATAINPUTS__ -->" + "</wps:DataInputs>" + "<wps:ResponseForm>" + "<wps:RawDataOutput>" + "<ows:Identifier>__RAWDATAOUTPUT__</ows:Identifier>" + "</wps:RawDataOutput>" + "</wps:ResponseForm>" + "</wps:__REQUEST__>", input : "<wps:Input>" + "<ows:Identifier>__KEY__</ows:Identifier>" + "<wps:Data>" + "<wps:LiteralData>__DATA__</wps:LiteralData>" + "</wps:Data>" + "</wps:Input>" } }, /** * Namespace par defaut de la requete POST. * * @returns {String} namespace */ namespaceByDefault : function () { var ns = [ "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"", "xmlns=\"http://www.opengis.net/wps/1.0.0\"", "xmlns:wfs=\"http://www.opengis.net/wfs\"", "xmlns:wps=\"http://www.opengis.net/wps/1.0.0\"", "xmlns:ows=\"http://www.opengis.net/ows/1.1\"", "xmlns:gml=\"http://www.opengis.net/gml\"", "xmlns:ogc=\"http://www.opengis.net/ogc\"", "xmlns:wcs=\"http://www.opengis.net/wcs/1.1.1\"", "xmlns:xlink=\"http://www.w3.org/1999/xlink\"" ]; return ns.join(" "); }, /** * Schemalocation par defaut. * * @returns {String} schemaLocation */ schemaLocationByDefault : function () { return "xsi:schemaLocation=\"http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd\""; }, /** * Construction de la requête. * * @example * // GET out : * // service=__SERVICE__ * // &version=__VERSION__ * // &rawdataoutput=__RAWDATAOUTPUT__ * // &identifier=__IDENTIFIER__ * // &request=__REQUEST__ * // &datainputs="__DATAINPUTS__" * // avec __DATAINPUTS__ = __KEY__=__DATA__;... * * // POST out : * // <?xml version=\"1.0\" encoding=\"UTF-8\"?> * // <wps:__REQUEST__ version=\"__VERSION__\" service=\"__SERVICE__\" * // __NAMESPACE__ __SCHEMALOCATION__> * // <ows:Identifier>__IDENTIFIER__</ows:Identifier> * // <wps:DataInputs> * // <!-- __DATAINPUTS__ --> * // </wps:DataInputs> * // <wps:ResponseForm> * // <wps:RawDataOutput> * // <ows:Identifier>__RAWDATAOUTPUT__</ows:Identifier> * // </wps:RawDataOutput> * // </wps:ResponseForm> * // </wps:__REQUEST__>", * // avec __DATAINPUTS__ * // <wps:Input> * // <ows:Identifier>__KEY__</ows:Identifier> * // <wps:Data> * // <wps:LiteralData>__DATA__</wps:LiteralData> * // </wps:Data> * // </wps:Input> * * @returns {Boolean} validation de la construction de la requete */ processRequestString : function () { this.logger.trace("WPS::processRequestString ()"); var template = ""; if (this.method === "POST") { template = this.template.post.value; } else Eif (this.method === "GET") { template = this.template.get.value; } else { this.logger.error("No other method supported by the service !"); return false; } template = template.replace(/__SERVICE__/g, this.paramservice); template = template.replace(/__VERSION__/g, this.paramversion); template = template.replace(/__RAWDATAOUTPUT__/g, this.paramrawdataoutput); template = template.replace(/__IDENTIFIER__/g, this.paramidentifier); template = template.replace(/__REQUEST__/g, this.paramrequest); // ajout + if (this.method === "POST") { template = template.replace(/__NAMESPACE__/g, this.namespaceByDefault); template = template.replace(/__SCHEMALOCATION__/g, this.schemaLocationByDefault); } // ajout des datainputs template = template.replace(/<!-- __DATAINPUTS__ -->/g, this.__addDataInputs()); Iif (!template) { this.logger.warn("traduction tmpl : empty request !?"); return false; } this.requestString = template; this.logger.trace("traduction tmpl", template); return true; }, /** * Ajout des données * * @returns {String} Données concaténées dans une chaine */ __addDataInputs : function () { this.logger.trace("WPS::__addDataInputs ()"); // c'est un peu grossier... var tmpl = this.method === "GET" ? this.template.get.input : this.template.post.input; var sep = this.method === "GET" ? ";" : ""; var result = ""; var that = this; var map = this.DataObject.getData(); for (var i = 0; i < map.length; i++) { // FIXME closure ? (function (j) { if (sep) { sep = (j === map.length - 1) ? "" : ";"; } result = result.concat(that.__addDataInput(tmpl, map[j].k, map[j].v), sep); })(i); } return result; }, /** * Ajout d'une donnée. * * @param {String} tmpl - template * @param {String} key - clef * @param {String} data - valeur * @returns {String} chaine avec les substitutions clef/valeur */ __addDataInput : function (tmpl, key, data) { var tmp = tmpl; tmp = tmp.replace(/__KEY__/g, key); tmp = tmp.replace(/__DATA__/g, data); return tmp; }, /** * Definir le mode de requête * * @param {String} method - GET|POST */ setMethod : function (method) { if (method === "GET" || method === "POST") { this.method = method; } else { this.logger.warn("support only GET and POST method !"); } }, /** * Retourne le mode de requete (GET|POST). * * @returns {AltiRequest.options.mode|String} methode (GET|POST) */ getMethod : function () { return this.method; } }; export default WPS; |