All files / src/Services/Route/Request/model RouteParamREST.js

92.06% Statements 58/63
75% Branches 24/32
100% Functions 8/8
92.06% Lines 58/63

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                            2x       2x 2x       2x         2x     2x     2x     2x     2x     2x     2x     2x     2x     2x     2x     2x           1x   1x                               1x 1x 1x 1x 1x       1x               1x               1x               1x 1x                         1x 1x                     1x   1x 1x 3x     1x                 1x 2x   2x         2x         2x         2x         2x 1x           2x 1x           2x 1x           2x 1x           2x 1x           2x 1x           2x 1x           2x 1x           2x        
 
import Logger from "../../../../Utils/LoggerByDefault";
 
/**
 * @classdesc
 * Classe de gestion des param. des requêtes du service de calcul d'itineraire (REST).
 *      Permet le mapping avec les options du service.
 * @constructor
 * @alias Gp.Services.Route.Request.RouteParamREST
 * @param {Object} options - options
 *
 * @private
 */
function RouteParamREST (options) {
    Iif (!(this instanceof RouteParamREST)) {
        throw new TypeError("RouteParamREST constructor cannot be called as a function.");
    }
 
    this.logger = Logger.getLogger();
    this.logger.trace("[Constructeur RouteParamREST ()]");
    /**
     * Options en paramêtres du constructeur.
     */
    this.options = options || {};
 
    // mapping des options avec l'API REST
 
    /** Ressource utilisée */
    this.resource = this.options.resource;
 
    /** Coordonnées du point de départ. */
    this.start = this.options.startPoint.x + "," + this.options.startPoint.y;
 
    /** Coordonnées du point d’arrivée. */
    this.end = this.options.endPoint.x + "," + this.options.endPoint.y;
 
    /** Coordonnées des étapes point de départ. */
    this.intermediates = this.options.viaPoints;
 
    /** Nom du profile à utiliser */
    this.profile = this.options.graph;
 
    /** projection (code EPSG comme epsg:4326 ou wgs84) */
    this.crs = this.options.srs;
 
    /** Liste des contraintes */
    this.constraints = this.options.constraints;
 
    /** Nom de l'optimisation à utiliser */
    this.optimization = this.options.routePreference;
 
    /** Format de sortie (résumé de l’itinéraire) */
    this.getSteps = (this.options.geometryInInstructions) ? "true" : "false";
 
    /** Unité des distances */
    this.distanceUnit = this.options.distanceUnit;
 
    /** Unité des durées */
    this.timeUnit = this.options.timeUnit;
 
    /** Attributs des voies */
    this.waysAttributes = this.options.waysAttributes;
}
 
/**
 * CLASSNAME
 */
RouteParamREST.CLASSNAME = "RouteParamREST";
 
RouteParamREST.prototype = {
 
    /**
     * @lends module:RouteParamREST#
     */
 
    /**
     * Constructeur (alias)
     */
    constructor : RouteParamREST,
 
    /**
     * Retourne une liste de points
     * @returns {String} une liste de points (sep '|')
     */
    getIntermediates : function () {
        var array = [];
        Eif (this.intermediates.length !== 0) {
            for (var i = 0; i < this.intermediates.length; i++) {
                var obj = this.intermediates[i];
                array.push(obj.x + "," + obj.y);
            }
        }
 
        return array.join("|");
    },
 
    /**
     * Retourne une liste d'attributs
     * @returns {String} une liste d'attributs (sep '|')
     */
    getWaysAttributes : function () {
        return this.waysAttributes.join("|");
    },
 
    /**
     * Retourne un profile
     * @returns {String} profile
     */
    getProfile : function () {
        return this.profile;
    },
 
    /**
     * Retourne un distanceUnit
     * @returns {String} distanceUnit
     */
    getDistanceUnit : function () {
        Eif (this.distanceUnit === "m") {
            return "meter";
        }
        if (this.distanceUnit === "km") {
            return "kilometer";
        }
        return "";
    },
 
    /**
     * Retourne une optimisation
     * @returns {String} optimization
     */
    getOptimization : function () {
        Eif (this.optimization) {
            return this.optimization;
        } else {
            return "";
        }
    },
 
    /**
     * Retourne la liste des constraints
     * @returns {String} une liste des constraints (sep '|')
     */
    getConstraints : function () {
        var constraintArray = [];
 
        Eif (this.constraints.length !== 0) {
            for (var k = 0; k < this.constraints.length; k++) {
                constraintArray.push(JSON.stringify(this.constraints[k]));
            }
        }
        return constraintArray.join("|");
    }
};
 
/**
 * Tableau de clefs/valeurs pour param.
 *
 * @returns {Array} liste de paramêtres
 */
RouteParamREST.prototype.getParams = function () {
    var map = [];
 
    map.push({
        k : "resource",
        v : this.resource
    });
 
    map.push({
        k : "start",
        v : this.start
    });
 
    map.push({
        k : "end",
        v : this.end
    });
 
    map.push({
        k : "geometryFormat",
        v : "geojson"
    });
 
    if (this.optimization) {
        map.push({
            k : "optimization",
            v : this.getOptimization()
        });
    }
 
    if (this.intermediates) {
        map.push({
            k : "intermediates",
            v : this.getIntermediates()
        });
    }
 
    if (this.profile) {
        map.push({
            k : "profile",
            v : this.getProfile()
        });
    }
 
    if (this.constraints) {
        map.push({
            k : "constraints",
            v : this.getConstraints()
        });
    }
 
    if (this.crs) {
        map.push({
            k : "crs",
            v : this.crs
        });
    }
 
    if (this.distanceUnit) {
        map.push({
            k : "distanceUnit",
            v : this.getDistanceUnit()
        });
    }
 
    if (this.timeUnit) {
        map.push({
            k : "timeUnit",
            v : this.timeUnit
        });
    }
 
    if (this.waysAttributes) {
        map.push({
            k : "waysAttributes",
            v : this.getWaysAttributes()
        });
    }
 
    return map;
};
 
export default RouteParamREST;