diff --git a/electron/cert.js b/electron/cert.js
index b0920a5..459bb3c 100644
--- a/electron/cert.js
+++ b/electron/cert.js
@@ -5,7 +5,7 @@ import path from 'path';
import sudo from 'sudo-prompt';
import { clipboard, dialog } from 'electron';
-function checkCertInstalled() {
+export function checkCertInstalled() {
return fs.existsSync(CONFIG.INSTALL_CERT_FLAG);
}
@@ -14,9 +14,10 @@ export async function installCert(checkInstalled = true) {
return;
}
+ mkdirp.sync(path.dirname(CONFIG.INSTALL_CERT_FLAG));
+
if (process.platform === 'darwin') {
return new Promise((resolve, reject) => {
- mkdirp.sync(path.dirname(CONFIG.INSTALL_CERT_FLAG));
clipboard.writeText(
`echo "输入本地登录密码" && sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain "${CONFIG.CERT_PUBLIC_PATH}" && touch ${CONFIG.INSTALL_CERT_FLAG} && echo "安装完成"`,
);
@@ -28,15 +29,19 @@ export async function installCert(checkInstalled = true) {
reject();
});
} else {
- return sudo.exec(
- `${CONFIG.WIN_CERT_INSTALL_HELPER} -c -add ${CONFIG.CERT_PUBLIC_PATH} -s root`,
- { name: CONFIG.APP_EN_NAME },
- (error, stdout) => {
- if (error) {
- reject(error);
- }
- resolve(stdout);
- },
- );
+ return new Promise((resolve, reject) => {
+ sudo.exec(
+ `${CONFIG.WIN_CERT_INSTALL_HELPER} -c -add ${CONFIG.CERT_PUBLIC_PATH} -s root`,
+ { name: CONFIG.APP_EN_NAME },
+ (error, stdout) => {
+ if (error) {
+ reject(error);
+ } else {
+ fs.writeFileSync(CONFIG.INSTALL_CERT_FLAG, '');
+ resolve(stdout);
+ }
+ },
+ );
+ });
}
}
diff --git a/electron/const.js b/electron/const.js
index afe473f..08b21b6 100644
--- a/electron/const.js
+++ b/electron/const.js
@@ -31,4 +31,5 @@ export default {
WIN_CERT_INSTALL_HELPER: path.join(EXECUTABLE_PATH, './w_c.exe'),
APP_CN_NAME: '微信视频号下载器',
APP_EN_NAME: 'WeChat Video Downloader',
+ REGEDIT_VBS_PATH: path.join(EXECUTABLE_PATH, './regedit-vbs'),
};
diff --git a/electron/index.js b/electron/index.js
index eac6844..6d0c282 100644
--- a/electron/index.js
+++ b/electron/index.js
@@ -1,9 +1,7 @@
import { app, BrowserWindow, Menu } from 'electron';
-import log from 'electron-log';
import CONFIG from './const';
import { checkUpdate } from './utils';
-import { startServer } from './proxyServer';
-import { installCert } from './cert';
+import initIPC from './ipc';
app.commandLine.appendSwitch('--no-proxy-server');
@@ -31,6 +29,7 @@ function createWindow() {
}
app.whenReady().then(() => {
+ initIPC();
createWindow();
app.on('activate', () => {
diff --git a/electron/ipc.js b/electron/ipc.js
new file mode 100644
index 0000000..5312c51
--- /dev/null
+++ b/electron/ipc.js
@@ -0,0 +1,26 @@
+import { ipcMain } from 'electron';
+import log from 'electron-log';
+import { startServer } from './proxyServer';
+import { installCert, checkCertInstalled } from './cert';
+
+export default function initIPC() {
+ ipcMain.handle('invoke_初始化信息', async (event, arg) => {
+ return checkCertInstalled();
+ });
+
+ ipcMain.handle('invoke_开始初始化', (event, arg) => {
+ return installCert(false);
+ });
+
+ ipcMain.handle('invoke_启动服务', async (event, arg) => {
+ console.log('invoke_启动服务');
+ return startServer({
+ interceptCallback: async req => {
+ console.log('=========> intercept', req.url);
+ },
+ setProxyErrorCallback: err => {
+ console.log({ err });
+ },
+ });
+ });
+}
diff --git a/electron/proxyServer.js b/electron/proxyServer.js
index 3752ee3..24ab503 100644
--- a/electron/proxyServer.js
+++ b/electron/proxyServer.js
@@ -1,4 +1,3 @@
-import path from 'path';
import fs from 'fs';
import hoxy from 'hoxy';
import getPort from 'get-port';
@@ -6,7 +5,7 @@ import { app } from 'electron';
import CONFIG from './const';
import { setProxy, closeProxy } from './setProxy';
-export async function startServer({ interceptCallback = f => f, errorCallback = f => f }) {
+export async function startServer({ interceptCallback = f => f, setProxyErrorCallback = f => f }) {
const port = await getPort();
const proxy = hoxy
.createServer({
@@ -16,7 +15,10 @@ export async function startServer({ interceptCallback = f => f, errorCallback =
},
})
.listen(port, () => {
- setProxy('127.0.0.1', port).catch(errorCallback);
+ setProxy('127.0.0.1', port).catch(setProxyErrorCallback);
+ })
+ .on('error', e => {
+ console.log('proxy lib error', e);
});
proxy.intercept(
diff --git a/electron/setProxy.js b/electron/setProxy.js
index 4cad461..c275ece 100644
--- a/electron/setProxy.js
+++ b/electron/setProxy.js
@@ -1,5 +1,8 @@
import { exec } from 'child_process';
import regedit from 'regedit';
+import CONFIG from './const';
+
+regedit.setExternalVBSLocation(CONFIG.REGEDIT_VBS_PATH);
export async function setProxy(host, port) {
if (process.platform === 'darwin') {
@@ -24,7 +27,7 @@ export async function setProxy(host, port) {
);
} else {
const valuesToPut = {
- 'HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Internet Settings': {
+ 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings': {
ProxyServer: {
value: `${host}:${port}`,
type: 'REG_SZ',
@@ -35,7 +38,7 @@ export async function setProxy(host, port) {
},
},
};
- return editWinRegPromise(valuesToPut);
+ return regedit.promisified.putValue(valuesToPut);
}
}
@@ -62,14 +65,14 @@ export async function closeProxy() {
);
} else {
const valuesToPut = {
- 'HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Internet Settings': {
+ 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings': {
ProxyEnable: {
value: 0,
type: 'REG_DWORD',
},
},
};
- return editWinRegPromise(valuesToPut);
+ return regedit.promisified.putValue(valuesToPut);
}
}
@@ -104,15 +107,3 @@ function getMacAvailableNetworks() {
});
});
}
-
-function editWinRegPromise(valuesToPut) {
- return new Promise((resolve, reject) => {
- regedit.putValue(valuesToPut, function (err) {
- if (err) {
- reject(err);
- } else {
- resolve();
- }
- });
- });
-}
diff --git a/package.json b/package.json
index f8af5ed..5adafc4 100644
--- a/package.json
+++ b/package.json
@@ -7,8 +7,10 @@
"scripts": {
"postinstall": "husky install",
"start": "concurrently \"cross-env BROWSER=none npm run start-web\" \"wait-on http://localhost:3000 && npm run start-electron\" ",
+ "start-debug": "concurrently \"cross-env BROWSER=none npm run start-web\" \"wait-on http://localhost:3000 && npm run debug-electron\" ",
"start-web": "react-app-rewired start",
"start-electron": "webpack --config webpack.electron.js && electron .",
+ "debug-electron": "webpack --config webpack.electron.js && electron --inspect --unhandled-rejections=strict --trace-deprecation .",
"build-web": "react-app-rewired build",
"build-electron": "webpack --config webpack.electron.js",
"build-all": "rm -rf ./build && rm -rf ./build-electron && npm run build-electron && npm run build-web",
@@ -56,7 +58,7 @@
"mkdirp": "^1.0.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
- "regedit": "^5.1.1",
+ "regedit": "5.0.0",
"semver": "^7.3.7",
"sudo-prompt": "^9.2.1",
"xstate": "^4.32.1"
diff --git a/public/regedit-vbs/ArchitectureAgnosticRegistry.vbs b/public/regedit-vbs/ArchitectureAgnosticRegistry.vbs
new file mode 100644
index 0000000..bc92d85
--- /dev/null
+++ b/public/regedit-vbs/ArchitectureAgnosticRegistry.vbs
@@ -0,0 +1,75 @@
+' Notes: wanted to implement this using a class but:
+' 1. No matter what I did I could not assign the result of GetObject to a private member
+' 2. It looks as if all methods were treated as subs from the outside world which is not good since
+' some of these need to return a value
+'
+
+Set private_oReg = GetObject("winmgmts:\root\default:StdRegProv")
+
+Function SetStringValue(constHive, strSubKey, strValueName, strValue)
+ SetStringValue = private_oReg.SetStringValue(constHive, strSubKey, strValueName, strValue)
+End Function
+
+Sub GetStringValue(constHive, strKey, strValueName, strValue)
+ private_oReg.GetStringValue constHive, strKey, strValueName, strValue
+End Sub
+
+Function SetExpandedStringValue(constHive, strSubKey, strValueName, strValue)
+ SetExpandedStringValue = private_oReg.SetExpandedStringValue(constHive, strSubKey, strValueName, strValue)
+End Function
+
+Sub GetExpandedStringValue(constHive, strKey, strValueName, strValue)
+ private_oReg.GetExpandedStringValue constHive, strKey, strValueName, strValue
+End Sub
+
+Function SetMultiStringValue(constHive, strSubKey, strValueName, arrValue)
+ SetMultiStringValue = private_oReg.SetMultiStringValue(constHive, strSubKey, strValueName, arrValue)
+End Function
+
+Sub GetMultiStringValue(constHive, strKey, strValueName, arrStrValue)
+ private_oReg.GetMultiStringValue constHive, strKey, strValueName, arrStrValue
+End Sub
+
+Function SetDWORDValue(constHive, strSubKey, strValueName, arrValue)
+ SetDWORDValue = private_oReg.SetDWORDValue(constHive, strSubKey, strValueName, arrValue)
+End Function
+
+Sub GetDWORDValue(constHive, strKey, strValueName, intDWordValue)
+ private_oReg.GetDWORDValue constHive, strKey, strValueName, intDWordValue
+End Sub
+
+Function SetQWORDValue(constHive, strSubKey, strValueName, strQWordValue)
+ SetQWORDValue = private_oReg.SetQWORDValue(constHive, strSubKey, strValueName, strQWordValue)
+End Function
+
+Sub GetQWORDValue(constHive, strKey, strValueName, intQWordValue)
+ private_oReg.GetQWORDValue constHive, strKey, strValueName, intQWordValue
+End Sub
+
+Function SetBinaryValue(constHive, strSubKey, strValueName, arrValue)
+ SetBinaryValue = private_oReg.SetBinaryValue(constHive, strSubKey, strValueName, arrValue)
+End Function
+
+Sub GetBinaryValue(constHive, strKey, strValueName, arrBinaryValue)
+ private_oReg.GetBinaryValue constHive, strKey, strValueName, arrBinaryValue
+End Sub
+
+Function EnumKey(constHive, strSubKey, arrKeyNames)
+ EnumKey = private_oReg.EnumKey(constHive, strSubKey, arrKeyNames)
+End Function
+
+Function EnumValues(constHive, strSubKey, arrValueNames, arrValueTypes)
+ EnumValues = private_oReg.EnumValues(constHive, strSubKey, arrValueNames, arrValueTypes)
+End Function
+
+Function CreateKey(constHive, strSubKey)
+ CreateKey = private_oReg.CreateKey(constHive, strSubKey)
+End Function
+
+Function DeleteKey(constHive, strSubKey)
+ DeleteKey = private_oReg.DeleteKey(constHive, strSubKey)
+End Function
+
+Function DeleteValue(constHive, strSubKey, strValue)
+ DeleteValue = private_oReg.DeleteValue(constHive, strSubKey, strValue)
+End Function
diff --git a/public/regedit-vbs/ArchitectureSpecificRegistry.vbs b/public/regedit-vbs/ArchitectureSpecificRegistry.vbs
new file mode 100644
index 0000000..58dba9c
--- /dev/null
+++ b/public/regedit-vbs/ArchitectureSpecificRegistry.vbs
@@ -0,0 +1,358 @@
+' Notes: wanted to implement this using a class but:
+' 1. No matter what I did I could not assign the result of GetObject to a private member
+' 2. It looks as if all methods were treated as subs from the outside world which is not good since
+' some of these need to return a value
+
+' should be removed when migration is complete
+Set private_oReg = GetObject("winmgmts:\root\default:StdRegProv")
+
+Set private_oCtx = CreateObject("WbemScripting.SWbemNamedValueSet")
+private_oCtx.Add "__ProviderArchitecture", CInt(OSArchitecture)
+
+Set private_oLocator = CreateObject("Wbemscripting.SWbemLocator")
+Set private_oServices = private_oLocator.ConnectServer(".", "root\default","","",,,,private_oCtx)
+Set private_oRegSpecific = private_oServices.Get("StdRegProv")
+
+Function CheckAccess(hDefKey,sSubKeyName,uRequired, bGranted )
+ Set Inparams = private_oRegSpecific.Methods_("CheckAccess").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.uRequired = uRequired
+
+ set Outparams = private_oRegSpecific.ExecMethod_("CheckAccess", Inparams,,private_oCtx)
+
+ bGranted = Outparams.bGranted
+
+
+ CheckAccess = 0
+
+End Function
+
+Function CreateKey(hDefKey,sSubKeyName)
+ Set Inparams = private_oRegSpecific.Methods_("CreateKey").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("CreateKey", Inparams,,private_oCtx)
+
+
+ CreateKey = 0
+
+End Function
+
+Function DeleteKey(hDefKey,sSubKeyName)
+ Set Inparams = private_oRegSpecific.Methods_("DeleteKey").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("DeleteKey", Inparams,,private_oCtx)
+
+
+ DeleteKey = 0
+
+End Function
+
+Function DeleteValue(hDefKey,sSubKeyName,sValueName)
+ Set Inparams = private_oRegSpecific.Methods_("DeleteValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("DeleteValue", Inparams,,private_oCtx)
+
+
+ DeleteValue = 0
+
+End Function
+
+Function EnumKey(hDefKey,sSubKeyName, sNames )
+ Set Inparams = private_oRegSpecific.Methods_("EnumKey").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("EnumKey", Inparams,,private_oCtx)
+
+ sNames = Outparams.sNames
+
+
+ EnumKey = 0
+
+End Function
+
+Function EnumValues(hDefKey,sSubKeyName, sNames,Types )
+ Set Inparams = private_oRegSpecific.Methods_("EnumValues").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("EnumValues", Inparams,,private_oCtx)
+
+ sNames = Outparams.sNames
+
+ Types = Outparams.Types
+
+
+ EnumValues = 0
+
+End Function
+
+Function GetBinaryValue(hDefKey,sSubKeyName,sValueName, uValue )
+ Set Inparams = private_oRegSpecific.Methods_("GetBinaryValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("GetBinaryValue", Inparams,,private_oCtx)
+
+ uValue = Outparams.uValue
+
+
+ GetBinaryValue = 0
+
+End Function
+
+Function GetDWORDValue(hDefKey,sSubKeyName,sValueName, uValue )
+ Set Inparams = private_oRegSpecific.Methods_("GetDWORDValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("GetDWORDValue", Inparams,,private_oCtx)
+
+ uValue = Outparams.uValue
+
+
+ GetDWORDValue = 0
+
+End Function
+
+Function GetExpandedStringValue(hDefKey,sSubKeyName,sValueName, sValue )
+ Set Inparams = private_oRegSpecific.Methods_("GetExpandedStringValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("GetExpandedStringValue", Inparams,,private_oCtx)
+
+ sValue = Outparams.sValue
+
+
+ GetExpandedStringValue = 0
+
+End Function
+
+Function GetMultiStringValue(hDefKey,sSubKeyName,sValueName, sValue )
+ Set Inparams = private_oRegSpecific.Methods_("GetMultiStringValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("GetMultiStringValue", Inparams,,private_oCtx)
+
+ sValue = Outparams.sValue
+
+
+ GetMultiStringValue = 0
+
+End Function
+
+Function GetQWORDValue(hDefKey,sSubKeyName,sValueName, uValue )
+ Set Inparams = private_oRegSpecific.Methods_("GetQWORDValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("GetQWORDValue", Inparams,,private_oCtx)
+
+ uValue = Outparams.uValue
+
+
+ GetQWORDValue = 0
+
+End Function
+
+Function GetSecurityDescriptor(hDefKey,sSubKeyName, Descriptor )
+ Set Inparams = private_oRegSpecific.Methods_("GetSecurityDescriptor").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("GetSecurityDescriptor", Inparams,,private_oCtx)
+
+ Descriptor = Outparams.Descriptor
+
+
+ GetSecurityDescriptor = 0
+
+End Function
+
+Function GetStringValue(hDefKey,sSubKeyName,sValueName, sValue )
+ Set Inparams = private_oRegSpecific.Methods_("GetStringValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ set Outparams = private_oRegSpecific.ExecMethod_("GetStringValue", Inparams,,private_oCtx)
+
+ sValue = Outparams.sValue
+
+
+ GetStringValue = 0
+
+End Function
+
+Function SetBinaryValue(hDefKey,sSubKeyName,sValueName,uValue)
+ Set Inparams = private_oRegSpecific.Methods_("SetBinaryValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ Inparams.uValue = uValue
+
+ set Outparams = private_oRegSpecific.ExecMethod_("SetBinaryValue", Inparams,,private_oCtx)
+
+
+ SetBinaryValue = 0
+
+End Function
+
+Function SetDWORDValue(hDefKey,sSubKeyName,sValueName,uValue)
+ Set Inparams = private_oRegSpecific.Methods_("SetDWORDValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ Inparams.uValue = uValue
+
+ set Outparams = private_oRegSpecific.ExecMethod_("SetDWORDValue", Inparams,,private_oCtx)
+
+
+ SetDWORDValue = 0
+
+End Function
+
+Function SetExpandedStringValue(hDefKey,sSubKeyName,sValueName,sValue)
+ Set Inparams = private_oRegSpecific.Methods_("SetExpandedStringValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ Inparams.sValue = sValue
+
+ set Outparams = private_oRegSpecific.ExecMethod_("SetExpandedStringValue", Inparams,,private_oCtx)
+
+
+ SetExpandedStringValue = 0
+
+End Function
+
+Function SetMultiStringValue(hDefKey,sSubKeyName,sValueName,sValue)
+ Set Inparams = private_oRegSpecific.Methods_("SetMultiStringValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ Inparams.sValue = sValue
+
+ set Outparams = private_oRegSpecific.ExecMethod_("SetMultiStringValue", Inparams,,private_oCtx)
+
+
+ SetMultiStringValue = 0
+
+End Function
+
+Function SetQWORDValue(hDefKey,sSubKeyName,sValueName,uValue)
+ Set Inparams = private_oRegSpecific.Methods_("SetQWORDValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ Inparams.uValue = uValue
+
+ set Outparams = private_oRegSpecific.ExecMethod_("SetQWORDValue", Inparams,,private_oCtx)
+
+
+ SetQWORDValue = 0
+
+End Function
+
+Function SetSecurityDescriptor(hDefKey,sSubKeyName,Descriptor)
+ Set Inparams = private_oRegSpecific.Methods_("SetSecurityDescriptor").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.Descriptor = Descriptor
+
+ set Outparams = private_oRegSpecific.ExecMethod_("SetSecurityDescriptor", Inparams,,private_oCtx)
+
+
+ SetSecurityDescriptor = 0
+
+End Function
+
+Function SetStringValue(hDefKey,sSubKeyName,sValueName,sValue)
+ Set Inparams = private_oRegSpecific.Methods_("SetStringValue").Inparameters
+
+ Inparams.hDefKey = hDefKey
+
+ Inparams.sSubKeyName = sSubKeyName
+
+ Inparams.sValueName = sValueName
+
+ Inparams.sValue = sValue
+
+ set Outparams = private_oRegSpecific.ExecMethod_("SetStringValue", Inparams,,private_oCtx)
+
+
+ SetStringValue = 0
+
+End Function
diff --git a/public/regedit-vbs/JsonSafeTest.wsf b/public/regedit-vbs/JsonSafeTest.wsf
new file mode 100644
index 0000000..fc97e5e
--- /dev/null
+++ b/public/regedit-vbs/JsonSafeTest.wsf
@@ -0,0 +1,7 @@
+
未初始化
+ + +