HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //proc/self/root/usr/local/lib/node_modules/@ionic/cli/lib/app.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppClient = exports.formatName = void 0;
const guards_1 = require("../guards");
const color_1 = require("./color");
const http_1 = require("./http");
function formatName(app) {
    if (app.org) {
        return `${(0, color_1.weak)(`${app.org.name} / `)}${app.name}`;
    }
    return app.name;
}
exports.formatName = formatName;
class AppClient extends http_1.ResourceClient {
    constructor(token, e) {
        super();
        this.token = token;
        this.e = e;
    }
    async load(id) {
        const { req } = await this.e.client.make('GET', `/apps/${id}`);
        this.applyAuthentication(req, this.token);
        const res = await this.e.client.do(req);
        if (!(0, guards_1.isAppResponse)(res)) {
            throw (0, http_1.createFatalAPIFormat)(req, res);
        }
        return res.data;
    }
    async create(details) {
        const { req } = await this.e.client.make('POST', '/apps');
        this.applyAuthentication(req, this.token);
        req.send(details);
        const res = await this.e.client.do(req);
        if (!(0, guards_1.isAppResponse)(res)) {
            throw (0, http_1.createFatalAPIFormat)(req, res);
        }
        return res.data;
    }
    paginate(args = {}, orgId) {
        return this.e.client.paginate({
            reqgen: async () => {
                const { req } = await this.e.client.make('GET', '/apps');
                this.applyAuthentication(req, this.token);
                if (orgId) {
                    req.send({ org_id: orgId });
                }
                return { req };
            },
            guard: guards_1.isAppsResponse,
            ...args,
        });
    }
    async createAssociation(id, association) {
        const { req } = await this.e.client.make('POST', `/apps/${id}/repository`);
        req
            .set('Authorization', `Bearer ${this.token}`)
            .send({
            repository_id: association.repoId,
            type: association.type,
            branches: association.branches,
        });
        const res = await this.e.client.do(req);
        if (!(0, guards_1.isAppAssociationResponse)(res)) {
            throw (0, http_1.createFatalAPIFormat)(req, res);
        }
        return res.data;
    }
    async deleteAssociation(id) {
        const { req } = await this.e.client.make('DELETE', `/apps/${id}/repository`);
        req
            .set('Authorization', `Bearer ${this.token}`)
            .send({});
        await req;
    }
}
exports.AppClient = AppClient;