Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/apollo-server-core/dist/utils/ drwxr-xr-x | |
| Viewing file: Select action/file-type: "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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Dispatcher = void 0;
class Dispatcher {
constructor(targets) {
this.targets = targets;
}
callTargets(targets, methodName, ...args) {
return targets.map(target => {
const method = target[methodName];
if (method && typeof method === 'function') {
return method.apply(target, args);
}
});
}
invokeHookAsync(methodName, ...args) {
return __awaiter(this, void 0, void 0, function* () {
return yield Promise.all(this.callTargets(this.targets, methodName, ...args));
});
}
invokeHookSync(methodName, ...args) {
return this.callTargets(this.targets, methodName, ...args);
}
reverseInvokeHookSync(methodName, ...args) {
return this.callTargets(this.targets.reverse(), methodName, ...args);
}
invokeHooksUntilNonNull(methodName, ...args) {
return __awaiter(this, void 0, void 0, function* () {
for (const target of this.targets) {
const method = target[methodName];
if (!(method && typeof method === 'function')) {
continue;
}
const value = yield method.apply(target, args);
if (value !== null) {
return value;
}
}
return null;
});
}
invokeDidStartHook(methodName, ...args) {
const didEndHooks = [];
for (const target of this.targets) {
const method = target[methodName];
if (method && typeof method === 'function') {
const didEndHook = method.apply(target, args);
if (didEndHook) {
didEndHooks.push(didEndHook);
}
}
}
return (...args) => {
didEndHooks.reverse();
for (const didEndHook of didEndHooks) {
didEndHook(...args);
}
};
}
}
exports.Dispatcher = Dispatcher;
//# sourceMappingURL=dispatcher.js.map |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0378 ]-- |