@lark-apaas/miaoda-cli 0.1.24-alpha.23e2581 → 0.1.24-alpha.28e47ce
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/app/api.js +0 -15
- package/dist/api/app/index.js +1 -2
- package/dist/cli/commands/app/index.js +0 -46
- package/dist/cli/handlers/app/index.js +1 -5
- package/dist/config/migrate-configs/vite-react-to-nestjs-react-fullstack.js +0 -4
- package/dist/services/deploy/modern/pipelines/design-local.js +4 -0
- package/dist/services/deploy/modern/pipelines/local.js +4 -0
- package/package.json +1 -1
- package/dist/cli/handlers/app/export.js +0 -171
package/dist/api/app/api.js
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getAppInfo = getAppInfo;
|
|
4
4
|
exports.updateAppMeta = updateAppMeta;
|
|
5
|
-
exports.getCodeArchive = getCodeArchive;
|
|
6
5
|
const http_1 = require("../../utils/http");
|
|
7
6
|
const devops_error_1 = require("../../utils/devops-error");
|
|
8
7
|
const DEFAULT_ERR_CODE = 'INTERNAL_DEVOPS_ERROR';
|
|
@@ -24,17 +23,3 @@ async function updateAppMeta(req) {
|
|
|
24
23
|
// 路径已带 appID,body 里也保留以匹配 BAM IDL 的 sensitive:"no" 透传约定
|
|
25
24
|
return (0, http_1.postInnerApi)(url, req, envelopeOpts('Failed to update app'));
|
|
26
25
|
}
|
|
27
|
-
/**
|
|
28
|
-
* GET /api/v1/studio/innerapi/apps/:appID/code-archive — 导出应用源码归档(git archive)。
|
|
29
|
-
* 走 studio_server inner 通道(force 身份,服务侧 force→lark 换取后按 DOWNLOAD 鉴权),
|
|
30
|
-
* 与 comment 域同一 inner 信封;创意应用升级链路(app export)消费。
|
|
31
|
-
*/
|
|
32
|
-
async function getCodeArchive(appID, checkpointID) {
|
|
33
|
-
let url = `/api/v1/studio/innerapi/apps/${encodeURIComponent(appID)}/code-archive`;
|
|
34
|
-
if (checkpointID !== undefined && checkpointID > 0) {
|
|
35
|
-
url += `?checkPointID=${String(checkpointID)}`;
|
|
36
|
-
}
|
|
37
|
-
return (0, http_1.getInnerApi)(url, {
|
|
38
|
-
errPrefix: 'Failed to export code archive',
|
|
39
|
-
});
|
|
40
|
-
}
|
package/dist/api/app/index.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ArchType = exports.Source = exports.BizType = exports.AppType = exports.AppMode = exports.AppStatus = exports.appMetaSchema = exports.
|
|
3
|
+
exports.ArchType = exports.Source = exports.BizType = exports.AppType = exports.AppMode = exports.AppStatus = exports.appMetaSchema = exports.updateAppMeta = exports.getAppInfo = void 0;
|
|
4
4
|
var api_1 = require("./api");
|
|
5
5
|
Object.defineProperty(exports, "getAppInfo", { enumerable: true, get: function () { return api_1.getAppInfo; } });
|
|
6
6
|
Object.defineProperty(exports, "updateAppMeta", { enumerable: true, get: function () { return api_1.updateAppMeta; } });
|
|
7
|
-
Object.defineProperty(exports, "getCodeArchive", { enumerable: true, get: function () { return api_1.getCodeArchive; } });
|
|
8
7
|
var schemas_1 = require("./schemas");
|
|
9
8
|
Object.defineProperty(exports, "appMetaSchema", { enumerable: true, get: function () { return schemas_1.appMetaSchema; } });
|
|
10
9
|
var types_1 = require("./types");
|
|
@@ -21,7 +21,6 @@ function registerAppCommands(program, opts = {}) {
|
|
|
21
21
|
`);
|
|
22
22
|
registerAppGet(appCmd);
|
|
23
23
|
registerAppUpdate(appCmd);
|
|
24
|
-
registerAppExport(appCmd);
|
|
25
24
|
if (opts.includeInit) {
|
|
26
25
|
registerAppInit(appCmd);
|
|
27
26
|
registerAppSync(appCmd);
|
|
@@ -120,51 +119,6 @@ JSON 输出
|
|
|
120
119
|
});
|
|
121
120
|
}));
|
|
122
121
|
}
|
|
123
|
-
function registerAppExport(parent) {
|
|
124
|
-
const cmd = parent
|
|
125
|
-
.command('export <app-id>')
|
|
126
|
-
.description('导出指定应用的源码到本工程(创意应用升级:拉取创意稿作只读参考物)')
|
|
127
|
-
.option('--out <dir>', '输出目录(相对当前目录)', 'source_package/creative')
|
|
128
|
-
.option('--checkpoint <n>', '按检查点版本导出;缺省为最新提交(HEAD)')
|
|
129
|
-
.addHelpText('after', `
|
|
130
|
-
说明
|
|
131
|
-
从服务端导出 <app-id> 对应应用的源码归档并解压到 --out 目录,导出完成后写
|
|
132
|
-
--out/.upgrade-manifest.json(含 sourceAppId / 导出时间 / 文件数),供升级链路
|
|
133
|
-
幂等判定与 skill 发现使用。调用者须为源应用协作者(服务端 DOWNLOAD 鉴权)。
|
|
134
|
-
|
|
135
|
-
幂等
|
|
136
|
-
--out 已存在 manifest 且 sourceAppId 一致时跳过导出(skipped=true),重复调用安全。
|
|
137
|
-
|
|
138
|
-
JSON 输出
|
|
139
|
-
{"data": {"appId": "...", "out": "source_package/creative", "fileCount": <n>,
|
|
140
|
-
"archiveName": "...", "skipped": false}}
|
|
141
|
-
跳过时:{"data": {"appId": "...", "out": "...", "skipped": true, "reason": "already_exported"}}
|
|
142
|
-
|
|
143
|
-
失败
|
|
144
|
-
源应用无可导出内容(从未提交过代码)→ EXPORT_EMPTY_ARCHIVE,请先在源应用完成一轮创作。
|
|
145
|
-
无权限(非源应用协作者)→ 服务端鉴权错误透传。
|
|
146
|
-
|
|
147
|
-
示例
|
|
148
|
-
$ miaoda app export app_demo_source
|
|
149
|
-
$ miaoda app export app_demo_source --out source_package/creative
|
|
150
|
-
$ miaoda app export app_demo_source --checkpoint 3
|
|
151
|
-
`);
|
|
152
|
-
cmd.action((0, shared_1.withHelp)(cmd, async (appId, rawOpts) => {
|
|
153
|
-
const checkpointRaw = rawOpts.checkpoint;
|
|
154
|
-
let checkpoint;
|
|
155
|
-
if (checkpointRaw !== undefined) {
|
|
156
|
-
checkpoint = Number(checkpointRaw);
|
|
157
|
-
if (!Number.isInteger(checkpoint) || checkpoint <= 0) {
|
|
158
|
-
(0, shared_1.failArgs)(`--checkpoint 须为正整数:${checkpointRaw}`);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
await (0, index_1.handleAppExport)({
|
|
162
|
-
appId,
|
|
163
|
-
out: rawOpts.out,
|
|
164
|
-
checkpoint,
|
|
165
|
-
});
|
|
166
|
-
}));
|
|
167
|
-
}
|
|
168
122
|
function registerAppGet(parent) {
|
|
169
123
|
const cmd = parent
|
|
170
124
|
.command('get')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SUPPORTED_STACKS = exports.handleAppMigrate = exports.
|
|
3
|
+
exports.SUPPORTED_STACKS = exports.handleAppMigrate = exports.handleAppUpgrade = exports.handleAppSync = exports.handleAppInit = exports.handleAppUpdate = exports.handleAppGet = void 0;
|
|
4
4
|
var get_1 = require("./get");
|
|
5
5
|
Object.defineProperty(exports, "handleAppGet", { enumerable: true, get: function () { return get_1.handleAppGet; } });
|
|
6
6
|
var update_1 = require("./update");
|
|
@@ -10,10 +10,6 @@ Object.defineProperty(exports, "handleAppInit", { enumerable: true, get: functio
|
|
|
10
10
|
var sync_1 = require("./sync");
|
|
11
11
|
Object.defineProperty(exports, "handleAppSync", { enumerable: true, get: function () { return sync_1.handleAppSync; } });
|
|
12
12
|
Object.defineProperty(exports, "handleAppUpgrade", { enumerable: true, get: function () { return sync_1.handleAppUpgrade; } });
|
|
13
|
-
var export_1 = require("./export");
|
|
14
|
-
Object.defineProperty(exports, "handleAppExport", { enumerable: true, get: function () { return export_1.handleAppExport; } });
|
|
15
|
-
Object.defineProperty(exports, "DEFAULT_EXPORT_OUT", { enumerable: true, get: function () { return export_1.DEFAULT_EXPORT_OUT; } });
|
|
16
|
-
Object.defineProperty(exports, "UPGRADE_MANIFEST_FILENAME", { enumerable: true, get: function () { return export_1.UPGRADE_MANIFEST_FILENAME; } });
|
|
17
13
|
var migrate_1 = require("./migrate");
|
|
18
14
|
Object.defineProperty(exports, "handleAppMigrate", { enumerable: true, get: function () { return migrate_1.handleAppMigrate; } });
|
|
19
15
|
// commands 层渲染 help 时需要这份枚举;从 handler barrel 转发,避免 commands → services 越界
|
|
@@ -263,10 +263,6 @@ exports.MIGRATE_CONFIG = {
|
|
|
263
263
|
'dotenv',
|
|
264
264
|
// client-toolkit:替代 lite,业务代码 codemod 后走它
|
|
265
265
|
'@lark-apaas/client-toolkit',
|
|
266
|
-
// drizzle-orm —— `gen:db-schema` 生成的 server/database/schema.ts 从
|
|
267
|
-
// 'drizzle-orm/pg-core' / 'drizzle-orm' 导入 pgTable / sql 等 runtime API,
|
|
268
|
-
// 缺依赖时 nest build / dev 起来直接 ERR_MODULE_NOT_FOUND。
|
|
269
|
-
'drizzle-orm',
|
|
270
266
|
],
|
|
271
267
|
devDependencies: [
|
|
272
268
|
// nest start / nest build 必需
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.designLocalPublishPipeline = designLocalPublishPipeline;
|
|
4
|
+
const spark_meta_1 = require("../../../../utils/spark-meta");
|
|
4
5
|
const error_1 = require("../../../../utils/error");
|
|
5
6
|
const logger_1 = require("../../../../utils/logger");
|
|
6
7
|
const index_1 = require("../atoms/index");
|
|
@@ -37,6 +38,9 @@ async function designLocalPublishPipeline(opts) {
|
|
|
37
38
|
await (0, index_1.finalizeLocalRelease)(ctx.appId, release.releaseID, index_1.LocalReleaseStatus.Failed);
|
|
38
39
|
throw err;
|
|
39
40
|
}
|
|
41
|
+
if (release.onlineUrl !== undefined && release.onlineUrl !== '') {
|
|
42
|
+
(0, spark_meta_1.writeSparkMeta)(ctx.projectDir, { appUrl: release.onlineUrl });
|
|
43
|
+
}
|
|
40
44
|
(0, logger_1.log)('deploy', 'Deployed successfully');
|
|
41
45
|
return {
|
|
42
46
|
appId: ctx.appId,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.localBuildLocalPublishPipeline = localBuildLocalPublishPipeline;
|
|
4
|
+
const spark_meta_1 = require("../../../../utils/spark-meta");
|
|
4
5
|
const error_1 = require("../../../../utils/error");
|
|
5
6
|
const logger_1 = require("../../../../utils/logger");
|
|
6
7
|
const index_1 = require("../atoms/index");
|
|
@@ -63,6 +64,9 @@ async function localBuildLocalPublishPipeline(opts) {
|
|
|
63
64
|
await (0, index_1.finalizeLocalRelease)(ctx.appId, release.releaseID, index_1.LocalReleaseStatus.Failed);
|
|
64
65
|
throw err;
|
|
65
66
|
}
|
|
67
|
+
if (release.onlineUrl !== undefined && release.onlineUrl !== '') {
|
|
68
|
+
(0, spark_meta_1.writeSparkMeta)(ctx.projectDir, { appUrl: release.onlineUrl });
|
|
69
|
+
}
|
|
66
70
|
(0, logger_1.log)('deploy', 'Deployed successfully');
|
|
67
71
|
return {
|
|
68
72
|
appId: ctx.appId,
|
package/package.json
CHANGED
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
36
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
37
|
-
};
|
|
38
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.UPGRADE_MANIFEST_FILENAME = exports.DEFAULT_EXPORT_OUT = void 0;
|
|
40
|
-
exports.handleAppExport = handleAppExport;
|
|
41
|
-
const node_child_process_1 = require("node:child_process");
|
|
42
|
-
const node_fs_1 = __importDefault(require("node:fs"));
|
|
43
|
-
const node_os_1 = __importDefault(require("node:os"));
|
|
44
|
-
const node_path_1 = __importDefault(require("node:path"));
|
|
45
|
-
const api = __importStar(require("../../../api/index"));
|
|
46
|
-
const error_1 = require("../../../utils/error");
|
|
47
|
-
const output_1 = require("../../../utils/output");
|
|
48
|
-
const logger_1 = require("../../../utils/logger");
|
|
49
|
-
/** 导出目录默认值:创意升级链路的参考物约定位置。 */
|
|
50
|
-
exports.DEFAULT_EXPORT_OUT = 'source_package/creative';
|
|
51
|
-
/** 升级 manifest 文件名:前置钩子幂等标记 / skill workspace-contains 锚点 / skill 第 0 步信息源。 */
|
|
52
|
-
exports.UPGRADE_MANIFEST_FILENAME = '.upgrade-manifest.json';
|
|
53
|
-
/** 解码后归档大小上限(对齐服务端 UploadHtmlArtifact 的 50MB 口径)。 */
|
|
54
|
-
const MAX_ARCHIVE_BYTES = 50 * 1024 * 1024;
|
|
55
|
-
/** 校验相对输出路径:禁绝对路径、禁含 ".." 段(与 deploy patch 的 normalizeRel 同口径)。 */
|
|
56
|
-
function normalizeOutDir(rel) {
|
|
57
|
-
if (node_path_1.default.isAbsolute(rel) || rel.startsWith('/')) {
|
|
58
|
-
throw new error_1.AppError('ARGS_INVALID', `输出目录不能是绝对路径:${rel}`);
|
|
59
|
-
}
|
|
60
|
-
const posix = rel.split(node_path_1.default.sep).join('/').replace(/^\.\//, '');
|
|
61
|
-
if (posix.split('/').includes('..')) {
|
|
62
|
-
throw new error_1.AppError('ARGS_INVALID', `输出目录不能包含 "..":${rel}`);
|
|
63
|
-
}
|
|
64
|
-
return posix;
|
|
65
|
-
}
|
|
66
|
-
/**
|
|
67
|
-
* 按魔数识别归档格式并解压到 destDir。
|
|
68
|
-
* 服务端 GetCodeArchive 的归档名以 .zip 结尾,但底层 git archive 格式由 devops_platform
|
|
69
|
-
* 决定,历史文档亦有 tar.gz 记载 —— 两种都兼容,识别不了才报错。
|
|
70
|
-
*/
|
|
71
|
-
function extractArchive(archivePath, destDir, head) {
|
|
72
|
-
const isZip = head.length >= 4 && head[0] === 0x50 && head[1] === 0x4b;
|
|
73
|
-
const isGzip = head.length >= 2 && head[0] === 0x1f && head[1] === 0x8b;
|
|
74
|
-
if (isZip) {
|
|
75
|
-
(0, node_child_process_1.execFileSync)('unzip', ['-q', '-o', archivePath, '-d', destDir], { stdio: 'pipe' });
|
|
76
|
-
return;
|
|
77
|
-
}
|
|
78
|
-
if (isGzip) {
|
|
79
|
-
(0, node_child_process_1.execFileSync)('tar', ['-xzf', archivePath, '-C', destDir], { stdio: 'pipe' });
|
|
80
|
-
return;
|
|
81
|
-
}
|
|
82
|
-
throw new error_1.AppError('EXPORT_ARCHIVE_INVALID', '无法识别归档格式(非 zip / tar.gz)', {
|
|
83
|
-
next_actions: ['稍后重试 miaoda app export;持续失败请携带 log_id 反馈平台'],
|
|
84
|
-
});
|
|
85
|
-
}
|
|
86
|
-
function countFiles(dir) {
|
|
87
|
-
let count = 0;
|
|
88
|
-
const walk = (cur) => {
|
|
89
|
-
for (const entry of node_fs_1.default.readdirSync(cur, { withFileTypes: true })) {
|
|
90
|
-
if (entry.isDirectory())
|
|
91
|
-
walk(node_path_1.default.join(cur, entry.name));
|
|
92
|
-
else
|
|
93
|
-
count += 1;
|
|
94
|
-
}
|
|
95
|
-
};
|
|
96
|
-
walk(dir);
|
|
97
|
-
return count;
|
|
98
|
-
}
|
|
99
|
-
/**
|
|
100
|
-
* miaoda app export <app-id> [--out <dir>] [--checkpoint <n>]
|
|
101
|
-
*
|
|
102
|
-
* 创意应用升级链路:把源应用(创意稿)的源码从服务端导出到本工程,作为只读参考物。
|
|
103
|
-
* 链路:studio_server InnerGetCodeArchive(inner 通道,force 身份鉴权:调用者须为源应用
|
|
104
|
-
* 协作者)→ git archive → 本地解压 → 末尾写 .upgrade-manifest.json(幂等标记 +
|
|
105
|
-
* skill workspace-contains 锚点 + skill 第 0 步信息源)。
|
|
106
|
-
*
|
|
107
|
-
* 幂等:--out 已存在 manifest 且 sourceAppId 一致时跳过导出直接返回(重试/多轮不重复拉取)。
|
|
108
|
-
*/
|
|
109
|
-
async function handleAppExport(opts) {
|
|
110
|
-
const appId = (opts.appId || '').trim();
|
|
111
|
-
if (!appId) {
|
|
112
|
-
throw new error_1.AppError('ARGS_INVALID', 'app-id 不能为空');
|
|
113
|
-
}
|
|
114
|
-
const outRel = normalizeOutDir(opts.out ?? exports.DEFAULT_EXPORT_OUT);
|
|
115
|
-
const outDir = node_path_1.default.resolve(process.cwd(), outRel);
|
|
116
|
-
const manifestPath = node_path_1.default.join(outDir, exports.UPGRADE_MANIFEST_FILENAME);
|
|
117
|
-
// 幂等:同源应用已导出过则直接复用(前置钩子重试 / 多轮对话不重复拉取)
|
|
118
|
-
if (node_fs_1.default.existsSync(manifestPath)) {
|
|
119
|
-
try {
|
|
120
|
-
const prev = JSON.parse(node_fs_1.default.readFileSync(manifestPath, 'utf-8'));
|
|
121
|
-
if (prev.sourceAppId === appId) {
|
|
122
|
-
(0, logger_1.log)('export', `Already exported (manifest matched), skip: ${outRel}`);
|
|
123
|
-
(0, output_1.emit)({ data: { appId, out: outRel, skipped: true, reason: 'already_exported' } });
|
|
124
|
-
return;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
catch {
|
|
128
|
-
// manifest 损坏视为未导出,走覆盖导出
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
(0, logger_1.log)('export', `Fetching code archive of ${appId}...`);
|
|
132
|
-
const resp = await api.app.getCodeArchive(appId, opts.checkpoint);
|
|
133
|
-
const fileBase64 = resp.file ?? '';
|
|
134
|
-
if (!fileBase64) {
|
|
135
|
-
throw new error_1.AppError('EXPORT_EMPTY_ARCHIVE', '源应用没有可导出的内容(可能从未提交过代码)', {
|
|
136
|
-
next_actions: ['请先在源应用完成一轮创作(至少一次成功提交)后重试 miaoda app export'],
|
|
137
|
-
});
|
|
138
|
-
}
|
|
139
|
-
const archive = Buffer.from(fileBase64, 'base64');
|
|
140
|
-
if (archive.length === 0) {
|
|
141
|
-
throw new error_1.AppError('EXPORT_EMPTY_ARCHIVE', '归档内容为空,请稍后重试');
|
|
142
|
-
}
|
|
143
|
-
if (archive.length > MAX_ARCHIVE_BYTES) {
|
|
144
|
-
throw new error_1.AppError('EXPORT_ARCHIVE_TOO_LARGE', `归档超过大小上限(${String(archive.length)} > ${String(MAX_ARCHIVE_BYTES)} bytes)`);
|
|
145
|
-
}
|
|
146
|
-
// 归档先落临时文件再解压;解压成功前不动已存在的 outDir 内容之外的文件
|
|
147
|
-
const tmpDir = node_fs_1.default.mkdtempSync(node_path_1.default.join(node_os_1.default.tmpdir(), 'miaoda-export-'));
|
|
148
|
-
const archivePath = node_path_1.default.join(tmpDir, resp.name ?? `${appId}.zip`);
|
|
149
|
-
try {
|
|
150
|
-
node_fs_1.default.writeFileSync(archivePath, archive);
|
|
151
|
-
node_fs_1.default.mkdirSync(outDir, { recursive: true });
|
|
152
|
-
(0, logger_1.log)('export', `Extracting to ${outRel}...`);
|
|
153
|
-
extractArchive(archivePath, outDir, archive.subarray(0, 4));
|
|
154
|
-
}
|
|
155
|
-
finally {
|
|
156
|
-
node_fs_1.default.rmSync(tmpDir, { recursive: true, force: true });
|
|
157
|
-
}
|
|
158
|
-
const fileCount = countFiles(outDir);
|
|
159
|
-
const manifest = {
|
|
160
|
-
sourceAppId: appId,
|
|
161
|
-
archiveName: resp.name ?? '',
|
|
162
|
-
checkpointId: opts.checkpoint ?? 0,
|
|
163
|
-
exportedAt: new Date().toISOString(),
|
|
164
|
-
fileCount,
|
|
165
|
-
};
|
|
166
|
-
node_fs_1.default.writeFileSync(manifestPath, JSON.stringify(manifest, null, 2) + '\n', 'utf-8');
|
|
167
|
-
(0, logger_1.log)('export', 'Exported successfully');
|
|
168
|
-
(0, output_1.emit)({
|
|
169
|
-
data: { appId, out: outRel, fileCount, archiveName: manifest.archiveName, skipped: false },
|
|
170
|
-
});
|
|
171
|
-
}
|