UNPKG

10.5 kBJavaScriptView Raw
1"use strict";
2var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4 return new (P || (P = Promise))(function (resolve, reject) {
5 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8 step((generator = generator.apply(thisArg, _arguments || [])).next());
9 });
10};
11var __generator = (this && this.__generator) || function (thisArg, body) {
12 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14 function verb(n) { return function (v) { return step([n, v]); }; }
15 function step(op) {
16 if (f) throw new TypeError("Generator is already executing.");
17 while (_) try {
18 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;
19 if (y = 0, t) op = [op[0] & 2, t.value];
20 switch (op[0]) {
21 case 0: case 1: t = op; break;
22 case 4: _.label++; return { value: op[1], done: false };
23 case 5: _.label++; y = op[1]; op = [0]; continue;
24 case 7: op = _.ops.pop(); _.trys.pop(); continue;
25 default:
26 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30 if (t[2]) _.ops.pop();
31 _.trys.pop(); continue;
32 }
33 op = body.call(thisArg, _);
34 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36 }
37};
38Object.defineProperty(exports, "__esModule", { value: true });
39exports.MethodRequestBuilderBase = exports.MethodRequestBuilder = void 0;
40var util_1 = require("@sap-cloud-sdk/util");
41var scp_cf_1 = require("../../connectivity/scp-cf");
42var odata_request_1 = require("../request/odata-request");
43/**
44 * Base class for all request builders.
45 * @typeparam EntityT - Type of the entity to create a request for.
46 */
47var MethodRequestBuilder = /** @class */ (function () {
48 /**
49 * Creates an instance of MethodRequestBuilder.
50 * @param requestConfig - Request configuration to initialize with.
51 */
52 function MethodRequestBuilder(requestConfig) {
53 this.requestConfig = requestConfig;
54 }
55 /**
56 * Create the URL based on configuration of the given builder.
57 * @param destination - Destination to execute the request against.
58 * @param options - Options to employ when fetching destinations.
59 * @returns Promise resolving to the URL for the request
60 */
61 MethodRequestBuilder.prototype.url = function (destination, options) {
62 return __awaiter(this, void 0, void 0, function () {
63 var request;
64 return __generator(this, function (_a) {
65 switch (_a.label) {
66 case 0: return [4 /*yield*/, this.build(destination, options)];
67 case 1:
68 request = _a.sent();
69 return [2 /*return*/, request.url()];
70 }
71 });
72 });
73 };
74 /**
75 * Create the relative URL based on configuration of the given builder.
76 * @returns The relative URL for the request
77 */
78 MethodRequestBuilder.prototype.relativeUrl = function () {
79 return this.build().relativeUrl();
80 };
81 /**
82 * @deprecated Since version 1.34.0 Use [[addCustomHeaders]] instead.
83 * Add custom headers to the request.
84 * @param headers - Key-value pairs denoting additional custom headers.
85 * @returns The request builder itself, to facilitate method chaining.
86 */
87 MethodRequestBuilder.prototype.withCustomHeaders = function (headers) {
88 this.requestConfig.addCustomHeaders(headers);
89 return this;
90 };
91 /**
92 * Add custom headers to the request. Existing headers will be overwritten.
93 * @param headers - Key-value pairs denoting additional custom headers.
94 * @returns The request builder itself, to facilitate method chaining.
95 */
96 MethodRequestBuilder.prototype.addCustomHeaders = function (headers) {
97 this.requestConfig.addCustomHeaders(headers);
98 return this;
99 };
100 /**
101 * @deprecated Since version 1.34.0 Use [[addCustomQueryParameters]] instead.
102 * Add custom query parameters to the request.
103 * @param queryParameters - Key-value pairs denoting additional custom query parameters to be set in the request.
104 * @returns The request builder itself, to facilitate method chaining.
105 */
106 MethodRequestBuilder.prototype.withCustomQueryParameters = function (queryParameters) {
107 this.requestConfig.addCustomQueryParameters(queryParameters);
108 return this;
109 };
110 /**
111 * Add custom query parameters to the request. If a query parameter with the given name already exists it is overwritten.
112 * @param queryParameters - Key-value pairs denoting additional custom query parameters to be set in the request.
113 * @returns The request builder itself, to facilitate method chaining
114 */
115 MethodRequestBuilder.prototype.addCustomQueryParameters = function (queryParameters) {
116 this.requestConfig.addCustomQueryParameters(queryParameters);
117 return this;
118 };
119 /**
120 * @deprecated Since version 1.34.0 Use [[setCustomServicePath]] instead.
121 * Replace the default service path with the given custom path.
122 * In case of the SAP S/4HANA APIs the servicePath defaults to `/sap/opu/odata/sap/<SERVICE_NAME>` and can be overwritten here.
123 * @param servicePath - Path to override the default with.
124 * @returns The request builder itself, to facilitate method chaining.
125 */
126 MethodRequestBuilder.prototype.withCustomServicePath = function (servicePath) {
127 this.requestConfig.customServicePath = servicePath;
128 return this;
129 };
130 /**
131 * Replace the default service path with the given custom path.
132 * In case of the SAP S/4HANA APIs the servicePath defaults to `/sap/opu/odata/sap/<SERVICE_NAME>` and can be overwritten here.
133 * @param servicePath - Path to override the default with
134 * @returns The request builder itself, to facilitate method chaining
135 */
136 MethodRequestBuilder.prototype.setCustomServicePath = function (servicePath) {
137 this.requestConfig.customServicePath = servicePath;
138 return this;
139 };
140 /**
141 * Add a custom request configuration to the request. Typically, this is used when specifying a response type for downloading files.
142 * If the custom request configuration contains [[defaultDisallowedKeys | disallowed keys]], those will be ignored.
143 * @param requestConfiguration - Key-value pairs denoting additional custom request configuration options to be set in the request.
144 * @returns The request builder itself, to facilitate method chaining.
145 */
146 MethodRequestBuilder.prototype.addCustomRequestConfiguration = function (requestConfiguration) {
147 this.requestConfig.addCustomRequestConfiguration(requestConfiguration);
148 return this;
149 };
150 /**
151 * Append the given path to the URL.
152 * This can be used for querying navigation properties of an entity.
153 * To execute a request with an appended path use `executeRaw` to avoid errors during deserialization. When using this, the `execute` method is omitted from the return type.
154 * @param path - Path to be appended.
155 * @returns The request builder itself without "execute" function, to facilitate method chaining.
156 */
157 MethodRequestBuilder.prototype.appendPath = function () {
158 var _a;
159 var path = [];
160 for (var _i = 0; _i < arguments.length; _i++) {
161 path[_i] = arguments[_i];
162 }
163 (_a = this.requestConfig).appendPath.apply(_a, path);
164 return this;
165 };
166 /**
167 * Skip fetching csrf token for this request, which is typically useful when the csrf token is not required.
168 * @returns The request builder itself, to facilitate method chaining.
169 */
170 MethodRequestBuilder.prototype.skipCsrfTokenFetching = function () {
171 this.requestConfig.fetchCsrfToken = false;
172 return this;
173 };
174 /**
175 * Build an ODataRequest that holds essential configuration for the service request and executes it.
176 * @deprecated Since v1.30.0. This method will be protected and should not be used externally.
177 * @param destination - Targeted destination on which the request is performed.
178 * @param options - Options to employ when fetching destinations.
179 * @returns The OData request executor including the destination configuration, if one was given.
180 */
181 MethodRequestBuilder.prototype.build = function (destination, options) {
182 var _this = this;
183 if (destination) {
184 return scp_cf_1.useOrFetchDestination(destination, options)
185 .then(function (dest) {
186 if (!dest) {
187 throw Error(scp_cf_1.noDestinationErrorMessage(destination));
188 }
189 return new odata_request_1.ODataRequest(_this.requestConfig, dest);
190 })
191 .catch(function (error) {
192 throw new util_1.ErrorWithCause(scp_cf_1.noDestinationErrorMessage(destination), error);
193 });
194 }
195 return new odata_request_1.ODataRequest(this.requestConfig);
196 };
197 return MethodRequestBuilder;
198}());
199exports.MethodRequestBuilder = MethodRequestBuilder;
200exports.MethodRequestBuilderBase = MethodRequestBuilder;
201//# sourceMappingURL=request-builder-base.js.map
\No newline at end of file