feat: add cocos-service configuration file feat: add device configuration file feat: add engine configuration file feat: add information configuration file feat: add program configuration file feat: add project configuration file feat: add TypeScript configuration file
191 lines
8.3 KiB
JavaScript
191 lines
8.3 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
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 __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.onAfterMake = exports.onBeforeMake = exports.onError = exports.unload = exports.onAfterBuild = exports.onAfterCompressSettings = exports.onBeforeCompressSettings = exports.onBeforeBuild = exports.load = exports.throwError = void 0;
|
|
const path_1 = __importDefault(require("path"));
|
|
const global_1 = require("./global");
|
|
const fs = __importStar(require("fs-extra"));
|
|
const javascript_obfuscator_1 = __importDefault(require("javascript-obfuscator"));
|
|
exports.throwError = true;
|
|
const load = function () {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
});
|
|
};
|
|
exports.load = load;
|
|
const onBeforeBuild = function (options, result) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
});
|
|
};
|
|
exports.onBeforeBuild = onBeforeBuild;
|
|
const onBeforeCompressSettings = function (options, result) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
});
|
|
};
|
|
exports.onBeforeCompressSettings = onBeforeCompressSettings;
|
|
const onAfterCompressSettings = function (options, result) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
});
|
|
};
|
|
exports.onAfterCompressSettings = onAfterCompressSettings;
|
|
const onAfterBuild = function (options, result) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
const pkgOptions = options.packages[global_1.PACKAGE_NAME];
|
|
if (pkgOptions.enable) {
|
|
let obfuscationOptions = {};
|
|
if (pkgOptions.selectObfusLevel === 'option1') {
|
|
obfuscationOptions = {
|
|
"compact": true,
|
|
"controlFlowFlattening": true,
|
|
"controlFlowFlatteningThreshold": 0.75,
|
|
"deadCodeInjection": false,
|
|
"stringArray": true,
|
|
"stringArrayThreshold": 0.75 // Applies string array obfuscation to 75% of strings.
|
|
};
|
|
}
|
|
else if (pkgOptions.selectObfusLevel === 'option2') {
|
|
obfuscationOptions = {
|
|
"compact": true,
|
|
"controlFlowFlattening": true,
|
|
"controlFlowFlatteningThreshold": 0.9,
|
|
"deadCodeInjection": true,
|
|
"deadCodeInjectionThreshold": 0.4,
|
|
"renameGlobals": false,
|
|
"stringArray": true,
|
|
"stringArrayEncoding": ["base64"],
|
|
"stringArrayThreshold": 0.9,
|
|
"transformObjectKeys": true // Obfuscates object keys for added security.
|
|
};
|
|
}
|
|
else if (pkgOptions.selectObfusLevel === 'option3') {
|
|
obfuscationOptions = {
|
|
"compact": true,
|
|
"controlFlowFlattening": true,
|
|
"controlFlowFlatteningThreshold": 1,
|
|
"deadCodeInjection": true,
|
|
"deadCodeInjectionThreshold": 0.5,
|
|
"renameGlobals": true,
|
|
"stringArray": true,
|
|
"stringArrayEncoding": ["rc4"],
|
|
"stringArrayThreshold": 1,
|
|
"transformObjectKeys": true // Obfuscates object keys for added security.
|
|
};
|
|
}
|
|
else if (pkgOptions.selectObfusLevel === 'option4') {
|
|
obfuscationOptions = {
|
|
"compact": true,
|
|
"controlFlowFlattening": true,
|
|
"controlFlowFlatteningThreshold": 1,
|
|
"deadCodeInjection": true,
|
|
"deadCodeInjectionThreshold": 1,
|
|
"renameGlobals": true,
|
|
"stringArray": true,
|
|
"stringArrayEncoding": ["base64", "rc4"],
|
|
"stringArrayThreshold": 1,
|
|
"transformObjectKeys": true,
|
|
"unicodeEscapeSequence": true,
|
|
"disableConsoleOutput": true // Replaces console output calls with empty functions to hide debugging messages.
|
|
};
|
|
}
|
|
else {
|
|
obfuscationOptions = {
|
|
"compact": true,
|
|
"controlFlowFlattening": false,
|
|
"deadCodeInjection": false,
|
|
"renameGlobals": false,
|
|
"stringArray": false // Avoids extracting strings into a separate array for simplicity.
|
|
};
|
|
}
|
|
const BUILD_DEST_DIR = result.dest;
|
|
if (pkgOptions.includeAllBundle) {
|
|
findAndObfusJSFile(path_1.default.join(BUILD_DEST_DIR, 'assets'), obfuscationOptions);
|
|
}
|
|
else {
|
|
findAndObfusJSFile(path_1.default.join(BUILD_DEST_DIR, 'assets', 'main'), obfuscationOptions);
|
|
}
|
|
}
|
|
});
|
|
};
|
|
exports.onAfterBuild = onAfterBuild;
|
|
const unload = function () {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
});
|
|
};
|
|
exports.unload = unload;
|
|
const onError = function (options, result) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
});
|
|
};
|
|
exports.onError = onError;
|
|
const onBeforeMake = function (root, options) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
});
|
|
};
|
|
exports.onBeforeMake = onBeforeMake;
|
|
const onAfterMake = function (root, options) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
});
|
|
};
|
|
exports.onAfterMake = onAfterMake;
|
|
function findAndObfusJSFile(dir, options) {
|
|
const items = fs.readdirSync(dir);
|
|
for (const item of items) {
|
|
const fullPath = path_1.default.join(dir, item);
|
|
if (fs.lstatSync(fullPath).isDirectory()) {
|
|
findAndObfusJSFile(fullPath, options);
|
|
}
|
|
else if (item.endsWith('.js')) {
|
|
console.log('Found js-file:', fullPath);
|
|
fs.readFile(fullPath, 'utf8', (err, data) => {
|
|
if (err) {
|
|
console.error(err);
|
|
return;
|
|
}
|
|
const obfuscatedData = javascript_obfuscator_1.default.obfuscate(data, options).getObfuscatedCode();
|
|
fs.writeFile(fullPath, obfuscatedData, (err) => {
|
|
if (err) {
|
|
console.error(err);
|
|
return;
|
|
}
|
|
console.log('Obfuscated:', fullPath);
|
|
});
|
|
});
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|