jjb-cmd 2.2.13 → 2.3.0
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/bin/command.js +98 -0
- package/package.json +2 -2
- package/src/auth.js +1 -0
- package/src/config.js +1 -0
- package/src/publish.js +1 -0
- package/src/push.js +1 -0
- package/src/rm-rf.js +1 -0
- package/src/tools.js +1 -0
- package/src/version.js +1 -0
- package/src/new/cmd.auth/index.js +0 -1
- package/src/new/cmd.init/index.js +0 -1
- package/src/new/cmd.install/config.js +0 -1
- package/src/new/cmd.install/index.js +0 -1
- package/src/new/cmd.install/tools.js +0 -1
- package/src/new/cmd.install.app/index.js +0 -1
- package/src/new/cmd.jenkins/index.js +0 -1
- package/src/new/cmd.publish/index.js +0 -1
- package/src/new/cmd.push/index.js +0 -1
- package/src/new/cmd.push/java.js +0 -1
- package/src/new/cmd.push-set/index.js +0 -1
- package/src/new/cmd.refresh/index.js +0 -1
- package/src/new/cmd.reglist/index.js +0 -1
- package/src/new/cmd.rm-rf/index.js +0 -1
- package/src/new/cmd.version/index.js +0 -1
- package/src/old/cli.init.js +0 -1
- package/src/old/cli.install/config.js +0 -1
- package/src/old/cli.install/index.js +0 -1
- package/src/old/cli.install/tools.js +0 -1
- package/src/old/cli.merge.js +0 -1
- package/src/old/cli.pull.js +0 -1
- package/src/old/cli.pull2.js +0 -1
- package/src/old/cli.rm-rf.js +0 -1
- package/src/old/progress-bar.js +0 -1
- package/src/old/util.js +0 -1
package/bin/command.js
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
#! /usr/bin/env node
|
2
|
+
|
3
|
+
const commander = require('commander');
|
4
|
+
const readline = require('readline');
|
5
|
+
const path = require('path');
|
6
|
+
const fs = require('fs');
|
7
|
+
const child_process = require('child_process');
|
8
|
+
|
9
|
+
commander.command('v').description('-- 查看版本').action(() => {
|
10
|
+
const package_json_file = JSON.parse(fs.readFileSync(path.join(__dirname, '../package.json')).toString());
|
11
|
+
const {
|
12
|
+
version
|
13
|
+
} = package_json_file;
|
14
|
+
console.log(`当前版本 v${version}`);
|
15
|
+
});
|
16
|
+
|
17
|
+
commander.command('pushMessage [args]').description('-- 设置publish提交时是否需要提交信息').action(args => {
|
18
|
+
const package_json_file = JSON.parse(fs.readFileSync(path.join(__dirname, '../package.json')).toString());
|
19
|
+
if ([ 'yes', 'no' ].includes(args)) {
|
20
|
+
package_json_file.pushMessage = args;
|
21
|
+
fs.writeFileSync(path.join(__dirname, '../package.json'), JSON.stringify(package_json_file));
|
22
|
+
}
|
23
|
+
});
|
24
|
+
|
25
|
+
commander.command('link').option('-A').description('-- 创建符号链接').action(args => {
|
26
|
+
let dirList = [];
|
27
|
+
const hasFlag = args.A;
|
28
|
+
const root_path = path.resolve('./');
|
29
|
+
let r1 = readline.createInterface({
|
30
|
+
input: process.stdin,
|
31
|
+
output: process.stdout
|
32
|
+
});
|
33
|
+
r1.question('Target Path:', function (answer) {
|
34
|
+
const arr = answer.split('\\');
|
35
|
+
const name = arr.length
|
36
|
+
? arr[ arr.length - 1 ]
|
37
|
+
: '';
|
38
|
+
if (hasFlag) {
|
39
|
+
dirList = dirList.concat(fs.readdirSync(root_path).map(dir => {
|
40
|
+
return `${root_path}\\${dir}`;
|
41
|
+
}).filter(dir => fs.statSync(dir).isDirectory()).map(dir => {
|
42
|
+
return {
|
43
|
+
dir: dir + '\\' + name,
|
44
|
+
link: answer
|
45
|
+
};
|
46
|
+
}));
|
47
|
+
} else {
|
48
|
+
dirList = dirList.concat(root_path).map(dir => {
|
49
|
+
return {
|
50
|
+
dir: dir + '\\' + name,
|
51
|
+
link: answer
|
52
|
+
};
|
53
|
+
});
|
54
|
+
}
|
55
|
+
dirList.forEach(item => {
|
56
|
+
child_process.execSync(`mklink /D ${item.dir} ${item.link}`, (error, stdout) => {
|
57
|
+
if (!error) {
|
58
|
+
console.log(stdout);
|
59
|
+
}
|
60
|
+
});
|
61
|
+
});
|
62
|
+
console.log('执行完成。');
|
63
|
+
process.exit(0);
|
64
|
+
});
|
65
|
+
r1.on('close', () => process.exit(0));
|
66
|
+
});
|
67
|
+
|
68
|
+
// 命令
|
69
|
+
commander.command('auth [args]').description('-- 授权').action(args => {
|
70
|
+
require('../src/auth.js')(process.argv.splice(3));
|
71
|
+
});
|
72
|
+
|
73
|
+
// 发包
|
74
|
+
commander.command('publish [args]').description('-- 发布包').action(args => {
|
75
|
+
require('../src/publish.js')(args);
|
76
|
+
});
|
77
|
+
|
78
|
+
// publish 命令
|
79
|
+
commander.command('push [args]').description('-- 发布包').action(args => {
|
80
|
+
if (args) {
|
81
|
+
if ([ 'java' ].includes(args)) {
|
82
|
+
require('../src/push.js')(process.argv.splice(3));
|
83
|
+
} else {
|
84
|
+
console.log(`无效的选项‘${args}’。`);
|
85
|
+
process.exit(0);
|
86
|
+
}
|
87
|
+
} else {
|
88
|
+
console.log(`无效的选项‘${args}’。`);
|
89
|
+
process.exit(0);
|
90
|
+
}
|
91
|
+
});
|
92
|
+
|
93
|
+
// rm-rf 命令
|
94
|
+
commander.command('rm-rf').description('-- 删除全部').action(() => {
|
95
|
+
require('../src/rm-rf.js')();
|
96
|
+
});
|
97
|
+
|
98
|
+
commander.parse(process.argv);
|
package/package.json
CHANGED
package/src/auth.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
function a0_0x2374(_0x3cb867,_0x222789){const _0x28271b=a0_0x2827();return a0_0x2374=function(_0x237499,_0x1068c8){_0x237499=_0x237499-0x187;let _0x20cadc=_0x28271b[_0x237499];return _0x20cadc;},a0_0x2374(_0x3cb867,_0x222789);}const a0_0x5129fb=a0_0x2374;(function(_0x285ab0,_0x3c8573){const _0x2fe416=a0_0x2374,_0x4c0c36=_0x285ab0();while(!![]){try{const _0x4f6809=-parseInt(_0x2fe416(0x18a))/0x1+-parseInt(_0x2fe416(0x192))/0x2+parseInt(_0x2fe416(0x18c))/0x3*(-parseInt(_0x2fe416(0x19c))/0x4)+-parseInt(_0x2fe416(0x19b))/0x5*(-parseInt(_0x2fe416(0x196))/0x6)+parseInt(_0x2fe416(0x1a1))/0x7+parseInt(_0x2fe416(0x19a))/0x8+parseInt(_0x2fe416(0x197))/0x9*(parseInt(_0x2fe416(0x191))/0xa);if(_0x4f6809===_0x3c8573)break;else _0x4c0c36['push'](_0x4c0c36['shift']());}catch(_0x3f3e26){_0x4c0c36['push'](_0x4c0c36['shift']());}}}(a0_0x2827,0x4a23c));const axios=require(a0_0x5129fb(0x19e)),chalk=require(a0_0x5129fb(0x199)),fs=require('fs'),path=require(a0_0x5129fb(0x18f)),{getApiHost}=require(a0_0x5129fb(0x19f));function a0_0x2827(){const _0x3a3666=['message','path','then','10faliXJ','981162BmjkvG','Auth:\x20登录成功,已缓存登录状态!','log','data','258cdRoyC','4119561MzopmX','existsSync','chalk','1186808hHVWGx','67345UlHoHF','1116EJTVMh','Auth:\x20','axios','./config','../.auth','1663277NAKPnu','Auth:\x20授权登录!','writeFileSync','green','join','catch','/api/auth','exit','post','342068BtBXwH','unlinkSync','3081GhzfMi','Auth:\x20登录失败!'];a0_0x2827=function(){return _0x3a3666;};return a0_0x2827();}module['exports']=_0x2ca767=>{const _0x5b1057=a0_0x5129fb;console['log'](_0x5b1057(0x1a2));const [_0x5e7ad1,_0x329f0f]=_0x2ca767;axios[_0x5b1057(0x189)](getApiHost()+_0x5b1057(0x187),{'username':_0x5e7ad1,'password':_0x329f0f})[_0x5b1057(0x190)](_0x1f2ef8=>{const _0x296189=_0x5b1057,_0x2824d1=path[_0x296189(0x1a5)](__dirname,_0x296189(0x1a0));_0x1f2ef8[_0x296189(0x195)]['status']?(console[_0x296189(0x194)](chalk['green'](_0x296189(0x193))),fs[_0x296189(0x1a3)](_0x2824d1,_0x5e7ad1+'/'+_0x329f0f)):(console[_0x296189(0x194)](chalk['red'](_0x296189(0x19d)+_0x1f2ef8[_0x296189(0x195)][_0x296189(0x18e)])),fs[_0x296189(0x198)](_0x2824d1)&&fs[_0x296189(0x18b)](_0x2824d1),process[_0x296189(0x188)](0x0));})[_0x5b1057(0x1a6)](_0x565459=>{const _0x1bcf63=_0x5b1057;console[_0x1bcf63(0x194)](chalk[_0x1bcf63(0x1a4)](_0x1bcf63(0x18d)+_0x565459['message'])),process[_0x1bcf63(0x188)](0x0);});};
|
package/src/config.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
const a1_0x4148ed=a1_0x5781;(function(_0x5e7c21,_0x2f88f8){const _0x3f7eec=a1_0x5781,_0x441b7a=_0x5e7c21();while(!![]){try{const _0x5766ab=parseInt(_0x3f7eec(0x16c))/0x1*(-parseInt(_0x3f7eec(0x15f))/0x2)+parseInt(_0x3f7eec(0x147))/0x3*(-parseInt(_0x3f7eec(0x162))/0x4)+parseInt(_0x3f7eec(0x165))/0x5*(-parseInt(_0x3f7eec(0x14a))/0x6)+parseInt(_0x3f7eec(0x160))/0x7*(-parseInt(_0x3f7eec(0x167))/0x8)+parseInt(_0x3f7eec(0x163))/0x9+-parseInt(_0x3f7eec(0x14f))/0xa+-parseInt(_0x3f7eec(0x145))/0xb*(-parseInt(_0x3f7eec(0x157))/0xc);if(_0x5766ab===_0x2f88f8)break;else _0x441b7a['push'](_0x441b7a['shift']());}catch(_0x14087e){_0x441b7a['push'](_0x441b7a['shift']());}}}(a1_0xdeb7,0x613ba));function a1_0x5781(_0x3c7cb8,_0x56eacc){const _0xdeb767=a1_0xdeb7();return a1_0x5781=function(_0x5781cb,_0x48de13){_0x5781cb=_0x5781cb-0x140;let _0x7ac263=_0xdeb767[_0x5781cb];return _0x7ac263;},a1_0x5781(_0x3c7cb8,_0x56eacc);}const os=require('os'),path=require(a1_0x4148ed(0x14d)),fs=require('fs'),API_HOST='http://120.26.210.58:8088',API_HOST_HTTPS='https://jcloud.cqjjb.cn',API_HOST_TEST=a1_0x4148ed(0x153);function a1_0xdeb7(){const _0x39a746=['GIT_HOST','getApiHost','ywPtT3xCG6b_vAxp6sTj','9286jDLOiT','join','CONFIG_FILE_HOST','TEMPLATE_FOLDER','jjb-assembly-','http','CLOUD_PROJECT','../../../package.json','77aiRBrL','GIT_JAVA_ENV_JSON','3ArNVyK','readFileSync','toString','588360FovSmp','GIT_TEMP_DIR','FT3pKzxpRynFkmddJ9Bs','path','d4wQ7dzEjYPsgVbKnYei','3111900jTMKwz','FqNrmFAgrxasMrbbjvq9','API_HOST','hLqARY89CN6fUD3yg4NL','http://120.26.210.58:8089','dev','jjb-assembly-java','G4HJRsHr9D7Ssmixegw2','3776184LstwAK','prod','parse','snBxJ2i5kYarGGcsojhY','httpMethod','tmpdir','gPSit8aJsLVmNzuQ5Cy4','https://cdn.cqjjb.cn/jjb-cloud-config','56jxwkBG','7sypsXT','env','544372pBpkdv','3477438ysgWaM','test','40cBaUPU','7V-YUxhmh51Mdhgx4rq4','5592952rQuPPX','API_HOST_TEST'];a1_0xdeb7=function(){return _0x39a746;};return a1_0xdeb7();}exports[a1_0x4148ed(0x16e)]=a1_0x4148ed(0x15e),exports[a1_0x4148ed(0x151)]=API_HOST,exports[a1_0x4148ed(0x168)]=API_HOST_TEST,exports[a1_0x4148ed(0x169)]='http://192.168.1.242:10985',exports['GIT_TEMP_DIR']=a1_0x4148ed(0x141)+Date['now'](),exports['GIT_TEMP_JAVA']=a1_0x4148ed(0x155),exports[a1_0x4148ed(0x146)]={'development':a1_0x4148ed(0x154),'production':a1_0x4148ed(0x158),'test':a1_0x4148ed(0x164)},exports[a1_0x4148ed(0x143)]={'common':{'token':a1_0x4148ed(0x156),'projectId':0x117},'react-admin-component':{'token':a1_0x4148ed(0x14c),'projectId':0x154},'jjb-dva-runtime':{'token':a1_0x4148ed(0x152),'projectId':0x23b},'jjb-common-lib':{'token':'e9njpBd1nS_LREN8GFpR','projectId':0x23c},'jjb-common-decorator':{'token':a1_0x4148ed(0x15d),'projectId':0x23e},'vue-unisass-component':{'token':a1_0x4148ed(0x14e),'projectId':0x153},'react-component':{'token':a1_0x4148ed(0x15a),'projectId':0x33f},'micro-app-ts':{'token':a1_0x4148ed(0x166),'projectId':0x33e},'micro-app':{'token':a1_0x4148ed(0x150),'projectId':0x33d},'lib':{'token':a1_0x4148ed(0x16b),'projectId':0x33c}},exports[a1_0x4148ed(0x140)]=os[a1_0x4148ed(0x15c)]()+'\x5c'+exports[a1_0x4148ed(0x14b)],exports[a1_0x4148ed(0x16a)]=()=>{const _0x1f3d4b=a1_0x4148ed,_0x560ffe=JSON[_0x1f3d4b(0x159)](fs[_0x1f3d4b(0x148)](path[_0x1f3d4b(0x16d)](__dirname,_0x1f3d4b(0x144)))[_0x1f3d4b(0x149)]());return _0x560ffe[_0x1f3d4b(0x161)]==='test'?API_HOST_TEST:_0x560ffe[_0x1f3d4b(0x15b)]===_0x1f3d4b(0x142)?API_HOST:API_HOST_HTTPS;};
|
package/src/publish.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
function a2_0x196c(_0xdc426c,_0x547a33){const _0x38d23f=a2_0x38d2();return a2_0x196c=function(_0x196cf2,_0x14bac8){_0x196cf2=_0x196cf2-0x127;let _0x2b194c=_0x38d23f[_0x196cf2];return _0x2b194c;},a2_0x196c(_0xdc426c,_0x547a33);}const a2_0x164b91=a2_0x196c;(function(_0x259ca8,_0x4c2dbc){const _0x219240=a2_0x196c,_0x22ffea=_0x259ca8();while(!![]){try{const _0x3671f8=-parseInt(_0x219240(0x169))/0x1+parseInt(_0x219240(0x12d))/0x2*(parseInt(_0x219240(0x15e))/0x3)+parseInt(_0x219240(0x12a))/0x4+-parseInt(_0x219240(0x164))/0x5+parseInt(_0x219240(0x143))/0x6*(-parseInt(_0x219240(0x14e))/0x7)+parseInt(_0x219240(0x134))/0x8*(-parseInt(_0x219240(0x13f))/0x9)+parseInt(_0x219240(0x14d))/0xa;if(_0x3671f8===_0x4c2dbc)break;else _0x22ffea['push'](_0x22ffea['shift']());}catch(_0x385aa0){_0x22ffea['push'](_0x22ffea['shift']());}}}(a2_0x38d2,0xe4469));function a2_0x38d2(){const _0x5d4439=['6543908ZNcMlW','length','stdout','19718RWEbYp','readme_content','createInterface','./config','npm\x20run\x20build:production','hostname','child_process','312bUQRhw','package.json','Auth:\x20授权成功!','Error:\x20暴露的配置信息中缺少“settings”!','Error:\x20授权失败!','split','then','Error:\x20请在组件根目录添加一个README.md说明文件!','Error:\x20授权失败,未知错误!','log','Error:\x20暴露的配置信息中缺少“info”!','284895pKxJSq','Error:\x20请在组件根目录为组件添加一个缩略图“thumbnail.png”文件!','join','pushMessage','1065174TkLbdI','/api/auth','stdin','question','/api/file/publish','exit','axios','package_version','Error:\x20请先登录!','data','42891980fxUIgD','70oSETrs','status','red','readline','dist','defaultSetting','catch','readFileSync','component_config_content','Error:\x20请在组件入口文件中添加“window[props.componentKey]”以暴露组件的配置信息!','Sudo:\x20yarn\x20build:production','Auth:\x20正在获取授权!','message','from','post','existsSync','75iMsbZw','blue','indexOf','match','Please\x20wait,\x20build\x20...,','base64','8300580oRWeBB','green','resolve','platform','../.auth','566682MoRNQW','chalk','yarn\x20build:production','execSync','请输入此次组件发布的信息,按Enter确认:','no\x20message','exports','README.md','package_content','toString'];a2_0x38d2=function(){return _0x5d4439;};return a2_0x38d2();}const path=require('path'),fs=require('fs'),os=require('os'),axios=require(a2_0x164b91(0x149)),chalk=require(a2_0x164b91(0x16a)),readline=require(a2_0x164b91(0x151)),io=readline[a2_0x164b91(0x12f)]({'input':process[a2_0x164b91(0x145)],'output':process[a2_0x164b91(0x12c)]}),child_process=require(a2_0x164b91(0x133)),{getApiHost}=require(a2_0x164b91(0x130)),submitFun=function(_0x5acad8,_0x3cafe4){const _0x3c83c2=a2_0x164b91;_0x3cafe4['message']=_0x5acad8||_0x3c83c2(0x16e),axios[_0x3c83c2(0x15c)](getApiHost()+_0x3c83c2(0x147),_0x3cafe4)[_0x3c83c2(0x13a)](_0x71cbba=>{const _0x256c71=_0x3c83c2;console['log'](chalk[_0x256c71(0x165)](_0x71cbba[_0x256c71(0x14c)][_0x256c71(0x15a)])),process[_0x256c71(0x148)](0x0);})['catch'](_0x22ba61=>{const _0x178bbb=_0x3c83c2;console[_0x178bbb(0x13d)](chalk[_0x178bbb(0x150)]('Error:\x20组件发布失败!'+_0x22ba61[_0x178bbb(0x15a)])),process['exit'](0x0);});};module[a2_0x164b91(0x16f)]=_0x3f6c29=>{const _0x35e4d0=a2_0x164b91,_0x1582c9=path[_0x35e4d0(0x141)](__dirname,_0x35e4d0(0x168));!fs[_0x35e4d0(0x15d)](_0x1582c9)&&(console[_0x35e4d0(0x13d)](chalk['red'](_0x35e4d0(0x14b))),process[_0x35e4d0(0x148)](0x0));const [_0x42a06c,_0x6887d7]=fs[_0x35e4d0(0x155)](_0x1582c9)[_0x35e4d0(0x129)]()[_0x35e4d0(0x139)]('/');console[_0x35e4d0(0x13d)](_0x35e4d0(0x159)),axios[_0x35e4d0(0x15c)](getApiHost()+_0x35e4d0(0x144),{'username':_0x42a06c,'password':_0x6887d7})['then'](_0x2bc992=>{const _0x1f25f5=_0x35e4d0;if(_0x2bc992[_0x1f25f5(0x14c)][_0x1f25f5(0x14f)]){console[_0x1f25f5(0x13d)](chalk['green'](_0x1f25f5(0x136)));const _0x360aa2=path[_0x1f25f5(0x166)]('./');console[_0x1f25f5(0x13d)](_0x1f25f5(0x162)+_0x360aa2);fs[_0x1f25f5(0x15d)](_0x360aa2+'/yarn.lock')?(console[_0x1f25f5(0x13d)](chalk['blue'](_0x1f25f5(0x158)),_0x360aa2),child_process[_0x1f25f5(0x16c)](_0x1f25f5(0x16b),{'cwd':_0x360aa2})):(console[_0x1f25f5(0x13d)](chalk[_0x1f25f5(0x15f)]('Sudo:\x20npm\x20build:production'),_0x360aa2),child_process['execSync'](_0x1f25f5(0x131),{'cwd':_0x360aa2}));const _0x3b0ed2=_0x360aa2[_0x1f25f5(0x160)]('/')!==-0x1?'/':'\x5c',_0x38dce1=''+_0x360aa2+_0x3b0ed2+_0x1f25f5(0x127),_0x3737f5=''+_0x360aa2+_0x3b0ed2+_0x1f25f5(0x152)+_0x3b0ed2+'index.js',_0x1f1b94=''+_0x360aa2+_0x3b0ed2+_0x1f25f5(0x135),_0x3bc8c7=''+_0x360aa2+_0x3b0ed2+'thumbnail.png',_0x28dc1a=JSON['parse'](fs[_0x1f25f5(0x155)](path[_0x1f25f5(0x141)](__dirname,'../../../package.json'))[_0x1f25f5(0x129)]()),{version:_0x4ae025}=_0x28dc1a,_0x490094={'username':_0x42a06c,'cmd_version':_0x4ae025,'hostname':os[_0x1f25f5(0x132)](),'platform':os[_0x1f25f5(0x167)]()};if(fs[_0x1f25f5(0x15d)](_0x1f1b94)){if(fs[_0x1f25f5(0x15d)](_0x3737f5)){_0x490094[_0x1f25f5(0x14a)]=_0x3f6c29?_0x3f6c29:0x0,_0x490094[_0x1f25f5(0x128)]=fs['readFileSync'](_0x3737f5)['toString'](),_0x490094[_0x1f25f5(0x156)]={};const _0x3c1bae=fs[_0x1f25f5(0x155)](_0x3737f5)[_0x1f25f5(0x129)](),_0xe9eaf5=_0x3c1bae[_0x1f25f5(0x161)](/(window\[).+?(\.componentKey|.+]={)/img);if(_0xe9eaf5&&_0xe9eaf5[_0x1f25f5(0x12b)]){const _0x256fdc=_0x3c1bae[_0x1f25f5(0x161)](/componentKey.+([{,]info:\s{0,}{)/img);if(_0x256fdc&&_0x256fdc['length']){let _0x329af8='{';const _0x143a5f=_0x3c1bae[_0x1f25f5(0x139)](_0x256fdc[0x0])[0x1];for(let _0x39c6a7=0x0;_0x39c6a7<_0x143a5f[_0x1f25f5(0x12b)];_0x39c6a7++){_0x329af8+=_0x143a5f[_0x39c6a7];if(_0x143a5f[_0x39c6a7]==='}')try{const _0x36b365=new Function('return\x20'+_0x329af8)();_0x490094[_0x1f25f5(0x156)]={..._0x36b365,'defaultSetting':{}};}catch(_0x5decbf){}}}else console[_0x1f25f5(0x13d)](chalk[_0x1f25f5(0x150)](_0x1f25f5(0x13e))),process[_0x1f25f5(0x148)](0x0);const _0x7a07e3=_0x3c1bae[_0x1f25f5(0x161)](/componentKey.+([{,]settings:\s{0,}{)/img);if(_0x7a07e3&&_0x7a07e3[_0x1f25f5(0x12b)]){let _0x338d80='{';const _0x423e0f=_0x3c1bae[_0x1f25f5(0x139)](_0x7a07e3[0x0])[0x1];for(let _0x1f228e=0x0;_0x1f228e<_0x423e0f[_0x1f25f5(0x12b)];_0x1f228e++){_0x338d80+=_0x423e0f[_0x1f228e];if(_0x423e0f[_0x1f228e]==='}')try{_0x490094['component_config_content'][_0x1f25f5(0x153)]=new Function('return\x20'+_0x338d80)();}catch(_0x8f89d){}}_0x490094[_0x1f25f5(0x156)]=JSON['stringify'](_0x490094[_0x1f25f5(0x156)]);}else console[_0x1f25f5(0x13d)](chalk[_0x1f25f5(0x150)](_0x1f25f5(0x137))),process['exit'](0x0);}else console[_0x1f25f5(0x13d)](chalk[_0x1f25f5(0x150)](_0x1f25f5(0x157))),process['exit'](0x0);fs['existsSync'](_0x38dce1)?_0x490094[_0x1f25f5(0x12e)]=fs['readFileSync'](_0x38dce1)[_0x1f25f5(0x129)]():(console[_0x1f25f5(0x13d)](chalk['red'](_0x1f25f5(0x13b))),process[_0x1f25f5(0x148)](0x0));if(!fs['existsSync'](_0x3bc8c7))console['log'](_0x1f25f5(0x140)),process[_0x1f25f5(0x148)](0x0);else{const _0x14da4b=fs['readFileSync'](_0x3bc8c7);_0x490094['thumbnail_base64']=Buffer[_0x1f25f5(0x15b)](_0x14da4b)['toString'](_0x1f25f5(0x163));}_0x28dc1a[_0x1f25f5(0x142)]==='no'?submitFun(null,_0x490094):io[_0x1f25f5(0x146)](_0x1f25f5(0x16d),function(_0x561e2a){submitFun(_0x561e2a,_0x490094);});}else console['log'](chalk['red']('Error:\x20组件发布失败!根目录缺少‘dist/index.js’文件!')),process[_0x1f25f5(0x148)](0x0);}else console[_0x1f25f5(0x13d)](chalk[_0x1f25f5(0x150)]('Error:\x20组件发布失败!根目录缺少‘package.json’文件!')),process[_0x1f25f5(0x148)](0x0);}else console['log'](chalk['red'](_0x1f25f5(0x138))),process[_0x1f25f5(0x148)](0x0);})[_0x35e4d0(0x154)](_0x1610b0=>{const _0x5bc9bb=_0x35e4d0;console['log'](chalk[_0x5bc9bb(0x150)](_0x5bc9bb(0x13c)),_0x1610b0[_0x5bc9bb(0x15a)]),process[_0x5bc9bb(0x148)](0x0);});};
|
package/src/push.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
const a3_0x1f3cce=a3_0x1224;function a3_0x1d7b(){const _0x5958f7=['yarn\x20build:','data',']\x20请稍等!','/index.html','6AvWcPj','git\x20checkout\x20','/node_modules','writeFileSync','message','red','status','6263224NZsVZk','rmdirSync','Sudo:\x20git\x20pull','exit','40UErplO','child_process','forEach','join','master','git\x20commit\x20-m\x20','2DeFQix','lstatSync','yarn','git\x20add\x20.','isDirectory','javaGitName','Error:\x20授权失败!','Warning:\x20当前打包\x20[Env#','Sudo:\x20yarn\x20build:','post','log','/start/src/main/resources/templates','readFileSync','../.auth','yellow','Log:\x20应用打包完成!','/api/auth','index','length','.html','902267ibNMfZ','4899275RuftTO','Error:\x20“jjb.config.json”中缺少“javaGit”字段!','javaGitBranch','javaGit','appIdentifier','4881636kQmizt','force','\x20--no-verify','git\x20clone\x20','execSync',']\x20未配置“javaGitBranch”,将使用默认分支“master”!','mkdirSync','Sudo:\x20yarn','Sudo:\x20git\x20commit\x20-m\x20','environment','resolve','Log:\x20即将进行应用打包\x20[Env#','existsSync','exports','5551455ChVZAr','axios','Error:\x20命令参数传递错误!','green','Sudo:\x20git\x20checkout\x20','Sudo:\x20git\x20clone\x20','6988848klRESC','\x5cdist','\x22no\x20message\x22','utf-8','7594706zwZdye','split','Auth:\x20正在获取授权!','git\x20pull','Error:\x20当前应用中不存在“jjb.config.json”文件!','path','readdirSync','Auth:\x20授权成功!','Sudo:\x20git\x20push','chalk','Error:\x20“jjb.config.json”中缺少“javaGitName”字段!','Log:\x20应用依赖安装完成!','Error:\x20','blue'];a3_0x1d7b=function(){return _0x5958f7;};return a3_0x1d7b();}(function(_0x4f5f1d,_0xdb95aa){const _0x2b0c45=a3_0x1224,_0x599001=_0x4f5f1d();while(!![]){try{const _0x1d9fa3=parseInt(_0x2b0c45(0x19d))/0x1*(parseInt(_0x2b0c45(0x189))/0x2)+parseInt(_0x2b0c45(0x1b1))/0x3+parseInt(_0x2b0c45(0x1d4))/0x4+-parseInt(_0x2b0c45(0x19e))/0x5*(parseInt(_0x2b0c45(0x1cd))/0x6)+-parseInt(_0x2b0c45(0x1bb))/0x7+parseInt(_0x2b0c45(0x1b7))/0x8+parseInt(_0x2b0c45(0x1a3))/0x9*(-parseInt(_0x2b0c45(0x1d8))/0xa);if(_0x1d9fa3===_0xdb95aa)break;else _0x599001['push'](_0x599001['shift']());}catch(_0x54460){_0x599001['push'](_0x599001['shift']());}}}(a3_0x1d7b,0xe9d27));const fs=require('fs'),os=require('os'),path=require(a3_0x1f3cce(0x1c0)),child_process=require(a3_0x1f3cce(0x1d9)),chalk=require(a3_0x1f3cce(0x1c4)),{CopyFolder,DeleteDirAllFile}=require('./tools'),{GIT_TEMP_JAVA,getApiHost}=require('./config'),axios=require(a3_0x1f3cce(0x1b2));function deleteFolderRecursive(_0x58ead8){const _0x25bfcf=a3_0x1f3cce;fs[_0x25bfcf(0x1af)](_0x58ead8)&&(fs[_0x25bfcf(0x1c1)](_0x58ead8)[_0x25bfcf(0x185)](_0x4e1fef=>{const _0x5183c1=_0x25bfcf,_0x2db06b=path['join'](_0x58ead8,_0x4e1fef);fs[_0x5183c1(0x18a)](_0x2db06b)[_0x5183c1(0x18d)]()?deleteFolderRecursive(_0x2db06b):fs['unlinkSync'](_0x2db06b);}),fs[_0x25bfcf(0x1d5)](_0x58ead8));}function a3_0x1224(_0x24b43a,_0x4c9cb4){const _0x1d7b57=a3_0x1d7b();return a3_0x1224=function(_0x122453,_0x5d1df6){_0x122453=_0x122453-0x185;let _0x4d443a=_0x1d7b57[_0x122453];return _0x4d443a;},a3_0x1224(_0x24b43a,_0x4c9cb4);}module[a3_0x1f3cce(0x1b0)]=arguments=>{const _0x2b7900=a3_0x1f3cce,_0xca7f1a=path[_0x2b7900(0x186)](__dirname,_0x2b7900(0x196));!fs[_0x2b7900(0x1af)](_0xca7f1a)&&(console[_0x2b7900(0x193)](chalk['red']('Error:\x20请先登录!')),process['exit'](0x0));const _0x1c7421=arguments[0x1],_0x457bd3=arguments[0x2]||_0x2b7900(0x1b9),_0x5cf0a7=arguments[0x3]?arguments[0x3]['split']('-'):[],_0x19ecb3=path[_0x2b7900(0x1ad)]('./'),_0x4830f0=_0x19ecb3+'\x5cjjb.config.js',_0x3a5b5b=_0x19ecb3+_0x2b7900(0x1b8),_0x2b9f57=os['tmpdir'](),[_0x1b9a79,_0x37ca88]=fs[_0x2b7900(0x195)](_0xca7f1a)['toString']()[_0x2b7900(0x1bc)]('/');console['log'](_0x2b7900(0x1bd)),axios[_0x2b7900(0x192)](getApiHost()+_0x2b7900(0x199),{'username':_0x1b9a79,'password':_0x37ca88})['then'](_0x504e84=>{const _0x57fb8a=_0x2b7900;if(_0x504e84[_0x57fb8a(0x1ca)][_0x57fb8a(0x1d3)]){console['log'](chalk[_0x57fb8a(0x1b4)](_0x57fb8a(0x1c2)));if(!fs[_0x57fb8a(0x1af)](_0x4830f0))console['log'](chalk[_0x57fb8a(0x1d2)](_0x57fb8a(0x1bf))),process['exit'](0x0);else{const _0x369b86=require(_0x4830f0);!_0x369b86['javaGit']&&(console[_0x57fb8a(0x193)](chalk[_0x57fb8a(0x1d2)](_0x57fb8a(0x19f))),process['exit'](0x0));!_0x369b86['javaGitName']&&(console['log'](chalk[_0x57fb8a(0x1d2)](_0x57fb8a(0x1c5))),process[_0x57fb8a(0x1d7)](0x0));const _0x545ff4=_0x2b9f57+'/'+GIT_TEMP_JAVA;fs[_0x57fb8a(0x1af)](_0x545ff4)&&deleteFolderRecursive(_0x545ff4);fs[_0x57fb8a(0x1a9)](_0x545ff4);const _0x377054=_0x545ff4+'/'+_0x369b86[_0x57fb8a(0x18e)];fs['existsSync'](_0x377054)?_0x5cf0a7['includes'](_0x57fb8a(0x1a4))?DeleteDirAllFile(_0x377054,()=>{const _0x5296e0=_0x57fb8a;console[_0x5296e0(0x193)](chalk['blue']('Sudo:\x20git\x20clone\x20'+_0x369b86[_0x5296e0(0x1a1)]),_0x545ff4),child_process['execSync'](_0x5296e0(0x1a6)+_0x369b86[_0x5296e0(0x1a1)],{'cwd':_0x545ff4});}):(console[_0x57fb8a(0x193)](chalk[_0x57fb8a(0x1c8)]('Sudo:\x20git\x20clone\x20'+_0x369b86['javaGit']),_0x545ff4),child_process[_0x57fb8a(0x1a7)]('git\x20clone\x20'+_0x369b86['javaGit'],{'cwd':_0x545ff4})):(console[_0x57fb8a(0x193)](chalk[_0x57fb8a(0x1c8)](_0x57fb8a(0x1b6)+_0x369b86[_0x57fb8a(0x1a1)]),_0x545ff4),child_process[_0x57fb8a(0x1a7)](_0x57fb8a(0x1a6)+_0x369b86[_0x57fb8a(0x1a1)],{'cwd':_0x545ff4})),_0x365e34(_0x545ff4,_0x369b86);}}else console[_0x57fb8a(0x193)](chalk[_0x57fb8a(0x1d2)](_0x57fb8a(0x18f))),process['exit'](0x0);})['catch'](_0x5c135e=>{const _0x5ae8bb=_0x2b7900;console[_0x5ae8bb(0x193)](chalk[_0x5ae8bb(0x1d2)]('Error:\x20授权失败,未知错误!'),_0x5c135e[_0x5ae8bb(0x1d1)]),process[_0x5ae8bb(0x1d7)](0x0);});arguments[_0x2b7900(0x19b)]<0x2&&(console['log'](chalk[_0x2b7900(0x1d2)](_0x2b7900(0x1b3))),process['exit'](0x0));function _0x365e34(_0xd5f019,_0x2153ca){const _0x350658=_0x2b7900,_0x55ee79=_0x2153ca[_0x350658(0x1ac)][_0x1c7421],_0x3d068b=_0xd5f019+'/'+_0x2153ca[_0x350658(0x18e)];!_0x55ee79['javaGitBranch']&&console[_0x350658(0x193)](chalk['yellow'](_0x350658(0x190)+_0x1c7421+_0x350658(0x1a8)));console[_0x350658(0x193)](chalk['blue'](_0x350658(0x1d6)),_0x3d068b),child_process[_0x350658(0x1a7)](_0x350658(0x1be),{'cwd':_0x3d068b});!fs['existsSync'](_0x19ecb3+_0x350658(0x1cf))&&(console[_0x350658(0x193)](chalk[_0x350658(0x197)]('Warning:\x20当前应用未安装依赖!即将执行依赖安装命令,请稍等!')),console[_0x350658(0x193)](chalk[_0x350658(0x1c8)](_0x350658(0x1aa)),_0x19ecb3),child_process[_0x350658(0x1a7)](_0x350658(0x18b),{'cwd':_0x19ecb3}),console[_0x350658(0x193)](chalk[_0x350658(0x1b4)](_0x350658(0x1c6))));console['log'](_0x350658(0x1ae)+_0x1c7421+_0x350658(0x1cb)),console[_0x350658(0x193)](chalk['blue'](_0x350658(0x191)+_0x1c7421),_0x19ecb3),child_process[_0x350658(0x1a7)](_0x350658(0x1c9)+_0x1c7421,{'cwd':_0x19ecb3,'maxBuffer':0x3b9aca00}),console[_0x350658(0x193)](chalk['green'](_0x350658(0x198)));if(fs[_0x350658(0x1af)](_0x3a5b5b)){const _0x473900=_0x2153ca[_0x350658(0x1a2)],_0x293e6b=fs[_0x350658(0x195)](_0x3a5b5b+_0x350658(0x1cc));_0x5cf0a7['includes'](_0x350658(0x19a))?fs[_0x350658(0x1d0)](_0x3a5b5b+_0x350658(0x1cc),_0x293e6b,_0x350658(0x1ba)):fs[_0x350658(0x1d0)](_0x3a5b5b+'/'+_0x473900+_0x350658(0x19c),_0x293e6b,_0x350658(0x1ba));const _0x33df1d=_0x3d068b+_0x350658(0x194);!fs['existsSync'](_0x33df1d)&&fs['mkdirSync'](_0x33df1d);const _0x27221e=_0x55ee79[_0x350658(0x1a0)]?_0x55ee79[_0x350658(0x1a0)]:_0x350658(0x187);console['log'](chalk[_0x350658(0x1c8)](_0x350658(0x1b5)+_0x27221e),_0x3d068b),child_process[_0x350658(0x1a7)](_0x350658(0x1ce)+_0x27221e,{'cwd':_0x3d068b});const _0x19fa32=_0x33df1d+'/'+_0x2153ca[_0x350658(0x1a2)];DeleteDirAllFile(_0x19fa32,()=>{const _0x10078b=_0x350658;fs[_0x10078b(0x1a9)](_0x19fa32),fs[_0x10078b(0x1d0)](_0x19fa32+_0x10078b(0x19c),_0x293e6b,'utf-8'),CopyFolder(_0x3a5b5b+'\x5c'+_0x2153ca[_0x10078b(0x1a2)],_0x19fa32,()=>{setTimeout(()=>{const _0x169f8e=a3_0x1224;console[_0x169f8e(0x193)](chalk[_0x169f8e(0x1c8)]('Sudo:\x20git\x20pull'),_0x3d068b),child_process['execSync'](_0x169f8e(0x1be),{'cwd':_0x3d068b}),console[_0x169f8e(0x193)](chalk[_0x169f8e(0x1c8)]('Sudo:\x20git\x20add\x20.'),_0x3d068b),child_process['execSync'](_0x169f8e(0x18c),{'cwd':_0x3d068b});try{console[_0x169f8e(0x193)](chalk[_0x169f8e(0x1c8)](_0x169f8e(0x1ab)+_0x457bd3+_0x169f8e(0x1a5)),_0x3d068b),child_process['execSync'](_0x169f8e(0x188)+_0x457bd3+_0x169f8e(0x1a5),{'cwd':_0x3d068b});}catch(_0x221ec0){console['log'](chalk[_0x169f8e(0x1d2)](_0x169f8e(0x1c7)+_0x221ec0[_0x169f8e(0x1d1)]));}console[_0x169f8e(0x193)](chalk['blue'](_0x169f8e(0x1c3)),_0x3d068b),child_process[_0x169f8e(0x1a7)]('git\x20push',{'cwd':_0x3d068b});},0x3e8);});});}else console['log'](chalk[_0x350658(0x1d2)]('Error:\x20未知错误,未找到“dist”目录!')),process[_0x350658(0x1d7)](0x0);}};
|
package/src/rm-rf.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
const a4_0x520f46=a4_0x3723;function a4_0x3d6b(){const _0x54a572=['statSync','7IRJLDZ','161289RQUHDZ','existsSync','正在计算项目数,请稍等...','length','44szxqIr','exit','clear','删除完成。','7568104enEYNx','trim','36225xkOoay','210MNGhWT','102qSBIGz','readdirSync','删除文件夹:','取消删除。','498349AcbSCZ','无效操作。','unlinkSync','question','resolve','stdin','log','删除异常:','readline','1431498NtgDJW','是否确认删除?删除后不可恢复![y/n]:','删除文件:','7716696JSkSTD','5mRUYmA','1858872KmroHb','path','exports'];a4_0x3d6b=function(){return _0x54a572;};return a4_0x3d6b();}function a4_0x3723(_0x1ed478,_0xd3739c){const _0x3d6b76=a4_0x3d6b();return a4_0x3723=function(_0x372355,_0xb8733){_0x372355=_0x372355-0x1b6;let _0x5a4219=_0x3d6b76[_0x372355];return _0x5a4219;},a4_0x3723(_0x1ed478,_0xd3739c);}(function(_0x53148e,_0x18860e){const _0xdbe28d=a4_0x3723,_0x57e269=_0x53148e();while(!![]){try{const _0x3a690a=-parseInt(_0xdbe28d(0x1c0))/0x1+-parseInt(_0xdbe28d(0x1bc))/0x2*(parseInt(_0xdbe28d(0x1ba))/0x3)+-parseInt(_0xdbe28d(0x1ce))/0x4+parseInt(_0xdbe28d(0x1cd))/0x5*(parseInt(_0xdbe28d(0x1c9))/0x6)+parseInt(_0xdbe28d(0x1d2))/0x7*(-parseInt(_0xdbe28d(0x1b8))/0x8)+parseInt(_0xdbe28d(0x1d3))/0x9*(parseInt(_0xdbe28d(0x1bb))/0xa)+parseInt(_0xdbe28d(0x1d7))/0xb*(parseInt(_0xdbe28d(0x1cc))/0xc);if(_0x3a690a===_0x18860e)break;else _0x57e269['push'](_0x57e269['shift']());}catch(_0x148097){_0x57e269['push'](_0x57e269['shift']());}}}(a4_0x3d6b,0xa1aeb));const fs=require('fs'),path=require(a4_0x520f46(0x1cf)),readline=require(a4_0x520f46(0x1c8)),io=readline['createInterface']({'input':process[a4_0x520f46(0x1c5)],'output':process['stdout']});module[a4_0x520f46(0x1d0)]=function(){const _0x496441=a4_0x520f46,_0x38d9e4=path[_0x496441(0x1c4)]('./');io[_0x496441(0x1c3)](_0x496441(0x1ca),function(_0x1f37f2){const _0x39a191=_0x496441;if(_0x1f37f2[_0x39a191(0x1b9)]()==='y')console[_0x39a191(0x1c6)](_0x39a191(0x1d5)),setTimeout(()=>{setTimeout(()=>{const _0x347437=a4_0x3723;console[_0x347437(0x1b6)](),exec(_0x38d9e4),setTimeout(()=>{const _0x21382a=_0x347437;console[_0x21382a(0x1c6)](_0x21382a(0x1b7)),console[_0x21382a(0x1b6)](),process[_0x21382a(0x1d8)](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x1f37f2[_0x39a191(0x1b9)]()==='n'?(console['log'](_0x39a191(0x1bf)),process['exit'](0x0)):(console[_0x39a191(0x1c6)](_0x39a191(0x1c1)),process['exit'](0x0));});};function exec(_0xfc4ec7){const _0x11e6e3=a4_0x520f46;if(fs[_0x11e6e3(0x1d4)](_0xfc4ec7)){const _0x3acd94=fs[_0x11e6e3(0x1bd)](_0xfc4ec7);for(let _0x1d65cb=0x0;_0x1d65cb<_0x3acd94[_0x11e6e3(0x1d6)];_0x1d65cb++){const _0x3c9a55=_0x3acd94[_0x1d65cb],_0x14a3e5=_0xfc4ec7+'/'+_0x3c9a55;try{fs[_0x11e6e3(0x1d1)](_0x14a3e5)['isDirectory']()?(exec(_0x14a3e5),fs['rmdirSync'](_0x14a3e5,{'recursive':!![]}),console[_0x11e6e3(0x1c6)](_0x11e6e3(0x1be)+_0x14a3e5)):(fs[_0x11e6e3(0x1c2)](_0x14a3e5),console[_0x11e6e3(0x1c6)](_0x11e6e3(0x1cb)+_0x14a3e5));}catch(_0x217670){console['log'](_0x11e6e3(0x1c7)+_0x14a3e5);}}}}
|
package/src/tools.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
const a5_0x306398=a5_0x13cc;function a5_0x13cc(_0x59af6c,_0x1b33c8){const _0x4ba473=a5_0x4ba4();return a5_0x13cc=function(_0x13cc40,_0x4ce212){_0x13cc40=_0x13cc40-0x109;let _0x5e7883=_0x4ba473[_0x13cc40];return _0x5e7883;},a5_0x13cc(_0x59af6c,_0x1b33c8);}function a5_0x4ba4(){const _0x4ceebf=['DeepScanner','stat','uniapp','writeFileSync','statSync','jjb-common','/api/v4/projects/','write\x20error','&ref=master','\x22,\x22main\x22:\x20\x22index.js\x22}','map','jjb-common-lib','installTarget','dependencies','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','existsSync','name','react-admin-component','67291qoGzdh','6218575hYWcHG','.zip','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','rmdirSync','265361XGACHz','/repository/archive.zip?private_token=','【Error】:[jjb.config.json.installResources]配置无效,有效值<common\x20|\x20react-admin-component\x20|\x20vue-unisass-component\x20|\x20jjb-common-decorator\x20|\x20jjb-dva-runtime\x20|\x20jjb-common-lib>。','node_modules','log','read\x20error','2940696AkPITt','multi','【Error】:[jjb.config.json.installTarget]类型是一个string。','readFileSync','path','4iPDPsM','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','f_update_project_package_json','error','18117084IyfDwP','2SQVLNQ','11WifbPk','token','【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','isArray','DeleteDirAllFile','\x5cpackage.json','isDirectory','{\x22name\x22:\x22','mkdirSync','string','projectType','1798206jbuQEH','pipe','tmpdir','2005191iqfweX','CopyFolder','CopyFile','push','spa','length','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','unlinkSync','readdirSync','_zip','parse','exit','20Cteaef','join','createWriteStream','\x5cjjb.config.json','\x22,\x22version\x22:\x22','f_pull_git_repository','584rIsPAK','vue-unisass-component','includes','f_rm_rf','【Error】:[jjb.config.json.installResources]无资源。','f_file_copy','forEach','jjb-common-decorator','createReadStream','f_resolve_install_resources','filter','installResources','toString','f_content_replace','CreatePaths','readdir'];a5_0x4ba4=function(){return _0x4ceebf;};return a5_0x4ba4();}(function(_0xd2395f,_0x3f670a){const _0xf02d05=a5_0x13cc,_0x300a72=_0xd2395f();while(!![]){try{const _0x4fc942=-parseInt(_0xf02d05(0x115))/0x1*(parseInt(_0xf02d05(0x125))/0x2)+-parseInt(_0xf02d05(0x11b))/0x3+parseInt(_0xf02d05(0x120))/0x4*(parseInt(_0xf02d05(0x111))/0x5)+parseInt(_0xf02d05(0x131))/0x6+-parseInt(_0xf02d05(0x110))/0x7*(parseInt(_0xf02d05(0x147))/0x8)+-parseInt(_0xf02d05(0x134))/0x9*(parseInt(_0xf02d05(0x141))/0xa)+-parseInt(_0xf02d05(0x126))/0xb*(-parseInt(_0xf02d05(0x124))/0xc);if(_0x4fc942===_0x3f670a)break;else _0x300a72['push'](_0x300a72['shift']());}catch(_0xef660){_0x300a72['push'](_0x300a72['shift']());}}}(a5_0x4ba4,0xa1309));const fs=require('fs'),os=require('os'),path=require(a5_0x306398(0x11f)),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require('./config');exports[a5_0x306398(0x14a)]=function(_0x4a26ee){const _0x47bc0b=a5_0x306398;if(fs[_0x47bc0b(0x10d)](_0x4a26ee)){const _0x36dd9d=fs[_0x47bc0b(0x13d)](_0x4a26ee);for(let _0x9279b4=0x0;_0x9279b4<_0x36dd9d['length'];_0x9279b4++){const _0x480e4e=_0x36dd9d[_0x9279b4],_0x3511c5=_0x4a26ee+'/'+_0x480e4e;fs[_0x47bc0b(0x15b)](_0x3511c5)[_0x47bc0b(0x12c)]()?(exports['f_rm_rf'](_0x3511c5),fs[_0x47bc0b(0x114)](_0x3511c5)):fs[_0x47bc0b(0x13c)](_0x3511c5);}}},exports[a5_0x306398(0x146)]=function(_0x1095eb=[]){return _0x1095eb['map'](_0x4a5111=>{const _0x30647d=a5_0x13cc,_0x4ede9d=CLOUD_PROJECT[_0x4a5111[_0x30647d(0x10e)]]||undefined,_0x110454=os[_0x30647d(0x133)]();return{'path':_0x110454+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x4a5111[_0x30647d(0x10e)]+_0x30647d(0x112),'compress':_0x110454+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x4a5111[_0x30647d(0x10e)]+_0x30647d(0x13e),'repository':GIT_HOST+_0x30647d(0x15d)+_0x4ede9d['projectId']+_0x30647d(0x116)+_0x4ede9d[_0x30647d(0x127)]+_0x30647d(0x15f)};});},exports['f_scan_jjb_config_json']=function(_0x35ea72){const _0x5b0118=a5_0x306398;return fs[_0x5b0118(0x10d)](_0x35ea72+_0x5b0118(0x144));},exports['f_scan_jjb_config_json_rules']=function(_0x304d4c){const _0x4d20cf=a5_0x306398;let _0x4d836d={};try{_0x4d836d=JSON['parse'](fs[_0x4d20cf(0x11e)](_0x304d4c+'\x5cjjb.config.json')[_0x4d20cf(0x153)]());}catch(_0x583fff){console[_0x4d20cf(0x119)]('【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。'),process['exit'](0x0);}!(_0x4d20cf(0x130)in _0x4d836d)&&(console[_0x4d20cf(0x119)](_0x4d20cf(0x121)),process[_0x4d20cf(0x140)](0x0));!('installTarget'in _0x4d836d)&&(console[_0x4d20cf(0x119)](_0x4d20cf(0x10c)),process['exit'](0x0));!(_0x4d20cf(0x152)in _0x4d836d)&&(console[_0x4d20cf(0x119)](_0x4d20cf(0x13a)),process[_0x4d20cf(0x140)](0x0));typeof _0x4d836d['projectType']!==_0x4d20cf(0x12f)&&(console['log']('【Error】:[jjb.config.json.projectType]类型是一个string。'),process[_0x4d20cf(0x140)](0x0));![_0x4d20cf(0x11c),_0x4d20cf(0x138),_0x4d20cf(0x159),'micro-spa'][_0x4d20cf(0x149)](_0x4d836d[_0x4d20cf(0x130)])&&(console[_0x4d20cf(0x119)](_0x4d20cf(0x128)),process['exit'](0x0));typeof _0x4d836d[_0x4d20cf(0x10a)]!=='string'&&(console['log'](_0x4d20cf(0x11d)),process[_0x4d20cf(0x140)](0x0));![_0x4d20cf(0x118),'src'][_0x4d20cf(0x149)](_0x4d836d[_0x4d20cf(0x10a)])&&(console['log'](_0x4d20cf(0x13b)),process[_0x4d20cf(0x140)](0x0));!Array[_0x4d20cf(0x129)](_0x4d836d[_0x4d20cf(0x152)])&&(console[_0x4d20cf(0x119)](_0x4d20cf(0x113)),process['exit'](0x0));_0x4d836d[_0x4d20cf(0x152)][_0x4d20cf(0x139)]===0x0&&(console[_0x4d20cf(0x119)](_0x4d20cf(0x14b)),process[_0x4d20cf(0x140)](0x0));const _0xec56fb=exports[_0x4d20cf(0x150)](_0x4d836d[_0x4d20cf(0x152)]);return _0xec56fb[_0x4d20cf(0x161)](_0x4fe76b=>_0x4fe76b[_0x4d20cf(0x10e)])[_0x4d20cf(0x151)](_0x2134d5=>![_0x4d20cf(0x15c),'jjb-dva-runtime',_0x4d20cf(0x109),_0x4d20cf(0x14e),_0x4d20cf(0x10f),_0x4d20cf(0x148)][_0x4d20cf(0x149)](_0x2134d5))[_0x4d20cf(0x139)]!==0x0&&(console['log'](_0x4d20cf(0x117)),process[_0x4d20cf(0x140)](0x0)),_0x4d836d['installResources']=_0xec56fb,_0x4d836d;},exports['f_create_package_json']=function(_0x31faa4,_0x5a930f,_0x2607fa){const _0x332e32=a5_0x306398;fs[_0x332e32(0x15a)](_0x31faa4+_0x332e32(0x12b),_0x332e32(0x12d)+_0x5a930f+_0x332e32(0x145)+_0x2607fa+_0x332e32(0x160));},exports[a5_0x306398(0x150)]=function(_0xb5120c=[]){const _0x123fba=[];return Array['isArray'](_0xb5120c)&&_0xb5120c['forEach'](_0x20b84c=>{const _0x5104d7=a5_0x13cc;if(Array[_0x5104d7(0x129)](_0x20b84c)){const [_0x487a5a,_0x36c0dd=[]]=_0x20b84c;_0x123fba[_0x5104d7(0x137)]({'name':_0x487a5a,'importList':_0x36c0dd});}else _0x123fba[_0x5104d7(0x137)]({'name':_0x20b84c,'importList':[]});}),_0x123fba;},exports[a5_0x306398(0x122)]=function(_0x5abad2,_0x23bd1a,_0x2551d6){const _0x76e96f=a5_0x306398,_0x5f84ce=JSON[_0x76e96f(0x13f)](fs[_0x76e96f(0x11e)](_0x5abad2)['toString']());_0x5f84ce[_0x76e96f(0x10b)][_0x23bd1a]=_0x2551d6,fs[_0x76e96f(0x15a)](_0x5abad2,JSON['stringify'](_0x5f84ce,null,0x2));},exports[a5_0x306398(0x14c)]=function(_0xc73a21,_0x3ab418){const _0x45df9a=a5_0x306398;fs['readdirSync'](_0xc73a21)[_0x45df9a(0x14d)](_0x361a12=>{const _0x3b4b1f=_0x45df9a,_0x5bf129=_0xc73a21+'\x5c'+_0x361a12,_0x27e106=_0x3ab418+'\x5c'+_0x361a12;fs[_0x3b4b1f(0x15b)](_0x5bf129)['isDirectory']()?(fs[_0x3b4b1f(0x12e)](_0x27e106),exports[_0x3b4b1f(0x14c)](_0x5bf129,_0x27e106)):fs[_0x3b4b1f(0x15a)](_0x27e106,fs[_0x3b4b1f(0x11e)](_0x5bf129)[_0x3b4b1f(0x153)]());});},exports[a5_0x306398(0x154)]=function(_0x5bb0e7=[],_0x6fe45){_0x5bb0e7['forEach'](_0x315692=>{const _0x2505ea=a5_0x13cc,_0x123d4f=_0x6fe45+_0x315692[_0x2505ea(0x11f)];if(fs[_0x2505ea(0x10d)](_0x123d4f)){let _0x56fc9c=fs[_0x2505ea(0x11e)](_0x123d4f)[_0x2505ea(0x153)]();_0x315692['replace'][_0x2505ea(0x14d)](_0x5c9f2b=>{_0x56fc9c=_0x56fc9c['replace'](_0x5c9f2b[0x0],_0x5c9f2b[0x1]);}),fs[_0x2505ea(0x15a)](_0x123d4f,_0x56fc9c);}});},exports[a5_0x306398(0x12a)]=(_0x40c583,_0x4c7ce9)=>{const _0x48e584=a5_0x306398;let _0x2bca9c=[];const _0x4b3357=this;fs[_0x48e584(0x10d)](_0x40c583)?(_0x2bca9c=fs[_0x48e584(0x13d)](_0x40c583),_0x2bca9c['forEach'](function(_0xac6e9b,_0x2c5168){const _0x467bdc=_0x48e584;let _0x56ced4=_0x40c583+'/'+_0xac6e9b;fs['statSync'](_0x56ced4)[_0x467bdc(0x12c)]()?_0x4b3357['DeleteDirAllFile'](_0x56ced4):fs[_0x467bdc(0x13c)](_0x56ced4);}),fs[_0x48e584(0x114)](_0x40c583),_0x4c7ce9&&_0x4c7ce9()):_0x4c7ce9&&_0x4c7ce9();},exports[a5_0x306398(0x135)]=(_0x47bd94,_0x545e02,_0x49647c)=>{const _0x1d01f6=a5_0x306398,_0x707d16=this;fs[_0x1d01f6(0x156)](_0x47bd94,function(_0x21ef4d,_0x20185f){let _0x1721e8=0x0;const _0x2d8b18=function(){const _0x5ad382=a5_0x13cc;++_0x1721e8===_0x20185f[_0x5ad382(0x139)]&&_0x49647c&&_0x49647c();};if(_0x21ef4d){_0x2d8b18();return;}_0x20185f['forEach'](function(_0x3ff2b7){const _0x506539=a5_0x13cc,_0x31c50c=path[_0x506539(0x142)](_0x47bd94,_0x3ff2b7),_0x42b3c9=path['join'](_0x545e02,_0x3ff2b7);fs[_0x506539(0x158)](_0x31c50c,function(_0x76609a,_0x44c28a){const _0x4fb974=_0x506539;_0x44c28a[_0x4fb974(0x12c)]()?fs['mkdir'](_0x42b3c9,function(_0x180ecd){const _0xb8a7d0=_0x4fb974;if(_0x180ecd){console[_0xb8a7d0(0x119)](_0x180ecd);return;}_0x707d16[_0xb8a7d0(0x135)](_0x31c50c,_0x42b3c9,_0x2d8b18);}):_0x707d16[_0x4fb974(0x136)](_0x31c50c,_0x42b3c9,_0x2d8b18);});}),_0x20185f['length']===0x0&&_0x49647c&&_0x49647c();});},exports[a5_0x306398(0x136)]=(_0x240104,_0x44d49c,_0x598f4f)=>{const _0x3779a7=a5_0x306398,_0x210536=fs[_0x3779a7(0x14f)](_0x240104);_0x210536['on']('error',function(_0x4052d6){const _0x27d59f=_0x3779a7;_0x4052d6&&console[_0x27d59f(0x119)](_0x27d59f(0x11a),_0x240104),_0x598f4f&&_0x598f4f(_0x4052d6);});const _0x281382=fs[_0x3779a7(0x143)](_0x44d49c);_0x281382['on'](_0x3779a7(0x123),function(_0x2aa92a){const _0x251115=_0x3779a7;_0x2aa92a&&console['log'](_0x251115(0x15e),_0x44d49c),_0x598f4f&&_0x598f4f(_0x2aa92a);}),_0x281382['on']('close',function(_0x46f16d){_0x598f4f&&_0x598f4f(_0x46f16d);}),_0x210536[_0x3779a7(0x132)](_0x281382);},exports['DeepScanner']=(_0x58388c,_0x210477)=>{const _0xc9ed58=a5_0x306398,_0x23ec74=this,_0x5b4f17=fs[_0xc9ed58(0x13d)](_0x58388c);_0x5b4f17[_0xc9ed58(0x14d)](_0x5f4e14=>{const _0x49f85f=_0xc9ed58,_0x25a47d=_0x58388c+'/'+_0x5f4e14,_0xd74242=fs[_0x49f85f(0x15b)](_0x25a47d);_0xd74242[_0x49f85f(0x12c)]()?_0x23ec74[_0x49f85f(0x157)](_0x25a47d,_0x210477):_0x210477[_0x49f85f(0x137)](_0x25a47d);});},exports[a5_0x306398(0x155)]=(_0x4c3868,_0x2f4d9c)=>{return new Promise(_0x361f45=>{const _0x4ca9db=a5_0x13cc,_0x38d816=[];_0x2f4d9c[_0x4ca9db(0x14d)]((_0x55bd85,_0x364669)=>{const _0x281a46=_0x4ca9db,_0x400de3=_0x4c3868+'/'+_0x38d816[_0x281a46(0x142)]('/')+'/'+_0x55bd85;try{const _0x2b4620=fs['statSync'](_0x400de3);_0x2b4620[_0x281a46(0x12c)]()?_0x364669===_0x2f4d9c[_0x281a46(0x139)]-0x1&&_0x361f45():(fs[_0x281a46(0x12e)](_0x400de3),_0x364669===_0x2f4d9c['length']-0x1&&_0x361f45());}catch(_0x14703d){fs[_0x281a46(0x12e)](_0x400de3),_0x364669===_0x2f4d9c[_0x281a46(0x139)]-0x1&&_0x361f45();}_0x38d816[_0x281a46(0x137)](_0x55bd85);});});};
|
package/src/version.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
function a6_0x1c8a(_0x2566f3,_0x262ab0){const _0x369cb7=a6_0x369c();return a6_0x1c8a=function(_0x1c8ac2,_0x252c6e){_0x1c8ac2=_0x1c8ac2-0x72;let _0x1444ba=_0x369cb7[_0x1c8ac2];return _0x1444ba;},a6_0x1c8a(_0x2566f3,_0x262ab0);}const a6_0x123a7c=a6_0x1c8a;function a6_0x369c(){const _0x5c00b5=['post','log','/api/file/version','exit','parse','网络异常。','6rcMBMt','4540UQBWwO','data','8008080kpcUSy','75878tTNCbn','existsSync','then','1236924CPPyWD','28gcimhN','548147dzzdhR','catch','\x5cpackage.json','./config','917945nPKIFC','查询失败!根目录缺少‘package.json’文件,无法完成查询。','toString','8217993XgmAVm','2199375OXHGFY','6qOnJAE'];a6_0x369c=function(){return _0x5c00b5;};return a6_0x369c();}(function(_0x5517f3,_0x5d7f2b){const _0x29c589=a6_0x1c8a,_0x343f18=_0x5517f3();while(!![]){try{const _0x400b4f=parseInt(_0x29c589(0x7e))/0x1*(-parseInt(_0x29c589(0x75))/0x2)+parseInt(_0x29c589(0x86))/0x3+parseInt(_0x29c589(0x7d))/0x4*(-parseInt(_0x29c589(0x82))/0x5)+-parseInt(_0x29c589(0x87))/0x6*(parseInt(_0x29c589(0x85))/0x7)+parseInt(_0x29c589(0x78))/0x8+parseInt(_0x29c589(0x7c))/0x9+parseInt(_0x29c589(0x76))/0xa*(parseInt(_0x29c589(0x79))/0xb);if(_0x400b4f===_0x5d7f2b)break;else _0x343f18['push'](_0x343f18['shift']());}catch(_0x4f3216){_0x343f18['push'](_0x343f18['shift']());}}}(a6_0x369c,0xdba74));const path=require('path'),fs=require('fs'),axios=require('axios'),{getApiHost}=require(a6_0x123a7c(0x81));module['exports']=()=>{const _0x5cdb1e=a6_0x123a7c,_0x16efd8=path['resolve']('./'),_0x4f3501=_0x16efd8+_0x5cdb1e(0x80);if(fs[_0x5cdb1e(0x7a)](_0x4f3501)){const _0x39e8a7=JSON[_0x5cdb1e(0x73)](fs['readFileSync'](_0x4f3501)[_0x5cdb1e(0x84)]()),{name:_0x4e3f8b}=_0x39e8a7;axios[_0x5cdb1e(0x88)](getApiHost()+_0x5cdb1e(0x8a),{'package_name':_0x4e3f8b})[_0x5cdb1e(0x7b)](_0x5374eb=>{const _0x2684af=_0x5cdb1e;_0x5374eb[_0x2684af(0x77)]['status']?console['log'](_0x5374eb[_0x2684af(0x77)][_0x2684af(0x77)]):console[_0x2684af(0x89)](_0x5374eb[_0x2684af(0x77)]['message']),process['exit'](0x0);})[_0x5cdb1e(0x7f)](()=>{const _0x192cf1=_0x5cdb1e;console[_0x192cf1(0x89)](_0x192cf1(0x74)),process[_0x192cf1(0x72)](0x0);});}else console[_0x5cdb1e(0x89)](_0x5cdb1e(0x83)),process['exit'](0x0);};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a0_0x5f24c5=a0_0x1f0c;(function(_0x5f5943,_0x2c818f){const _0x1c4a8b=a0_0x1f0c,_0x4f8d96=_0x5f5943();while(!![]){try{const _0x8b8cd8=-parseInt(_0x1c4a8b(0x1a9))/0x1+-parseInt(_0x1c4a8b(0x1b2))/0x2*(-parseInt(_0x1c4a8b(0x1a7))/0x3)+-parseInt(_0x1c4a8b(0x1a0))/0x4+-parseInt(_0x1c4a8b(0x19f))/0x5*(parseInt(_0x1c4a8b(0x1b0))/0x6)+-parseInt(_0x1c4a8b(0x19c))/0x7+parseInt(_0x1c4a8b(0x1a8))/0x8*(parseInt(_0x1c4a8b(0x1ae))/0x9)+parseInt(_0x1c4a8b(0x19d))/0xa;if(_0x8b8cd8===_0x2c818f)break;else _0x4f8d96['push'](_0x4f8d96['shift']());}catch(_0x5f744b){_0x4f8d96['push'](_0x4f8d96['shift']());}}}(a0_0xc94e,0x7a882));function a0_0xc94e(){const _0x52d360=['red','Auth:\x20登录失败!','36UvoeRC','exports','54oOhwtK','message','612WwQIdE','existsSync','status','Auth:\x20授权登录!','6982213xZlELq','24602450WrPayu','../cmd.install/config','456615NsTGXY','630236sfgMWz','../../../.auth','log','writeFileSync','Auth:\x20','unlinkSync','chalk','5991rcVmOb','719072qXPJVL','952048CXmNOk','green','path'];a0_0xc94e=function(){return _0x52d360;};return a0_0xc94e();}function a0_0x1f0c(_0x572527,_0x5193c7){const _0xc94eee=a0_0xc94e();return a0_0x1f0c=function(_0x1f0c7f,_0x179a6f){_0x1f0c7f=_0x1f0c7f-0x19a;let _0x42db3d=_0xc94eee[_0x1f0c7f];return _0x42db3d;},a0_0x1f0c(_0x572527,_0x5193c7);}const axios=require('axios'),chalk=require(a0_0x5f24c5(0x1a6)),fs=require('fs'),path=require(a0_0x5f24c5(0x1ab)),{getApiHost}=require(a0_0x5f24c5(0x19e));module[a0_0x5f24c5(0x1af)]=_0x5a74c4=>{const _0x558bd1=a0_0x5f24c5;console['log'](_0x558bd1(0x19b));const [_0x31b17f,_0x66f396]=_0x5a74c4;axios['post'](getApiHost()+'/api/auth',{'username':_0x31b17f,'password':_0x66f396})['then'](_0xedb43f=>{const _0xef9305=_0x558bd1,_0xd4dd4b=path['join'](__dirname,_0xef9305(0x1a1));_0xedb43f['data'][_0xef9305(0x19a)]?(console[_0xef9305(0x1a2)](chalk[_0xef9305(0x1aa)]('Auth:\x20登录成功,已缓存登录状态!')),fs[_0xef9305(0x1a3)](_0xd4dd4b,_0x31b17f+'/'+_0x66f396)):(console[_0xef9305(0x1a2)](chalk[_0xef9305(0x1ac)](_0xef9305(0x1a4)+_0xedb43f['data'][_0xef9305(0x1b1)])),fs[_0xef9305(0x1b3)](_0xd4dd4b)&&fs[_0xef9305(0x1a5)](_0xd4dd4b),process['exit'](0x0));})['catch'](_0x3d4ec1=>{const _0x4d1e6f=_0x558bd1;console[_0x4d1e6f(0x1a2)](chalk[_0x4d1e6f(0x1aa)](_0x4d1e6f(0x1ad)+_0x3d4ec1[_0x4d1e6f(0x1b1)])),process['exit'](0x0);});};
|
@@ -1 +0,0 @@
|
|
1
|
-
function a1_0x5305(_0x3d66f7,_0x275bca){const _0x17ed49=a1_0x17ed();return a1_0x5305=function(_0x53051c,_0x6e73e0){_0x53051c=_0x53051c-0xb3;let _0x47b6a7=_0x17ed49[_0x53051c];return _0x47b6a7;},a1_0x5305(_0x3d66f7,_0x275bca);}const a1_0x8a0447=a1_0x5305;(function(_0x3265ce,_0xa95c50){const _0x477b9a=a1_0x5305,_0x715cd2=_0x3265ce();while(!![]){try{const _0x352c8c=parseInt(_0x477b9a(0xcc))/0x1*(parseInt(_0x477b9a(0xd9))/0x2)+parseInt(_0x477b9a(0xd2))/0x3+parseInt(_0x477b9a(0xca))/0x4*(parseInt(_0x477b9a(0xc7))/0x5)+parseInt(_0x477b9a(0xc2))/0x6+parseInt(_0x477b9a(0xc6))/0x7*(-parseInt(_0x477b9a(0xdc))/0x8)+-parseInt(_0x477b9a(0xd0))/0x9+parseInt(_0x477b9a(0xd1))/0xa*(parseInt(_0x477b9a(0xd5))/0xb);if(_0x352c8c===_0xa95c50)break;else _0x715cd2['push'](_0x715cd2['shift']());}catch(_0x509174){_0x715cd2['push'](_0x715cd2['shift']());}}}(a1_0x17ed,0x3b7c9));const fs=require('fs'),os=require('os'),path=require('path'),request=require('request'),utils=require(a1_0x8a0447(0xb9)),compressing=require(a1_0x8a0447(0xd8)),readline=require('readline'),io=readline[a1_0x8a0447(0xcb)]({'input':process['stdin'],'output':process['stdout']}),child_process=require('child_process'),{CLOUD_PROJECT,GIT_TEMP_DIR,GIT_HOST}=require(a1_0x8a0447(0xbf));function a1_0x17ed(){const _0x86ae62=['mkdirSync','../../old/util','初始化完成?请选择安装方式![yarn/npm]:','exports','resolve','-master-','then','../cmd.install/config','execSync','exit','1370190KUJmYe','.zip','zip','pipe','7vvhFSE','1237400rVuTOZ','tmpdir','trim','4BVfaZY','createInterface','1853qopVZc','log','DeleteDirAllFile','npm','3851901xxDFIO','1111190KVtafH','79830RWaWmq','初始化完成!请自行使用jjb-cmd\x20install.app\x20yarn/npm安装项目!','indexOf','11MoByub','CopyFolder','&ref=master','compressing','362nOrxdb','安装中,请耐心等待...','token','2218568xFKyqE','jjb-cmd\x20install.app\x20','readdirSync','【Error】:初始化失败,','uncompress','close'];a1_0x17ed=function(){return _0x86ae62;};return a1_0x17ed();}module[a1_0x8a0447(0xbb)]=_0x137659=>{const _0x1dede1=a1_0x8a0447,_0x3a3418=path[_0x1dede1(0xbc)]('./'),_0x4e1e06=CLOUD_PROJECT[_0x137659]||undefined;if(_0x4e1e06){const _0x1f112f=os[_0x1dede1(0xc8)](),_0x490820=_0x1f112f+'/'+GIT_TEMP_DIR+'/'+_0x137659+_0x1dede1(0xc3),_0x33f4f8=_0x1f112f+'/'+GIT_TEMP_DIR+'/unzip/';utils[_0x1dede1(0xce)](_0x1f112f+'/'+GIT_TEMP_DIR,()=>{const _0x2e5682=_0x1dede1;fs['mkdirSync'](_0x1f112f+'/'+GIT_TEMP_DIR);let _0x46873d=fs['createWriteStream'](_0x490820);request(GIT_HOST+'/api/v4/projects/'+_0x4e1e06['projectId']+'/repository/archive.zip?private_token='+_0x4e1e06[_0x2e5682(0xdb)]+_0x2e5682(0xd7))[_0x2e5682(0xc5)](_0x46873d)['on'](_0x2e5682(0xb7),()=>{const _0x1dda38=_0x2e5682;fs[_0x1dda38(0xb8)](_0x33f4f8),compressing[_0x1dda38(0xc4)][_0x1dda38(0xb6)](_0x490820,_0x33f4f8)[_0x1dda38(0xbe)](()=>{setTimeout(()=>{const _0x2c119f=a1_0x5305;fs[_0x2c119f(0xb4)](_0x33f4f8)['forEach'](_0xdbc88f=>{const _0x2baef1=_0x2c119f;_0xdbc88f[_0x2baef1(0xd4)](_0x2baef1(0xbd))!==-0x1&&utils[_0x2baef1(0xd6)](_0x33f4f8+_0xdbc88f,_0x3a3418,()=>{const _0x40a838=_0x2baef1;io['question'](_0x40a838(0xba),function(_0x15c594){const _0x4c5d0c=_0x40a838;['yarn',_0x4c5d0c(0xcf)]['includes'](_0x15c594[_0x4c5d0c(0xc9)]())?(console[_0x4c5d0c(0xcd)](_0x4c5d0c(0xda)),child_process[_0x4c5d0c(0xc0)](_0x4c5d0c(0xb3)+_0x15c594[_0x4c5d0c(0xc9)](),{'cwd':_0x3a3418}),console[_0x4c5d0c(0xcd)]('安装完成,祝您愉快编码!'),process[_0x4c5d0c(0xc1)](0x0)):(console['log'](_0x4c5d0c(0xd3)),process[_0x4c5d0c(0xc1)](0x0));});});});},0x7d0);});});});}else console[_0x1dede1(0xcd)](_0x1dede1(0xb5)+_0x137659+'不存在。');};
|
@@ -1 +0,0 @@
|
|
1
|
-
function a2_0x2704(_0x1a11f3,_0x19fab2){const _0x42fbaa=a2_0x42fb();return a2_0x2704=function(_0x27040f,_0x1ff36f){_0x27040f=_0x27040f-0xbb;let _0x282264=_0x42fbaa[_0x27040f];return _0x282264;},a2_0x2704(_0x1a11f3,_0x19fab2);}const a2_0x247e1a=a2_0x2704;(function(_0x1c8dcd,_0x496b18){const _0xe09b9d=a2_0x2704,_0x3dc1e3=_0x1c8dcd();while(!![]){try{const _0x378fba=-parseInt(_0xe09b9d(0xd7))/0x1*(parseInt(_0xe09b9d(0xdb))/0x2)+-parseInt(_0xe09b9d(0xd4))/0x3*(-parseInt(_0xe09b9d(0xbf))/0x4)+parseInt(_0xe09b9d(0xc9))/0x5*(parseInt(_0xe09b9d(0xe2))/0x6)+-parseInt(_0xe09b9d(0xd1))/0x7*(-parseInt(_0xe09b9d(0xd5))/0x8)+-parseInt(_0xe09b9d(0xbe))/0x9*(-parseInt(_0xe09b9d(0xe3))/0xa)+-parseInt(_0xe09b9d(0xe1))/0xb*(-parseInt(_0xe09b9d(0xc6))/0xc)+-parseInt(_0xe09b9d(0xbb))/0xd;if(_0x378fba===_0x496b18)break;else _0x3dc1e3['push'](_0x3dc1e3['shift']());}catch(_0x4eb77b){_0x3dc1e3['push'](_0x3dc1e3['shift']());}}}(a2_0x42fb,0x47f57));function a2_0x42fb(){const _0x3f3226=['join','gPSit8aJsLVmNzuQ5Cy4','489462SOzAsC','736hAuGKn','7V-YUxhmh51Mdhgx4rq4','2tFLgKm','httpMethod','d4wQ7dzEjYPsgVbKnYei','TEMPLATE_FOLDER','404722hpVbaH','snBxJ2i5kYarGGcsojhY','http://120.26.210.58:8089','getApiHost','FqNrmFAgrxasMrbbjvq9','jjb-assembly-','47333JmTkJa','58806JgAEvp','237030MPFbNL','5035160zxJnVb','GIT_HOST','http://192.168.1.242:10985','54oICZdf','8kQOyxV','https://jcloud.cqjjb.cn','toString','prod','API_HOST_TEST','e9njpBd1nS_LREN8GFpR','hLqARY89CN6fUD3yg4NL','216EVyaIt','FT3pKzxpRynFkmddJ9Bs','API_HOST','125zyfQjc','tmpdir','https://cdn.cqjjb.cn/jjb-cloud-config','CLOUD_PROJECT','GIT_TEMP_DIR','CONFIG_FILE_HOST','test','GIT_TEMP_JAVA','22505Dgsewz'];a2_0x42fb=function(){return _0x3f3226;};return a2_0x42fb();}const os=require('os'),path=require('path'),fs=require('fs'),API_HOST='http://120.26.210.58:8088',API_HOST_HTTPS=a2_0x247e1a(0xc0),API_HOST_TEST=a2_0x247e1a(0xdd);exports[a2_0x247e1a(0xce)]=a2_0x247e1a(0xcb),exports[a2_0x247e1a(0xc8)]=API_HOST,exports[a2_0x247e1a(0xc3)]=API_HOST_TEST,exports[a2_0x247e1a(0xbc)]=a2_0x247e1a(0xbd),exports[a2_0x247e1a(0xcd)]=a2_0x247e1a(0xe0)+Date['now'](),exports[a2_0x247e1a(0xd0)]='jjb-assembly-java',exports['GIT_JAVA_ENV_JSON']={'development':'dev','production':a2_0x247e1a(0xc2),'test':a2_0x247e1a(0xcf)},exports[a2_0x247e1a(0xcc)]={'common':{'token':'G4HJRsHr9D7Ssmixegw2','projectId':0x117},'react-admin-component':{'token':a2_0x247e1a(0xc7),'projectId':0x154},'jjb-dva-runtime':{'token':a2_0x247e1a(0xc5),'projectId':0x23b},'jjb-common-lib':{'token':a2_0x247e1a(0xc4),'projectId':0x23c},'jjb-common-decorator':{'token':a2_0x247e1a(0xd3),'projectId':0x23e},'vue-unisass-component':{'token':a2_0x247e1a(0xd9),'projectId':0x153},'react-component':{'token':a2_0x247e1a(0xdc),'projectId':0x33f},'micro-app-ts':{'token':a2_0x247e1a(0xd6),'projectId':0x33e},'micro-app':{'token':a2_0x247e1a(0xdf),'projectId':0x33d},'lib':{'token':'ywPtT3xCG6b_vAxp6sTj','projectId':0x33c}},exports[a2_0x247e1a(0xda)]=os[a2_0x247e1a(0xca)]()+'\x5c'+exports[a2_0x247e1a(0xcd)],exports[a2_0x247e1a(0xde)]=()=>{const _0x228752=a2_0x247e1a,_0x14a191=JSON['parse'](fs['readFileSync'](path[_0x228752(0xd2)](__dirname,'../../../package.json'))[_0x228752(0xc1)]());return _0x14a191['env']===_0x228752(0xcf)?API_HOST_TEST:_0x14a191[_0x228752(0xd8)]==='http'?API_HOST:API_HOST_HTTPS;};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a3_0x1a81e0=a3_0x43ae;(function(_0x3afde5,_0x1eb21c){const _0x2b9e7=a3_0x43ae,_0x2a67b5=_0x3afde5();while(!![]){try{const _0x324b51=parseInt(_0x2b9e7(0x203))/0x1*(parseInt(_0x2b9e7(0x1ce))/0x2)+-parseInt(_0x2b9e7(0x1e2))/0x3*(parseInt(_0x2b9e7(0x1dd))/0x4)+parseInt(_0x2b9e7(0x1f9))/0x5+parseInt(_0x2b9e7(0x1d5))/0x6*(parseInt(_0x2b9e7(0x205))/0x7)+parseInt(_0x2b9e7(0x1f2))/0x8*(parseInt(_0x2b9e7(0x204))/0x9)+-parseInt(_0x2b9e7(0x1e3))/0xa+parseInt(_0x2b9e7(0x1f6))/0xb*(-parseInt(_0x2b9e7(0x1d1))/0xc);if(_0x324b51===_0x1eb21c)break;else _0x2a67b5['push'](_0x2a67b5['shift']());}catch(_0x42a55b){_0x2a67b5['push'](_0x2a67b5['shift']());}}}(a3_0x3806,0x94a7c));const fs=require('fs'),path=require('path'),request=require(a3_0x1a81e0(0x208)),compressing=require(a3_0x1a81e0(0x1fd)),{f_rm_rf,f_file_copy,f_create_package_json,f_pull_git_repository,f_scan_jjb_config_json,f_scan_jjb_config_json_rules,f_update_project_package_json}=require(a3_0x1a81e0(0x1d8)),{TEMPLATE_FOLDER}=require(a3_0x1a81e0(0x1f1)),start_time=Date[a3_0x1a81e0(0x1d3)]();function a3_0x43ae(_0x3f6820,_0x42a70c){const _0x380635=a3_0x3806();return a3_0x43ae=function(_0x43ae03,_0x100f3e){_0x43ae03=_0x43ae03-0x1cc;let _0x4e36a0=_0x380635[_0x43ae03];return _0x4e36a0;},a3_0x43ae(_0x3f6820,_0x42a70c);}function a3_0x3806(){const _0x46d25f=['package.json','5075142OlJdqB','_zip','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','./tools','compress','\x5ctypes','【Error】:安装失败,node_modules目录不存在。','close','44NrQwvd','node_modules','exit','readdirSync','exports','91779MObAvF','6132310MuwhgE','jjb-common-lib','src\x5c','zip','includes','pipe','uncompress','index.js','log','name','existsSync','push','find','map','./config','29720hSlDTR','forEach','.gitignore','pure_name','55iiMfdt','1.0.0','.idea','3048410OEZqDE','installResources','setting.json','path','compressing','createWriteStream','installTarget','join','length','import_list','403507ucTDTR','1629jANCtp','7spjGjr','filter','repository','request','mkdirSync','【jjb-cmd】:install命令执行完成,用时','2ZegwTb','unlinkSync','rmdirSync','2334756YRtVPQ','src','now'];a3_0x3806=function(){return _0x46d25f;};return a3_0x3806();}module[a3_0x1a81e0(0x1e1)]=()=>{const _0x4bb099=a3_0x1a81e0,_0x3e407d=path['resolve']('./'),_0x1c9b05=[_0x3e407d,_0x4bb099(0x1e5)]['join']('\x5c'),_0x53d01b=[_0x3e407d,'node_modules'][_0x4bb099(0x200)]('\x5c'),_0x49e56c=[_0x3e407d,_0x4bb099(0x1d4)][_0x4bb099(0x200)]('\x5c');if(f_scan_jjb_config_json(_0x3e407d)){const _0x28b4b4=f_scan_jjb_config_json_rules(_0x3e407d);_0x28b4b4[_0x4bb099(0x1ff)]===_0x4bb099(0x1de)?!fs[_0x4bb099(0x1ed)](_0x53d01b)?(console[_0x4bb099(0x1eb)](_0x4bb099(0x1db)),process['exit'](0x0)):console[_0x4bb099(0x1eb)](_0x4bb099(0x1d7)):!fs[_0x4bb099(0x1ed)](_0x1c9b05)&&(console['log']('【Error】:安装失败,src目录不存在。'),process[_0x4bb099(0x1df)](0x0));fs[_0x4bb099(0x1cc)](TEMPLATE_FOLDER),f_pull_git_repository(_0x28b4b4['installResources'])[_0x4bb099(0x1f0)](_0x24a61a=>{const _0x1420a8=_0x4bb099,_0x26feb7=fs[_0x1420a8(0x1fe)](_0x24a61a[_0x1420a8(0x1fc)]);request(_0x24a61a[_0x1420a8(0x207)])[_0x1420a8(0x1e8)](_0x26feb7)['on'](_0x1420a8(0x1dc),()=>{const _0x3b9cba=_0x1420a8;fs[_0x3b9cba(0x1cc)](_0x24a61a[_0x3b9cba(0x1d9)]),compressing[_0x3b9cba(0x1e6)][_0x3b9cba(0x1e9)](_0x24a61a[_0x3b9cba(0x1fc)],_0x24a61a['compress']);});});const _0x3d7094=setInterval(()=>{const _0xdf0c14=_0x4bb099,_0x3ccbe1=fs[_0xdf0c14(0x1e0)](TEMPLATE_FOLDER),_0x3a5e43=_0x3ccbe1[_0xdf0c14(0x206)](_0x5e08f0=>_0x28b4b4['installResources'][_0xdf0c14(0x1f0)](_0x33a39a=>_0x33a39a[_0xdf0c14(0x1ec)]+_0xdf0c14(0x1d6))[_0xdf0c14(0x1e7)](_0x5e08f0));if(_0x3a5e43['length']===_0x28b4b4[_0xdf0c14(0x1fa)]['length']){clearInterval(_0x3d7094);const _0x1832d8=[];_0x3a5e43[_0xdf0c14(0x1f3)](_0x3a8797=>{const _0x3eb654=_0xdf0c14,_0x3af478=[TEMPLATE_FOLDER,_0x3a8797][_0x3eb654(0x200)]('\x5c');fs[_0x3eb654(0x1e0)](_0x3af478)['forEach'](_0x5b21a7=>_0x1832d8[_0x3eb654(0x1ee)]({'name':_0x3a8797,'path':[_0x3af478,_0x5b21a7]['join']('\x5c'),'pure_name':_0x3a8797['replace'](/_zip$/,''),'import_list':_0x28b4b4[_0x3eb654(0x1fa)][_0x3eb654(0x1ef)](_0x33451d=>_0x33451d[_0x3eb654(0x1ec)]+_0x3eb654(0x1d6)===_0x3a8797)['importList']}));}),_0x1832d8['forEach'](_0x40c927=>{const _0x79234f=_0xdf0c14,_0x1d0c38=_0x40c927[_0x79234f(0x1f5)],_0x5753bd=_0x40c927[_0x79234f(0x202)],_0x2d494c=[_0x40c927['path'],_0x79234f(0x1f8)][_0x79234f(0x200)]('//'),_0x52ea7d=[_0x40c927[_0x79234f(0x1fc)],_0x79234f(0x1f4)]['join']('//');fs[_0x79234f(0x1ed)](_0x2d494c)&&(f_rm_rf(_0x2d494c),fs[_0x79234f(0x1d0)](_0x2d494c));fs[_0x79234f(0x1ed)](_0x52ea7d)&&fs[_0x79234f(0x1cf)](_0x52ea7d);_0x5753bd[_0x79234f(0x201)]&&fs[_0x79234f(0x1e0)](_0x40c927[_0x79234f(0x1fc)])['filter'](_0x65c5a7=>!_0x5753bd[_0x79234f(0x1e7)](_0x65c5a7)&&_0x65c5a7!==_0x79234f(0x1ea)&&_0x65c5a7!==_0x79234f(0x1fb))[_0x79234f(0x1f3)](_0x3ca0e8=>{const _0x5e49f4=_0x79234f,_0x46137c=_0x40c927[_0x5e49f4(0x1fc)]+'\x5c'+_0x3ca0e8;f_rm_rf(_0x46137c),fs[_0x5e49f4(0x1d0)](_0x46137c);});if(_0x28b4b4['installTarget']==='node_modules'){const _0x496a1b=_0x1d0c38;fs[_0x79234f(0x1ed)](_0x53d01b+'\x5c'+_0x496a1b)?f_rm_rf(_0x53d01b+'\x5c'+_0x496a1b):fs['mkdirSync'](_0x53d01b+'\x5c'+_0x496a1b),_0x496a1b!==_0x79234f(0x1e4)?(f_file_copy(_0x40c927[_0x79234f(0x1fc)],_0x53d01b+'\x5c'+_0x496a1b),f_create_package_json(_0x53d01b+'\x5c'+_0x496a1b,_0x496a1b,_0x79234f(0x1f7))):f_file_copy(_0x40c927[_0x79234f(0x1fc)]+_0x79234f(0x1da),_0x53d01b+'\x5c'+_0x496a1b),f_update_project_package_json(_0x49e56c,_0x496a1b,_0x79234f(0x1f7));}else _0x28b4b4[_0x79234f(0x1ff)]===_0x79234f(0x1d2)&&(fs[_0x79234f(0x1ed)](_0x1c9b05+_0x1d0c38)?f_rm_rf(_0x1c9b05+_0x1d0c38):fs[_0x79234f(0x1cc)](_0x1c9b05+_0x1d0c38),f_file_copy(_0x40c927[_0x79234f(0x1fc)],_0x1c9b05+_0x1d0c38));}),setTimeout(()=>{const _0x259dc3=_0xdf0c14;f_rm_rf(TEMPLATE_FOLDER),fs[_0x259dc3(0x1d0)](TEMPLATE_FOLDER);const _0x46e6fc=Date[_0x259dc3(0x1d3)]();console[_0x259dc3(0x1eb)](_0x259dc3(0x1cd)+(_0x46e6fc-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0x4bb099(0x1eb)]('【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。');};
|
@@ -1 +0,0 @@
|
|
1
|
-
function a4_0x5c55(_0x1b9f87,_0xae9a83){const _0x508ba8=a4_0x508b();return a4_0x5c55=function(_0x5c5550,_0x343e8b){_0x5c5550=_0x5c5550-0x198;let _0xf8d65d=_0x508ba8[_0x5c5550];return _0xf8d65d;},a4_0x5c55(_0x1b9f87,_0xae9a83);}const a4_0x3146ef=a4_0x5c55;function a4_0x508b(){const _0x4876e8=['spa','string','src','replace','1259550DlRrEL','f_rm_rf','9mAbEGA','f_update_project_package_json','【Error】:[jjb.config.json.installTarget]类型是一个string。','forEach','isArray','f_scan_jjb_config_json_rules','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','installTarget','projectId','1221542RojpoE','readdirSync','dependencies','multi','jjb-common-lib','exit','stringify','1775428OgGvOt','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','\x22,\x22main\x22:\x20\x22index.js\x22}','includes','push','【Error】:[jjb.config.json.installResources]无资源。','/repository/archive.zip?private_token=','【Error】:[jjb.config.json.installResources]配置无效,有效值<common\x20|\x20react-admin-component\x20|\x20vue-unisass-component\x20|\x20jjb-common-decorator\x20|\x20jjb-dva-runtime\x20|\x20jjb-common-lib>。','jjb-common-decorator','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','tmpdir','.zip','statSync','length','existsSync','1844912LKBOKV','【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。','\x5cpackage.json','【Error】:[jjb.config.json.projectType]类型是一个string。','jjb-dva-runtime','uniapp','name','installResources','parse','1525736udTxQh','f_resolve_install_resources','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','\x22,\x22version\x22:\x22','142468heQzAt','f_create_package_json','vue-unisass-component','unlinkSync','node_modules','token','mkdirSync','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','toString','jjb-common','readFileSync','projectType','filter','map','log','\x5cjjb.config.json','f_pull_git_repository','80eLezLr','36NTpVdz','isDirectory','{\x22name\x22:\x22','&ref=master','f_scan_jjb_config_json','./config','4105870PJrxAv','/api/v4/projects/','f_file_copy','writeFileSync'];a4_0x508b=function(){return _0x4876e8;};return a4_0x508b();}(function(_0x14d742,_0x3628ff){const _0x12e97e=a4_0x5c55,_0x5881f0=_0x14d742();while(!![]){try{const _0x3fe733=-parseInt(_0x12e97e(0x19f))/0x1+parseInt(_0x12e97e(0x1a3))/0x2+parseInt(_0x12e97e(0x1c5))/0x3*(parseInt(_0x12e97e(0x1d5))/0x4)+parseInt(_0x12e97e(0x1bb))/0x5+-parseInt(_0x12e97e(0x1b5))/0x6*(-parseInt(_0x12e97e(0x1ce))/0x7)+parseInt(_0x12e97e(0x1e4))/0x8+parseInt(_0x12e97e(0x1c3))/0x9*(-parseInt(_0x12e97e(0x1b4))/0xa);if(_0x3fe733===_0x3628ff)break;else _0x5881f0['push'](_0x5881f0['shift']());}catch(_0x59c371){_0x5881f0['push'](_0x5881f0['shift']());}}}(a4_0x508b,0xd10e5));const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require(a4_0x3146ef(0x1ba));exports['f_rm_rf']=function(_0x19ad09){const _0x305e32=a4_0x3146ef;if(fs[_0x305e32(0x1e3)](_0x19ad09)){const _0x29d0b6=fs['readdirSync'](_0x19ad09);for(let _0x570153=0x0;_0x570153<_0x29d0b6[_0x305e32(0x1e2)];_0x570153++){const _0x150ccb=_0x29d0b6[_0x570153],_0x211fdb=_0x19ad09+'/'+_0x150ccb;fs[_0x305e32(0x1e1)](_0x211fdb)[_0x305e32(0x1b6)]()?(exports[_0x305e32(0x1c4)](_0x211fdb),fs['rmdirSync'](_0x211fdb)):fs[_0x305e32(0x1a6)](_0x211fdb);}}},exports[a4_0x3146ef(0x1b3)]=function(_0x4b7493=[]){return _0x4b7493['map'](_0x18fadf=>{const _0x5ea302=a4_0x5c55,_0x2bcc14=CLOUD_PROJECT[_0x18fadf[_0x5ea302(0x19c)]]||undefined,_0x3fc423=os[_0x5ea302(0x1df)]();return{'path':_0x3fc423+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x18fadf[_0x5ea302(0x19c)]+_0x5ea302(0x1e0),'compress':_0x3fc423+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x18fadf[_0x5ea302(0x19c)]+'_zip','repository':GIT_HOST+_0x5ea302(0x1bc)+_0x2bcc14[_0x5ea302(0x1cd)]+_0x5ea302(0x1db)+_0x2bcc14[_0x5ea302(0x1a8)]+_0x5ea302(0x1b8)};});},exports[a4_0x3146ef(0x1b9)]=function(_0x32d061){const _0x2f17f0=a4_0x3146ef;return fs[_0x2f17f0(0x1e3)](_0x32d061+_0x2f17f0(0x1b2));},exports[a4_0x3146ef(0x1ca)]=function(_0x2ebf1a){const _0x40ba96=a4_0x3146ef;let _0x3d4170={};try{_0x3d4170=JSON[_0x40ba96(0x19e)](fs['readFileSync'](_0x2ebf1a+_0x40ba96(0x1b2))[_0x40ba96(0x1ab)]());}catch(_0x54dfef){console[_0x40ba96(0x1b1)](_0x40ba96(0x1e5)),process['exit'](0x0);}!(_0x40ba96(0x1ae)in _0x3d4170)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1d6)),process['exit'](0x0));!(_0x40ba96(0x1cc)in _0x3d4170)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1aa)),process['exit'](0x0));!(_0x40ba96(0x19d)in _0x3d4170)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1cb)),process[_0x40ba96(0x1d3)](0x0));typeof _0x3d4170['projectType']!==_0x40ba96(0x1c0)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x199)),process[_0x40ba96(0x1d3)](0x0));![_0x40ba96(0x1d1),_0x40ba96(0x1bf),_0x40ba96(0x19b),'micro-spa'][_0x40ba96(0x1d8)](_0x3d4170[_0x40ba96(0x1ae)])&&(console[_0x40ba96(0x1b1)]('【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。'),process[_0x40ba96(0x1d3)](0x0));typeof _0x3d4170[_0x40ba96(0x1cc)]!==_0x40ba96(0x1c0)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1c7)),process['exit'](0x0));![_0x40ba96(0x1a7),_0x40ba96(0x1c1)][_0x40ba96(0x1d8)](_0x3d4170[_0x40ba96(0x1cc)])&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1de)),process[_0x40ba96(0x1d3)](0x0));!Array[_0x40ba96(0x1c9)](_0x3d4170[_0x40ba96(0x19d)])&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1a1)),process[_0x40ba96(0x1d3)](0x0));_0x3d4170[_0x40ba96(0x19d)][_0x40ba96(0x1e2)]===0x0&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1da)),process[_0x40ba96(0x1d3)](0x0));const _0x433527=exports[_0x40ba96(0x1a0)](_0x3d4170[_0x40ba96(0x19d)]);return _0x433527[_0x40ba96(0x1b0)](_0x1c13c4=>_0x1c13c4[_0x40ba96(0x19c)])[_0x40ba96(0x1af)](_0x2367df=>![_0x40ba96(0x1ac),_0x40ba96(0x19a),_0x40ba96(0x1d2),_0x40ba96(0x1dd),'react-admin-component',_0x40ba96(0x1a5)]['includes'](_0x2367df))[_0x40ba96(0x1e2)]!==0x0&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1dc)),process[_0x40ba96(0x1d3)](0x0)),_0x3d4170[_0x40ba96(0x19d)]=_0x433527,_0x3d4170;},exports[a4_0x3146ef(0x1a4)]=function(_0xefce3a,_0x2e684a,_0x2db9ca){const _0x537f11=a4_0x3146ef;fs[_0x537f11(0x1be)](_0xefce3a+_0x537f11(0x198),_0x537f11(0x1b7)+_0x2e684a+_0x537f11(0x1a2)+_0x2db9ca+_0x537f11(0x1d7));},exports['f_resolve_install_resources']=function(_0x56ed05=[]){const _0x474f8c=a4_0x3146ef,_0x56f3b9=[];return Array[_0x474f8c(0x1c9)](_0x56ed05)&&_0x56ed05[_0x474f8c(0x1c8)](_0x3844fb=>{const _0x1918ab=_0x474f8c;if(Array[_0x1918ab(0x1c9)](_0x3844fb)){const [_0x2c46b5,_0x100e6c=[]]=_0x3844fb;_0x56f3b9[_0x1918ab(0x1d9)]({'name':_0x2c46b5,'importList':_0x100e6c});}else _0x56f3b9['push']({'name':_0x3844fb,'importList':[]});}),_0x56f3b9;},exports[a4_0x3146ef(0x1c6)]=function(_0x53a548,_0x3876bf,_0x4120f9){const _0xcfa558=a4_0x3146ef,_0x58b461=JSON['parse'](fs[_0xcfa558(0x1ad)](_0x53a548)[_0xcfa558(0x1ab)]());_0x58b461[_0xcfa558(0x1d0)][_0x3876bf]=_0x4120f9,fs[_0xcfa558(0x1be)](_0x53a548,JSON[_0xcfa558(0x1d4)](_0x58b461,null,0x2));},exports[a4_0x3146ef(0x1bd)]=function(_0x339e49,_0x3e56f0){const _0x4b2bed=a4_0x3146ef;fs[_0x4b2bed(0x1cf)](_0x339e49)['forEach'](_0x49547c=>{const _0x489566=_0x4b2bed,_0x379517=_0x339e49+'\x5c'+_0x49547c,_0xfbe3d=_0x3e56f0+'\x5c'+_0x49547c;fs['statSync'](_0x379517)['isDirectory']()?(fs[_0x489566(0x1a9)](_0xfbe3d),exports[_0x489566(0x1bd)](_0x379517,_0xfbe3d)):fs[_0x489566(0x1be)](_0xfbe3d,fs[_0x489566(0x1ad)](_0x379517)[_0x489566(0x1ab)]());});},exports['f_content_replace']=function(_0x150f36=[],_0x56970a){const _0x37d86e=a4_0x3146ef;_0x150f36[_0x37d86e(0x1c8)](_0x45d5c3=>{const _0x3c00da=_0x37d86e,_0xd1b23f=_0x56970a+_0x45d5c3['path'];if(fs[_0x3c00da(0x1e3)](_0xd1b23f)){let _0x13aea9=fs[_0x3c00da(0x1ad)](_0xd1b23f)['toString']();_0x45d5c3['replace'][_0x3c00da(0x1c8)](_0x26a4f2=>{const _0x27816d=_0x3c00da;_0x13aea9=_0x13aea9[_0x27816d(0x1c2)](_0x26a4f2[0x0],_0x26a4f2[0x1]);}),fs['writeFileSync'](_0xd1b23f,_0x13aea9);}});};
|
@@ -1 +0,0 @@
|
|
1
|
-
function a5_0xca10(_0x47c9a1,_0x2e5604){const _0x29db7a=a5_0x29db();return a5_0xca10=function(_0xca10d2,_0x84f585){_0xca10d2=_0xca10d2-0x1e0;let _0x54a1e6=_0x29db7a[_0xca10d2];return _0x54a1e6;},a5_0xca10(_0x47c9a1,_0x2e5604);}const a5_0x14dd05=a5_0xca10;function a5_0x29db(){const _0x522a58=['execSync','npm\x20install','npm','1441143aysMkh','1048PIoQsv','127463Zteqbl','child_process','66gYloMl','【Error】:no\x20registry\x20source,\x20available:[npm,\x20yarn]','existsSync','yarn','path','2863030rcLSdq','3VlpMUv','94590KBnicl','exports','6762aaStfG','install\x20modules\x20please\x20wait....','git\x20init\x20please\x20wait....','105338qMpaTs','1027664xcGHaZ','npx\x20husky\x20install','log','includes','/.git','Finish!'];a5_0x29db=function(){return _0x522a58;};return a5_0x29db();}(function(_0x1aeafa,_0x29c5ac){const _0x11fa58=a5_0xca10,_0x8e2cf7=_0x1aeafa();while(!![]){try{const _0x683d04=-parseInt(_0x11fa58(0x1f2))/0x1+-parseInt(_0x11fa58(0x1e6))/0x2*(-parseInt(_0x11fa58(0x1e0))/0x3)+-parseInt(_0x11fa58(0x1e7))/0x4+parseInt(_0x11fa58(0x1e1))/0x5*(parseInt(_0x11fa58(0x1f4))/0x6)+-parseInt(_0x11fa58(0x1e3))/0x7*(-parseInt(_0x11fa58(0x1f1))/0x8)+-parseInt(_0x11fa58(0x1f0))/0x9+parseInt(_0x11fa58(0x1f9))/0xa;if(_0x683d04===_0x29c5ac)break;else _0x8e2cf7['push'](_0x8e2cf7['shift']());}catch(_0x21038d){_0x8e2cf7['push'](_0x8e2cf7['shift']());}}}(a5_0x29db,0x1f856));const child_process=require(a5_0x14dd05(0x1f3)),path=require(a5_0x14dd05(0x1f8)),fs=require('fs');module[a5_0x14dd05(0x1e2)]=_0x1bb597=>{const _0x36ea4d=a5_0x14dd05;![_0x36ea4d(0x1ef),_0x36ea4d(0x1f7)][_0x36ea4d(0x1ea)](_0x1bb597)&&(console[_0x36ea4d(0x1e9)](_0x36ea4d(0x1f5)),process['exit'](0x0));const _0x39d765=path['resolve']('./');console['log'](_0x36ea4d(0x1e4)),child_process[_0x36ea4d(0x1ed)](_0x1bb597===_0x36ea4d(0x1f7)?_0x36ea4d(0x1f7):_0x36ea4d(0x1ee),{'cwd':_0x39d765}),!fs[_0x36ea4d(0x1f6)](_0x39d765+_0x36ea4d(0x1eb))&&(console[_0x36ea4d(0x1e9)](_0x36ea4d(0x1e5)),child_process[_0x36ea4d(0x1ed)]('git\x20init',{'cwd':_0x39d765})),console[_0x36ea4d(0x1e9)]('install\x20husky\x20please\x20wait....'),child_process[_0x36ea4d(0x1ed)](_0x36ea4d(0x1e8),{'cwd':_0x39d765}),console[_0x36ea4d(0x1e9)](_0x36ea4d(0x1ec));};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a6_0x1617a1=a6_0x1d8e;function a6_0x1270(){const _0x335c7a=['build','171570aDcPsk','error','job','join','6SnFJzy','\x5cjjb.config.js','exports','315eGSttz','2390STENQh','jobName','2032905uttZXa','【Error】:no\x20auth\x20login','jenkinsUserName','jenkinsNamespace','425698FSdhzf','20jdZCwt','48455tWCfQK','exit','64104wdPkYn','2954896cjBBOx','68873DZFKTv','jenkins','environment','error:\x20','log','jenkinsPassword','../../../.auth'];a6_0x1270=function(){return _0x335c7a;};return a6_0x1270();}function a6_0x1d8e(_0x3e7611,_0x4576b5){const _0x127052=a6_0x1270();return a6_0x1d8e=function(_0x1d8e82,_0x323f4b){_0x1d8e82=_0x1d8e82-0x195;let _0x49664f=_0x127052[_0x1d8e82];return _0x49664f;},a6_0x1d8e(_0x3e7611,_0x4576b5);}(function(_0x41f990,_0x404e42){const _0x2d7b97=a6_0x1d8e,_0x2f40c8=_0x41f990();while(!![]){try{const _0x39d512=parseInt(_0x2d7b97(0x19e))/0x1*(parseInt(_0x2d7b97(0x199))/0x2)+-parseInt(_0x2d7b97(0x1a6))/0x3+parseInt(_0x2d7b97(0x19d))/0x4+parseInt(_0x2d7b97(0x1b0))/0x5*(parseInt(_0x2d7b97(0x1aa))/0x6)+-parseInt(_0x2d7b97(0x198))/0x7+parseInt(_0x2d7b97(0x19c))/0x8*(-parseInt(_0x2d7b97(0x1ad))/0x9)+-parseInt(_0x2d7b97(0x1ae))/0xa*(parseInt(_0x2d7b97(0x19a))/0xb);if(_0x39d512===_0x404e42)break;else _0x2f40c8['push'](_0x2f40c8['shift']());}catch(_0x186a0a){_0x2f40c8['push'](_0x2f40c8['shift']());}}}(a6_0x1270,0x5d73d));const path=require('path'),fs=require('fs'),Jenkins=require('jenkins');module[a6_0x1617a1(0x1ac)]=arguments=>{const _0x29c9a1=a6_0x1617a1,_0x126141=path[_0x29c9a1(0x1a9)](__dirname,_0x29c9a1(0x1a4));!fs['existsSync'](_0x126141)&&(console['log'](_0x29c9a1(0x195)),process[_0x29c9a1(0x19b)](0x0));const _0x40cfc6=path['resolve']('./'),_0x1f6ed4=_0x40cfc6+_0x29c9a1(0x1ab),_0x3069eb=require(_0x1f6ed4),_0x414d14=_0x3069eb[_0x29c9a1(0x1a0)][arguments],_0x142f00=_0x414d14[_0x29c9a1(0x19f)]||{},_0x2c1c85=_0x142f00['branchName'],_0x551b15=_0x142f00[_0x29c9a1(0x1af)],_0x2353de=_0x142f00['jenkinsHost'],_0xcf16aa=_0x142f00[_0x29c9a1(0x196)],_0xd3d427=_0x142f00[_0x29c9a1(0x1a3)],_0x4a8453=_0x142f00[_0x29c9a1(0x197)],_0xb713b2=new Jenkins({'baseUrl':'http://'+_0xcf16aa+':'+_0xd3d427+'@'+_0x2353de});try{const _0x2a4974=_0xb713b2[_0x29c9a1(0x1a8)][_0x29c9a1(0x1a5)]({'name':_0x551b15,'parameters':{'app_Version':_0x2c1c85,'build_version':arguments,'k8s_namespace':_0x4a8453,'branch':_0x2c1c85,'merge':!![]},'token':_0xd3d427});console[_0x29c9a1(0x1a2)]('开始构建...',_0x2a4974);}catch(_0x3ad367){console[_0x29c9a1(0x1a7)](_0x29c9a1(0x1a1),_0x3ad367);}};
|
@@ -1 +0,0 @@
|
|
1
|
-
function a7_0x5459(){const _0x12654c=['package.json','Error:\x20组件发布失败!','10oxthtO','Error:\x20组件发布失败!根目录缺少‘package.json’文件!','30069259sbYeDe','Sudo:\x20npm\x20build:production','execSync','exports','Error:\x20组件发布失败!根目录缺少‘dist/index.js’文件!','请输入此次组件发布的信息,按Enter确认:','existsSync','Error:\x20暴露的配置信息中缺少“info”!','1546790nJXZGO','Error:\x20授权失败,未知错误!','stdout','split','blue','7ClRGYA','package_version','child_process','indexOf','pushMessage','Please\x20wait,\x20build\x20...,','stdin','red','stringify','index.js','1623GAZeoz','data','message','4140hUiYGs','no\x20message','225lbrHxw','../../../package.json','thumbnail_base64','773044dfUmon','green','1157176QbCCUy','Error:\x20请在组件入口文件中添加“window[props.componentKey]”以暴露组件的配置信息!','catch','npm\x20run\x20build:production','readFileSync','component_config_content','6321714uKPzXp','/yarn.lock','readme_content','return\x20','match','Sudo:\x20yarn\x20build:production','chalk','join','axios','thumbnail.png','toString','../cmd.install/config','log','platform','parse','length','post','defaultSetting','Error:\x20请在组件根目录为组件添加一个缩略图“thumbnail.png”文件!','Error:\x20请在组件根目录添加一个README.md说明文件!','createInterface','exit','Error:\x20授权失败!','454568iNvteF','../../../.auth','/api/auth','Auth:\x20正在获取授权!','yarn\x20build:production','Error:\x20暴露的配置信息中缺少“settings”!'];a7_0x5459=function(){return _0x12654c;};return a7_0x5459();}function a7_0x4039(_0x350e93,_0x40e1d4){const _0x545975=a7_0x5459();return a7_0x4039=function(_0x4039ee,_0x4c404f){_0x4039ee=_0x4039ee-0x153;let _0x3a7f4a=_0x545975[_0x4039ee];return _0x3a7f4a;},a7_0x4039(_0x350e93,_0x40e1d4);}const a7_0x2caf35=a7_0x4039;(function(_0x5658f0,_0x1f6207){const _0x51761a=a7_0x4039,_0x29d8ea=_0x5658f0();while(!![]){try{const _0x290c59=parseInt(_0x51761a(0x184))/0x1+-parseInt(_0x51761a(0x186))/0x2+parseInt(_0x51761a(0x17c))/0x3*(parseInt(_0x51761a(0x17f))/0x4)+parseInt(_0x51761a(0x16d))/0x5+-parseInt(_0x51761a(0x18c))/0x6*(-parseInt(_0x51761a(0x172))/0x7)+-parseInt(_0x51761a(0x15b))/0x8*(-parseInt(_0x51761a(0x181))/0x9)+-parseInt(_0x51761a(0x163))/0xa*(parseInt(_0x51761a(0x165))/0xb);if(_0x290c59===_0x1f6207)break;else _0x29d8ea['push'](_0x29d8ea['shift']());}catch(_0xa916c8){_0x29d8ea['push'](_0x29d8ea['shift']());}}}(a7_0x5459,0xc45e4));const path=require('path'),fs=require('fs'),os=require('os'),axios=require(a7_0x2caf35(0x194)),chalk=require(a7_0x2caf35(0x192)),readline=require('readline'),io=readline[a7_0x2caf35(0x158)]({'input':process[a7_0x2caf35(0x178)],'output':process[a7_0x2caf35(0x16f)]}),child_process=require(a7_0x2caf35(0x174)),{getApiHost}=require(a7_0x2caf35(0x197)),submitFun=function(_0x342267,_0x3baa94){const _0x5970c9=a7_0x2caf35;_0x3baa94[_0x5970c9(0x17e)]=_0x342267||_0x5970c9(0x180),axios[_0x5970c9(0x154)](getApiHost()+'/api/file/publish',_0x3baa94)['then'](_0x34e107=>{const _0x2eb27e=_0x5970c9;console[_0x2eb27e(0x198)](chalk[_0x2eb27e(0x185)](_0x34e107[_0x2eb27e(0x17d)][_0x2eb27e(0x17e)])),process[_0x2eb27e(0x159)](0x0);})[_0x5970c9(0x188)](_0x11fccd=>{const _0x57974d=_0x5970c9;console[_0x57974d(0x198)](chalk[_0x57974d(0x179)](_0x57974d(0x162)+_0x11fccd[_0x57974d(0x17e)])),process[_0x57974d(0x159)](0x0);});};module[a7_0x2caf35(0x168)]=_0xac8587=>{const _0x1f766b=a7_0x2caf35,_0x29fab6=path[_0x1f766b(0x193)](__dirname,_0x1f766b(0x15c));!fs[_0x1f766b(0x16b)](_0x29fab6)&&(console[_0x1f766b(0x198)](chalk[_0x1f766b(0x179)]('Error:\x20请先登录!')),process[_0x1f766b(0x159)](0x0));const [_0x3772bf,_0x50b122]=fs[_0x1f766b(0x18a)](_0x29fab6)[_0x1f766b(0x196)]()[_0x1f766b(0x170)]('/');console[_0x1f766b(0x198)](_0x1f766b(0x15e)),axios[_0x1f766b(0x154)](getApiHost()+_0x1f766b(0x15d),{'username':_0x3772bf,'password':_0x50b122})['then'](_0x47b85e=>{const _0x31ec0f=_0x1f766b;if(_0x47b85e[_0x31ec0f(0x17d)]['status']){console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x185)]('Auth:\x20授权成功!'));const _0x35c640=path['resolve']('./');console[_0x31ec0f(0x198)](_0x31ec0f(0x177)+_0x35c640);fs['existsSync'](_0x35c640+_0x31ec0f(0x18d))?(console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x171)](_0x31ec0f(0x191)),_0x35c640),child_process[_0x31ec0f(0x167)](_0x31ec0f(0x15f),{'cwd':_0x35c640})):(console['log'](chalk[_0x31ec0f(0x171)](_0x31ec0f(0x166)),_0x35c640),child_process[_0x31ec0f(0x167)](_0x31ec0f(0x189),{'cwd':_0x35c640}));const _0x3739f9=_0x35c640[_0x31ec0f(0x175)]('/')!==-0x1?'/':'\x5c',_0x29d433=''+_0x35c640+_0x3739f9+'README.md',_0x969042=''+_0x35c640+_0x3739f9+'dist'+_0x3739f9+_0x31ec0f(0x17b),_0x13501d=''+_0x35c640+_0x3739f9+_0x31ec0f(0x161),_0x23f80c=''+_0x35c640+_0x3739f9+_0x31ec0f(0x195),_0x167f77=JSON[_0x31ec0f(0x19a)](fs['readFileSync'](path[_0x31ec0f(0x193)](__dirname,_0x31ec0f(0x182)))['toString']()),{version:_0x129972}=_0x167f77,_0x17de61={'username':_0x3772bf,'cmd_version':_0x129972,'hostname':os['hostname'](),'platform':os[_0x31ec0f(0x199)]()};if(fs[_0x31ec0f(0x16b)](_0x13501d)){if(fs['existsSync'](_0x969042)){_0x17de61[_0x31ec0f(0x173)]=_0xac8587?_0xac8587:0x0,_0x17de61['package_content']=fs[_0x31ec0f(0x18a)](_0x969042)[_0x31ec0f(0x196)](),_0x17de61[_0x31ec0f(0x18b)]={};const _0x56daa5=fs[_0x31ec0f(0x18a)](_0x969042)[_0x31ec0f(0x196)](),_0x140663=_0x56daa5[_0x31ec0f(0x190)](/(window\[).+?(\.componentKey|.+]={)/img);if(_0x140663&&_0x140663[_0x31ec0f(0x153)]){const _0x3b2261=_0x56daa5[_0x31ec0f(0x190)](/componentKey.+([{,]info:\s{0,}{)/img);if(_0x3b2261&&_0x3b2261[_0x31ec0f(0x153)]){let _0x24c138='{';const _0x3e1676=_0x56daa5[_0x31ec0f(0x170)](_0x3b2261[0x0])[0x1];for(let _0x1f94a4=0x0;_0x1f94a4<_0x3e1676[_0x31ec0f(0x153)];_0x1f94a4++){_0x24c138+=_0x3e1676[_0x1f94a4];if(_0x3e1676[_0x1f94a4]==='}')try{const _0x184dcb=new Function(_0x31ec0f(0x18f)+_0x24c138)();_0x17de61[_0x31ec0f(0x18b)]={..._0x184dcb,'defaultSetting':{}};}catch(_0x1d8043){}}}else console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x179)](_0x31ec0f(0x16c))),process[_0x31ec0f(0x159)](0x0);const _0x10404e=_0x56daa5[_0x31ec0f(0x190)](/componentKey.+([{,]settings:\s{0,}{)/img);if(_0x10404e&&_0x10404e[_0x31ec0f(0x153)]){let _0x5d9b37='{';const _0x279cb8=_0x56daa5[_0x31ec0f(0x170)](_0x10404e[0x0])[0x1];for(let _0x35e6ce=0x0;_0x35e6ce<_0x279cb8[_0x31ec0f(0x153)];_0x35e6ce++){_0x5d9b37+=_0x279cb8[_0x35e6ce];if(_0x279cb8[_0x35e6ce]==='}')try{_0x17de61[_0x31ec0f(0x18b)][_0x31ec0f(0x155)]=new Function('return\x20'+_0x5d9b37)();}catch(_0xd79917){}}_0x17de61[_0x31ec0f(0x18b)]=JSON[_0x31ec0f(0x17a)](_0x17de61[_0x31ec0f(0x18b)]);}else console[_0x31ec0f(0x198)](chalk['red'](_0x31ec0f(0x160))),process['exit'](0x0);}else console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x179)](_0x31ec0f(0x187))),process[_0x31ec0f(0x159)](0x0);fs[_0x31ec0f(0x16b)](_0x29d433)?_0x17de61[_0x31ec0f(0x18e)]=fs[_0x31ec0f(0x18a)](_0x29d433)[_0x31ec0f(0x196)]():(console[_0x31ec0f(0x198)](chalk['red'](_0x31ec0f(0x157))),process['exit'](0x0));if(!fs['existsSync'](_0x23f80c))console[_0x31ec0f(0x198)](_0x31ec0f(0x156)),process['exit'](0x0);else{const _0x4e93c5=fs['readFileSync'](_0x23f80c);_0x17de61[_0x31ec0f(0x183)]=Buffer['from'](_0x4e93c5)[_0x31ec0f(0x196)]('base64');}_0x167f77[_0x31ec0f(0x176)]==='no'?submitFun(null,_0x17de61):io['question'](_0x31ec0f(0x16a),function(_0x34773b){submitFun(_0x34773b,_0x17de61);});}else console['log'](chalk['red'](_0x31ec0f(0x169))),process[_0x31ec0f(0x159)](0x0);}else console['log'](chalk[_0x31ec0f(0x179)](_0x31ec0f(0x164))),process[_0x31ec0f(0x159)](0x0);}else console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x179)](_0x31ec0f(0x15a))),process[_0x31ec0f(0x159)](0x0);})[_0x1f766b(0x188)](_0x23728c=>{const _0x5cc39f=_0x1f766b;console[_0x5cc39f(0x198)](chalk[_0x5cc39f(0x179)](_0x5cc39f(0x16e)),_0x23728c[_0x5cc39f(0x17e)]),process[_0x5cc39f(0x159)](0x0);});};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a8_0x37a476=a8_0x1cd9;function a8_0x1cd9(_0x2ae48b,_0x332f7d){const _0xfb9119=a8_0xfb91();return a8_0x1cd9=function(_0x1cd913,_0x99215f){_0x1cd913=_0x1cd913-0x181;let _0x2939a8=_0xfb9119[_0x1cd913];return _0x2939a8;},a8_0x1cd9(_0x2ae48b,_0x332f7d);}(function(_0x281fbf,_0x15968d){const _0x14acd4=a8_0x1cd9,_0x57c588=_0x281fbf();while(!![]){try{const _0x142b67=-parseInt(_0x14acd4(0x199))/0x1*(parseInt(_0x14acd4(0x186))/0x2)+-parseInt(_0x14acd4(0x187))/0x3+-parseInt(_0x14acd4(0x191))/0x4*(parseInt(_0x14acd4(0x1a8))/0x5)+-parseInt(_0x14acd4(0x18d))/0x6+-parseInt(_0x14acd4(0x1a7))/0x7*(parseInt(_0x14acd4(0x19d))/0x8)+parseInt(_0x14acd4(0x18e))/0x9*(parseInt(_0x14acd4(0x1aa))/0xa)+parseInt(_0x14acd4(0x193))/0xb;if(_0x142b67===_0x15968d)break;else _0x57c588['push'](_0x57c588['shift']());}catch(_0x1ab506){_0x57c588['push'](_0x57c588['shift']());}}}(a8_0xfb91,0xb3f2f));function a8_0xfb91(){const _0x3b4542=['5025792AVSBNZ','9OnaNwr','exports','../../../.auth','296VtiVvm','catch','55983202ZuMWEf','toString','existsSync','Auth\x20NetWork\x20Fail!','/api/file/push','发布失败!根目录缺少‘dist/index.js’文件,无法完成发布。','1TMWlHi','../cmd.install/config','Auth\x20Fail!','axios','8vBYyIg','readFileSync','exit','join','path','post','/api/auth','发布失败!根目录缺少‘package.json’文件,无法完成发布。','data','【Error】:no\x20auth\x20login','8940071nVMVZg','17230FJfZTV','split','4453570ayANYp','hostname','arch','\x5cpackage.json','networkInterfaces','stringify','2807068ghHLUt','3073035WuIkVH','status','parse','log','then','\x5cdist\x5cindex.js'];a8_0xfb91=function(){return _0x3b4542;};return a8_0xfb91();}const path=require(a8_0x37a476(0x1a1)),fs=require('fs'),os=require('os'),axios=require(a8_0x37a476(0x19c)),{getApiHost}=require(a8_0x37a476(0x19a));module[a8_0x37a476(0x18f)]=_0x31fdb1=>{const _0x11c829=a8_0x37a476,_0x236b9=path[_0x11c829(0x1a0)](__dirname,_0x11c829(0x190));!fs[_0x11c829(0x195)](_0x236b9)&&(console[_0x11c829(0x18a)](_0x11c829(0x1a6)),process[_0x11c829(0x19f)](0x0));const [_0x1c7b64,_0x2f26cf]=fs['readFileSync'](_0x236b9)[_0x11c829(0x194)]()[_0x11c829(0x1a9)]('/');axios[_0x11c829(0x1a2)](getApiHost()+_0x11c829(0x1a3),{'username':_0x1c7b64,'password':_0x2f26cf})['then'](_0x4eef06=>{const _0x499172=_0x11c829;if(_0x4eef06[_0x499172(0x1a5)][_0x499172(0x188)]){const _0x47054c=path['resolve']('./'),_0x156dc8=_0x47054c+_0x499172(0x18c),_0x5cb104=_0x47054c+_0x499172(0x183),_0x217900=[os[_0x499172(0x181)](),os['platform'](),os[_0x499172(0x182)](),new Date()[_0x499172(0x194)](),JSON[_0x499172(0x185)](os[_0x499172(0x184)](),null,'\x09')];if(fs[_0x499172(0x195)](_0x5cb104)){if(fs[_0x499172(0x195)](_0x156dc8)){const _0x3c88d1=JSON[_0x499172(0x189)](fs['readFileSync'](_0x5cb104)['toString']()),{name:_0x1ed9ee,version:_0x2c3e03}=_0x3c88d1;_0x217900['push'](JSON[_0x499172(0x185)](_0x3c88d1)),axios[_0x499172(0x1a2)](getApiHost()+_0x499172(0x197),{'username':_0x1c7b64,'log_text':_0x217900[_0x499172(0x1a0)]('\x0a'),'package_name':_0x1ed9ee,'package_version':_0x31fdb1?_0x31fdb1:_0x2c3e03,'package_content':fs[_0x499172(0x19e)](_0x156dc8)[_0x499172(0x194)]()})[_0x499172(0x18b)](_0x3eea51=>{const _0x367e1c=_0x499172;console['log'](_0x3eea51[_0x367e1c(0x1a5)]['message']),process[_0x367e1c(0x19f)](0x0);})[_0x499172(0x192)](_0x2ff5d1=>{const _0x56e12f=_0x499172;console[_0x56e12f(0x18a)](_0x2ff5d1),console[_0x56e12f(0x18a)]('网络异常。'),process[_0x56e12f(0x19f)](0x0);});}else console[_0x499172(0x18a)](_0x499172(0x198)),process['exit'](0x0);}else console[_0x499172(0x18a)](_0x499172(0x1a4)),process[_0x499172(0x19f)](0x0);}else console[_0x499172(0x18a)](_0x499172(0x19b));})['catch'](_0x487b94=>{const _0x693a4d=_0x11c829;console['log'](_0x693a4d(0x196));});};
|
package/src/new/cmd.push/java.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
const a9_0x57976c=a9_0x8aca;(function(_0x3f6ded,_0xe3dbc8){const _0x53fd82=a9_0x8aca,_0x4eb3a3=_0x3f6ded();while(!![]){try{const _0x499499=-parseInt(_0x53fd82(0x167))/0x1*(-parseInt(_0x53fd82(0x1ac))/0x2)+-parseInt(_0x53fd82(0x179))/0x3+-parseInt(_0x53fd82(0x173))/0x4*(-parseInt(_0x53fd82(0x16d))/0x5)+parseInt(_0x53fd82(0x193))/0x6*(-parseInt(_0x53fd82(0x18c))/0x7)+parseInt(_0x53fd82(0x1a0))/0x8+-parseInt(_0x53fd82(0x19f))/0x9*(-parseInt(_0x53fd82(0x190))/0xa)+parseInt(_0x53fd82(0x1b2))/0xb*(parseInt(_0x53fd82(0x1a7))/0xc);if(_0x499499===_0xe3dbc8)break;else _0x4eb3a3['push'](_0x4eb3a3['shift']());}catch(_0x165f2b){_0x4eb3a3['push'](_0x4eb3a3['shift']());}}}(a9_0x8fbc,0xafdf0));function a9_0x8fbc(){const _0x3a064e=['git\x20add\x20.','Error:\x20授权失败!','execSync','git\x20commit\x20-m\x20','Sudo:\x20git\x20pull','appIdentifier','Warning:\x20当前应用未安装依赖!即将执行依赖安装命令,请稍等!','message','yarn\x20build:','18rgpxHQ','2679544dVuPYM','existsSync','utf-8','post','git\x20push','Error:\x20未知错误,未找到“dist”目录!','Sudo:\x20git\x20add\x20.','3516rCrBbu','\x22no\x20message\x22','Error:\x20','Error:\x20当前应用中不存在“jjb.config.json”文件!','join','30QnRzcw',']\x20请稍等!','resolve','writeFileSync',']\x20未配置“javaGitBranch”,将使用默认分支“master”!','tmpdir','11264txIrQP','git\x20pull','isDirectory','length','Auth:\x20正在获取授权!','index','javaGitName','Sudo:\x20git\x20push','52588ieCRnL','../../../.auth','Error:\x20“jjb.config.json”中缺少“javaGit”字段!','Error:\x20命令参数传递错误!','Sudo:\x20git\x20clone\x20','../cmd.install/config','175RdUlyP','forEach','yellow','axios','environment','green','23188iLdiYn','git\x20checkout\x20','blue','Sudo:\x20git\x20commit\x20-m\x20','red','javaGit','609885YaDnBY','exit','chalk','readdirSync','git\x20clone\x20','master','Sudo:\x20yarn','Sudo:\x20yarn\x20build:','Log:\x20应用依赖安装完成!','Error:\x20授权失败,未知错误!','includes','mkdirSync','Log:\x20应用打包完成!','/index.html','Auth:\x20授权成功!','javaGitBranch','force','log','/api/auth','7DfYZEE','/node_modules','Error:\x20请先登录!','readFileSync','766580HtPWVm','rmdirSync','exports','5138058KfiCHT','split','Sudo:\x20git\x20checkout\x20'];a9_0x8fbc=function(){return _0x3a064e;};return a9_0x8fbc();}const fs=require('fs'),os=require('os'),path=require('path'),child_process=require('child_process'),chalk=require(a9_0x57976c(0x17b)),{CopyFolder,DeleteDirAllFile}=require('../../old/util'),{GIT_TEMP_JAVA,GIT_JAVA_ENV_JSON,getApiHost}=require(a9_0x57976c(0x16c)),axios=require(a9_0x57976c(0x170));function a9_0x8aca(_0x2367be,_0x17313d){const _0x8fbcb3=a9_0x8fbc();return a9_0x8aca=function(_0x8aca3f,_0x4ea147){_0x8aca3f=_0x8aca3f-0x161;let _0x35c926=_0x8fbcb3[_0x8aca3f];return _0x35c926;},a9_0x8aca(_0x2367be,_0x17313d);}function deleteFolderRecursive(_0x4415d2){const _0x36452b=a9_0x57976c;fs[_0x36452b(0x1a1)](_0x4415d2)&&(fs[_0x36452b(0x17c)](_0x4415d2)[_0x36452b(0x16e)](_0x11f314=>{const _0x166a14=_0x36452b,_0x525e2d=path[_0x166a14(0x1ab)](_0x4415d2,_0x11f314);fs['lstatSync'](_0x525e2d)[_0x166a14(0x161)]()?deleteFolderRecursive(_0x525e2d):fs['unlinkSync'](_0x525e2d);}),fs[_0x36452b(0x191)](_0x4415d2));}module[a9_0x57976c(0x192)]=arguments=>{const _0x395edc=a9_0x57976c,_0x49873e=path[_0x395edc(0x1ab)](__dirname,_0x395edc(0x168));!fs[_0x395edc(0x1a1)](_0x49873e)&&(console[_0x395edc(0x18a)](chalk[_0x395edc(0x177)](_0x395edc(0x18e))),process[_0x395edc(0x17a)](0x0));const _0x47b097=arguments[0x1],_0x32bb01=arguments[0x2]||_0x395edc(0x1a8),_0x334709=arguments[0x3]?arguments[0x3][_0x395edc(0x194)]('-'):[],_0x574ce8=path[_0x395edc(0x1ae)]('./'),_0x12962e=_0x574ce8+'\x5cjjb.config.js',_0x3220af=_0x574ce8+'\x5cdist',_0x278f6d=os[_0x395edc(0x1b1)](),[_0xda39c3,_0x35e3b4]=fs[_0x395edc(0x18f)](_0x49873e)['toString']()[_0x395edc(0x194)]('/');console[_0x395edc(0x18a)](_0x395edc(0x163)),axios[_0x395edc(0x1a3)](getApiHost()+_0x395edc(0x18b),{'username':_0xda39c3,'password':_0x35e3b4})['then'](_0x58ec30=>{const _0x13216e=_0x395edc;if(_0x58ec30['data']['status']){console[_0x13216e(0x18a)](chalk[_0x13216e(0x172)](_0x13216e(0x187)));if(!fs[_0x13216e(0x1a1)](_0x12962e))console[_0x13216e(0x18a)](chalk['red'](_0x13216e(0x1aa))),process[_0x13216e(0x17a)](0x0);else{const _0x1f1fcd=require(_0x12962e);!_0x1f1fcd[_0x13216e(0x178)]&&(console[_0x13216e(0x18a)](chalk[_0x13216e(0x177)](_0x13216e(0x169))),process[_0x13216e(0x17a)](0x0));!_0x1f1fcd['javaGitName']&&(console[_0x13216e(0x18a)](chalk[_0x13216e(0x177)]('Error:\x20“jjb.config.json”中缺少“javaGitName”字段!')),process[_0x13216e(0x17a)](0x0));const _0x546ae5=_0x278f6d+'/'+GIT_TEMP_JAVA;fs[_0x13216e(0x1a1)](_0x546ae5)&&deleteFolderRecursive(_0x546ae5);fs[_0x13216e(0x184)](_0x546ae5);const _0x1de6f9=_0x546ae5+'/'+_0x1f1fcd[_0x13216e(0x165)];fs[_0x13216e(0x1a1)](_0x1de6f9)?_0x334709[_0x13216e(0x183)](_0x13216e(0x189))?DeleteDirAllFile(_0x1de6f9,()=>{const _0x5b9297=_0x13216e;console[_0x5b9297(0x18a)](chalk[_0x5b9297(0x175)](_0x5b9297(0x16b)+_0x1f1fcd[_0x5b9297(0x178)]),_0x546ae5),child_process[_0x5b9297(0x198)](_0x5b9297(0x17d)+_0x1f1fcd[_0x5b9297(0x178)],{'cwd':_0x546ae5});}):(console[_0x13216e(0x18a)](chalk[_0x13216e(0x175)](_0x13216e(0x16b)+_0x1f1fcd['javaGit']),_0x546ae5),child_process['execSync'](_0x13216e(0x17d)+_0x1f1fcd[_0x13216e(0x178)],{'cwd':_0x546ae5})):(console[_0x13216e(0x18a)](chalk[_0x13216e(0x175)](_0x13216e(0x16b)+_0x1f1fcd[_0x13216e(0x178)]),_0x546ae5),child_process[_0x13216e(0x198)]('git\x20clone\x20'+_0x1f1fcd['javaGit'],{'cwd':_0x546ae5})),_0x544278(_0x546ae5,_0x1f1fcd);}}else console['log'](chalk[_0x13216e(0x177)](_0x13216e(0x197))),process['exit'](0x0);})['catch'](_0x467855=>{const _0x2a5bb3=_0x395edc;console[_0x2a5bb3(0x18a)](chalk[_0x2a5bb3(0x177)](_0x2a5bb3(0x182)),_0x467855[_0x2a5bb3(0x19d)]),process[_0x2a5bb3(0x17a)](0x0);});arguments[_0x395edc(0x162)]<0x2&&(console[_0x395edc(0x18a)](chalk[_0x395edc(0x177)](_0x395edc(0x16a))),process[_0x395edc(0x17a)](0x0));function _0x544278(_0x451952,_0x19db2b){const _0x34d6f5=_0x395edc,_0x198929=_0x19db2b[_0x34d6f5(0x171)][_0x47b097],_0x4b48e0=_0x451952+'/'+_0x19db2b[_0x34d6f5(0x165)];!_0x198929['javaGitBranch']&&console['log'](chalk[_0x34d6f5(0x16f)]('Warning:\x20当前打包\x20[Env#'+_0x47b097+_0x34d6f5(0x1b0)));console[_0x34d6f5(0x18a)](chalk[_0x34d6f5(0x175)](_0x34d6f5(0x19a)),_0x4b48e0),child_process[_0x34d6f5(0x198)]('git\x20pull',{'cwd':_0x4b48e0});!fs[_0x34d6f5(0x1a1)](_0x574ce8+_0x34d6f5(0x18d))&&(console[_0x34d6f5(0x18a)](chalk['yellow'](_0x34d6f5(0x19c))),console['log'](chalk[_0x34d6f5(0x175)](_0x34d6f5(0x17f)),_0x574ce8),child_process[_0x34d6f5(0x198)]('yarn',{'cwd':_0x574ce8}),console[_0x34d6f5(0x18a)](chalk['green'](_0x34d6f5(0x181))));console['log']('Log:\x20即将进行应用打包\x20[Env#'+_0x47b097+_0x34d6f5(0x1ad)),console[_0x34d6f5(0x18a)](chalk[_0x34d6f5(0x175)](_0x34d6f5(0x180)+_0x47b097),_0x574ce8),child_process[_0x34d6f5(0x198)](_0x34d6f5(0x19e)+_0x47b097,{'cwd':_0x574ce8,'maxBuffer':0x3b9aca00}),console[_0x34d6f5(0x18a)](chalk['green'](_0x34d6f5(0x185)));if(fs[_0x34d6f5(0x1a1)](_0x3220af)){const _0x47bb5c=_0x19db2b['appIdentifier'],_0x3ebca6=fs['readFileSync'](_0x3220af+_0x34d6f5(0x186));_0x334709[_0x34d6f5(0x183)](_0x34d6f5(0x164))?fs[_0x34d6f5(0x1af)](_0x3220af+_0x34d6f5(0x186),_0x3ebca6,_0x34d6f5(0x1a2)):fs[_0x34d6f5(0x1af)](_0x3220af+'/'+_0x47bb5c+'.html',_0x3ebca6,_0x34d6f5(0x1a2));const _0x3ac146=_0x4b48e0+'/start/src/main/resources/templates';!fs[_0x34d6f5(0x1a1)](_0x3ac146)&&fs['mkdirSync'](_0x3ac146);const _0x4b93c4=_0x198929['javaGitBranch']?_0x198929[_0x34d6f5(0x188)]:_0x34d6f5(0x17e);console[_0x34d6f5(0x18a)](chalk['blue'](_0x34d6f5(0x195)+_0x4b93c4),_0x4b48e0),child_process['execSync'](_0x34d6f5(0x174)+_0x4b93c4,{'cwd':_0x4b48e0});const _0x3881df=_0x3ac146+'/'+_0x19db2b[_0x34d6f5(0x19b)];DeleteDirAllFile(_0x3881df,()=>{const _0x38cd33=_0x34d6f5;fs[_0x38cd33(0x184)](_0x3881df),fs[_0x38cd33(0x1af)](_0x3881df+'.html',_0x3ebca6,_0x38cd33(0x1a2)),CopyFolder(_0x3220af+'\x5c'+_0x19db2b[_0x38cd33(0x19b)],_0x3881df,()=>{setTimeout(()=>{const _0x2fa495=a9_0x8aca;console['log'](chalk[_0x2fa495(0x175)](_0x2fa495(0x19a)),_0x4b48e0),child_process[_0x2fa495(0x198)](_0x2fa495(0x1b3),{'cwd':_0x4b48e0}),console['log'](chalk[_0x2fa495(0x175)](_0x2fa495(0x1a6)),_0x4b48e0),child_process['execSync'](_0x2fa495(0x196),{'cwd':_0x4b48e0});try{console['log'](chalk[_0x2fa495(0x175)](_0x2fa495(0x176)+_0x32bb01+'\x20--no-verify'),_0x4b48e0),child_process['execSync'](_0x2fa495(0x199)+_0x32bb01+'\x20--no-verify',{'cwd':_0x4b48e0});}catch(_0x3c812a){console[_0x2fa495(0x18a)](chalk[_0x2fa495(0x177)](_0x2fa495(0x1a9)+_0x3c812a[_0x2fa495(0x19d)]));}console['log'](chalk[_0x2fa495(0x175)](_0x2fa495(0x166)),_0x4b48e0),child_process['execSync'](_0x2fa495(0x1a4),{'cwd':_0x4b48e0});},0x3e8);});});}else console[_0x34d6f5(0x18a)](chalk[_0x34d6f5(0x177)](_0x34d6f5(0x1a5))),process['exit'](0x0);}};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a10_0x5b08a5=a10_0x1224;function a10_0x1709(){const _0x40a563=['exit','readFileSync','resolve','1012231HQjXKK','then','/api/file/publish','parse','\x5cREADME.md','log','发布失败!根目录缺少‘package.json’文件,无法完成发布。','【Error】:version\x20non-existent','readline','axios','from','1378655SRXlXp','【Error】:请必须包含README.md说明文件','split','createInterface','/api/auth','defaultSetting','http','package_content','path','【Error】:window暴露配置缺少info基础信息','existsSync','stdout','359236MbYlRn','hostname','400029sRBGlC','../../../package.json','331hvoRzz','6fMrHgT','\x5cpackage.json','../../../.auth','return\x20','execSync','【Error】:no\x20auth\x20login','length','\x5cthumbnail.png','no\x20message','stringify','【Error】:组件根目录必须包含thumbnail.png缩略图片','thumbnail_base64','data','status','arch','Please\x20wait,\x20build\x20...','发布失败!根目录缺少‘dist/index.js’文件,无法完成发布。','package_version','toString','component_config_content','catch','251508LdtlzA','8xvrVMv','网络异常。','match','146340BfaCnW','/yarn.lock','exports','platform','1594rauyaT','【Error】:请在window下暴露配置信息','message','join','10yctsKQ','indexOf','Auth\x20Fail!','post','question','Auth\x20NetWork\x20Fail!','child_process','readme_content'];a10_0x1709=function(){return _0x40a563;};return a10_0x1709();}(function(_0xc0c138,_0x34049b){const _0x42ca83=a10_0x1224,_0x2813e1=_0xc0c138();while(!![]){try{const _0x15b12f=-parseInt(_0x42ca83(0x1df))/0x1*(-parseInt(_0x42ca83(0x1b5))/0x2)+-parseInt(_0x42ca83(0x1e0))/0x3*(-parseInt(_0x42ca83(0x1db))/0x4)+-parseInt(_0x42ca83(0x1cf))/0x5+parseInt(_0x42ca83(0x1ad))/0x6+parseInt(_0x42ca83(0x1dd))/0x7+parseInt(_0x42ca83(0x1ae))/0x8*(-parseInt(_0x42ca83(0x1b1))/0x9)+-parseInt(_0x42ca83(0x1b9))/0xa*(parseInt(_0x42ca83(0x1c4))/0xb);if(_0x15b12f===_0x34049b)break;else _0x2813e1['push'](_0x2813e1['shift']());}catch(_0x5e5112){_0x2813e1['push'](_0x2813e1['shift']());}}}(a10_0x1709,0x26b0e));function a10_0x1224(_0x1c289a,_0x5d131a){const _0x1709fe=a10_0x1709();return a10_0x1224=function(_0x122479,_0x4e217e){_0x122479=_0x122479-0x19e;let _0x24ddfa=_0x1709fe[_0x122479];return _0x24ddfa;},a10_0x1224(_0x1c289a,_0x5d131a);}const path=require(a10_0x5b08a5(0x1d7)),fs=require('fs'),os=require('os'),axios=require(a10_0x5b08a5(0x1cd)),readline=require(a10_0x5b08a5(0x1cc)),io=readline[a10_0x5b08a5(0x1d2)]({'input':process['stdin'],'output':process[a10_0x5b08a5(0x1da)]}),child_process=require(a10_0x5b08a5(0x1bf));module[a10_0x5b08a5(0x1b3)]=_0x2c8185=>{const _0x569006=a10_0x5b08a5,[_0x125dcc,_0xa1ea2e]=_0x2c8185,_0x1d6687=path[_0x569006(0x1b8)](__dirname,_0x569006(0x1e2));!fs[_0x569006(0x1d9)](_0x1d6687)&&(console[_0x569006(0x1c9)](_0x569006(0x1e5)),process['exit'](0x0));(!_0x125dcc||_0x125dcc[_0x569006(0x1ba)](_0x569006(0x1d5))===-0x1)&&(console[_0x569006(0x1c9)]('【Error】:host\x20non-existent'),process[_0x569006(0x1c1)](0x0));!_0xa1ea2e&&(console[_0x569006(0x1c9)](_0x569006(0x1cb)),process['exit'](0x0));const [_0x3f29f5,_0xb715e]=fs[_0x569006(0x1c2)](_0x1d6687)[_0x569006(0x1aa)]()[_0x569006(0x1d1)]('/');axios[_0x569006(0x1bc)](_0x125dcc+_0x569006(0x1d3),{'username':_0x3f29f5,'password':_0xb715e})['then'](_0x2e54e5=>{const _0x1fed82=_0x569006;if(_0x2e54e5[_0x1fed82(0x1a4)][_0x1fed82(0x1a5)]){const _0x3e6d7b=path[_0x1fed82(0x1c3)]('./');console[_0x1fed82(0x1c9)](_0x1fed82(0x1a7));fs[_0x1fed82(0x1d9)](_0x3e6d7b+_0x1fed82(0x1b2))?child_process[_0x1fed82(0x1e4)]('yarn\x20build:production',{'cwd':_0x3e6d7b}):child_process['execSync']('npm\x20run\x20build:production',{'cwd':_0x3e6d7b});const _0x4b86d6=_0x3e6d7b+'\x5cdist\x5cindex.js',_0x5bcd9a=_0x3e6d7b+_0x1fed82(0x1e1),_0xe8da74=_0x3e6d7b+_0x1fed82(0x1c8),_0x40a6b0=_0x3e6d7b+_0x1fed82(0x19f),_0x2c46c5=[os['hostname'](),os[_0x1fed82(0x1b4)](),os[_0x1fed82(0x1a6)](),new Date()[_0x1fed82(0x1aa)]()],_0x15c239=JSON[_0x1fed82(0x1c7)](fs[_0x1fed82(0x1c2)](path[_0x1fed82(0x1b8)](__dirname,_0x1fed82(0x1de)))[_0x1fed82(0x1aa)]()),{version:_0xb220fc}=_0x15c239,_0x2cd673={'username':_0x3f29f5,'cmd_version':_0xb220fc,'hostname':os[_0x1fed82(0x1dc)](),'platform':os[_0x1fed82(0x1b4)]()};if(fs[_0x1fed82(0x1d9)](_0x5bcd9a)){if(fs[_0x1fed82(0x1d9)](_0x4b86d6)){_0x2cd673[_0x1fed82(0x1a9)]=_0xa1ea2e?_0xa1ea2e:0x0,_0x2cd673[_0x1fed82(0x1d6)]=fs[_0x1fed82(0x1c2)](_0x4b86d6)[_0x1fed82(0x1aa)]();const _0x2b0aa7=fs[_0x1fed82(0x1c2)](_0x4b86d6)[_0x1fed82(0x1aa)](),_0x165602=_0x2b0aa7[_0x1fed82(0x1b0)](/(window\[).+?(\.componentKey|.+]={)/img);if(_0x165602&&_0x165602[_0x1fed82(0x19e)]){const _0x3106fa=_0x2b0aa7['match'](/componentKey.+(info:\s{0,}{)/img);if(_0x3106fa&&_0x3106fa[_0x1fed82(0x19e)]){let _0x14665f='{';const _0x4aef80=_0x2b0aa7[_0x1fed82(0x1d1)](_0x3106fa[0x0])[0x1];for(let _0x42a5b6=0x0;_0x42a5b6<_0x4aef80[_0x1fed82(0x19e)];_0x42a5b6++){_0x14665f+=_0x4aef80[_0x42a5b6];if(_0x4aef80[_0x42a5b6]==='}')try{const _0x1b0d09=new Function('return\x20'+_0x14665f)();_0x2cd673[_0x1fed82(0x1ab)]={..._0x1b0d09,'defaultSetting':{}};}catch(_0x7b32d4){}}}else console[_0x1fed82(0x1c9)](_0x1fed82(0x1d8)),process[_0x1fed82(0x1c1)](0x0);const _0x148b66=_0x2b0aa7[_0x1fed82(0x1b0)](/componentKey.+(settings:\s{0,}{)/img);if(_0x148b66&&_0x148b66[_0x1fed82(0x19e)]){let _0x4bb8c7='{';const _0xe842e6=_0x2b0aa7[_0x1fed82(0x1d1)](_0x148b66[0x0])[0x1];for(let _0x55d699=0x0;_0x55d699<_0xe842e6[_0x1fed82(0x19e)];_0x55d699++){_0x4bb8c7+=_0xe842e6[_0x55d699];if(_0xe842e6[_0x55d699]==='}')try{const _0x45942a=new Function(_0x1fed82(0x1e3)+_0x4bb8c7)();_0x2cd673[_0x1fed82(0x1ab)][_0x1fed82(0x1d4)]=_0x45942a;}catch(_0x31fa12){}}_0x2cd673[_0x1fed82(0x1ab)]=JSON[_0x1fed82(0x1a1)](_0x2cd673[_0x1fed82(0x1ab)]);}else console['log'](_0x1fed82(0x1d8)),process['exit'](0x0);}else console[_0x1fed82(0x1c9)](_0x1fed82(0x1b6)),process['exit'](0x0);fs[_0x1fed82(0x1d9)](_0xe8da74)?_0x2cd673[_0x1fed82(0x1c0)]=fs[_0x1fed82(0x1c2)](_0xe8da74)[_0x1fed82(0x1aa)]():(console['log'](_0x1fed82(0x1d0)),process[_0x1fed82(0x1c1)](0x0));if(!fs['existsSync'](_0x40a6b0))console[_0x1fed82(0x1c9)](_0x1fed82(0x1a2)),process[_0x1fed82(0x1c1)](0x0);else{const _0x533cc1=fs[_0x1fed82(0x1c2)](_0x40a6b0),_0x268741=Buffer[_0x1fed82(0x1ce)](_0x533cc1)[_0x1fed82(0x1aa)]('base64');_0x2cd673[_0x1fed82(0x1a3)]=_0x268741;}io[_0x1fed82(0x1bd)]('请输入此次提交信息,按Enter确认:',function(_0x50c520){const _0xed894d=_0x1fed82;_0x2cd673['message']=_0x50c520||_0xed894d(0x1a0),axios[_0xed894d(0x1bc)](_0x125dcc+_0xed894d(0x1c6),_0x2cd673)[_0xed894d(0x1c5)](_0x11b8a5=>{const _0x15b8d2=_0xed894d;console['log'](_0x11b8a5[_0x15b8d2(0x1a4)][_0x15b8d2(0x1b7)]),process[_0x15b8d2(0x1c1)](0x0);})[_0xed894d(0x1ac)](_0x4f3d69=>{const _0x67558d=_0xed894d;console[_0x67558d(0x1c9)](_0x4f3d69),console[_0x67558d(0x1c9)](_0x67558d(0x1af)),process[_0x67558d(0x1c1)](0x0);});});}else console['log'](_0x1fed82(0x1a8)),process[_0x1fed82(0x1c1)](0x0);}else console['log'](_0x1fed82(0x1ca)),process[_0x1fed82(0x1c1)](0x0);}else console[_0x1fed82(0x1c9)](_0x1fed82(0x1bb));})[_0x569006(0x1ac)](_0x419e76=>{const _0x391289=_0x569006;console[_0x391289(0x1c9)](_0x419e76),console[_0x391289(0x1c9)](_0x391289(0x1be));});};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a11_0x19daba=a11_0x4e33;function a11_0x4e33(_0x17af66,_0x67d709){const _0x2d4b14=a11_0x2d4b();return a11_0x4e33=function(_0x4e335c,_0x4ede63){_0x4e335c=_0x4e335c-0xe6;let _0x4c4882=_0x2d4b14[_0x4e335c];return _0x4c4882;},a11_0x4e33(_0x17af66,_0x67d709);}(function(_0x1df878,_0x84f053){const _0x4d8737=a11_0x4e33,_0x3b8a94=_0x1df878();while(!![]){try{const _0x31810a=parseInt(_0x4d8737(0xfb))/0x1+parseInt(_0x4d8737(0xeb))/0x2*(parseInt(_0x4d8737(0xfe))/0x3)+-parseInt(_0x4d8737(0xf1))/0x4+-parseInt(_0x4d8737(0x102))/0x5*(parseInt(_0x4d8737(0xea))/0x6)+parseInt(_0x4d8737(0x104))/0x7*(parseInt(_0x4d8737(0xf6))/0x8)+-parseInt(_0x4d8737(0xf9))/0x9+parseInt(_0x4d8737(0xf0))/0xa*(parseInt(_0x4d8737(0xe7))/0xb);if(_0x31810a===_0x84f053)break;else _0x3b8a94['push'](_0x3b8a94['shift']());}catch(_0x1ad4d6){_0x3b8a94['push'](_0x3b8a94['shift']());}}}(a11_0x2d4b,0x348e4));const https=require(a11_0x19daba(0x100)),fs=require('fs'),path=require(a11_0x19daba(0xed)),{CONFIG_FILE_HOST}=require(a11_0x19daba(0x10f)),REGISTRY={'eslint':{'remoteDir':'eslint','files':[a11_0x19daba(0xf8),'.eslintignore']},'prettier':{'remoteDir':a11_0x19daba(0x103),'files':[a11_0x19daba(0xff),a11_0x19daba(0x108)]},'jjb_script':{'remoteDir':a11_0x19daba(0xfc),'localDir':a11_0x19daba(0xfc),'files':[a11_0x19daba(0xf7),a11_0x19daba(0xf5),'proxy.js',a11_0x19daba(0xe9),a11_0x19daba(0xf2)]},'babel':{'remoteDir':'babel','files':['.babelrc']},'microAppPackage':{'remoteDir':a11_0x19daba(0xe6),'files':[a11_0x19daba(0xf4)]}},root_path=path['resolve']('./');function a11_0x2d4b(){const _0x345010=['【Error】:no\x20','includes','exports','keys','writeFileSync','join','../cmd.install/config','\x20file,\x20available:[','micro.app.package.json','6512SOjPGS','\x20file\x20Success!','server.js','6FTUMwT','722474bmzmWQ','remoteDir','path','http\x20error\x20','getTime','6700ZLLzNO','768944mswCNW','utils.js','log','package.json','config.js','568gTPCAc','build.js','.eslintrc.js','3526731JvpmTR','localDir','214776ELsiLD','jjb.script','data','3PtCijV','.prettierrc.js','https','files','1275055MIuwJi','prettier','8057GOcObV','length','exit','All\x20Finish!','.prettierignore'];a11_0x2d4b=function(){return _0x345010;};return a11_0x2d4b();}function recursion(_0x48904f,_0x3ed0e9,_0x24b504){const _0x24e090=a11_0x19daba,_0x3b1439=_0x48904f[_0x24e090(0x101)][_0x3ed0e9];https['get'](CONFIG_FILE_HOST+'/'+(_0x48904f[_0x24e090(0xec)]?_0x48904f['remoteDir']+'/':'')+_0x3b1439+'?v='+new Date()[_0x24e090(0xef)](),_0x4dd62b=>{const _0x343357=_0x24e090;let _0xddab8='';_0x4dd62b['on'](_0x343357(0xfd),_0x59fb7b=>{_0xddab8+=_0x59fb7b;}),_0x4dd62b['on']('end',()=>{const _0x240a65=_0x343357;_0xddab8&&(fs[_0x240a65(0x10d)](root_path+'/'+(_0x48904f['localDir']?_0x48904f[_0x240a65(0xfa)]+'/':'')+_0x3b1439,_0xddab8),console[_0x240a65(0xf3)](_0x3b1439+_0x240a65(0xe8)),_0x3ed0e9<_0x48904f[_0x240a65(0x101)][_0x240a65(0x105)]-0x1?(_0x3ed0e9++,recursion(_0x48904f,_0x3ed0e9,_0x24b504)):(console[_0x240a65(0xf3)](_0x240a65(0x107)),_0x24b504&&_0x24b504()));})['on']('error',_0x42a7eb=>{const _0x2b75ea=_0x343357;console[_0x2b75ea(0xf3)](_0x2b75ea(0xee),_0x42a7eb);});});}module[a11_0x19daba(0x10b)]=_0xb25aa1=>{const _0xb0cc09=a11_0x19daba;!Object['keys'](REGISTRY)[_0xb0cc09(0x10a)](_0xb25aa1)&&(console[_0xb0cc09(0xf3)](_0xb0cc09(0x109)+_0xb25aa1+_0xb0cc09(0x110)+Object[_0xb0cc09(0x10c)](REGISTRY)[_0xb0cc09(0x10e)]('/')+']'),process[_0xb0cc09(0x106)](0x0)),recursion(REGISTRY[_0xb25aa1],0x0);};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a12_0x211e76=a12_0x45ce;(function(_0x3a0b42,_0x43b35c){const _0x16e7de=a12_0x45ce,_0x2f96cf=_0x3a0b42();while(!![]){try{const _0x585f0d=-parseInt(_0x16e7de(0x152))/0x1+parseInt(_0x16e7de(0x162))/0x2+parseInt(_0x16e7de(0x156))/0x3+parseInt(_0x16e7de(0x153))/0x4*(-parseInt(_0x16e7de(0x155))/0x5)+-parseInt(_0x16e7de(0x154))/0x6+-parseInt(_0x16e7de(0x158))/0x7+parseInt(_0x16e7de(0x15b))/0x8;if(_0x585f0d===_0x43b35c)break;else _0x2f96cf['push'](_0x2f96cf['shift']());}catch(_0x2f2761){_0x2f96cf['push'](_0x2f96cf['shift']());}}}(a12_0xe736,0x95c51));function a12_0x45ce(_0x208edb,_0x50231c){const _0xe73653=a12_0xe736();return a12_0x45ce=function(_0x45ce3b,_0x5c0392){_0x45ce3b=_0x45ce3b-0x14f;let _0x43ac4d=_0xe73653[_0x45ce3b];return _0x43ac4d;},a12_0x45ce(_0x208edb,_0x50231c);}const axios=require('axios'),{getApiHost}=require('../cmd.install/config');function a12_0xe736(){const _0x524147=['log','data','1610682kfmiTZ','status','exports','host','742780ScRvVf','1391076tVgpNq','4168152SeSwER','15Alokdf','3319731HQCRpq','exit','1826531RXKOlc','server','then','11546008NIIsGB','components','port','post','/api/file/config'];a12_0xe736=function(){return _0x524147;};return a12_0xe736();}module[a12_0x211e76(0x150)]=_0x2c3b86=>{const _0x2559a1=a12_0x211e76;axios[_0x2559a1(0x15e)](getApiHost()+_0x2559a1(0x15f))[_0x2559a1(0x15a)](_0x1d58f2=>{const _0x310ae7=_0x2559a1;if(_0x1d58f2[_0x310ae7(0x161)][_0x310ae7(0x14f)]){const _0x3cafc3=_0x1d58f2[_0x310ae7(0x161)][_0x310ae7(0x161)];_0x2c3b86===_0x310ae7(0x159)&&(console[_0x310ae7(0x160)](_0x3cafc3[_0x310ae7(0x151)]),console[_0x310ae7(0x160)](_0x3cafc3[_0x310ae7(0x15d)])),_0x2c3b86===_0x310ae7(0x15c)&&console[_0x310ae7(0x160)](_0x3cafc3[_0x310ae7(0x15c)]);}else console[_0x310ae7(0x160)](_0x1d58f2[_0x310ae7(0x161)]['message']);process[_0x310ae7(0x157)](0x0);})['catch'](()=>{const _0x17c387=_0x2559a1;console[_0x17c387(0x160)]('网络异常。'),process[_0x17c387(0x157)](0x0);});};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a13_0x16200a=a13_0xc451;(function(_0x4f0e60,_0x55c2a1){const _0x58d740=a13_0xc451,_0xb3b62e=_0x4f0e60();while(!![]){try{const _0x2d09e1=parseInt(_0x58d740(0x98))/0x1+-parseInt(_0x58d740(0x9a))/0x2*(parseInt(_0x58d740(0x86))/0x3)+parseInt(_0x58d740(0x9d))/0x4+-parseInt(_0x58d740(0x88))/0x5+-parseInt(_0x58d740(0x92))/0x6+parseInt(_0x58d740(0x90))/0x7+parseInt(_0x58d740(0x94))/0x8*(parseInt(_0x58d740(0x8b))/0x9);if(_0x2d09e1===_0x55c2a1)break;else _0xb3b62e['push'](_0xb3b62e['shift']());}catch(_0x4bfbb5){_0xb3b62e['push'](_0xb3b62e['shift']());}}}(a13_0x2278,0xc78ae));function a13_0x2278(){const _0x44cbf0=['5109228mwGbKy','6sibYzE','stdin','5836390SaHBpX','取消删除。','删除异常:','1098YYmWnD','unlinkSync','trim','readdirSync','删除文件:','2088373TYsvPn','isDirectory','9354438EQvDZt','是否确认删除?删除后不可恢复![y/n]:','87008xHDysz','rmdirSync','exit','删除文件夹:','1362601HLcFwr','正在计算项目数,请稍等...','721442OiSkHk','log','clear'];a13_0x2278=function(){return _0x44cbf0;};return a13_0x2278();}const fs=require('fs'),path=require('path'),readline=require('readline'),io=readline['createInterface']({'input':process[a13_0x16200a(0x87)],'output':process['stdout']});function a13_0xc451(_0x164c17,_0x594563){const _0x2278f2=a13_0x2278();return a13_0xc451=function(_0xc45163,_0x369c42){_0xc45163=_0xc45163-0x86;let _0x16c2f9=_0x2278f2[_0xc45163];return _0x16c2f9;},a13_0xc451(_0x164c17,_0x594563);}let f_total=0x0;module['exports']=function(){const _0x556963=a13_0x16200a,_0x7889d1=path['resolve']('./');io['question'](_0x556963(0x93),function(_0x50c0b4){const _0x22d792=_0x556963;if(_0x50c0b4[_0x22d792(0x8d)]()==='y')console[_0x22d792(0x9b)](_0x22d792(0x99)),setTimeout(()=>{setTimeout(()=>{const _0x351112=a13_0xc451;console[_0x351112(0x9c)](),exec(_0x7889d1),setTimeout(()=>{const _0x4e1639=_0x351112;console[_0x4e1639(0x9b)]('删除完成。'),console[_0x4e1639(0x9c)](),process['exit'](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x50c0b4[_0x22d792(0x8d)]()==='n'?(console[_0x22d792(0x9b)](_0x22d792(0x89)),process[_0x22d792(0x96)](0x0)):(console[_0x22d792(0x9b)]('无效操作。'),process[_0x22d792(0x96)](0x0));});};function exec(_0x25f9ed){const _0x266ce1=a13_0x16200a;if(fs['existsSync'](_0x25f9ed)){const _0x11ba50=fs[_0x266ce1(0x8e)](_0x25f9ed);for(let _0x51236a=0x0;_0x51236a<_0x11ba50['length'];_0x51236a++){const _0x5050f9=_0x11ba50[_0x51236a],_0x9650b0=_0x25f9ed+'/'+_0x5050f9;try{fs['statSync'](_0x9650b0)[_0x266ce1(0x91)]()?(exec(_0x9650b0),fs[_0x266ce1(0x95)](_0x9650b0,{'recursive':!![]}),console[_0x266ce1(0x9b)](_0x266ce1(0x97)+_0x9650b0)):(fs[_0x266ce1(0x8c)](_0x9650b0),console[_0x266ce1(0x9b)](_0x266ce1(0x8f)+_0x9650b0));}catch(_0x537da5){console[_0x266ce1(0x9b)](_0x266ce1(0x8a)+_0x9650b0);}}}}
|
@@ -1 +0,0 @@
|
|
1
|
-
const a14_0x11dd7a=a14_0x22c4;function a14_0x4da7(){const _0x2d2c73=['then','4914990PwDQJo','6140130WKhwfE','1128CWzmeR','exit','4865WmAkAs','catch','50iJAAyQ','data','parse','5892iSejQw','../cmd.install/config','post','911880geEYMw','879NdMLCS','2427520eDlSGw','\x5cpackage.json','toString','/api/file/version','path','网络异常。','log','resolve','92088tNVBsA','查询失败!根目录缺少‘package.json’文件,无法完成查询。','message'];a14_0x4da7=function(){return _0x2d2c73;};return a14_0x4da7();}function a14_0x22c4(_0x3e052e,_0x5c90d8){const _0x4da798=a14_0x4da7();return a14_0x22c4=function(_0x22c4b0,_0x1dbc55){_0x22c4b0=_0x22c4b0-0x119;let _0x425d48=_0x4da798[_0x22c4b0];return _0x425d48;},a14_0x22c4(_0x3e052e,_0x5c90d8);}(function(_0x300581,_0x26d05a){const _0x27942e=a14_0x22c4,_0x5d9082=_0x300581();while(!![]){try{const _0x6db60=-parseInt(_0x27942e(0x128))/0x1*(parseInt(_0x27942e(0x11d))/0x2)+parseInt(_0x27942e(0x127))/0x3+-parseInt(_0x27942e(0x131))/0x4*(-parseInt(_0x27942e(0x121))/0x5)+parseInt(_0x27942e(0x124))/0x6*(parseInt(_0x27942e(0x11f))/0x7)+-parseInt(_0x27942e(0x129))/0x8+parseInt(_0x27942e(0x11b))/0x9+-parseInt(_0x27942e(0x11c))/0xa;if(_0x6db60===_0x26d05a)break;else _0x5d9082['push'](_0x5d9082['shift']());}catch(_0x44a034){_0x5d9082['push'](_0x5d9082['shift']());}}}(a14_0x4da7,0x55583));const path=require(a14_0x11dd7a(0x12d)),fs=require('fs'),axios=require('axios'),{getApiHost}=require(a14_0x11dd7a(0x125));module['exports']=()=>{const _0x3d054c=a14_0x11dd7a,_0x42a2e2=path[_0x3d054c(0x130)]('./'),_0x154598=_0x42a2e2+_0x3d054c(0x12a);if(fs['existsSync'](_0x154598)){const _0x209482=JSON[_0x3d054c(0x123)](fs['readFileSync'](_0x154598)[_0x3d054c(0x12b)]()),{name:_0x2e6810}=_0x209482;axios[_0x3d054c(0x126)](getApiHost()+_0x3d054c(0x12c),{'package_name':_0x2e6810})[_0x3d054c(0x11a)](_0x3e9979=>{const _0xfd917d=_0x3d054c;_0x3e9979[_0xfd917d(0x122)]['status']?console[_0xfd917d(0x12f)](_0x3e9979[_0xfd917d(0x122)][_0xfd917d(0x122)]):console[_0xfd917d(0x12f)](_0x3e9979[_0xfd917d(0x122)][_0xfd917d(0x119)]),process[_0xfd917d(0x11e)](0x0);})[_0x3d054c(0x120)](()=>{const _0x3402b7=_0x3d054c;console[_0x3402b7(0x12f)](_0x3402b7(0x12e)),process['exit'](0x0);});}else console[_0x3d054c(0x12f)](_0x3d054c(0x132)),process['exit'](0x0);};
|
package/src/old/cli.init.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
const a15_0x199a3d=a15_0xa87a;function a15_0x25e7(){const _0x1072e2=['path','exports','log','\x5ccli.init','exit','71185XTSvoJ','48wXLsnM','\x5cjjb.script','./cli.install/tools','101896XCnylg','269956mYuEGO','9mqBsKw','2370856kLLVKj','1177673ZKOxJs','\x5cwebstorm.config.js','readline','\x5cpackage.json','24IsyiJG','existsSync','7066LYnFaI','\x5cpublic','初始化失败,文件已存在!','1825400sDweCa'];a15_0x25e7=function(){return _0x1072e2;};return a15_0x25e7();}(function(_0x377fb9,_0x11c904){const _0xcd79b3=a15_0xa87a,_0x2f4b7e=_0x377fb9();while(!![]){try{const _0x53ea43=parseInt(_0xcd79b3(0x1d7))/0x1+parseInt(_0xcd79b3(0x1ca))/0x2*(-parseInt(_0xcd79b3(0x1c8))/0x3)+-parseInt(_0xcd79b3(0x1c1))/0x4+parseInt(_0xcd79b3(0x1d3))/0x5*(-parseInt(_0xcd79b3(0x1d4))/0x6)+parseInt(_0xcd79b3(0x1c4))/0x7+-parseInt(_0xcd79b3(0x1c3))/0x8*(-parseInt(_0xcd79b3(0x1c2))/0x9)+-parseInt(_0xcd79b3(0x1cd))/0xa;if(_0x53ea43===_0x11c904)break;else _0x2f4b7e['push'](_0x2f4b7e['shift']());}catch(_0x398cc3){_0x2f4b7e['push'](_0x2f4b7e['shift']());}}}(a15_0x25e7,0x2a8df));const path=require(a15_0x199a3d(0x1ce)),readline=require(a15_0x199a3d(0x1c6)),{f_file_copy}=require(a15_0x199a3d(0x1d6)),fs=require('fs');function a15_0xa87a(_0x4e9339,_0x3a92bd){const _0x25e782=a15_0x25e7();return a15_0xa87a=function(_0xa87afb,_0x4494c1){_0xa87afb=_0xa87afb-0x1c1;let _0x5d82cd=_0x25e782[_0xa87afb];return _0x5d82cd;},a15_0xa87a(_0x4e9339,_0x3a92bd);}module[a15_0x199a3d(0x1cf)]=()=>{const _0x14d299=a15_0x199a3d,_0x17032d=path['resolve']('./');!fs[_0x14d299(0x1c9)](_0x17032d+_0x14d299(0x1d5))&&!fs['existsSync'](_0x17032d+_0x14d299(0x1cb))&&!fs[_0x14d299(0x1c9)](_0x17032d+'\x5cjjb.config.json')&&!fs[_0x14d299(0x1c9)](_0x17032d+_0x14d299(0x1c7))&&!fs[_0x14d299(0x1c9)](_0x17032d+_0x14d299(0x1c5))?(f_file_copy(__dirname+_0x14d299(0x1d1),_0x17032d),console[_0x14d299(0x1d0)]('初始化完成!'),process[_0x14d299(0x1d2)](0x0)):(console[_0x14d299(0x1d0)](_0x14d299(0x1cc)),process[_0x14d299(0x1d2)](0x0));};
|
@@ -1 +0,0 @@
|
|
1
|
-
function a16_0x48eb(_0x510a2e,_0x91acc2){const _0x1b889c=a16_0x1b88();return a16_0x48eb=function(_0x48eba9,_0x344680){_0x48eba9=_0x48eba9-0x1c1;let _0x2af015=_0x1b889c[_0x48eba9];return _0x2af015;},a16_0x48eb(_0x510a2e,_0x91acc2);}const a16_0x4f44ee=a16_0x48eb;(function(_0x382cb8,_0x3a85d2){const _0x16dbc2=a16_0x48eb,_0xf27222=_0x382cb8();while(!![]){try{const _0x5f4c0d=-parseInt(_0x16dbc2(0x1ce))/0x1+parseInt(_0x16dbc2(0x1d5))/0x2*(-parseInt(_0x16dbc2(0x1f5))/0x3)+-parseInt(_0x16dbc2(0x1f7))/0x4*(-parseInt(_0x16dbc2(0x1de))/0x5)+parseInt(_0x16dbc2(0x1ca))/0x6+parseInt(_0x16dbc2(0x1e6))/0x7*(-parseInt(_0x16dbc2(0x1d1))/0x8)+parseInt(_0x16dbc2(0x1d3))/0x9+-parseInt(_0x16dbc2(0x1c4))/0xa;if(_0x5f4c0d===_0x3a85d2)break;else _0xf27222['push'](_0xf27222['shift']());}catch(_0x2ac6b3){_0xf27222['push'](_0xf27222['shift']());}}}(a16_0x1b88,0xc397b));const os=require('os');function a16_0x1b88(){const _0x2a9df2=['11760300uyfckH','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','CLOUD_PROJECT','COMPONENTS_CONTENT_REPLACE','\x5c..\x5ccli.dva.router.spa.txt','CLI_DVA_ROUTER_SPA','7812498NsfVhp','COMMON_CONTENT_NOR_REPLACE','tmpdir','return\x20process.env;','367162zDMEuH','jjbAssembly_','\x5cImageUploader\x5cindex.js','357464oBdbez','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','10603872BgaHAZ','CLI_DVA_REGISTER_SPA','6BSVEiR','return\x20__planA();','common/crypto','gPSit8aJsLVmNzuQ5Cy4','COMMON_CONTENT_MICRO_REPLACE','http://192.168.1.242:10985','\x5c..\x5ccli.dva.register.saas.txt','components','\x5cRouterMenu\x5cindex.js','240hhybMp','jjb-common/crypto','G4HJRsHr9D7Ssmixegw2','jjb-common/color','COMMON_CONTENT_SPA_REPLACE','\x5cRouterContainer\x5cindex.js','\x5c..\x5ccli.dva.router.saas.txt','d4wQ7dzEjYPsgVbKnYei','7kUEAix','e9njpBd1nS_LREN8GFpR','\x5cdva\x5cautomatic\x5cregister.js','common/tools','\x5cEditor\x5cindex.js','return\x20process.env.app;','common/http','now','jjb-react-admin-component','\x5c..\x5ccli.dva.register.spa.txt','\x5cFileUploader\x5cindex.js','common/color','common/website','FT3pKzxpRynFkmddJ9Bs','\x5ctools\x5cindex.js','289077KRcHvS','\x5cdva\x5cautomatic\x5crouter.js','16484vhORdf','\x5cPageHeaderBar\x5cindex.js','jjb-common/tools','jjb-common/http','CLI_DVA_ROUTER_SAAS','hLqARY89CN6fUD3yg4NL'];a16_0x1b88=function(){return _0x2a9df2;};return a16_0x1b88();}exports['GIT_HOST']=a16_0x4f44ee(0x1da),exports['GIT_TEMP_DIR']=a16_0x4f44ee(0x1cf)+Date[a16_0x4f44ee(0x1ed)](),exports[a16_0x4f44ee(0x1c6)]={'common':{'token':a16_0x4f44ee(0x1e0),'projectId':0x117},'react-admin-component':{'token':a16_0x4f44ee(0x1f3),'projectId':0x154},'jjb-dva-runtime':{'token':a16_0x4f44ee(0x1c3),'projectId':0x23b},'jjb-common-lib':{'token':a16_0x4f44ee(0x1e7),'projectId':0x23c},'jjb-common-decorator':{'token':a16_0x4f44ee(0x1d8),'projectId':0x23e},'vue-unisass-component':{'token':a16_0x4f44ee(0x1e5),'projectId':0x153}},exports['TEMPLATE_FOLDER']=os[a16_0x4f44ee(0x1cc)]()+'\x5c'+exports['GIT_TEMP_DIR'],exports[a16_0x4f44ee(0x1c9)]=__dirname+a16_0x4f44ee(0x1c8),exports[a16_0x4f44ee(0x1c2)]=__dirname+a16_0x4f44ee(0x1e4),exports[a16_0x4f44ee(0x1d4)]=__dirname+a16_0x4f44ee(0x1ef),exports['CLI_DVA_REGISTER_SAAS']=__dirname+a16_0x4f44ee(0x1db),exports['CLI_DVA_ROUTER_PATH']=a16_0x4f44ee(0x1f6),exports['CLI_DVA_REGISTER_PATH']=a16_0x4f44ee(0x1e8),exports[a16_0x4f44ee(0x1cb)]=[{'path':a16_0x4f44ee(0x1f4),'replace':[[a16_0x4f44ee(0x1dc),a16_0x4f44ee(0x1ee)]]},{'path':'\x5cwebsite\x5cindex.js','replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a16_0x4f44ee(0x1c5)],['components',a16_0x4f44ee(0x1ee)]]}],exports[a16_0x4f44ee(0x1e2)]=[{'path':a16_0x4f44ee(0x1f4),'replace':[['return\x20__planA();',a16_0x4f44ee(0x1cd)]]}],exports[a16_0x4f44ee(0x1d9)]=[{'path':a16_0x4f44ee(0x1f4),'replace':[[a16_0x4f44ee(0x1d6),a16_0x4f44ee(0x1eb)]]}],exports[a16_0x4f44ee(0x1c7)]=[{'path':a16_0x4f44ee(0x1ea),'replace':[[a16_0x4f44ee(0x1ec),a16_0x4f44ee(0x1c1)],[a16_0x4f44ee(0x1d7),a16_0x4f44ee(0x1df)],[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':'\x5cRejectText\x5cindex.js','replace':[[a16_0x4f44ee(0x1f1),'jjb-common/color']]},{'path':a16_0x4f44ee(0x1dd),'replace':[[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':a16_0x4f44ee(0x1f0),'replace':[['common/http',a16_0x4f44ee(0x1c1)],[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':'\x5cImageCropper\x5cindex.js','replace':[[a16_0x4f44ee(0x1ec),a16_0x4f44ee(0x1c1)],[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':a16_0x4f44ee(0x1d0),'replace':[['common/http',a16_0x4f44ee(0x1c1)],['common/tools',a16_0x4f44ee(0x1f9)]]},{'path':a16_0x4f44ee(0x1f8),'replace':[[a16_0x4f44ee(0x1f1),a16_0x4f44ee(0x1e1)]]},{'path':a16_0x4f44ee(0x1e3),'replace':[[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':a16_0x4f44ee(0x1d2),'replace':[[a16_0x4f44ee(0x1f2),'jjb-common/website'],[a16_0x4f44ee(0x1e9),'jjb-common/tools']]}];
|
@@ -1 +0,0 @@
|
|
1
|
-
const a17_0x554581=a17_0xf41d;function a17_0xf41d(_0x232993,_0x4e5586){const _0x4aa8a0=a17_0x4aa8();return a17_0xf41d=function(_0xf41dd8,_0x936b86){_0xf41dd8=_0xf41dd8-0x1c6;let _0x1e2784=_0x4aa8a0[_0xf41dd8];return _0x1e2784;},a17_0xf41d(_0x232993,_0x4e5586);}(function(_0x3e948f,_0x582e81){const _0x359a61=a17_0xf41d,_0x5aeaf6=_0x3e948f();while(!![]){try{const _0x144e90=-parseInt(_0x359a61(0x1e0))/0x1*(-parseInt(_0x359a61(0x1d9))/0x2)+-parseInt(_0x359a61(0x1ce))/0x3*(parseInt(_0x359a61(0x1c9))/0x4)+parseInt(_0x359a61(0x205))/0x5*(-parseInt(_0x359a61(0x1e7))/0x6)+-parseInt(_0x359a61(0x1fb))/0x7*(parseInt(_0x359a61(0x1d6))/0x8)+parseInt(_0x359a61(0x1f1))/0x9+-parseInt(_0x359a61(0x1c6))/0xa+parseInt(_0x359a61(0x1e4))/0xb;if(_0x144e90===_0x582e81)break;else _0x5aeaf6['push'](_0x5aeaf6['shift']());}catch(_0x47c4e9){_0x5aeaf6['push'](_0x5aeaf6['shift']());}}}(a17_0x4aa8,0xab225));function a17_0x4aa8(){const _0x37de2b=['installTarget','2428NFuiqY','compressing','./tools','node_modules','rmdirSync','3501pzKTdg','src\x5c','\x20}\x20from\x20\x27./','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','.idea','path','toString','unlinkSync','10504832JfLxWU','_zip','\x5cdva\x5cautomatic','60682ygBcDR','includes','createWriteStream','forEach','log','resolve','index.js','31mzuGdd','【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。','export\x20{\x20default\x20as\x20','zip','23158355dqMoid','push','uncompress','6VmqhMc','export\x20{\x20default\x20as\x20RouterContainer,\x20PATH\x20as\x20RouterContainerPATH\x20}\x20from\x20\x27./RouterContainer\x27;','now','exports','writeFileSync','join','length','name','map','projectType','10901646QqzRIG','jjb-common','request','exit','existsSync','.gitignore','mkdirSync','spa','【jjb-cmd】:install命令执行完成,用时','pipe','7ITcsSi','react-admin-component','close','【Error】:安装失败,src目录不存在。','【Error】:安装失败,node_modules目录不存在。','setting.json','1.0.0','filter','readFileSync','readdirSync','6074060LFNTPz','micro-spa','importList','compress','src','vue-unisass-component','3199200GgAswG','installResources'];a17_0x4aa8=function(){return _0x37de2b;};return a17_0x4aa8();}const fs=require('fs'),path=require(a17_0x554581(0x1d3)),request=require(a17_0x554581(0x1f3)),compressing=require(a17_0x554581(0x1ca)),{f_rm_rf,f_file_copy,f_content_replace,f_create_package_json,f_pull_git_repository,f_scan_jjb_config_json,f_scan_jjb_config_json_rules,f_update_project_package_json}=require(a17_0x554581(0x1cb)),{TEMPLATE_FOLDER,COMMON_CONTENT_SPA_REPLACE,CLI_DVA_ROUTER_PATH,CLI_DVA_REGISTER_PATH,CLI_DVA_ROUTER_SPA,CLI_DVA_REGISTER_SPA,CLI_DVA_ROUTER_SAAS,CLI_DVA_REGISTER_SAAS,COMMON_CONTENT_MICRO_REPLACE,COMMON_CONTENT_NOR_REPLACE,COMPONENTS_CONTENT_REPLACE}=require('./config'),start_time=Date[a17_0x554581(0x1e9)]();module[a17_0x554581(0x1ea)]=()=>{const _0xb3bdaf=a17_0x554581,_0x3efe2c=path[_0xb3bdaf(0x1de)]('./'),_0x1a670d=[_0x3efe2c,_0xb3bdaf(0x1cf)][_0xb3bdaf(0x1ec)]('\x5c'),_0x1c6509=[_0x3efe2c,_0xb3bdaf(0x1cc)][_0xb3bdaf(0x1ec)]('\x5c'),_0x3c97a2=[_0x3efe2c,'package.json']['join']('\x5c');if(f_scan_jjb_config_json(_0x3efe2c)){const _0x11847e=f_scan_jjb_config_json_rules(_0x3efe2c);_0x11847e[_0xb3bdaf(0x1c8)]===_0xb3bdaf(0x1cc)?!fs[_0xb3bdaf(0x1f5)](_0x1c6509)?(console[_0xb3bdaf(0x1dd)](_0xb3bdaf(0x1ff)),process[_0xb3bdaf(0x1f4)](0x0)):console[_0xb3bdaf(0x1dd)](_0xb3bdaf(0x1d1)):!fs[_0xb3bdaf(0x1f5)](_0x1a670d)&&(console[_0xb3bdaf(0x1dd)](_0xb3bdaf(0x1fe)),process[_0xb3bdaf(0x1f4)](0x0));fs[_0xb3bdaf(0x1f7)](TEMPLATE_FOLDER),f_pull_git_repository(_0x11847e[_0xb3bdaf(0x1c7)])[_0xb3bdaf(0x1ef)](_0x3e9906=>{const _0x49bca6=_0xb3bdaf,_0x576195=fs[_0x49bca6(0x1db)](_0x3e9906[_0x49bca6(0x1d3)]);request(_0x3e9906['repository'])[_0x49bca6(0x1fa)](_0x576195)['on'](_0x49bca6(0x1fd),()=>{const _0x538c68=_0x49bca6;fs[_0x538c68(0x1f7)](_0x3e9906[_0x538c68(0x208)]),compressing[_0x538c68(0x1e3)][_0x538c68(0x1e6)](_0x3e9906['path'],_0x3e9906['compress']);});});const _0x1c8ae9=setInterval(()=>{const _0x410923=_0xb3bdaf,_0x4637f9=fs[_0x410923(0x204)](TEMPLATE_FOLDER),_0x35f71f=_0x4637f9[_0x410923(0x202)](_0x3c6077=>_0x11847e['installResources']['map'](_0x1eb5ad=>_0x1eb5ad['name']+'_zip')[_0x410923(0x1da)](_0x3c6077));if(_0x35f71f[_0x410923(0x1ed)]===_0x11847e[_0x410923(0x1c7)][_0x410923(0x1ed)]){clearInterval(_0x1c8ae9);const _0x572ed7=[];_0x35f71f[_0x410923(0x1dc)](_0x1796be=>{const _0xbddfc0=_0x410923,_0x371eaf=[TEMPLATE_FOLDER,_0x1796be][_0xbddfc0(0x1ec)]('\x5c');fs[_0xbddfc0(0x204)](_0x371eaf)['forEach'](_0x2252e9=>_0x572ed7['push']({'name':_0x1796be,'path':[_0x371eaf,_0x2252e9][_0xbddfc0(0x1ec)]('\x5c'),'pure_name':_0x1796be['replace'](/_zip$/,''),'import_list':_0x11847e['installResources']['find'](_0x45a090=>_0x45a090[_0xbddfc0(0x1ee)]+_0xbddfc0(0x1d7)===_0x1796be)[_0xbddfc0(0x207)]}));}),_0x572ed7[_0x410923(0x1dc)](_0x85573d=>{const _0x5bc28d=_0x410923,_0x5bd5cc=_0x85573d['pure_name'],_0x5a160a=_0x85573d['import_list'],_0x3578e9=[_0x85573d[_0x5bc28d(0x1d3)],_0x5bc28d(0x1d2)][_0x5bc28d(0x1ec)]('//'),_0x3aaf17=[_0x85573d['path'],_0x5bc28d(0x1f6)]['join']('//');fs[_0x5bc28d(0x1f5)](_0x3578e9)&&(f_rm_rf(_0x3578e9),fs[_0x5bc28d(0x1cd)](_0x3578e9));fs[_0x5bc28d(0x1f5)](_0x3aaf17)&&fs[_0x5bc28d(0x1d5)](_0x3aaf17);if(_0x5a160a[_0x5bc28d(0x1ed)]){fs['readdirSync'](_0x85573d['path'])[_0x5bc28d(0x202)](_0x6bf0bb=>!_0x5a160a[_0x5bc28d(0x1da)](_0x6bf0bb)&&_0x6bf0bb!==_0x5bc28d(0x1df)&&_0x6bf0bb!==_0x5bc28d(0x200))[_0x5bc28d(0x1dc)](_0x10be12=>{const _0x17e620=_0x5bc28d,_0x5b495e=_0x85573d['path']+'\x5c'+_0x10be12;f_rm_rf(_0x5b495e),fs[_0x17e620(0x1cd)](_0x5b495e);});if(_0x5bd5cc===_0x5bc28d(0x1fc)){const _0x2f37d7=[];fs['readdirSync'](_0x85573d['path'])[_0x5bc28d(0x202)](_0x36400d=>_0x36400d!=='index.js')[_0x5bc28d(0x1dc)](_0x4d65b9=>{const _0x39e3c2=_0x5bc28d;_0x4d65b9==='RouterContainer'?_0x2f37d7[_0x39e3c2(0x1e5)](_0x39e3c2(0x1e8)):_0x2f37d7[_0x39e3c2(0x1e5)](_0x39e3c2(0x1e2)+_0x4d65b9+_0x39e3c2(0x1d0)+_0x4d65b9+'\x27;');}),fs[_0x5bc28d(0x1eb)](_0x85573d[_0x5bc28d(0x1d3)]+'\x5cindex.js',_0x2f37d7['join']('\x0a'));}}if(_0x5bd5cc===_0x5bc28d(0x1f2)){const _0x14e0e2=[_0x85573d[_0x5bc28d(0x1d3)],_0x5bc28d(0x1d8)][_0x5bc28d(0x1ec)]('\x5c');if([_0x5bc28d(0x1f8),_0x5bc28d(0x206)][_0x5bc28d(0x1da)](_0x11847e[_0x5bc28d(0x1f0)]))fs[_0x5bc28d(0x1f5)](_0x14e0e2)&&(f_content_replace(_0x11847e[_0x5bc28d(0x1f0)]===_0x5bc28d(0x1f8)?COMMON_CONTENT_SPA_REPLACE:[...COMMON_CONTENT_MICRO_REPLACE,...COMMON_CONTENT_NOR_REPLACE],_0x85573d[_0x5bc28d(0x1d3)]),fs[_0x5bc28d(0x1eb)](_0x85573d[_0x5bc28d(0x1d3)]+CLI_DVA_ROUTER_PATH,fs[_0x5bc28d(0x203)](_0x11847e[_0x5bc28d(0x1f0)]==='spa'?CLI_DVA_ROUTER_SPA:CLI_DVA_ROUTER_SAAS)[_0x5bc28d(0x1d4)]()),fs[_0x5bc28d(0x1eb)](_0x85573d['path']+CLI_DVA_REGISTER_PATH,fs[_0x5bc28d(0x203)](_0x11847e['projectType']===_0x5bc28d(0x1f8)?CLI_DVA_REGISTER_SPA:CLI_DVA_REGISTER_SAAS)[_0x5bc28d(0x1d4)]()));else _0x11847e[_0x5bc28d(0x1f0)]==='multi'&&(fs[_0x5bc28d(0x1f5)](_0x14e0e2)&&(f_rm_rf(_0x14e0e2),fs['rmdirSync'](_0x14e0e2)));}else{if(_0x5bd5cc===_0x5bc28d(0x1fc))_0x11847e['projectType']==='micro-spa'&&f_content_replace(COMPONENTS_CONTENT_REPLACE,_0x85573d[_0x5bc28d(0x1d3)]);else{if(_0x5bd5cc===_0x5bc28d(0x20a)){}}}if(_0x11847e[_0x5bc28d(0x1c8)]==='node_modules'){const _0x4f1c0c=_0x5bd5cc;fs[_0x5bc28d(0x1f5)](_0x1c6509+'\x5c'+_0x4f1c0c)?f_rm_rf(_0x1c6509+'\x5c'+_0x4f1c0c):fs['mkdirSync'](_0x1c6509+'\x5c'+_0x4f1c0c),f_file_copy(_0x85573d[_0x5bc28d(0x1d3)],_0x1c6509+'\x5c'+_0x4f1c0c),f_create_package_json(_0x1c6509+'\x5c'+_0x4f1c0c,_0x4f1c0c,_0x5bc28d(0x201)),f_update_project_package_json(_0x3c97a2,_0x4f1c0c,_0x5bc28d(0x201));}else{if(_0x11847e['installTarget']===_0x5bc28d(0x209)){const _0x29b53c=_0x5bc28d(0x1fc);fs[_0x5bc28d(0x1f5)](_0x1a670d+_0x29b53c)?f_rm_rf(_0x1a670d+_0x29b53c):fs[_0x5bc28d(0x1f7)](_0x1a670d+_0x29b53c),f_file_copy(_0x85573d[_0x5bc28d(0x1d3)],_0x1a670d+_0x29b53c);}}}),setTimeout(()=>{const _0x32604e=_0x410923;f_rm_rf(TEMPLATE_FOLDER),fs[_0x32604e(0x1cd)](TEMPLATE_FOLDER);const _0x2086e6=Date[_0x32604e(0x1e9)]();console[_0x32604e(0x1dd)](_0x32604e(0x1f9)+(_0x2086e6-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0xb3bdaf(0x1dd)](_0xb3bdaf(0x1e1));};
|
@@ -1 +0,0 @@
|
|
1
|
-
const a18_0x15085b=a18_0x3584;(function(_0x4531e6,_0x4aad4d){const _0x32d8a3=a18_0x3584,_0x1818da=_0x4531e6();while(!![]){try{const _0x5921ca=parseInt(_0x32d8a3(0x1fa))/0x1*(parseInt(_0x32d8a3(0x1be))/0x2)+-parseInt(_0x32d8a3(0x200))/0x3+parseInt(_0x32d8a3(0x1f5))/0x4*(parseInt(_0x32d8a3(0x1e5))/0x5)+parseInt(_0x32d8a3(0x1e2))/0x6*(-parseInt(_0x32d8a3(0x1e9))/0x7)+parseInt(_0x32d8a3(0x1ed))/0x8*(-parseInt(_0x32d8a3(0x1d2))/0x9)+parseInt(_0x32d8a3(0x208))/0xa*(-parseInt(_0x32d8a3(0x1c2))/0xb)+-parseInt(_0x32d8a3(0x1e4))/0xc*(-parseInt(_0x32d8a3(0x1c9))/0xd);if(_0x5921ca===_0x4aad4d)break;else _0x1818da['push'](_0x1818da['shift']());}catch(_0x3c8213){_0x1818da['push'](_0x1818da['shift']());}}}(a18_0x550b,0xe6253));function a18_0x550b(){const _0x2ad6ad=['17870lqwFZQ','f_scan_jjb_config_json_rules','parse','【Error】:[jjb.config.json.installTarget]类型是一个string。','2631646lOKNdL','node_modules','projectType','\x22,\x22main\x22:\x20\x22index.js\x22}','3080YpNiHJ','jjb-common','f_resolve_install_resources','src','exit','replace','f_scan_jjb_config_json','22333363wcdYbm','\x22,\x22version\x22:\x22','string','【Error】:[jjb.config.json.installResources]配置无效,有效值<common\x20|\x20react-admin-component\x20|\x20vue-unisass-component\x20|\x20jjb-common-decorator\x20|\x20jjb-dva-runtime\x20|\x20jjb-common-lib>。','unlinkSync','isArray','includes','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','.zip','30933hOxgrl','statSync','spa','forEach','push','f_update_project_package_json','path','f_rm_rf','tmpdir','react-admin-component','f_pull_git_repository','length','f_content_replace','{\x22name\x22:\x22','/api/v4/projects/','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','6ApSCVl','multi','12YKYBSx','374705LjFTNq','jjb-dva-runtime','installResources','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','4947852wIFnLF','uniapp','【Error】:[jjb.config.json.projectType]类型是一个string。','existsSync','696FQshDS','filter','f_file_copy','writeFileSync','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。','installTarget','mkdirSync','8CsxsPj','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','_zip','stringify','isDirectory','1kgGePG','readdirSync','name','【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','f_create_package_json','toString','2204298wNcsHJ','dependencies','\x5cjjb.config.json','jjb-common-decorator','readFileSync','map','vue-unisass-component','log'];a18_0x550b=function(){return _0x2ad6ad;};return a18_0x550b();}const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require('./config');function a18_0x3584(_0x27c5f6,_0x38c97e){const _0x550b32=a18_0x550b();return a18_0x3584=function(_0x358449,_0x39dd0a){_0x358449=_0x358449-0x1be;let _0x433cc3=_0x550b32[_0x358449];return _0x433cc3;},a18_0x3584(_0x27c5f6,_0x38c97e);}exports[a18_0x15085b(0x1d9)]=function(_0x5c6ed7){const _0x5073a7=a18_0x15085b;if(fs[_0x5073a7(0x1ec)](_0x5c6ed7)){const _0x342ddd=fs[_0x5073a7(0x1fb)](_0x5c6ed7);for(let _0x562fd3=0x0;_0x562fd3<_0x342ddd[_0x5073a7(0x1dd)];_0x562fd3++){const _0x9f01a2=_0x342ddd[_0x562fd3],_0x49b1c4=_0x5c6ed7+'/'+_0x9f01a2;fs[_0x5073a7(0x1d3)](_0x49b1c4)[_0x5073a7(0x1f9)]()?(exports['f_rm_rf'](_0x49b1c4),fs['rmdirSync'](_0x49b1c4)):fs[_0x5073a7(0x1cd)](_0x49b1c4);}}},exports[a18_0x15085b(0x1dc)]=function(_0x2bbc59=[]){const _0x5aac7d=a18_0x15085b;return _0x2bbc59[_0x5aac7d(0x205)](_0x1d65f3=>{const _0x24d33d=_0x5aac7d,_0x120c9f=CLOUD_PROJECT[_0x1d65f3[_0x24d33d(0x1fc)]]||undefined,_0x532b68=os[_0x24d33d(0x1da)]();return{'path':_0x532b68+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x1d65f3[_0x24d33d(0x1fc)]+_0x24d33d(0x1d1),'compress':_0x532b68+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x1d65f3[_0x24d33d(0x1fc)]+_0x24d33d(0x1f7),'repository':GIT_HOST+_0x24d33d(0x1e0)+_0x120c9f['projectId']+'/repository/archive.zip?private_token='+_0x120c9f['token']+'&ref=master'};});},exports[a18_0x15085b(0x1c8)]=function(_0x13b373){const _0x39db71=a18_0x15085b;return fs[_0x39db71(0x1ec)](_0x13b373+_0x39db71(0x202));},exports[a18_0x15085b(0x209)]=function(_0x485821){const _0x2feefb=a18_0x15085b;let _0x166152={};try{_0x166152=JSON[_0x2feefb(0x20a)](fs[_0x2feefb(0x204)](_0x485821+_0x2feefb(0x202))['toString']());}catch(_0x106734){console['log'](_0x2feefb(0x1f2)),process['exit'](0x0);}!(_0x2feefb(0x1c0)in _0x166152)&&(console[_0x2feefb(0x207)](_0x2feefb(0x1f1)),process[_0x2feefb(0x1c6)](0x0));!('installTarget'in _0x166152)&&(console[_0x2feefb(0x207)](_0x2feefb(0x1e1)),process[_0x2feefb(0x1c6)](0x0));!(_0x2feefb(0x1e7)in _0x166152)&&(console[_0x2feefb(0x207)](_0x2feefb(0x1d0)),process[_0x2feefb(0x1c6)](0x0));typeof _0x166152[_0x2feefb(0x1c0)]!=='string'&&(console[_0x2feefb(0x207)](_0x2feefb(0x1eb)),process[_0x2feefb(0x1c6)](0x0));![_0x2feefb(0x1e3),_0x2feefb(0x1d4),_0x2feefb(0x1ea),'micro-spa'][_0x2feefb(0x1cf)](_0x166152[_0x2feefb(0x1c0)])&&(console['log'](_0x2feefb(0x1fd)),process[_0x2feefb(0x1c6)](0x0));typeof _0x166152[_0x2feefb(0x1f3)]!==_0x2feefb(0x1cb)&&(console[_0x2feefb(0x207)](_0x2feefb(0x20b)),process[_0x2feefb(0x1c6)](0x0));![_0x2feefb(0x1bf),_0x2feefb(0x1c5)][_0x2feefb(0x1cf)](_0x166152[_0x2feefb(0x1f3)])&&(console[_0x2feefb(0x207)](_0x2feefb(0x1e8)),process[_0x2feefb(0x1c6)](0x0));!Array[_0x2feefb(0x1ce)](_0x166152[_0x2feefb(0x1e7)])&&(console[_0x2feefb(0x207)](_0x2feefb(0x1f6)),process[_0x2feefb(0x1c6)](0x0));_0x166152['installResources'][_0x2feefb(0x1dd)]===0x0&&(console[_0x2feefb(0x207)]('【Error】:[jjb.config.json.installResources]无资源。'),process[_0x2feefb(0x1c6)](0x0));const _0x51edff=exports[_0x2feefb(0x1c4)](_0x166152[_0x2feefb(0x1e7)]);return _0x51edff[_0x2feefb(0x205)](_0x4f3097=>_0x4f3097[_0x2feefb(0x1fc)])[_0x2feefb(0x1ee)](_0x5916a9=>![_0x2feefb(0x1c3),_0x2feefb(0x1e6),'jjb-common-lib',_0x2feefb(0x203),_0x2feefb(0x1db),_0x2feefb(0x206)][_0x2feefb(0x1cf)](_0x5916a9))[_0x2feefb(0x1dd)]!==0x0&&(console[_0x2feefb(0x207)](_0x2feefb(0x1cc)),process['exit'](0x0)),_0x166152[_0x2feefb(0x1e7)]=_0x51edff,_0x166152;},exports[a18_0x15085b(0x1fe)]=function(_0x344c4d,_0x58c1ab,_0x46a773){const _0x238db1=a18_0x15085b;fs[_0x238db1(0x1f0)](_0x344c4d+'\x5cpackage.json',_0x238db1(0x1df)+_0x58c1ab+_0x238db1(0x1ca)+_0x46a773+_0x238db1(0x1c1));},exports['f_resolve_install_resources']=function(_0x55b69b=[]){const _0xff085e=[];return Array['isArray'](_0x55b69b)&&_0x55b69b['forEach'](_0x429813=>{const _0x34aacd=a18_0x3584;if(Array[_0x34aacd(0x1ce)](_0x429813)){const [_0x34c9e5,_0x21bfc5=[]]=_0x429813;_0xff085e[_0x34aacd(0x1d6)]({'name':_0x34c9e5,'importList':_0x21bfc5});}else _0xff085e[_0x34aacd(0x1d6)]({'name':_0x429813,'importList':[]});}),_0xff085e;},exports[a18_0x15085b(0x1d7)]=function(_0x5251ec,_0x4154b7,_0x258472){const _0x55aa6a=a18_0x15085b,_0x1ce5d7=JSON[_0x55aa6a(0x20a)](fs['readFileSync'](_0x5251ec)['toString']());_0x1ce5d7[_0x55aa6a(0x201)][_0x4154b7]=_0x258472,fs[_0x55aa6a(0x1f0)](_0x5251ec,JSON[_0x55aa6a(0x1f8)](_0x1ce5d7,null,0x2));},exports[a18_0x15085b(0x1ef)]=function(_0x1ae1e7,_0x2b04ae){const _0x895640=a18_0x15085b;fs[_0x895640(0x1fb)](_0x1ae1e7)[_0x895640(0x1d5)](_0x339536=>{const _0x9a7ce3=_0x895640,_0x4ace5e=_0x1ae1e7+'\x5c'+_0x339536,_0x58f714=_0x2b04ae+'\x5c'+_0x339536;fs[_0x9a7ce3(0x1d3)](_0x4ace5e)[_0x9a7ce3(0x1f9)]()?(fs[_0x9a7ce3(0x1f4)](_0x58f714),exports[_0x9a7ce3(0x1ef)](_0x4ace5e,_0x58f714)):fs[_0x9a7ce3(0x1f0)](_0x58f714,fs[_0x9a7ce3(0x204)](_0x4ace5e)['toString']());});},exports[a18_0x15085b(0x1de)]=function(_0x4bcc2a=[],_0x243bf4){const _0x5b2e7a=a18_0x15085b;_0x4bcc2a[_0x5b2e7a(0x1d5)](_0x110512=>{const _0x14c4ed=_0x5b2e7a,_0xd3aad5=_0x243bf4+_0x110512[_0x14c4ed(0x1d8)];if(fs[_0x14c4ed(0x1ec)](_0xd3aad5)){let _0x1b2317=fs[_0x14c4ed(0x204)](_0xd3aad5)[_0x14c4ed(0x1ff)]();_0x110512[_0x14c4ed(0x1c7)][_0x14c4ed(0x1d5)](_0x52f556=>{const _0x2a168c=_0x14c4ed;_0x1b2317=_0x1b2317[_0x2a168c(0x1c7)](_0x52f556[0x0],_0x52f556[0x1]);}),fs['writeFileSync'](_0xd3aad5,_0x1b2317);}});};
|
package/src/old/cli.merge.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
const a19_0x3d8ce1=a19_0x18c3;(function(_0x1d7ecb,_0x32b92d){const _0x7634a5=a19_0x18c3,_0x4e0af3=_0x1d7ecb();while(!![]){try{const _0x79eafd=parseInt(_0x7634a5(0x180))/0x1+-parseInt(_0x7634a5(0x179))/0x2*(-parseInt(_0x7634a5(0x17f))/0x3)+-parseInt(_0x7634a5(0x175))/0x4*(-parseInt(_0x7634a5(0x16b))/0x5)+parseInt(_0x7634a5(0x178))/0x6+parseInt(_0x7634a5(0x16d))/0x7*(parseInt(_0x7634a5(0x183))/0x8)+-parseInt(_0x7634a5(0x165))/0x9+parseInt(_0x7634a5(0x164))/0xa*(-parseInt(_0x7634a5(0x16c))/0xb);if(_0x79eafd===_0x32b92d)break;else _0x4e0af3['push'](_0x4e0af3['shift']());}catch(_0x34016d){_0x4e0af3['push'](_0x4e0af3['shift']());}}}(a19_0x2ec7,0x44601));const fs=require('fs'),path=require(a19_0x3d8ce1(0x181)),utils=require('./util.js');let projectPath='',vesselPath='',commandArr=[];const fromFileData={},applicationJson={};function a19_0x18c3(_0x4d7238,_0x33b9fe){const _0x2ec7f1=a19_0x2ec7();return a19_0x18c3=function(_0x18c344,_0x5e3f6d){_0x18c344=_0x18c344-0x164;let _0x244e9f=_0x2ec7f1[_0x18c344];return _0x244e9f;},a19_0x18c3(_0x4d7238,_0x33b9fe);}function a19_0x2ec7(){const _0x2ec1e1=['15900Wgdviq','165CFtXnz','849695fLLafE','\x27,\x20component:\x20()\x20=>\x20import(\x27','DeepScanner','region','writeFileSync','forEach','\x27)\x20}','slice','204VUbdfb','push','from','1681470inxvwf','179966GOajLi','exports','length','CreatePaths','fileType','join','9LjuHxw','544009pkTdfC','path','then','8MwxLus','readFileSync','router','/application','470150BfblMq','3532302GwdtWc','resolve','concat','routerConfig','file','split'];a19_0x2ec7=function(){return _0x2ec1e1;};return a19_0x2ec7();}module[a19_0x3d8ce1(0x17a)]=(_0x85624e,_0x57045e)=>{const _0x5f1a14=a19_0x3d8ce1;commandArr=_0x85624e['split'](':'),projectPath=path[_0x5f1a14(0x166)]('./project'),vesselPath=path[_0x5f1a14(0x166)]('./vessel/src');let _0x2e74ac=vesselPath;_0x57045e==='mp'&&(_0x2e74ac=vesselPath+_0x5f1a14(0x186),utils['CreatePaths'](vesselPath,['application']));const _0x461567=commandArr[0x1],_0xeb8654=JSON['parse'](fs[_0x5f1a14(0x184)](projectPath+'/'+_0x461567+'/setting.json')['toString']());TileItems(_0xeb8654['items'],()=>{const _0x41eb48=_0x5f1a14;fromFileData[_0x41eb48(0x185)]['forEach'](_0x2bb778=>{const _0x4ca971=_0x41eb48,_0x263ce9=_0x2bb778['pathAdr'][_0x4ca971(0x16a)](_0x2bb778['region']),_0x116803=_0x263ce9[0x1]['split']('/'),_0x14aba9=_0x116803[0x1];!applicationJson[_0x14aba9]&&(applicationJson[_0x14aba9]={'routerConfig':[],'routerPath':[]});applicationJson[_0x14aba9][_0x4ca971(0x168)][_0x4ca971(0x176)]('{\x20path:\x20\x27'+_0x2bb778[_0x4ca971(0x181)]+_0x4ca971(0x16e)+_0x2bb778['file']+_0x4ca971(0x173)),applicationJson[_0x14aba9]['routerPath'][_0x4ca971(0x176)](_0x2bb778[_0x4ca971(0x181)]);let _0x5bbd63=_0x116803[_0x4ca971(0x17e)]('/');const _0x55ed55=_0x5bbd63[_0x4ca971(0x16a)]('/');utils[_0x4ca971(0x17c)](_0x2e74ac,_0x55ed55[_0x4ca971(0x174)](0x0,_0x55ed55[_0x4ca971(0x17b)]-0x1))[_0x4ca971(0x182)](()=>{const _0x138ad8=_0x4ca971,_0x139937=fs[_0x138ad8(0x184)](_0x2bb778['pathAdr'])['toString']();fs[_0x138ad8(0x171)](vesselPath+'/'+_0x5bbd63,_0x139937);});});});};function TileItems(_0x312bba,_0x5cc360){const _0x1728c5=a19_0x3d8ce1;_0x312bba[_0x1728c5(0x172)]((_0x4bcc20,_0x3b8572)=>{const _0x3c8f5a=_0x1728c5,_0x5bdf5a=_0x4bcc20[_0x3c8f5a(0x170)];_0x4bcc20[_0x3c8f5a(0x177)][_0x3c8f5a(0x172)]((_0x13b6dd,_0x5f3b0d)=>{const _0x904d85=_0x3c8f5a,_0xbc7ffb=[];utils[_0x904d85(0x16f)](projectPath+'/'+_0x5bdf5a+'/'+_0x13b6dd[_0x904d85(0x169)],_0xbc7ffb);const _0x25ca30=_0xbc7ffb['map'](_0x18be6c=>({'region':_0x5bdf5a,'pathAdr':_0x18be6c,..._0x13b6dd}));!fromFileData[_0x13b6dd[_0x904d85(0x17d)]]?fromFileData[_0x13b6dd['fileType']]=_0x25ca30:fromFileData[_0x13b6dd[_0x904d85(0x17d)]]=fromFileData[_0x13b6dd[_0x904d85(0x17d)]][_0x904d85(0x167)](_0x25ca30),_0x3b8572===_0x312bba[_0x904d85(0x17b)]-0x1&&_0x5f3b0d===_0x4bcc20['from'][_0x904d85(0x17b)]-0x1&&_0x5cc360();});});}
|
package/src/old/cli.pull.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
'use strict';const a20_0x427724=a20_0x1163;function a20_0x31f5(){const _0x14e170=['50WslhBe','tmpdir','.zip','common\x5cdva\x5cautomatic\x5cindex.js','return\x20__planA();','/api/v4/projects/','4CbDVyC','1675908FdgdvI','96659OxCRPQ','existsSync','【Error】:\x20未获取到项目\x20','resolve','&ref=master','7878906oiGqtl','common\x5cwebsite\x5cindex.js','readdirSync','return\x20process.env;','exports','replace','\x5ccommon\x5cdva\x5cautomatic\x5cregister.js','-文件下载完毕','unlinkSync','\x5csrc','5yMLCYO','jjbAssembly','projectId','writeFileSync','pipe','3593313lilAGw','FT3pKzxpRynFkmddJ9Bs','DeleteDirAllFile','forEach','token','common\x5cdva\x5cautomatic','components','6248328nUKvLu','common','common\x5ctools\x5cindex.js','432404popbUZ','common\x5cdva\x5cautomatic\x5c','error','G4HJRsHr9D7Ssmixegw2','mkdirSync','compressing','exists','statSync','7560858kpWGwC','uncompress','toString','zip','readFileSync','\x5ccommon\x5cdva\x5cautomatic\x5crouter.js','/repository/archive.zip?private_token=','createWriteStream','rmdirSync'];a20_0x31f5=function(){return _0x14e170;};return a20_0x31f5();}(function(_0x4d45c9,_0x449f6f){const _0xba5114=a20_0x1163,_0x2d9693=_0x4d45c9();while(!![]){try{const _0x4b6023=-parseInt(_0xba5114(0x212))/0x1*(-parseInt(_0xba5114(0x210))/0x2)+-parseInt(_0xba5114(0x211))/0x3+-parseInt(_0xba5114(0x1f9))/0x4+-parseInt(_0xba5114(0x1ea))/0x5*(-parseInt(_0xba5114(0x201))/0x6)+parseInt(_0xba5114(0x217))/0x7+parseInt(_0xba5114(0x1f6))/0x8+-parseInt(_0xba5114(0x1ef))/0x9*(parseInt(_0xba5114(0x20a))/0xa);if(_0x4b6023===_0x449f6f)break;else _0x2d9693['push'](_0x2d9693['shift']());}catch(_0x520491){_0x2d9693['push'](_0x2d9693['shift']());}}}(a20_0x31f5,0xaa2ce));const fs=require('fs'),os=require('os'),path=require('path'),utils=require('./util'),request=require('request'),compressing=require(a20_0x427724(0x1fe)),GIT_TEMP_DIR=a20_0x427724(0x1eb),GIT_HOST='http://192.168.1.242:10985',CLOUD_PROJECT={'common':{'token':a20_0x427724(0x1fc),'projectId':0x117,'localName':a20_0x427724(0x1f7)},'react-admin-component':{'token':a20_0x427724(0x1f0),'projectId':0x154,'localName':a20_0x427724(0x1f5)}};function a20_0x1163(_0x56a543,_0x124c3d){const _0x31f5d6=a20_0x31f5();return a20_0x1163=function(_0x11635a,_0x139208){_0x11635a=_0x11635a-0x1e4;let _0x19e0b1=_0x31f5d6[_0x11635a];return _0x19e0b1;},a20_0x1163(_0x56a543,_0x124c3d);}module[a20_0x427724(0x1e4)]=_0xa21a18=>{const _0x5cd921=a20_0x427724,_0x7a96bc=_0xa21a18,_0x2ba095=path[_0x5cd921(0x215)]('./');try{if(fs[_0x5cd921(0x200)](_0x2ba095+_0x5cd921(0x1e9))){const _0x34cf81=_0x2ba095+_0x5cd921(0x1e9),_0x21deaa=CLOUD_PROJECT[_0x7a96bc]||undefined;if(_0x21deaa){const _0x2824aa=os[_0x5cd921(0x20b)](),_0x163cd6=_0x2824aa+('/'+GIT_TEMP_DIR+'/'+_0x7a96bc+_0x5cd921(0x20c)),_0x9b55eb=_0x2824aa+'/'+GIT_TEMP_DIR+'/unzip/';utils[_0x5cd921(0x1f1)](_0x2824aa+'/'+GIT_TEMP_DIR,()=>{const _0x16e548=_0x5cd921;fs[_0x16e548(0x1fd)](_0x2824aa+'/'+GIT_TEMP_DIR);let _0x531b6a=fs[_0x16e548(0x208)](_0x163cd6);request(GIT_HOST+_0x16e548(0x20f)+_0x21deaa[_0x16e548(0x1ec)]+_0x16e548(0x207)+_0x21deaa[_0x16e548(0x1f3)]+_0x16e548(0x216))[_0x16e548(0x1ee)](_0x531b6a)['on']('close',()=>{const _0x9852bd=_0x16e548;fs[_0x9852bd(0x1fd)](_0x9b55eb),compressing[_0x9852bd(0x204)][_0x9852bd(0x202)](_0x163cd6,_0x9b55eb)['then'](()=>{setTimeout(()=>{const _0x5ca598=a20_0x1163,_0x10c6f8=fs['readdirSync'](_0x9b55eb);_0x10c6f8[_0x5ca598(0x1f2)](_0x5b479c=>{const _0x3f0644=_0x5ca598;if(_0x5b479c['indexOf']('-master-')!==-0x1){const _0x2a8896=_0x34cf81+'\x5c'+_0x21deaa['localName'];utils[_0x3f0644(0x1f1)](_0x2a8896,()=>{fs['mkdirSync'](_0x2a8896),utils['CopyFolder'](_0x9b55eb+_0x5b479c,_0x2a8896),setTimeout(()=>{const _0x31450d=a20_0x1163,_0x4cd704=fs[_0x31450d(0x213)](_0x34cf81+'\x5c'+'application');if(!_0x4cd704){const _0x5c3072=_0x34cf81+'\x5c'+_0x31450d(0x1f8),_0x1f479f=_0x34cf81+'\x5c'+_0x31450d(0x218);let _0x2d92c9=fs[_0x31450d(0x205)](_0x5c3072)[_0x31450d(0x203)](),_0x1afbde=fs[_0x31450d(0x205)](_0x1f479f)[_0x31450d(0x203)]();_0x2d92c9=_0x2d92c9[_0x31450d(0x1e5)](_0x31450d(0x20e),_0x31450d(0x21a)),_0x1afbde=_0x1afbde['replace'](/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,'const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;'),fs['writeFileSync'](_0x5c3072,_0x2d92c9),fs[_0x31450d(0x1ed)](_0x1f479f,_0x1afbde),fs[_0x31450d(0x1ed)](_0x34cf81+_0x31450d(0x206),fs[_0x31450d(0x205)](__dirname+'\x5ccli.dva.router.spa.txt')[_0x31450d(0x203)]()),fs[_0x31450d(0x1ed)](_0x34cf81+_0x31450d(0x1e6),fs[_0x31450d(0x205)](__dirname+'\x5ccli.dva.register.spa.txt')[_0x31450d(0x203)]());}else fs[_0x31450d(0x1ff)](_0x34cf81+'\x5c'+_0x31450d(0x20d),_0x3bb961=>{const _0x360e13=_0x31450d;_0x3bb961&&(fs[_0x360e13(0x219)](_0x34cf81+'\x5c'+_0x360e13(0x1f4))[_0x360e13(0x1f2)](_0x5bf07e=>{const _0x542cd8=_0x360e13;fs[_0x542cd8(0x1e8)](_0x34cf81+'\x5c'+_0x542cd8(0x1fa)+_0x5bf07e);}),fs[_0x360e13(0x209)](_0x34cf81+'\x5c'+_0x360e13(0x1f4)));});},0x3e8);});}}),console['log'](_0x7a96bc+_0x5ca598(0x1e7));},0x7d0);});});});}else console[_0x5cd921(0x1fb)](_0x5cd921(0x214)+_0x7a96bc);}}catch(_0x3acaec){console['error']('【Error】:\x20当前目录不存在src子目录,无法完成pull操作。');}};
|
package/src/old/cli.pull2.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
'use strict';const a21_0x42e46b=a21_0x5dd6;(function(_0x42ed7b,_0xbb5305){const _0x1914a2=a21_0x5dd6,_0x1ffcfd=_0x42ed7b();while(!![]){try{const _0x428d5f=parseInt(_0x1914a2(0x22d))/0x1*(parseInt(_0x1914a2(0x1fc))/0x2)+-parseInt(_0x1914a2(0x222))/0x3*(parseInt(_0x1914a2(0x205))/0x4)+-parseInt(_0x1914a2(0x233))/0x5+-parseInt(_0x1914a2(0x23a))/0x6+-parseInt(_0x1914a2(0x232))/0x7+parseInt(_0x1914a2(0x200))/0x8+-parseInt(_0x1914a2(0x20e))/0x9*(-parseInt(_0x1914a2(0x22f))/0xa);if(_0x428d5f===_0xbb5305)break;else _0x1ffcfd['push'](_0x1ffcfd['shift']());}catch(_0x47685b){_0x1ffcfd['push'](_0x1ffcfd['shift']());}}}(a21_0x1a20,0x36bc5));function a21_0x1a20(){const _0x3a5eb3=['toString','request','\x5cdva\x5cautomatic','random','【Error】:\x20未获取到项目\x20','148690lIoGLM','unlinkSync','forEach','substr','1440048pidYkR','\x5ccli.dva.router.saas.txt','statSync','close','dependencies','92RBOIJM','compressing','common/website','\x22,\x22version\x22:\x22','common/color','【已安装】:','\x5cpackage.json','exports','stringify','9mulIGD','common/http','.zip','readdirSync','\x5cPageHeaderBar\x5cindex.js','jjb-common/color','then','micro-spa','existsSync','length','/repository/archive.zip?private_token=','resolve','\x5cEditor\x5cindex.js','mkdirSync','replace','CopyFolder','readFileSync','\x5ccli.dva.register.saas.txt','spa','FT3pKzxpRynFkmddJ9Bs','33795IEccaZ','common/tools','error','parse','return\x20__planA();','\x5cdva\x5cautomatic\x5crouter.js','jjb-common/http','DeleteDirAllFile','createWriteStream','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','/unzip/','1BGMSMJ','components','8920770WkdmUW','uncompress','\x5cRouterMenu\x5cindex.js','528822GsDjhj','1352925CCQWbz','projectType','return\x20process.env;','isDirectory','http://192.168.1.242:10985','\x5cnode_modules\x5cjjb-','react-admin-component','1902030aFoqlS','path','common/crypto','jjb-common/tools','jjb-common/website','\x22,\x22main\x22:\x20\x22index.js\x22}','\x5ctools\x5cindex.js','return\x20process.env.app;','jjb-react-admin-component','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','template_','rmdirSync','jjbAssembly','jjb-common/crypto','./util','\x5ccli.dva.register.spa.txt','\x5c.gitignore','common','/api/v4/projects/','log','writeFileSync','【Error】:\x20当前目录不存在src子目录,无法完成pull操作。','\x5cdva\x5cautomatic\x5cregister.js','\x5cRouterContainer\x5cindex.js'];a21_0x1a20=function(){return _0x3a5eb3;};return a21_0x1a20();}const fs=require('fs'),os=require('os'),path=require(a21_0x42e46b(0x23b)),utils=require(a21_0x42e46b(0x1ed)),request=require(a21_0x42e46b(0x1f8)),compressing=require(a21_0x42e46b(0x206)),GIT_HOST=a21_0x42e46b(0x237),GIT_TEMP_DIR=a21_0x42e46b(0x246),CLOUD_PROJECT={'common':{'token':'G4HJRsHr9D7Ssmixegw2','projectId':0x117,'localName':'common'},'react-admin-component':{'token':a21_0x42e46b(0x221),'projectId':0x154,'localName':a21_0x42e46b(0x22e)}},COMMON_CONTENT_NOR_REPLACE=[{'path':a21_0x42e46b(0x240),'replace':[[a21_0x42e46b(0x22e),a21_0x42e46b(0x242)]]},{'path':'\x5cwebsite\x5cindex.js','replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a21_0x42e46b(0x22b)],['components',a21_0x42e46b(0x242)]]}],COMMON_CONTENT_SPA_REPLACE=[{'path':a21_0x42e46b(0x240),'replace':[['return\x20__planA();',a21_0x42e46b(0x235)]]}],COMMON_CONTENT_MICRO_REPLACE=[{'path':a21_0x42e46b(0x240),'replace':[[a21_0x42e46b(0x226),a21_0x42e46b(0x241)]]}],COMPONENTS_CONTENT_REPLACE=[{'path':a21_0x42e46b(0x21a),'replace':[['common/http',a21_0x42e46b(0x228)],[a21_0x42e46b(0x23c),a21_0x42e46b(0x1ec)],[a21_0x42e46b(0x223),a21_0x42e46b(0x23d)]]},{'path':'\x5cRejectText\x5cindex.js','replace':[[a21_0x42e46b(0x209),a21_0x42e46b(0x213)]]},{'path':a21_0x42e46b(0x231),'replace':[[a21_0x42e46b(0x223),'jjb-common/tools']]},{'path':'\x5cFileUploader\x5cindex.js','replace':[[a21_0x42e46b(0x20f),a21_0x42e46b(0x228)],['common/tools',a21_0x42e46b(0x23d)]]},{'path':'\x5cImageCropper\x5cindex.js','replace':[[a21_0x42e46b(0x20f),a21_0x42e46b(0x228)],[a21_0x42e46b(0x223),a21_0x42e46b(0x23d)]]},{'path':'\x5cImageUploader\x5cindex.js','replace':[[a21_0x42e46b(0x20f),a21_0x42e46b(0x228)],[a21_0x42e46b(0x223),a21_0x42e46b(0x23d)]]},{'path':a21_0x42e46b(0x212),'replace':[['common/color',a21_0x42e46b(0x213)]]},{'path':a21_0x42e46b(0x1f6),'replace':[['common/tools',a21_0x42e46b(0x23d)]]},{'path':a21_0x42e46b(0x243),'replace':[[a21_0x42e46b(0x207),a21_0x42e46b(0x23e)],[a21_0x42e46b(0x223),a21_0x42e46b(0x23d)]]}];function uid(){const _0x1565d1=a21_0x42e46b;return Math[_0x1565d1(0x1fa)]()[_0x1565d1(0x1f7)]()[_0x1565d1(0x1ff)](0x2);}module[a21_0x42e46b(0x20c)]=_0x231344=>{const _0x337041=a21_0x42e46b,_0x269e02=path[_0x337041(0x219)]('./'),_0x4a9c53='jjb-'+_0x231344,_0x40d76b='1.0.0',_0x402a40=_0x269e02+'\x5csrc',_0x7d3c2f=_0x337041(0x244)+uid(),_0x162923=__dirname+'\x5c'+_0x7d3c2f,_0x4d241b=_0x269e02+'\x5cpackage.json',_0x126853=_0x269e02+_0x337041(0x238)+_0x231344;try{if(fs['existsSync'](_0x402a40)){const _0x29a789=CLOUD_PROJECT[_0x231344]||undefined;if(_0x29a789){const _0x59e6c0=os['tmpdir'](),_0x516c92=_0x59e6c0+'/'+GIT_TEMP_DIR+'/'+_0x231344+_0x337041(0x210),_0x5ea4b1=_0x59e6c0+'/'+GIT_TEMP_DIR+_0x337041(0x22c);utils[_0x337041(0x229)](_0x59e6c0+'/'+GIT_TEMP_DIR,()=>{const _0x52f247=_0x337041;fs[_0x52f247(0x21b)](_0x59e6c0+'/'+GIT_TEMP_DIR);const _0x9143ee=fs[_0x52f247(0x22a)](_0x516c92);request(GIT_HOST+_0x52f247(0x1f1)+_0x29a789['projectId']+_0x52f247(0x218)+_0x29a789['token']+'&ref=master')['pipe'](_0x9143ee)['on'](_0x52f247(0x203),()=>{const _0x5d357e=_0x52f247;fs[_0x5d357e(0x21b)](_0x5ea4b1),compressing['zip'][_0x5d357e(0x230)](_0x516c92,_0x5ea4b1)[_0x5d357e(0x214)](()=>{setTimeout(()=>{const _0x3134d6=a21_0x5dd6;fs[_0x3134d6(0x211)](_0x5ea4b1)[_0x3134d6(0x1fe)](_0x30fad0=>{_0x30fad0['indexOf']('-master-')!==-0x1&&utils['DeleteDirAllFile'](_0x402a40+'\x5c'+_0x29a789['localName'],()=>{const _0x52dc39=a21_0x5dd6;fs[_0x52dc39(0x21b)](_0x162923),utils[_0x52dc39(0x21d)](_0x5ea4b1+_0x30fad0,_0x162923),setTimeout(()=>{const _0x38926d=_0x52dc39;if(_0x231344===_0x38926d(0x1f0)){const _0x5b8f20=fs['existsSync'](_0x402a40+'\x5capplication');if(_0x5b8f20)rm_rf(_0x162923+_0x38926d(0x1f9)),fs[_0x38926d(0x245)](_0x162923+_0x38926d(0x1f9));else{if(get_project_type(_0x4d241b)===_0x38926d(0x220))content_replace(COMMON_CONTENT_SPA_REPLACE,_0x162923),fs[_0x38926d(0x1f3)](_0x162923+_0x38926d(0x227),fs[_0x38926d(0x21e)](__dirname+'\x5ccli.dva.router.spa.txt')['toString']()),fs[_0x38926d(0x1f3)](_0x162923+_0x38926d(0x1f5),fs[_0x38926d(0x21e)](__dirname+_0x38926d(0x1ee))['toString']());else get_project_type(_0x4d241b)===_0x38926d(0x215)&&(content_replace(COMMON_CONTENT_MICRO_REPLACE,_0x162923),fs[_0x38926d(0x1f3)](_0x162923+_0x38926d(0x227),fs[_0x38926d(0x21e)](__dirname+_0x38926d(0x201))[_0x38926d(0x1f7)]()),fs['writeFileSync'](_0x162923+'\x5cdva\x5cautomatic\x5cregister.js',fs[_0x38926d(0x21e)](__dirname+_0x38926d(0x21f))[_0x38926d(0x1f7)]()));}content_replace(COMMON_CONTENT_NOR_REPLACE,_0x162923);}_0x231344===_0x38926d(0x239)&&content_replace(COMPONENTS_CONTENT_REPLACE,_0x162923),rm_rf(_0x162923+'\x5c.idea'),fs['existsSync'](_0x162923+'\x5c.idea')&&fs['rmdirSync'](_0x162923+'\x5c.idea'),fs[_0x38926d(0x216)](_0x162923+_0x38926d(0x1ef))&&fs['unlinkSync'](_0x162923+'\x5c.gitignore'),!fs[_0x38926d(0x216)](_0x126853)?fs[_0x38926d(0x21b)](_0x126853):rm_rf(_0x126853),utils[_0x38926d(0x21d)](_0x162923,_0x126853,()=>{const _0xd290ab=_0x38926d;rm_rf(_0x162923),fs[_0xd290ab(0x245)](_0x162923),create_package_json(_0x126853,_0x4a9c53,_0x40d76b),update_project_package_json(_0x4d241b,_0x4a9c53,_0x40d76b),console[_0xd290ab(0x1f2)](_0xd290ab(0x20a)+_0x4a9c53+'\x20v'+_0x40d76b);});},0x3e8);});});},0x7d0);});});});}else console['error'](_0x337041(0x1fb)+_0x231344);}}catch(_0x22d5f0){console[_0x337041(0x224)](_0x337041(0x1f4));}};function a21_0x5dd6(_0x3c6380,_0x148034){const _0x1a20a3=a21_0x1a20();return a21_0x5dd6=function(_0x5dd6a0,_0x1da21a){_0x5dd6a0=_0x5dd6a0-0x1ec;let _0x103057=_0x1a20a3[_0x5dd6a0];return _0x103057;},a21_0x5dd6(_0x3c6380,_0x148034);}function rm_rf(_0x1caa7f){const _0x15d335=a21_0x42e46b;if(fs[_0x15d335(0x216)](_0x1caa7f)){const _0x5de48e=fs[_0x15d335(0x211)](_0x1caa7f);for(let _0x1c721b=0x0;_0x1c721b<_0x5de48e[_0x15d335(0x217)];_0x1c721b++){const _0xb29fb4=_0x5de48e[_0x1c721b],_0x525597=_0x1caa7f+'/'+_0xb29fb4;fs[_0x15d335(0x202)](_0x525597)[_0x15d335(0x236)]()?(rm_rf(_0x525597),fs[_0x15d335(0x245)](_0x525597)):fs[_0x15d335(0x1fd)](_0x525597);}}}function create_package_json(_0x2858f8,_0x273883,_0xd47c83){const _0x314340=a21_0x42e46b;fs['writeFileSync'](_0x2858f8+_0x314340(0x20b),'{\x22name\x22:\x22'+_0x273883+_0x314340(0x208)+_0xd47c83+_0x314340(0x23f));}function get_project_type(_0x5d2190){const _0x14bc2a=a21_0x42e46b,_0x1d1657=JSON[_0x14bc2a(0x225)](fs[_0x14bc2a(0x21e)](_0x5d2190)['toString']());return _0x1d1657[_0x14bc2a(0x234)];}function update_project_package_json(_0x19db5b,_0x269784,_0x2944b6){const _0x2f199e=a21_0x42e46b,_0x50120a=JSON['parse'](fs['readFileSync'](_0x19db5b)[_0x2f199e(0x1f7)]());_0x50120a[_0x2f199e(0x204)][_0x269784]=_0x2944b6,fs[_0x2f199e(0x1f3)](_0x19db5b,JSON[_0x2f199e(0x20d)](_0x50120a,null,0x2));}function content_replace(_0x2a6dce=[],_0x15eeaf){const _0x191c5b=a21_0x42e46b;_0x2a6dce[_0x191c5b(0x1fe)](_0x44d636=>{const _0x5cc1f2=_0x191c5b,_0x1b76ae=_0x15eeaf+_0x44d636[_0x5cc1f2(0x23b)];if(fs[_0x5cc1f2(0x216)](_0x1b76ae)){let _0x2305e6=fs[_0x5cc1f2(0x21e)](_0x1b76ae)['toString']();_0x44d636[_0x5cc1f2(0x21c)][_0x5cc1f2(0x1fe)](_0x13b9b6=>{const _0x59b13b=_0x5cc1f2;_0x2305e6=_0x2305e6[_0x59b13b(0x21c)](_0x13b9b6[0x0],_0x13b9b6[0x1]);}),fs['writeFileSync'](_0x1b76ae,_0x2305e6);}});}
|
package/src/old/cli.rm-rf.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
const a22_0x3a43a7=a22_0x132b;(function(_0x169482,_0x30efae){const _0x142fa2=a22_0x132b,_0x1ae882=_0x169482();while(!![]){try{const _0x7d2186=-parseInt(_0x142fa2(0x1b8))/0x1+parseInt(_0x142fa2(0x1c7))/0x2*(parseInt(_0x142fa2(0x1c2))/0x3)+parseInt(_0x142fa2(0x1d3))/0x4+-parseInt(_0x142fa2(0x1bd))/0x5+parseInt(_0x142fa2(0x1c3))/0x6+-parseInt(_0x142fa2(0x1c0))/0x7+parseInt(_0x142fa2(0x1d0))/0x8*(parseInt(_0x142fa2(0x1c1))/0x9);if(_0x7d2186===_0x30efae)break;else _0x1ae882['push'](_0x1ae882['shift']());}catch(_0x186afe){_0x1ae882['push'](_0x1ae882['shift']());}}}(a22_0x56f5,0xaaa52));const fs=require('fs'),path=require('path'),readline=require('readline'),ProgressBar=require(a22_0x3a43a7(0x1ba)),io=readline[a22_0x3a43a7(0x1ca)]({'input':process[a22_0x3a43a7(0x1ce)],'output':process[a22_0x3a43a7(0x1c6)]}),progress=new ProgressBar(a22_0x3a43a7(0x1c4),0x32);let f_total=0x0,f_number=0x0;module[a22_0x3a43a7(0x1c8)]=function(){const _0x1206e2=a22_0x3a43a7,_0x5dc2f6=path[_0x1206e2(0x1d1)]('./');io[_0x1206e2(0x1be)](_0x1206e2(0x1bc),function(_0x509f95){const _0x5478f1=_0x1206e2;if(_0x509f95[_0x5478f1(0x1cf)]()==='y')console['log'](_0x5478f1(0x1d2)),setTimeout(()=>{setTimeout(()=>{const _0x4edea7=a22_0x132b;console[_0x4edea7(0x1cc)](),exec(_0x5dc2f6),setTimeout(()=>{const _0x4c1f70=_0x4edea7;console[_0x4c1f70(0x1bb)](_0x4c1f70(0x1cd)),console[_0x4c1f70(0x1cc)](),process[_0x4c1f70(0x1cb)](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x509f95[_0x5478f1(0x1cf)]()==='n'?(console[_0x5478f1(0x1bb)](_0x5478f1(0x1b6)),process['exit'](0x0)):(console[_0x5478f1(0x1bb)]('无效操作。'),process[_0x5478f1(0x1cb)](0x0));});};function a22_0x132b(_0x29cc34,_0x2c3783){const _0x56f5fe=a22_0x56f5();return a22_0x132b=function(_0x132b7c,_0x5092de){_0x132b7c=_0x132b7c-0x1b5;let _0x1f387a=_0x56f5fe[_0x132b7c];return _0x1f387a;},a22_0x132b(_0x29cc34,_0x2c3783);}function a22_0x56f5(){const _0x1139f9=['取消删除。','unlinkSync','1120119ScTecF','existsSync','./progress-bar','log','是否确认删除?删除后不可恢复![y/n]:','5154845ytfUVe','question','statSync','6991565AJfARs','4830939dmOBXk','168621Cqusfd','5086080eTzBCG','删除进度','readdirSync','stdout','4SYcPag','exports','length','createInterface','exit','clear','删除完成。','stdin','trim','32LYqOyr','resolve','正在计算项目数,请稍等...','2966668JWioQc','删除文件:'];a22_0x56f5=function(){return _0x1139f9;};return a22_0x56f5();}function exec(_0x35ff8f){const _0x54f5b1=a22_0x3a43a7;if(fs[_0x54f5b1(0x1b9)](_0x35ff8f)){const _0x35ab35=fs[_0x54f5b1(0x1c5)](_0x35ff8f);for(let _0x19adf=0x0;_0x19adf<_0x35ab35['length'];_0x19adf++){const _0x28b3f2=_0x35ab35[_0x19adf],_0x4fec87=_0x35ff8f+'/'+_0x28b3f2;try{fs[_0x54f5b1(0x1bf)](_0x4fec87)['isDirectory']()?(exec(_0x4fec87),fs['rmdirSync'](_0x4fec87,{'recursive':!![]}),console[_0x54f5b1(0x1bb)]('删除文件夹:'+_0x4fec87)):(fs[_0x54f5b1(0x1b7)](_0x4fec87),console['log'](_0x54f5b1(0x1b5)+_0x4fec87));}catch(_0x28ae01){console[_0x54f5b1(0x1bb)]('删除异常:'+_0x4fec87);}}}}function scanner(_0x3c9040){const _0x4a59d5=a22_0x3a43a7;if(fs[_0x4a59d5(0x1b9)](_0x3c9040)){const _0x30fb21=fs[_0x4a59d5(0x1c5)](_0x3c9040);for(let _0x3fad61=0x0;_0x3fad61<_0x30fb21[_0x4a59d5(0x1c9)];_0x3fad61++){const _0x14a157=_0x30fb21[_0x3fad61],_0x132503=_0x3c9040+'/'+_0x14a157;try{fs[_0x4a59d5(0x1bf)](_0x132503)['isDirectory']()?(scanner(_0x132503),f_total=f_total+0x1):f_total=f_total+0x1;}catch(_0x12bd5){}}}}
|
package/src/old/progress-bar.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
function a23_0x5336(){const _0x4a6ba7=['render','description','138870FOpiRy','345642ECZyro','84jLaeqn','completed','11mpNofi','279008VnwEES','exports','stdout','8MNzwWf','total','floor','length','61657dCEebQ','792ORJOzE','1570948iXRWxT','21BLEJyg','3190dxBMyz','89772eLoLzg'];a23_0x5336=function(){return _0x4a6ba7;};return a23_0x5336();}const a23_0x5e62ee=a23_0x3691;(function(_0x4ac928,_0x2079d4){const _0x2d45e3=a23_0x3691,_0x429859=_0x4ac928();while(!![]){try{const _0x1562d3=parseInt(_0x2d45e3(0x138))/0x1+parseInt(_0x2d45e3(0x148))/0x2*(-parseInt(_0x2d45e3(0x141))/0x3)+parseInt(_0x2d45e3(0x13a))/0x4+parseInt(_0x2d45e3(0x140))/0x5*(parseInt(_0x2d45e3(0x142))/0x6)+parseInt(_0x2d45e3(0x13b))/0x7*(-parseInt(_0x2d45e3(0x145))/0x8)+parseInt(_0x2d45e3(0x139))/0x9*(-parseInt(_0x2d45e3(0x13c))/0xa)+-parseInt(_0x2d45e3(0x144))/0xb*(parseInt(_0x2d45e3(0x13d))/0xc);if(_0x1562d3===_0x2079d4)break;else _0x429859['push'](_0x429859['shift']());}catch(_0x3b42cc){_0x429859['push'](_0x429859['shift']());}}}(a23_0x5336,0x3b211));const slog=require('single-line-log')[a23_0x5e62ee(0x147)];function ProgressBar(_0x5eeb18,_0x4fca82){const _0x19acf5=a23_0x5e62ee;this[_0x19acf5(0x13f)]=_0x5eeb18||'Progress',this[_0x19acf5(0x137)]=_0x4fca82||0x19,this[_0x19acf5(0x13e)]=function(_0x1e94e9){const _0x201dda=_0x19acf5;let _0x30cb65;const _0x305db3=(_0x1e94e9[_0x201dda(0x143)]/_0x1e94e9[_0x201dda(0x135)])['toFixed'](0x4),_0x384184=Math[_0x201dda(0x136)](_0x305db3*this[_0x201dda(0x137)]);let _0x567347='';for(_0x30cb65=0x0;_0x30cb65<_0x384184;_0x30cb65++){_0x567347+='█';}let _0x5a8fd5='';for(_0x30cb65=0x0;_0x30cb65<this[_0x201dda(0x137)]-_0x384184;_0x30cb65++){_0x5a8fd5+='░';}const _0x2f741c=this['description']+':\x20'+(0x64*_0x305db3)['toFixed'](0x2)+'%\x20'+_0x567347+_0x5a8fd5+'\x20'+_0x1e94e9[_0x201dda(0x143)]+'/'+_0x1e94e9[_0x201dda(0x135)];slog(_0x2f741c);};}function a23_0x3691(_0x1ca4c3,_0x5c3e0a){const _0x5336b9=a23_0x5336();return a23_0x3691=function(_0x3691f9,_0x5adb98){_0x3691f9=_0x3691f9-0x135;let _0x4a21ad=_0x5336b9[_0x3691f9];return _0x4a21ad;},a23_0x3691(_0x1ca4c3,_0x5c3e0a);}module[a23_0x5e62ee(0x146)]=ProgressBar;
|
package/src/old/util.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
'use strict';function a24_0x2a4a(_0x1ef371,_0x901aa2){const _0x1954e1=a24_0x1954();return a24_0x2a4a=function(_0x2a4a0b,_0xa238c8){_0x2a4a0b=_0x2a4a0b-0xc2;let _0x3ddf0c=_0x1954e1[_0x2a4a0b];return _0x3ddf0c;},a24_0x2a4a(_0x1ef371,_0x901aa2);}const a24_0x429fba=a24_0x2a4a;(function(_0x308aba,_0x31a93a){const _0x2fee4e=a24_0x2a4a,_0x1b6068=_0x308aba();while(!![]){try{const _0xee0afc=-parseInt(_0x2fee4e(0xd7))/0x1*(-parseInt(_0x2fee4e(0xe3))/0x2)+parseInt(_0x2fee4e(0xe2))/0x3*(parseInt(_0x2fee4e(0xc3))/0x4)+parseInt(_0x2fee4e(0xcd))/0x5+-parseInt(_0x2fee4e(0xda))/0x6*(-parseInt(_0x2fee4e(0xe4))/0x7)+-parseInt(_0x2fee4e(0xd4))/0x8+parseInt(_0x2fee4e(0xc5))/0x9*(-parseInt(_0x2fee4e(0xd5))/0xa)+-parseInt(_0x2fee4e(0xc4))/0xb*(-parseInt(_0x2fee4e(0xd9))/0xc);if(_0xee0afc===_0x31a93a)break;else _0x1b6068['push'](_0x1b6068['shift']());}catch(_0x54fee9){_0x1b6068['push'](_0x1b6068['shift']());}}}(a24_0x1954,0xde1c1));function a24_0x1954(){const _0x391eaa=['105903aZTLPn','CopyFile','DeleteDirAllFile','DeepScanner','statSync','join','pipe','mkdirSync','5557560sdIqTN','push','existsSync','isDirectory','write\x20error','readdir','log','12013064PjpUJO','1480vTCSdl','readdirSync','643819tpzZQm','createReadStream','2249004tPdAPP','23766TvgZnj','CopyFolder','forEach','rmdirSync','error','length','CreatePaths','stat','23649YfKOCH','2knTmPV','3101ntwRNp','read\x20error','path','unlinkSync','136TsVEmR','22fIhHMS'];a24_0x1954=function(){return _0x391eaa;};return a24_0x1954();}const fs=require('fs'),path=require(a24_0x429fba(0xe6));exports[a24_0x429fba(0xc7)]=(_0x39eaa3,_0x500eeb)=>{const _0x3497cf=a24_0x429fba;let _0x2ffb25=[];const _0x3bc425=this;fs[_0x3497cf(0xcf)](_0x39eaa3)?(_0x2ffb25=fs[_0x3497cf(0xd6)](_0x39eaa3),_0x2ffb25[_0x3497cf(0xdc)](function(_0x1430f4,_0x4b49aa){const _0x1fbbab=_0x3497cf;let _0x4814df=_0x39eaa3+'/'+_0x1430f4;fs[_0x1fbbab(0xc9)](_0x4814df)[_0x1fbbab(0xd0)]()?_0x3bc425[_0x1fbbab(0xc7)](_0x4814df):fs[_0x1fbbab(0xc2)](_0x4814df);}),fs[_0x3497cf(0xdd)](_0x39eaa3),_0x500eeb&&_0x500eeb()):_0x500eeb&&_0x500eeb();},exports[a24_0x429fba(0xdb)]=(_0x48a6bc,_0x4cbffd,_0xebedb9)=>{const _0xb75423=a24_0x429fba,_0x5675c4=this;fs[_0xb75423(0xd2)](_0x48a6bc,function(_0x2d6df1,_0x393c27){const _0x18b450=_0xb75423;let _0x3d1227=0x0;const _0xa3ca9=function(){const _0x4984f8=a24_0x2a4a;++_0x3d1227===_0x393c27[_0x4984f8(0xdf)]&&_0xebedb9&&_0xebedb9();};if(_0x2d6df1){_0xa3ca9();return;}_0x393c27[_0x18b450(0xdc)](function(_0x13d5ce){const _0x4dc6b5=_0x18b450,_0x41d839=path[_0x4dc6b5(0xca)](_0x48a6bc,_0x13d5ce),_0x560ea7=path[_0x4dc6b5(0xca)](_0x4cbffd,_0x13d5ce);fs[_0x4dc6b5(0xe1)](_0x41d839,function(_0x5b7073,_0x1d8548){const _0x4ce63f=_0x4dc6b5;_0x1d8548[_0x4ce63f(0xd0)]()?fs['mkdir'](_0x560ea7,function(_0x458db3){if(_0x458db3){console['log'](_0x458db3);return;}_0x5675c4['CopyFolder'](_0x41d839,_0x560ea7,_0xa3ca9);}):_0x5675c4[_0x4ce63f(0xc6)](_0x41d839,_0x560ea7,_0xa3ca9);});}),_0x393c27['length']===0x0&&_0xebedb9&&_0xebedb9();});},exports[a24_0x429fba(0xc6)]=(_0x19f9b9,_0x4f11ae,_0x2c21fe)=>{const _0x45e14c=a24_0x429fba,_0x6de1ba=fs[_0x45e14c(0xd8)](_0x19f9b9);_0x6de1ba['on'](_0x45e14c(0xde),function(_0x1022d3){const _0x372b9d=_0x45e14c;_0x1022d3&&console['log'](_0x372b9d(0xe5),_0x19f9b9),_0x2c21fe&&_0x2c21fe(_0x1022d3);});const _0x32f3b9=fs['createWriteStream'](_0x4f11ae);_0x32f3b9['on']('error',function(_0x573fd3){const _0x2ffeb5=_0x45e14c;_0x573fd3&&console[_0x2ffeb5(0xd3)](_0x2ffeb5(0xd1),_0x4f11ae),_0x2c21fe&&_0x2c21fe(_0x573fd3);}),_0x32f3b9['on']('close',function(_0x1f25c1){_0x2c21fe&&_0x2c21fe(_0x1f25c1);}),_0x6de1ba[_0x45e14c(0xcb)](_0x32f3b9);},exports[a24_0x429fba(0xc8)]=(_0x58f19e,_0x1c6896)=>{const _0x1fd421=a24_0x429fba,_0x1e84b1=this,_0x564c90=fs[_0x1fd421(0xd6)](_0x58f19e);_0x564c90['forEach'](_0x3f9c90=>{const _0x23d068=_0x1fd421,_0x66f2a7=_0x58f19e+'/'+_0x3f9c90,_0x389420=fs[_0x23d068(0xc9)](_0x66f2a7);_0x389420[_0x23d068(0xd0)]()?_0x1e84b1[_0x23d068(0xc8)](_0x66f2a7,_0x1c6896):_0x1c6896[_0x23d068(0xce)](_0x66f2a7);});},exports[a24_0x429fba(0xe0)]=(_0x519440,_0x570282)=>{return new Promise(_0x2ad067=>{const _0xe78276=a24_0x2a4a,_0x1b5f04=[];_0x570282[_0xe78276(0xdc)]((_0x18aeef,_0x374a0e)=>{const _0x1a93dc=_0xe78276,_0x473206=_0x519440+'/'+_0x1b5f04[_0x1a93dc(0xca)]('/')+'/'+_0x18aeef;try{const _0x5d325f=fs[_0x1a93dc(0xc9)](_0x473206);_0x5d325f[_0x1a93dc(0xd0)]()?_0x374a0e===_0x570282[_0x1a93dc(0xdf)]-0x1&&_0x2ad067():(fs[_0x1a93dc(0xcc)](_0x473206),_0x374a0e===_0x570282[_0x1a93dc(0xdf)]-0x1&&_0x2ad067());}catch(_0x18378c){fs[_0x1a93dc(0xcc)](_0x473206),_0x374a0e===_0x570282[_0x1a93dc(0xdf)]-0x1&&_0x2ad067();}_0x1b5f04['push'](_0x18aeef);});});};
|