@dcl/sdk-commands 7.4.10-8392909116.commit-6487246 → 7.4.10-8395171867.commit-71991c9
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/commands/init/download-github-folder.d.ts +2 -0
- package/dist/commands/init/download-github-folder.js +72 -0
- package/dist/commands/init/download-github-folder.js.map +1 -0
- package/dist/commands/init/index.d.ts +1 -0
- package/dist/commands/init/index.js +16 -7
- package/dist/commands/init/index.js.map +1 -1
- package/dist/commands/init/repos.d.ts +1 -1
- package/dist/commands/init/repos.js +2 -1
- package/dist/commands/init/repos.js.map +1 -1
- package/package.json +5 -5
@@ -0,0 +1,72 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.downloadGithubFolder = void 0;
|
7
|
+
const path_1 = __importDefault(require("path"));
|
8
|
+
async function downloadFile(components, fileUrl, outputPath) {
|
9
|
+
const response = await (await components.fetch.fetch(fileUrl)).arrayBuffer();
|
10
|
+
const buffer = Buffer.from(response);
|
11
|
+
await components.fs.writeFile(outputPath, buffer);
|
12
|
+
}
|
13
|
+
// Function to parse GitHub URL for root or subfolder
|
14
|
+
function parseGitHubUrl(githubUrl) {
|
15
|
+
const rootRegex = /https:\/\/github\.com\/([^\/]+)\/([^\/]+)$/;
|
16
|
+
const subfolderRegex = /https:\/\/github\.com\/([^\/]+)\/([^\/]+)\/tree\/([^\/]+)\/?(.*)/;
|
17
|
+
let match = githubUrl.match(subfolderRegex);
|
18
|
+
if (match) {
|
19
|
+
return {
|
20
|
+
owner: match[1],
|
21
|
+
repo: match[2],
|
22
|
+
branch: match[3],
|
23
|
+
path: match[4]
|
24
|
+
};
|
25
|
+
}
|
26
|
+
else {
|
27
|
+
match = githubUrl.match(rootRegex);
|
28
|
+
if (match) {
|
29
|
+
return {
|
30
|
+
owner: match[1],
|
31
|
+
repo: match[2],
|
32
|
+
branch: 'main',
|
33
|
+
path: '' // No specific path for root
|
34
|
+
};
|
35
|
+
}
|
36
|
+
}
|
37
|
+
throw new Error("URL doesn't match the expected GitHub format.");
|
38
|
+
}
|
39
|
+
async function downloadGithubFolder(components, githubUrl, destination) {
|
40
|
+
const { owner, repo, branch, path: subfolderPath } = parseGitHubUrl(githubUrl);
|
41
|
+
const apiUrl = `https://api.github.com/repos/${owner}/${repo}/contents/${subfolderPath}?ref=${branch}`;
|
42
|
+
try {
|
43
|
+
const data = await (await components.fetch.fetch(apiUrl)).json();
|
44
|
+
components.logger.log('[boedo]', { data });
|
45
|
+
if (Array.isArray(data)) {
|
46
|
+
for await (const file of data) {
|
47
|
+
const filePath = path_1.default.join(destination, file.name);
|
48
|
+
components.logger.log(`Downloading ${file.path} to ${filePath}`);
|
49
|
+
if (file.type === 'file') {
|
50
|
+
await downloadFile(components, file.download_url, filePath);
|
51
|
+
}
|
52
|
+
else if (file.type === 'dir') {
|
53
|
+
if (!(await components.fs.directoryExists(filePath))) {
|
54
|
+
await components.fs.mkdir(filePath, { recursive: true });
|
55
|
+
}
|
56
|
+
const nextUrl = `https://github.com/${owner}/${repo}/tree/${branch}/${file.path}`;
|
57
|
+
await downloadGithubFolder(components, nextUrl, filePath);
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
61
|
+
else {
|
62
|
+
// Handle single file or root without subfolders
|
63
|
+
const filePath = path_1.default.join(destination, data.name);
|
64
|
+
await downloadFile(components, data.download_url, filePath);
|
65
|
+
}
|
66
|
+
}
|
67
|
+
catch (error) {
|
68
|
+
components.logger.error(`Error downloading folder: ${apiUrl} \n ${error.message}`);
|
69
|
+
}
|
70
|
+
}
|
71
|
+
exports.downloadGithubFolder = downloadGithubFolder;
|
72
|
+
//# sourceMappingURL=download-github-folder.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"download-github-folder.js","sourceRoot":"","sources":["../../../src/commands/init/download-github-folder.ts"],"names":[],"mappings":"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"}
|
@@ -11,6 +11,7 @@ export declare const args: {
|
|
11
11
|
'--skip-install': BooleanConstructor;
|
12
12
|
'--template': StringConstructor;
|
13
13
|
'--project': StringConstructor;
|
14
|
+
'--github-repo': StringConstructor;
|
14
15
|
};
|
15
16
|
export declare function help(options: Options): void;
|
16
17
|
export declare function main(options: Options): Promise<void>;
|
@@ -11,13 +11,15 @@ const fs_1 = require("../../logic/fs");
|
|
11
11
|
const project_validations_1 = require("../../logic/project-validations");
|
12
12
|
const repos_1 = require("./repos");
|
13
13
|
const project_1 = require("./project");
|
14
|
+
const download_github_folder_1 = require("./download-github-folder");
|
14
15
|
exports.args = (0, args_1.declareArgs)({
|
15
16
|
'--yes': Boolean,
|
16
17
|
'-y': '--yes',
|
17
18
|
'--dir': String,
|
18
19
|
'--skip-install': Boolean,
|
19
20
|
'--template': String,
|
20
|
-
'--project': String
|
21
|
+
'--project': String,
|
22
|
+
'--github-repo': String
|
21
23
|
});
|
22
24
|
function help(options) {
|
23
25
|
options.components.logger.log(`
|
@@ -28,6 +30,7 @@ function help(options) {
|
|
28
30
|
--dir Path to directory to init
|
29
31
|
--skip-install Skip installing dependencies
|
30
32
|
--template URL to template to init
|
33
|
+
--github-repo URL to github repository
|
31
34
|
--project Project to init (opts: ${(0, repos_1.scaffoldedProjectOptions)().join(', ')})
|
32
35
|
|
33
36
|
Example:
|
@@ -42,6 +45,7 @@ async function main(options) {
|
|
42
45
|
const yes = options.args['--yes'];
|
43
46
|
const requestedTemplateZipUrl = options.args['--template'];
|
44
47
|
const requestedProjectTemplate = options.args['--project'];
|
48
|
+
const githubRepo = options.args['--github-repo'];
|
45
49
|
if (!isEmpty && !yes) {
|
46
50
|
throw new error_1.CliError('The target directory specified is not empty. Run this command with --yes to override.');
|
47
51
|
}
|
@@ -53,18 +57,23 @@ async function main(options) {
|
|
53
57
|
}
|
54
58
|
// download and extract template project
|
55
59
|
const projectTemplate = requestedProjectTemplate || 'scene-template';
|
56
|
-
const url = requestedTemplateZipUrl || (0, repos_1.getScaffoldedProjectUrl)(projectTemplate);
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
60
|
+
const url = githubRepo || requestedTemplateZipUrl || (0, repos_1.getScaffoldedProjectUrl)(projectTemplate);
|
61
|
+
if (githubRepo) {
|
62
|
+
await (0, download_github_folder_1.downloadGithubFolder)(options.components, githubRepo, dir);
|
63
|
+
}
|
64
|
+
else {
|
65
|
+
await downloadAndUnzipUrlContainFolder(url, dir, options);
|
66
|
+
// replace scene.json for portable experience template...
|
67
|
+
if (projectTemplate === 'px-template')
|
68
|
+
await (0, project_1.createPxSceneJson)(dir, options.components.fs);
|
69
|
+
}
|
61
70
|
// npm install
|
62
71
|
const shouldInstallDeps = await (0, project_validations_1.needsDependencies)(options.components, dir);
|
63
72
|
if (shouldInstallDeps && !options.args['--skip-install']) {
|
64
73
|
await (0, project_validations_1.installDependencies)(options.components, dir);
|
65
74
|
}
|
66
75
|
options.components.analytics.track('Scene created', {
|
67
|
-
projectType: requestedTemplateZipUrl ? 'custom-template-url' : projectTemplate,
|
76
|
+
projectType: githubRepo ? 'github-repo' : requestedTemplateZipUrl ? 'custom-template-url' : projectTemplate,
|
68
77
|
url
|
69
78
|
});
|
70
79
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/commands/init/index.ts"],"names":[],"mappings":";;;;;;AAAA,gDAAuB;AAGvB,2CAA8C;AAC9C,6CAA4C;AAC5C,uCAAoE;AAGpE,yEAAwF;AACxF,mCAAsH;AACtH,uCAA6C;
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/commands/init/index.ts"],"names":[],"mappings":"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"}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export type ScaffoldedProject = 'scene-template' | 'px-template' | 'smart-wearable';
|
1
|
+
export type ScaffoldedProject = 'scene-template' | 'px-template' | 'smart-wearable' | 'library';
|
2
2
|
export declare function getScaffoldedProjectUrl(scene: ScaffoldedProject): string;
|
3
3
|
export declare function existScaffoldedProject(maybeProject: string): boolean;
|
4
4
|
export declare function scaffoldedProjectOptions(): ScaffoldedProject[];
|
@@ -4,7 +4,8 @@ exports.scaffoldedProjectOptions = exports.existScaffoldedProject = exports.getS
|
|
4
4
|
const scaffoldedProjectUrls = {
|
5
5
|
'scene-template': 'https://github.com/decentraland/sdk7-scene-template/archive/refs/heads/main.zip',
|
6
6
|
'px-template': 'https://github.com/decentraland/sdk7-scene-template/archive/refs/heads/main.zip',
|
7
|
-
'smart-wearable': 'https://github.com/decentraland/smart-wearable-sample/archive/refs/heads/sdk7.zip'
|
7
|
+
'smart-wearable': 'https://github.com/decentraland/smart-wearable-sample/archive/refs/heads/sdk7.zip',
|
8
|
+
library: 'https://github.com/decentraland/sdk7-library-template/archive/refs/heads/main.zip'
|
8
9
|
};
|
9
10
|
function getScaffoldedProjectUrl(scene) {
|
10
11
|
return scaffoldedProjectUrls[scene];
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"repos.js","sourceRoot":"","sources":["../../../src/commands/init/repos.ts"],"names":[],"mappings":";;;AAEA,MAAM,qBAAqB,GAAsC;IAC/D,gBAAgB,EAAE,iFAAiF;IACnG,aAAa,EAAE,iFAAiF;IAChG,gBAAgB,EAAE,mFAAmF;
|
1
|
+
{"version":3,"file":"repos.js","sourceRoot":"","sources":["../../../src/commands/init/repos.ts"],"names":[],"mappings":";;;AAEA,MAAM,qBAAqB,GAAsC;IAC/D,gBAAgB,EAAE,iFAAiF;IACnG,aAAa,EAAE,iFAAiF;IAChG,gBAAgB,EAAE,mFAAmF;IACrG,OAAO,EAAE,mFAAmF;CAC7F,CAAA;AAED,SAAgB,uBAAuB,CAAC,KAAwB;IAC9D,OAAO,qBAAqB,CAAC,KAAK,CAAC,CAAA;AACrC,CAAC;AAFD,0DAEC;AAED,SAAgB,sBAAsB,CAAC,YAAoB;IACzD,OAAO,YAAY,IAAI,qBAAqB,CAAA;AAC9C,CAAC;AAFD,wDAEC;AAED,SAAgB,wBAAwB;IACtC,OAAO,MAAM,CAAC,IAAI,CAAC,qBAAqB,CAAwB,CAAA;AAClE,CAAC;AAFD,4DAEC"}
|
package/package.json
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk-commands",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.4.10-
|
4
|
+
"version": "7.4.10-8395171867.commit-71991c9",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"bin": {
|
7
7
|
"sdk-commands": "./dist/index.js"
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
10
|
"@dcl/crypto": "^3.4.4",
|
11
|
-
"@dcl/ecs": "7.4.10-
|
11
|
+
"@dcl/ecs": "7.4.10-8395171867.commit-71991c9",
|
12
12
|
"@dcl/hashing": "1.1.3",
|
13
|
-
"@dcl/inspector": "7.4.10-
|
13
|
+
"@dcl/inspector": "7.4.10-8395171867.commit-71991c9",
|
14
14
|
"@dcl/linker-dapp": "^0.12.0",
|
15
15
|
"@dcl/mini-comms": "1.0.1-20230216163137.commit-a4c75be",
|
16
|
-
"@dcl/protocol": "1.0.0-
|
16
|
+
"@dcl/protocol": "1.0.0-8299166777.commit-9493ffe",
|
17
17
|
"@dcl/quests-client": "^1.0.3",
|
18
18
|
"@dcl/quests-manager": "^0.1.4",
|
19
19
|
"@dcl/rpc": "^1.1.1",
|
@@ -73,5 +73,5 @@
|
|
73
73
|
"displayName": "SDK",
|
74
74
|
"tsconfig": "./tsconfig.json"
|
75
75
|
},
|
76
|
-
"commit": "
|
76
|
+
"commit": "71991c9ccab33789a2165ce13286406167874755"
|
77
77
|
}
|