UNPKG

7.01 kBJavaScriptView Raw
1"use strict";
2var __assign = (this && this.__assign) || function () {
3 __assign = Object.assign || function(t) {
4 for (var s, i = 1, n = arguments.length; i < n; i++) {
5 s = arguments[i];
6 for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7 t[p] = s[p];
8 }
9 return t;
10 };
11 return __assign.apply(this, arguments);
12};
13var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
14 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
15 return new (P || (P = Promise))(function (resolve, reject) {
16 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
17 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
18 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
19 step((generator = generator.apply(thisArg, _arguments || [])).next());
20 });
21};
22var __generator = (this && this.__generator) || function (thisArg, body) {
23 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
24 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
25 function verb(n) { return function (v) { return step([n, v]); }; }
26 function step(op) {
27 if (f) throw new TypeError("Generator is already executing.");
28 while (_) try {
29 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;
30 if (y = 0, t) op = [op[0] & 2, t.value];
31 switch (op[0]) {
32 case 0: case 1: t = op; break;
33 case 4: _.label++; return { value: op[1], done: false };
34 case 5: _.label++; y = op[1]; op = [0]; continue;
35 case 7: op = _.ops.pop(); _.trys.pop(); continue;
36 default:
37 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
38 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
39 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
40 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
41 if (t[2]) _.ops.pop();
42 _.trys.pop(); continue;
43 }
44 op = body.call(thisArg, _);
45 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
46 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
47 }
48};
49Object.defineProperty(exports, "__esModule", { value: true });
50exports.getDestination = exports.getDestinationOptions = exports.useOrFetchDestination = void 0;
51var destination_1 = require("./destination");
52var destination_service_types_1 = require("./destination-service-types");
53var destination_from_env_1 = require("./destination-from-env");
54var destination_from_vcap_1 = require("./destination-from-vcap");
55var destination_from_service_1 = require("./destination-from-service");
56/**
57 * Returns the parameter if it is a destination, calls [[getDestination]] otherwise (which will try to fetch the destination
58 * from the Cloud Foundry destination service).
59 *
60 * Fetching a destination requires:
61 * - a binding to exactly one XSUAA service instance with service plan "application"
62 * - a binding to a destination service instance
63 *
64 * If either of the prerequisites is not met or one of the services returns an error, this function will either throw an error or return a promise that rejects.
65 * @param destination - A destination or the necessary parameters to fetch one.
66 * @param options - Caching options by fetching destination.
67 * @returns A promise resolving to the requested destination on success.
68 */
69function useOrFetchDestination(destination, options) {
70 if (options === void 0) { options = {}; }
71 return __awaiter(this, void 0, void 0, function () {
72 return __generator(this, function (_a) {
73 return [2 /*return*/, destination_service_types_1.isDestinationNameAndJwt(destination)
74 ? getDestination(destination.destinationName, destination.jwt ? __assign({ userJwt: destination.jwt }, options) : options)
75 : destination_1.sanitizeDestination(destination)];
76 });
77 });
78}
79exports.useOrFetchDestination = useOrFetchDestination;
80/**
81 * @deprecated Since v1.0.1. Use [[getDestination]] instead.
82 *
83 * Retrieves a destination with the given name from the Cloud Foundry destination service.
84 * Returns `null`, if no destination can be found.
85 * Requires the following service bindings: destination, XSUAA
86 * By default, selects subscriber over provider and instance over subaccount destinations.
87 *
88 * If the destinations are read from the environment, the jwt will be ignored.
89 * @param name - The name of the destination to be retrieved.
90 * @param options - The options of the fetching query of the destination that include the JWT of the current request and the strategy for selecting a destination.
91 * @returns A promise returning the requested destination on success.
92 */
93function getDestinationOptions(name, options) {
94 if (options === void 0) { options = {}; }
95 return __awaiter(this, void 0, void 0, function () {
96 return __generator(this, function (_a) {
97 return [2 /*return*/, getDestination(name, options)];
98 });
99 });
100}
101exports.getDestinationOptions = getDestinationOptions;
102/**
103 * Builds a destination from one of three sources (in the given order):
104 * - from the environment variable "destinations"
105 * - from service bindings
106 * - from the destination service
107 *
108 * If you want to get a destination only from a specific source, use the corresponding function directly
109 * (`getDestinationFromEnvByName`, `destinationForServiceBinding`, `getDestinationFromDestinationService`).
110 * @param name - The name of the destination to be retrieved.
111 * @param options - Configuration for how to retrieve destinations from the destination service.
112 * @returns A promise returning the requested destination on success.
113 */
114function getDestination(name, options) {
115 if (options === void 0) { options = {}; }
116 return __awaiter(this, void 0, void 0, function () {
117 return __generator(this, function (_a) {
118 return [2 /*return*/, (destination_from_env_1.searchEnvVariablesForDestination(name, options) ||
119 destination_from_vcap_1.searchServiceBindingForDestination(name) ||
120 destination_from_service_1.getDestinationFromDestinationService(name, options))];
121 });
122 });
123}
124exports.getDestination = getDestination;
125//# sourceMappingURL=destination-accessor.js.map
\No newline at end of file