UNPKG

pqry

Version:

Easier query to pterodactyl panel

49 lines 2.22 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.GetApiKeys = GetApiKeys; const axios_1 = __importDefault(require("axios")); const ApiKey_js_1 = require("./../Objects/ApiKey.js"); function GetApiKeys(host, apikey) { return __awaiter(this, void 0, void 0, function* () { apikey = apikey.replace(" ", "").replace("Bearer", ""); var options = { headers: { Accept: "application/json", Authorization: `Bearer ${apikey}` } }; return (0, axios_1.default)(`${host}/api/client/account/api-keys`, options) .then((res) => { let statusCode = res.request.res.statusCode; if (statusCode == 200) { var rawApiKeys = res.data.data; var apiKeys = []; for (var rawApiKey of rawApiKeys) { var apiKey = rawApiKey.attributes; apiKey.host = host; apiKey.apikey = apikey; apiKeys.push(new ApiKey_js_1.ApiKey(apiKey)); } ; return apiKeys; } else return console.log(`Someting went wrong!${statusCode ? `\nStatus Code: ${statusCode}` : ""}`); }) .catch(e => console.log(e)); }); } ; //# sourceMappingURL=GetApiKeys.js.map