all files / lib/ decorators.js

81.85% Statements 257/314
64.81% Branches 105/162
83.33% Functions 40/48
81.85% Lines 257/314
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 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439  20× 20× 20× 44×   20× 20×   12× 12×                                                                                                                     13×                                                                                                                                                                                     12× 12× 12×     15× 15× 15× 15× 16×   15×       20× 20× 20×         20× 20×     20× 20× 20×   20× 18×   17×   16×     16×   15×       14×                    
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var server_container_1 = require("./server-container");
var server_types_1 = require("./server-types");
var metadata = require("./metadata");
require("reflect-metadata");
var _ = require("lodash");
function Path(path) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        if (args.length == 1) {
            return PathTypeDecorator.apply(this, [args[0], path]);
        }
        else Eif (args.length == 3 && typeof args[2] === "object") {
            return PathMethodDecorator.apply(this, [args[0], args[1], args[2], path]);
        }
        throw new Error("Invalid @Path Decorator declaration.");
    };
}
exports.Path = Path;
function AcceptLanguage() {
    var languages = [];
    for (var _i = 0; _i < arguments.length; _i++) {
        languages[_i] = arguments[_i];
    }
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        Eif (args.length == 1) {
            return AcceptLanguageTypeDecorator.apply(this, [args[0], languages]);
        }
        else if (args.length == 3 && typeof args[2] === "object") {
            return AcceptLanguageMethodDecorator.apply(this, [args[0], args[1], args[2], languages]);
        }
        throw new Error("Invalid @AcceptLanguage Decorator declaration.");
    };
}
exports.AcceptLanguage = AcceptLanguage;
function Accept() {
    var accepts = [];
    for (var _i = 0; _i < arguments.length; _i++) {
        accepts[_i] = arguments[_i];
    }
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        Iif (args.length == 1) {
            return AcceptTypeDecorator.apply(this, [args[0], accepts]);
        }
        else Eif (args.length == 3 && typeof args[2] === "object") {
            return AcceptMethodDecorator.apply(this, [args[0], args[1], args[2], accepts]);
        }
        throw new Error("Invalid @Accept Decorator declaration.");
    };
}
exports.Accept = Accept;
function Context() {
    var args = [];
    for (var _i = 0; _i < arguments.length; _i++) {
        args[_i] = arguments[_i];
    }
    args = _.without(args, undefined);
    var newArgs = args.concat([metadata.ParamType.context, null]);
    Eif (args.length < 3 || typeof args[2] === "undefined") {
        return processDecoratedProperty.apply(this, newArgs);
    }
    else if (args.length == 3 && typeof args[2] === "number") {
        return processDecoratedParameter.apply(this, newArgs);
    }
    throw new Error("Invalid @Context Decorator declaration.");
}
exports.Context = Context;
function ContextRequest() {
    var args = [];
    for (var _i = 0; _i < arguments.length; _i++) {
        args[_i] = arguments[_i];
    }
    args = _.without(args, undefined);
    var newArgs = args.concat([metadata.ParamType.context_request, null]);
    Iif (args.length < 3 || typeof args[2] === "undefined") {
        return processDecoratedProperty.apply(this, newArgs);
    }
    else Eif (args.length == 3 && typeof args[2] === "number") {
        return processDecoratedParameter.apply(this, newArgs);
    }
    throw new Error("Invalid @ContextRequest Decorator declaration.");
}
exports.ContextRequest = ContextRequest;
function ContextResponse() {
    var args = [];
    for (var _i = 0; _i < arguments.length; _i++) {
        args[_i] = arguments[_i];
    }
    args = _.without(args, undefined);
    var newArgs = args.concat([metadata.ParamType.context_response, null]);
    Iif (args.length < 3 || typeof args[2] === "undefined") {
        return processDecoratedProperty.apply(this, newArgs);
    }
    else Eif (args.length == 3 && typeof args[2] === "number") {
        return processDecoratedParameter.apply(this, newArgs);
    }
    throw new Error("Invalid @ContextResponse Decorator declaration.");
}
exports.ContextResponse = ContextResponse;
function ContextNext() {
    var args = [];
    for (var _i = 0; _i < arguments.length; _i++) {
        args[_i] = arguments[_i];
    }
    args = _.without(args, undefined);
    var newArgs = args.concat([metadata.ParamType.context_next, null]);
    Iif (args.length < 3 || typeof args[2] === "undefined") {
        return processDecoratedProperty.apply(this, newArgs);
    }
    else Eif (args.length == 3 && typeof args[2] === "number") {
        return processDecoratedParameter.apply(this, newArgs);
    }
    throw new Error("Invalid @ContextNext Decorator declaration.");
}
exports.ContextNext = ContextNext;
function ContextLanguage() {
    var args = [];
    for (var _i = 0; _i < arguments.length; _i++) {
        args[_i] = arguments[_i];
    }
    args = _.without(args, undefined);
    var newArgs = args.concat([metadata.ParamType.context_accept_language, null]);
    Iif (args.length < 3 || typeof args[2] === "undefined") {
        return processDecoratedProperty.apply(this, newArgs);
    }
    else Eif (args.length == 3 && typeof args[2] === "number") {
        return processDecoratedParameter.apply(this, newArgs);
    }
    throw new Error("Invalid @ContextLanguage Decorator declaration.");
}
exports.ContextLanguage = ContextLanguage;
function ContextAccept() {
    var args = [];
    for (var _i = 0; _i < arguments.length; _i++) {
        args[_i] = arguments[_i];
    }
    args = _.without(args, undefined);
    var newArgs = args.concat([metadata.ParamType.context_accept, null]);
    Iif (args.length < 3 || typeof args[2] === "undefined") {
        return processDecoratedProperty.apply(this, newArgs);
    }
    else Eif (args.length == 3 && typeof args[2] === "number") {
        return processDecoratedParameter.apply(this, newArgs);
    }
    throw new Error("Invalid @ContextAccept Decorator declaration.");
}
exports.ContextAccept = ContextAccept;
function GET(target, propertyKey, descriptor) {
    processHttpVerb(target, propertyKey, server_types_1.HttpMethod.GET);
}
exports.GET = GET;
function POST(target, propertyKey, descriptor) {
    processHttpVerb(target, propertyKey, server_types_1.HttpMethod.POST);
}
exports.POST = POST;
function PUT(target, propertyKey, descriptor) {
    processHttpVerb(target, propertyKey, server_types_1.HttpMethod.PUT);
}
exports.PUT = PUT;
function DELETE(target, propertyKey, descriptor) {
    processHttpVerb(target, propertyKey, server_types_1.HttpMethod.DELETE);
}
exports.DELETE = DELETE;
function HEAD(target, propertyKey, descriptor) {
    processHttpVerb(target, propertyKey, server_types_1.HttpMethod.HEAD);
}
exports.HEAD = HEAD;
function OPTIONS(target, propertyKey, descriptor) {
    processHttpVerb(target, propertyKey, server_types_1.HttpMethod.OPTIONS);
}
exports.OPTIONS = OPTIONS;
function PATCH(target, propertyKey, descriptor) {
    processHttpVerb(target, propertyKey, server_types_1.HttpMethod.PATCH);
}
exports.PATCH = PATCH;
function BodyOptions(options) {
    return function (target, propertyKey, descriptor) {
        var serviceMethod = server_container_1.InternalServer.registerServiceMethod(target.constructor, propertyKey);
        Eif (serviceMethod) {
            serviceMethod.bodyParserOptions = options;
        }
    };
}
exports.BodyOptions = BodyOptions;
function PathParam(name) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        var newArgs = args.concat([metadata.ParamType.path, name]);
        Iif (args.length < 3 || typeof args[2] === "undefined") {
            return processDecoratedProperty.apply(this, newArgs);
        }
        else Eif (args.length == 3 && typeof args[2] === "number") {
            return processDecoratedParameter.apply(this, newArgs);
        }
        throw new Error("Invalid @PathParam Decorator declaration.");
    };
}
exports.PathParam = PathParam;
function FileParam(name) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        var newArgs = args.concat([metadata.ParamType.file, name]);
        Iif (args.length < 3 || typeof args[2] === "undefined") {
            return processDecoratedProperty.apply(this, newArgs);
        }
        else Eif (args.length == 3 && typeof args[2] === "number") {
            return processDecoratedParameter.apply(this, newArgs);
        }
        throw new Error("Invalid @FileParam Decorator declaration.");
    };
}
exports.FileParam = FileParam;
function FilesParam(name) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        var newArgs = args.concat([metadata.ParamType.files, name]);
        if (args.length < 3 || typeof args[2] === "undefined") {
            return processDecoratedProperty.apply(this, newArgs);
        }
        else if (args.length == 3 && typeof args[2] === "number") {
            return processDecoratedParameter.apply(this, newArgs);
        }
        throw new Error("Invalid @FilesParam Decorator declaration.");
    };
}
exports.FilesParam = FilesParam;
function QueryParam(name) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        var newArgs = args.concat([metadata.ParamType.query, name]);
        Iif (args.length < 3 || typeof args[2] === "undefined") {
            return processDecoratedProperty.apply(this, newArgs);
        }
        else Eif (args.length == 3 && typeof args[2] === "number") {
            return processDecoratedParameter.apply(this, newArgs);
        }
        throw new Error("Invalid @QueryParam Decorator declaration.");
    };
}
exports.QueryParam = QueryParam;
function HeaderParam(name) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        var newArgs = args.concat([metadata.ParamType.header, name]);
        if (args.length < 3 || typeof args[2] === "undefined") {
            return processDecoratedProperty.apply(this, newArgs);
        }
        else Eif (args.length == 3 && typeof args[2] === "number") {
            return processDecoratedParameter.apply(this, newArgs);
        }
        throw new Error("Invalid @HeaderParam Decorator declaration.");
    };
}
exports.HeaderParam = HeaderParam;
function CookieParam(name) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        var newArgs = args.concat([metadata.ParamType.cookie, name]);
        Iif (args.length < 3 || typeof args[2] === "undefined") {
            return processDecoratedProperty.apply(this, newArgs);
        }
        else Eif (args.length == 3 && typeof args[2] === "number") {
            return processDecoratedParameter.apply(this, newArgs);
        }
        throw new Error("Invalid @CookieParam Decorator declaration.");
    };
}
exports.CookieParam = CookieParam;
function FormParam(name) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        var newArgs = args.concat([metadata.ParamType.form, name]);
        Iif (args.length < 3 || typeof args[2] === "undefined") {
            return processDecoratedProperty.apply(this, newArgs);
        }
        else Eif (args.length == 3 && typeof args[2] === "number") {
            return processDecoratedParameter.apply(this, newArgs);
        }
        throw new Error("Invalid @FormParam Decorator declaration.");
    };
}
exports.FormParam = FormParam;
function Param(name) {
    return function () {
        var args = [];
        for (var _i = 0; _i < arguments.length; _i++) {
            args[_i] = arguments[_i];
        }
        args = _.without(args, undefined);
        var newArgs = args.concat([metadata.ParamType.param, name]);
        Iif (args.length < 3 || typeof args[2] === "undefined") {
            return processDecoratedProperty.apply(this, newArgs);
        }
        else Eif (args.length == 3 && typeof args[2] === "number") {
            return processDecoratedParameter.apply(this, newArgs);
        }
        throw new Error("Invalid @Param Decorator declaration.");
    };
}
exports.Param = Param;
function AcceptLanguageTypeDecorator(target, languages) {
    var classData = server_container_1.InternalServer.registerServiceClass(target);
    classData.languages = languages;
}
function AcceptLanguageMethodDecorator(target, propertyKey, descriptor, languages) {
    var serviceMethod = server_container_1.InternalServer.registerServiceMethod(target.constructor, propertyKey);
    if (serviceMethod) {
        serviceMethod.languages = languages;
    }
}
function AcceptTypeDecorator(target, accepts) {
    var classData = server_container_1.InternalServer.registerServiceClass(target);
    classData.accepts = accepts;
}
function AcceptMethodDecorator(target, propertyKey, descriptor, accepts) {
    var serviceMethod = server_container_1.InternalServer.registerServiceMethod(target.constructor, propertyKey);
    Eif (serviceMethod) {
        serviceMethod.accepts = accepts;
    }
}
function PathTypeDecorator(target, path) {
    var classData = server_container_1.InternalServer.registerServiceClass(target);
    classData.path = path;
}
function PathMethodDecorator(target, propertyKey, descriptor, path) {
    var serviceMethod = server_container_1.InternalServer.registerServiceMethod(target.constructor, propertyKey);
    Eif (serviceMethod) {
        serviceMethod.path = path;
    }
}
function processDecoratedParameter(target, propertyKey, parameterIndex, paramType, name) {
    var serviceMethod = server_container_1.InternalServer.registerServiceMethod(target.constructor, propertyKey);
    Eif (serviceMethod) {
        var paramTypes = Reflect.getOwnMetadata("design:paramtypes", target, propertyKey);
        while (serviceMethod.parameters.length < paramTypes.length) {
            serviceMethod.parameters.push(new metadata.MethodParam(null, paramTypes[serviceMethod.parameters.length], metadata.ParamType.body));
        }
        serviceMethod.parameters[parameterIndex] = new metadata.MethodParam(name, paramTypes[parameterIndex], paramType);
    }
}
function processDecoratedProperty(target, key, paramType, paramName) {
    var classData = server_container_1.InternalServer.registerServiceClass(target.constructor);
    var propertyType = Reflect.getMetadata("design:type", target, key);
    classData.addProperty(key, paramType, paramName, propertyType);
}
function processHttpVerb(target, propertyKey, httpMethod) {
    var serviceMethod = server_container_1.InternalServer.registerServiceMethod(target.constructor, propertyKey);
    Eif (serviceMethod) {
        Iif (serviceMethod.httpMethod) {
            throw new Error("Method is already annotated with @" +
                serviceMethod.httpMethod +
                ". You can only map a method to one HTTP verb.");
        }
        serviceMethod.httpMethod = httpMethod;
        processServiceMethod(target, propertyKey, serviceMethod);
    }
}
function processServiceMethod(target, propertyKey, serviceMethod) {
    serviceMethod.name = propertyKey;
    var paramTypes = Reflect.getOwnMetadata("design:paramtypes", target, propertyKey);
    while (paramTypes.length > serviceMethod.parameters.length) {
        serviceMethod.parameters.push(new metadata.MethodParam(null, paramTypes[serviceMethod.parameters.length], metadata.ParamType.body));
    }
    serviceMethod.parameters.forEach(function (param) {
        if (param.paramType == metadata.ParamType.cookie) {
            serviceMethod.mustParseCookies = true;
        }
        else if (param.paramType == metadata.ParamType.file) {
            serviceMethod.files.push(new metadata.FileParam(param.name, true));
        }
        else Iif (param.paramType == metadata.ParamType.files) {
            serviceMethod.files.push(new metadata.FileParam(param.name, false));
        }
        else if (param.paramType == metadata.ParamType.param) {
            serviceMethod.acceptMultiTypedParam = true;
        }
        else if (param.paramType == metadata.ParamType.form) {
            Iif (serviceMethod.mustParseBody) {
                throw Error("Can not use form parameters with a body parameter on the same method.");
            }
            serviceMethod.mustParseForms = true;
        }
        else if (param.paramType == metadata.ParamType.body) {
            Iif (serviceMethod.mustParseForms) {
                throw Error("Can not use form parameters with a body parameter on the same method.");
            }
            Iif (serviceMethod.mustParseBody) {
                throw Error("Can not use more than one body parameter on the same method.");
            }
            serviceMethod.mustParseBody = true;
        }
    });
}
 
//# sourceMappingURL=decorators.js.map