@agility/cli
Version:
Agility CLI for working with your content. (Public Beta)
227 lines • 11.4 kB
JavaScript
;
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 = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
return g.next = verb(0), g["throw"] = verb(1), g["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 (g && (g = 0, op[0] && (_ = 0)), _) 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 };
}
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.DownloadOperationsRegistry = exports.DOWNLOAD_OPERATIONS = void 0;
// Import existing downloaders
var download_galleries_1 = require("./download-galleries");
var download_assets_1 = require("./download-assets");
var download_models_1 = require("./download-models");
var download_templates_1 = require("./download-templates");
var download_containers_1 = require("./download-containers");
var download_sync_sdk_1 = require("./download-sync-sdk");
var download_sitemaps_1 = require("./download-sitemaps");
var state_1 = require("../../core/state");
exports.DOWNLOAD_OPERATIONS = {
syncSDK: {
name: 'downloadAllSyncSDK',
description: 'Download content items and sitemaps via Content Sync SDK',
handler: function (guid) { return __awaiter(void 0, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
// Sync SDK will handle locales internally via guidLocaleMap (user will update this)
// For now, use default locale - this will be converted to use guidLocaleMap internally
return [4 /*yield*/, (0, download_sync_sdk_1.downloadAllSyncSDK)(guid)];
case 1:
// Sync SDK will handle locales internally via guidLocaleMap (user will update this)
// For now, use default locale - this will be converted to use guidLocaleMap internally
_a.sent();
return [2 /*return*/];
}
});
}); },
elements: ['Content', 'Sitemaps'], // NOTE: Content Sync SDK doesn't download page structures - only content items
dependencies: ['Models', 'Containers', 'Assets', 'Galleries', 'Templates'] // Content requires Models and Containers
},
galleries: {
name: 'downloadAllGalleries',
description: 'Download asset galleries and media groupings',
handler: function (guid) { return __awaiter(void 0, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, download_galleries_1.downloadAllGalleries)(guid)];
case 1:
_a.sent();
return [2 /*return*/];
}
});
}); },
elements: ['Galleries'],
// dependencies: ['Assets'] // Galleries require Assets to be meaningful
},
assets: {
name: 'downloadAllAssets',
description: 'Download media files and asset metadata',
handler: function (guid) { return __awaiter(void 0, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, download_assets_1.downloadAllAssets)(guid)];
case 1:
_a.sent();
return [2 /*return*/];
}
});
}); },
elements: ['Assets'],
dependencies: ['Galleries'] // Assets require Galleries to be meaningful
},
models: {
name: 'downloadAllModels',
description: 'Download content models and field definitions',
handler: function (guid) { return __awaiter(void 0, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, download_models_1.downloadAllModels)(guid)];
case 1:
_a.sent();
return [2 /*return*/];
}
});
}); },
elements: ['Models']
},
templates: {
name: 'downloadAllTemplates',
description: 'Download page templates and layouts',
handler: function (guid) { return __awaiter(void 0, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, download_templates_1.downloadAllTemplates)(guid)];
case 1:
_a.sent();
return [2 /*return*/];
}
});
}); },
elements: ['Templates'],
// dependencies: ['Models', 'Containers', 'Pages', 'Content'] // Templates reference Models for container definitions
},
containers: {
name: 'downloadAllContainers',
description: 'Download content containers and views',
handler: function (guid) { return __awaiter(void 0, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, download_containers_1.downloadAllContainers)(guid)];
case 1:
_a.sent();
return [2 /*return*/];
}
});
}); },
elements: ['Containers'],
dependencies: ['Models'] // Containers require Models to be meaningful
},
sitemaps: {
name: 'downloadAllSitemaps',
description: 'Download sitemaps',
handler: function (guid) { return __awaiter(void 0, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, (0, download_sitemaps_1.downloadAllSitemaps)(guid)];
case 1:
_a.sent();
return [2 /*return*/];
}
});
}); },
elements: ['Sitemaps']
}
};
var DownloadOperationsRegistry = /** @class */ (function () {
function DownloadOperationsRegistry() {
}
/*
* Get operations based on elements filter with dependency resolution
*/
DownloadOperationsRegistry.getOperationsForElements = function () {
var state = (0, state_1.getState)();
var elementList = state.elements ? state.elements.split(",") :
['Galleries', 'Assets', 'Models', 'Containers', 'Content', 'Templates', 'Pages', 'Sitemaps', 'Redirections'];
// Resolve dependencies and update state
var _a = this.resolveDependencies(elementList), resolvedElements = _a.resolvedElements, autoIncluded = _a.autoIncluded;
// Update state.elements with resolved dependencies if any were auto-included
if (autoIncluded.length > 0) {
// Update the state with resolved elements
var setState = require('../../core/state').setState;
setState({ elements: resolvedElements.join(',') });
}
// Filter operations based on resolved elements
var relevantOperations = Object.values(exports.DOWNLOAD_OPERATIONS).filter(function (operation) {
// Check if any of the operation's elements are in the resolved element list
return operation.elements.some(function (element) { return resolvedElements.includes(element); });
});
return relevantOperations;
};
/**
* Resolve element dependencies
*/
DownloadOperationsRegistry.resolveDependencies = function (requestedElements) {
var resolvedElements = new Set(requestedElements);
var autoIncluded = [];
var _loop_1 = function (element) {
// Find operations that provide this element
var operations = Object.values(exports.DOWNLOAD_OPERATIONS).filter(function (op) {
return op.elements.includes(element);
});
// Add dependencies for each operation
operations.forEach(function (operation) {
if (operation.dependencies) {
operation.dependencies.forEach(function (dep) {
if (!resolvedElements.has(dep)) {
resolvedElements.add(dep);
autoIncluded.push(dep);
}
});
}
});
};
// Check each requested element for dependencies
for (var _i = 0, requestedElements_1 = requestedElements; _i < requestedElements_1.length; _i++) {
var element = requestedElements_1[_i];
_loop_1(element);
}
return {
resolvedElements: Array.from(resolvedElements),
autoIncluded: autoIncluded
};
};
return DownloadOperationsRegistry;
}());
exports.DownloadOperationsRegistry = DownloadOperationsRegistry;
//# sourceMappingURL=download-operations-config.js.map