UNPKG

fauna-gql-upload

Version:

Manage your FaunaDB resources in within your project and upload them using a single command

216 lines (215 loc) 10.6 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 __generator = (this && this.__generator) || function (thisArg, body) { var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function (v) { return step([n, v]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while (_) try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [op[0] & 2, t.value]; switch (op[0]) { case 0: case 1: t = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } }; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; if (m) return m.call(o); if (o && typeof o.length === "number") return { next: function () { if (o && i >= o.length) o = void 0; return { value: o && o[i++], done: !o }; } }; throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); }; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; if (!m) return o; var i = m.call(o), r, ar = [], e; try { while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); } catch (error) { e = { error: error }; } finally { try { if (r && !r.done && (m = i["return"])) m.call(i); } finally { if (e) throw e.error; } } return ar; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; exports.__esModule = true; var env_1 = require("./env"); var getConfig_1 = __importDefault(require("./getConfig")); var node_fetch_1 = __importDefault(require("node-fetch")); var logger_1 = require("./logger"); var regionMap = new Map([ ["eu", { graphql: "https://graphql.eu.fauna.com", api: "https://db.eu.fauna.com" }], ["us", { graphql: "https://graphql.us.fauna.com", api: "https://db.us.fauna.com" }], ["classic", { graphql: "https://graphql.fauna.com", api: "https://db.fauna.com" }], ["preview", { graphql: "https://graphql.fauna-preview.com", api: "https://db.fauna-preview.com" }], ["local", { graphql: "http://localhost:8084", api: "http://localhost:8443" }] ]); // This variable stores the potential return value of findValidEndpoint() var establishedEndpoint; // The parameter `_useSavedEndpoint` was added to make tests work. It should not be used by other package code. function getEndpoint(_useSavedEndpoint) { if (_useSavedEndpoint === void 0) { _useSavedEndpoint = true; } return __awaiter(this, void 0, void 0, function () { var config, resultEndpoint, validEndpoint; return __generator(this, function (_a) { switch (_a.label) { case 0: // If the findValidEndpoint() has already produced a value, just use that value instead of calling it again. if (establishedEndpoint && _useSavedEndpoint) return [2 /*return*/, establishedEndpoint]; // Env var has top priority. if (env_1.graphqlEndpoint && env_1.apiEndpoint) return [2 /*return*/, { graphql: env_1.graphqlEndpoint, api: env_1.apiEndpoint }]; config = (0, getConfig_1["default"])(); if (config.region) { resultEndpoint = regionMap.get(config.region); if (resultEndpoint) return [2 /*return*/, resultEndpoint]; } return [4 /*yield*/, findValidEndpoint()]; case 1: validEndpoint = _a.sent(); if (!validEndpoint) { throw new Error("Region could not be inferred. Please review your configuration and try again."); } return [2 /*return*/, validEndpoint]; } }); }); } exports["default"] = getEndpoint; function findValidEndpoint() { return __awaiter(this, void 0, void 0, function () { var endpoints, results, index, endpoint, region, _a; var _this = this; return __generator(this, function (_b) { switch (_b.label) { case 0: endpoints = []; regionMap.forEach(function (value) { endpoints.push(value); }); return [4 /*yield*/, Promise.allSettled(endpoints.map(function (endpoint) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) { return [2 /*return*/, (0, node_fetch_1["default"])("".concat(endpoint.graphql, "/graphql"), { method: "POST", headers: { "Authorization": "Bearer ".concat(env_1.secret), "Content-Type": "text/plain" } })]; }); }); }))]; case 1: results = _b.sent(); _b.label = 2; case 2: _b.trys.push([2, 4, , 5]); return [4 /*yield*/, new Promise(function (resolve, reject) { results.forEach(function (result, index) { return __awaiter(_this, void 0, void 0, function () { var res, message, regex, ok; return __generator(this, function (_a) { switch (_a.label) { case 0: if (result.status !== "fulfilled") return [2 /*return*/]; return [4 /*yield*/, result.value.json()]; case 1: res = _a.sent(); message = res.errors[0].message; regex = /^Invalid database secret/i; ok = !regex.test(message); if (ok) resolve(index); if (index === results.length - 1) reject("Could not find correct endpoint. Make sure your secret key is correct."); return [2 /*return*/]; } }); }); }); })]; case 3: index = _b.sent(); endpoint = endpoints[index]; region = getRegionKey(endpoint); (0, logger_1.status)("Your database region was inferred from your secret key and was set to '".concat(region, "'. Use the 'region' option to set it explicitly.\nMore info: https://fgu-docs.com/configuration/config-file/\n"), "info"); establishedEndpoint = endpoint; return [2 /*return*/, endpoint]; case 4: _a = _b.sent(); (0, logger_1.status)("Could not infer endpoint.", "error"); return [2 /*return*/, null]; case 5: return [2 /*return*/]; } }); }); } function getRegionKey(endpoint) { var e_1, _a; try { for (var _b = __values(regionMap.entries()), _c = _b.next(); !_c.done; _c = _b.next()) { var _d = __read(_c.value, 2), key = _d[0], value = _d[1]; if (value.api == endpoint.api && value.graphql === endpoint.graphql) return key; } } catch (e_1_1) { e_1 = { error: e_1_1 }; } finally { try { if (_c && !_c.done && (_a = _b["return"])) _a.call(_b); } finally { if (e_1) throw e_1.error; } } }