All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.js.qpid.common.JsonRest.js Maven / Gradle / Ivy

/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

define(["dojo/_base/lang", "dojo/json", "dojo/_base/declare", "dojo/store/util/QueryResults"],
    function (lang, json, declare, QueryResults)
    {
        return declare("qpid.common.JsonRest", null, {
            headers: null,
            idProperty: "id",
            firstProperty: "first",
            lastProperty: "last",
            accepts: "application/javascript, application/json",

            // constructor arguments
            queryOperation: null,
            modelObject: null,
            management: null,
            queryParams: null,
            totalRetriever: null,

            constructor: function (options)
            {
                this.headers = {};
                declare.safeMixin(this, options);
            },

            getIdentity: function (object)
            {
                return object[this.idProperty];
            },

            query: function (query, options)
            {
                query = lang.mixin(query || {}, this.queryParams);
                options = options || {};
                var headers = lang.mixin({Accept: this.accepts}, this.headers, options.headers);

                query[this.firstProperty] = options.start >= 0 ? options.start : -1;
                query[this.lastProperty] = options.count >= 0 && query.first >= 0 ? options.count + query.first : -1;

                var modelObj = {
                    name: this.queryOperation,
                    parent: this.modelObject,
                    type: this.modelObject.type
                };
                var results = management.load(modelObj, query, {headers: headers});

                if (this.totalRetriever)
                {
                    results.total = this.totalRetriever();
                }
                return QueryResults(results);
            }
        });

    });




© 2015 - 2025 Weber Informatics LLC | Privacy Policy