UNPKG

qcobjects-cli

Version:

qcobjects cli command line tool

90 lines (80 loc) 2.23 kB
/** * QCObjects CLI 2.4.x * ________________ * * Author: Jean Machuca <correojean@gmail.com> * * Cross Browser Javascript Framework for MVC Patterns * QuickCorp/QCObjects is licensed under the * GNU Lesser General Public License v3.0 * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt) * * Permissions of this copyleft license are conditioned on making available * complete source code of licensed works and modifications under the same * license or the GNU GPLv3. Copyright and license notices must be preserved. * Contributors provide an express grant of patent rights. However, a larger * work using the licensed work through interfaces provided by the licensed * work may be distributed under different terms and without source code for * the larger work. * * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com> * * Everyone is permitted to copy and distribute verbatim copies of this * license document, but changing it is not allowed. */ /*eslint no-unused-vars: "off"*/ /*eslint no-redeclare: "off"*/ /*eslint no-empty: "off"*/ /*eslint strict: "off"*/ /*eslint no-mixed-operators: "off"*/ /*eslint no-undef: "off"*/ "use strict"; import { Package, Service, logger } from "qcobjects"; export class QuickCorpCloud extends Service { headers: any; url: any; basePath: any; data: any; constructor({ name = "quickcorp_cloud", external = true, useHTTP2 = true, cached = false, method = "post", headers = { "origin": "localhost", "content-type": "application/json" }, basePath = "https://cloud.quickcorp.org/", url = "", withCredentials = false }) { super({ name, external, useHTTP2, cached, method, headers, basePath, url, withCredentials }); } _new_(o: any) { // service instantiated this.headers["authorization"] = "Basic token"; this.url = this.basePath + o.apiMethod; this.data = o.data; } done(service: any, standardResponse: any) { // service loaded logger.debug(standardResponse); } fail(e: any) { logger.debug(e); } } Package("org.quickcorp.qcobjects.api.client_services", [ QuickCorpCloud ]);