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 }) => {
console.log(url,decodeKey);
console.log(url, decodeKey);
return downloadFile(
url,decodeKey,
url,
decodeKey,
`${savePath}/${Date.now()}.mp4`,
throttle(value => win?.webContents?.send?.('e_进度变化', value), 1000),
).catch(err => {

View File

@ -11,8 +11,7 @@ if (process.platform === 'win32') {
process.env.OPENSSL_CONF = CONFIG.OPEN_SSL_CNF_PATH;
}
const injection_script =`
const injection_script = `
(function () {
if (window.wvds !== undefined) {
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();
return new Promise(async (resolve, reject) => {
@ -99,12 +94,12 @@ export async function startServer({
{
phase: 'request',
hostname: 'aaaa.com',
as: 'json'
as: 'json',
},
(req, res) => {
res.string = "ok";
res.string = 'ok';
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',
hostname: 'res.wx.qq.com',
as: "string"
as: 'string',
},
async (req, res) => {
if (req.url.includes("polyfills.publish")) {
res.string = res.string + "\n" + injection_script;
if (req.url.includes('polyfills.publish')) {
res.string = res.string + '\n' + injection_script;
}
},
);

View File

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

View File

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

View File

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