All files / src/Services/ProcessIsoCurve/Request/model ProcessIsoCurveParam.js

81.13% Statements 43/53
40.9% Branches 9/22
100% Functions 6/6
81.13% Lines 43/53

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                                1x       1x 1x         1x         1x     1x     1x     1x           1x     1x   1x   1x   1x           1x               1x 1x             1x   1x                               1x               1x     1x 1x                   1x   1x 1x       1x               1x     1x                   1x 1x   1x         1x         1x         1x         1x         1x         1x         1x         1x 1x           1x 1x           1x        
 
import Logger from "../../../../Utils/LoggerByDefault";
 
/**
 * @classdesc
 *
 * Classe de gestion des param. des requêtes du service de calcul des iso.
 * Permet le mapping avec les options du service.
 *
 * @constructor
 * @alias Gp.Services.ProcessIsoCurve.Request.ProcessIsoCurveParam
 * @param {Object} options - options
 * @private
 *
 */
function ProcessIsoCurveParam (options) {
    Iif (!(this instanceof ProcessIsoCurveParam)) {
        throw new TypeError("ProcessIsoCurveParam constructor cannot be called as a function.");
    }
 
    this.logger = Logger.getLogger();
    this.logger.trace("[Constructeur ProcessIsoCurveParam ()]");
 
    /**
     * Options en paramêtres du constructeur.
     */
    this.options = options || {};
 
    // mapping des options avec l'API REST
 
    /** Identifiant de l’isochrone */
    this.id = this.options.id;
 
    /** Resource */
    this.resource = this.options.resource;
 
    /** Coordonnées de départ (ou arrivée si le reverse est à true). */
    this.point = this.options.position;
 
    /** projection (code EPSG comme epsg:4326 ou wgs84) */
    this.crs = this.options.srs;
 
    /**
     * Profil de véhicule à utiliser pour le calcul.
     * Voiture ou Pieton
     */
    this.profile = this.options.graph;
 
    /** Liste des règles de restrictions à utiliser */
    this.constraints = this.options.constraints;
 
    this.reverse = this.options.reverse;
 
    this.timeUnit = this.options.timeUnit;
 
    this.distanceUnit = this.options.distanceUnit;
 
    /**
     * "time" pour isochrone ou "distance" for isodistance.
     * Par defaut, time...
     */
    Iif (this.options.method === "distance") {
        this.costType = "distance";
        this.costValue = this.options.distance;
        if (this.distanceUnit === "m" && this.costValue >= 50000) {
            this.distanceUnit = "km";
            this.costValue /= 1000;
        }
    } else {
        this.costType = "time";
        this.costValue = this.options.time;
    }
}
 
/**
 * CLASSNAME
 */
ProcessIsoCurveParam.CLASSNAME = "ProcessIsoCurveParam";
 
ProcessIsoCurveParam.prototype = {
 
    /**
     * @lends module:ProcessIsoCurveParam#
     */
 
    /**
     * Constructeur (alias)
     */
    constructor : ProcessIsoCurveParam,
 
    /**
     * Retourne le point
     * @returns {String} x,y
     */
    getLocation : function () {
        return this.point.x + "," + this.point.y;
    },
 
    /**
     * Retourne l'unité de la distance
     * @returns {String}
     */
    getDistanceUnit : function () {
        Iif (this.distanceUnit === "m") {
            return "meter";
        }
        Eif (this.distanceUnit === "km") {
            return "kilometer";
        }
        return "";
    },
 
    /**
     * Retourne la liste des contraintes
     * @returns {String}
     */
    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("|");
    },
 
    /**
     * Retourne la direction
     * @returns {String}
     */
    getDirection : function () {
        Iif (this.reverse) {
            return "arrival";
        } else {
            return "departure";
        }
    }
};
 
/**
 * Tableau de clefs/valeurs pour param.
 *
 * @returns {Object[]} KVP
 */
ProcessIsoCurveParam.prototype.getParams = function () {
    var map = [];
 
    map.push({
        k : "resource",
        v : this.resource
    });
 
    map.push({
        k : "point",
        v : this.getLocation()
    });
 
    map.push({
        k : "direction",
        v : this.getDirection()
    });
 
    map.push({
        k : "costType",
        v : this.costType
    });
 
    map.push({
        k : "costValue",
        v : this.costValue
    });
 
    map.push({
        k : "profile",
        v : this.profile
    });
 
    map.push({
        k : "timeUnit",
        v : this.timeUnit
    });
 
    map.push({
        k : "distanceUnit",
        v : this.getDistanceUnit()
    });
 
    Eif (this.crs) {
        map.push({
            k : "crs",
            v : this.crs
        });
    }
 
    Eif (this.constraints) {
        map.push({
            k : "constraints",
            v : this.getConstraints()
        });
    }
 
    return map;
};
 
export default ProcessIsoCurveParam;