feat: fmt

This commit is contained in:
lecepin 2023-12-02 21:58:10 +08:00
parent 3f56e8ce6e
commit 467d2de97a
5 changed files with 32 additions and 37 deletions

View File

@ -36,9 +36,10 @@ export default function initIPC() {
}); });
ipcMain.handle('invoke_下载视频', async (event, { url, decodeKey, savePath }) => { ipcMain.handle('invoke_下载视频', async (event, { url, decodeKey, savePath }) => {
console.log(url,decodeKey); console.log(url, decodeKey);
return downloadFile( return downloadFile(
url,decodeKey, url,
decodeKey,
`${savePath}/${Date.now()}.mp4`, `${savePath}/${Date.now()}.mp4`,
throttle(value => win?.webContents?.send?.('e_进度变化', value), 1000), throttle(value => win?.webContents?.send?.('e_进度变化', value), 1000),
).catch(err => { ).catch(err => {

View File

@ -11,8 +11,7 @@ if (process.platform === 'win32') {
process.env.OPENSSL_CONF = CONFIG.OPEN_SSL_CNF_PATH; process.env.OPENSSL_CONF = CONFIG.OPEN_SSL_CNF_PATH;
} }
const injection_script = `
const injection_script =`
(function () { (function () {
if (window.wvds !== undefined) { if (window.wvds !== undefined) {
return return
@ -68,11 +67,7 @@ const injection_script =`
})() })()
`; `;
export async function startServer({ win, setProxyErrorCallback = f => f }) {
export async function startServer({
win,
setProxyErrorCallback = f => f,
}) {
const port = await getPort(); const port = await getPort();
return new Promise(async (resolve, reject) => { return new Promise(async (resolve, reject) => {
@ -99,12 +94,12 @@ export async function startServer({
{ {
phase: 'request', phase: 'request',
hostname: 'aaaa.com', hostname: 'aaaa.com',
as: 'json' as: 'json',
}, },
(req, res) => { (req, res) => {
res.string = "ok"; res.string = 'ok';
res.statusCode = 200; res.statusCode = 200;
win?.webContents?.send?.('VIDEO_CAPTURE', req.json) win?.webContents?.send?.('VIDEO_CAPTURE', req.json);
}, },
); );
@ -112,11 +107,11 @@ export async function startServer({
{ {
phase: 'response', phase: 'response',
hostname: 'res.wx.qq.com', hostname: 'res.wx.qq.com',
as: "string" as: 'string',
}, },
async (req, res) => { async (req, res) => {
if (req.url.includes("polyfills.publish")) { if (req.url.includes('polyfills.publish')) {
res.string = res.string + "\n" + injection_script; res.string = res.string + '\n' + injection_script;
} }
}, },
); );

View File

@ -1,6 +1,6 @@
{ {
"name": "wechat-video-downloader", "name": "wechat-video-downloader",
"version": "1.0.1", "version": "2.0.0",
"description": "", "description": "",
"main": "./build-electron/index.js", "main": "./build-electron/index.js",
"homepage": "./", "homepage": "./",

View File

@ -61,7 +61,7 @@ function App() {
dataIndex: 'action', dataIndex: 'action',
key: 'action', key: 'action',
width: '210px', width: '210px',
render: (_, { url, decodeKey, hdUrl, fixUrl, fullFileName, }) => ( render: (_, { url, decodeKey, hdUrl, fixUrl, fullFileName }) => (
<div> <div>
{fullFileName ? ( {fullFileName ? (
<Button <Button
@ -80,23 +80,13 @@ function App() {
icon={<DownloadOutlined />} icon={<DownloadOutlined />}
type="primary" type="primary"
onClick={() => { onClick={() => {
send({ type: 'e_下载', url: (hdUrl || url), decodeKey: decodeKey }); send({ type: 'e_下载', url: hdUrl || url, decodeKey: decodeKey });
}} }}
size="small" size="small"
> >
{hdUrl ? "高清" : ""}下载 解密下载
</Button> </Button>
)} )}
&nbsp; &nbsp;
<Button
icon={<PlaySquareOutlined />}
onClick={() => {
send({ type: 'e_预览', url: (fixUrl || url) });
}}
size="small"
>
预览
</Button>
</div> </div>
), ),
}, },

View File

@ -162,7 +162,7 @@ export default createMachine(
}, },
invoke_启动服务: (context, event) => send => { invoke_启动服务: (context, event) => send => {
const fnDealVideoCapture = (eName, { url, size, description, decode_key, ...other }) => { const fnDealVideoCapture = (eName, { url, size, description, decode_key, ...other }) => {
send({ type: 'e_视频捕获', url, size, description, decodeKey: decode_key, ...other }); send({ type: 'e_视频捕获', url, size, description, decodeKey: decode_key, ...other });
}; };
ipcRenderer ipcRenderer
@ -218,19 +218,28 @@ export default createMachine(
}, },
}, },
actions: { actions: {
action_视频捕获: actions.assign(({ captureList }, { url, size, description, decodeKey, ...other }) => { action_视频捕获: actions.assign(
captureList.push({ size, url, prettySize: prettyBytes(+size), description, decodeKey, ...other }); ({ captureList }, { url, size, description, decodeKey, ...other }) => {
captureList.push({
size,
url,
prettySize: prettyBytes(+size),
description,
decodeKey,
...other,
});
return { return {
captureList: uniqBy(captureList, 'url'), captureList: uniqBy(captureList, 'url'),
}; };
}), },
),
action_清空捕获记录: actions.assign(() => { action_清空捕获记录: actions.assign(() => {
return { return {
captureList: [], captureList: [],
}; };
}), }),
action_设置当前地址: actions.assign((_, { url,decodeKey }) => { action_设置当前地址: actions.assign((_, { url, decodeKey }) => {
return { return {
currentUrl: url, currentUrl: url,
decodeKey: decodeKey, decodeKey: decodeKey,