mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-05 20:11:10 +08:00
chore:
This commit is contained in:
parent
4c3dd69540
commit
4fbf3fbba8
@ -36,17 +36,16 @@ export default function initIPC() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
ipcMain.handle('invoke_下载视频', async (event, { url, decodeKey, savePath, description }) => {
|
ipcMain.handle('invoke_下载视频', async (event, { url, decodeKey, savePath, description }) => {
|
||||||
let re = /(?:^|\s)(?!#\S+)\s*([^#\s]*)/;
|
let fileName = description?.replaceAll?.(/\\|\/|:|\*|\?|"|<|>|\|/g, '') || Date.now();
|
||||||
let m = description.match(re);
|
|
||||||
let fileName = m && m.length > 1 ? m[1].replaceAll(/[,,]/g, "_") : description;
|
|
||||||
console.log('description:', description);
|
console.log('description:', description);
|
||||||
console.log("fileName:", fileName);
|
console.log('fileName:', fileName);
|
||||||
console.log("url:", url)
|
console.log('url:', url);
|
||||||
console.log("decodeKey:", decodeKey);
|
console.log('decodeKey:', decodeKey);
|
||||||
|
|
||||||
return downloadFile(
|
return downloadFile(
|
||||||
url,
|
url,
|
||||||
decodeKey,
|
decodeKey,
|
||||||
// `${savePath}/${Date.now()}.mp4`,
|
|
||||||
`${savePath}/${fileName}.mp4`,
|
`${savePath}/${fileName}.mp4`,
|
||||||
throttle(value => win?.webContents?.send?.('e_进度变化', value), 1000),
|
throttle(value => win?.webContents?.send?.('e_进度变化', value), 1000),
|
||||||
).catch(err => {
|
).catch(err => {
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import os from 'os';
|
|
||||||
import hoxy from 'hoxy';
|
import hoxy from 'hoxy';
|
||||||
import getPort from 'get-port';
|
import getPort from 'get-port';
|
||||||
import log from 'electron-log';
|
import log from 'electron-log';
|
||||||
import md5 from 'md5';
|
|
||||||
import { app } from 'electron';
|
import { app } from 'electron';
|
||||||
import CONFIG from './const';
|
import CONFIG from './const';
|
||||||
import { setProxy, closeProxy } from './setProxy';
|
import { setProxy, closeProxy } from './setProxy';
|
||||||
@ -25,18 +23,24 @@ const injection_html = `
|
|||||||
const injection_script = `
|
const injection_script = `
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
if (window.wvds !== undefined) return;
|
if (window.wvds !== undefined) return;
|
||||||
${WVDS_DEBUG ? `
|
${
|
||||||
|
WVDS_DEBUG
|
||||||
|
? `
|
||||||
document.body.style.border = "2px solid #0000FF";
|
document.body.style.border = "2px solid #0000FF";
|
||||||
let ele_app = document.getElementById("app");
|
let ele_app = document.getElementById("app");
|
||||||
let ele_btn1 = document.createElement("a");
|
let ele_btn1 = document.createElement("a");
|
||||||
let ele_btn2 = document.createElement("a");
|
let ele_btn2 = document.createElement("a");
|
||||||
let ele_debug = document.createElement("textarea");
|
let ele_debug = document.createElement("textarea");
|
||||||
` : ""}
|
`
|
||||||
|
: ''
|
||||||
|
}
|
||||||
function debug_wvds(msg) {
|
function debug_wvds(msg) {
|
||||||
${WVDS_DEBUG ? `ele_debug.value += "\\n" + msg;` : ""}
|
${WVDS_DEBUG ? `ele_debug.value += "\\n" + msg;` : ''}
|
||||||
}
|
}
|
||||||
|
|
||||||
${WVDS_DEBUG ? `
|
${
|
||||||
|
WVDS_DEBUG
|
||||||
|
? `
|
||||||
ele_btn1.style = "position:absolute;top:3px;left:20px;width:80px;height:30px;cursor:pointer;";
|
ele_btn1.style = "position:absolute;top:3px;left:20px;width:80px;height:30px;cursor:pointer;";
|
||||||
ele_btn1.text = "Source";
|
ele_btn1.text = "Source";
|
||||||
ele_btn1.onclick = () => {
|
ele_btn1.onclick = () => {
|
||||||
@ -59,7 +63,9 @@ setTimeout(() => {
|
|||||||
ele_debug.style = "position:absolute;top:600px;left:20px;width:600px;height:300px;border:2px solid #FF00FF;";
|
ele_debug.style = "position:absolute;top:600px;left:20px;width:600px;height:300px;border:2px solid #FF00FF;";
|
||||||
ele_debug.value = "Debug:\\n";
|
ele_debug.value = "Debug:\\n";
|
||||||
ele_app.appendChild(ele_debug);
|
ele_app.appendChild(ele_debug);
|
||||||
` : ""}
|
`
|
||||||
|
: ''
|
||||||
|
}
|
||||||
let receiver_url = "https://aaaa.com";
|
let receiver_url = "https://aaaa.com";
|
||||||
|
|
||||||
function send_response_if_is_video(response) {
|
function send_response_if_is_video(response) {
|
||||||
@ -125,8 +131,8 @@ export async function startServer({ win, setProxyErrorCallback = f => f }) {
|
|||||||
.createServer({
|
.createServer({
|
||||||
certAuthority: {
|
certAuthority: {
|
||||||
key: fs.readFileSync(CONFIG.CERT_PRIVATE_PATH),
|
key: fs.readFileSync(CONFIG.CERT_PRIVATE_PATH),
|
||||||
cert: fs.readFileSync(CONFIG.CERT_PUBLIC_PATH)
|
cert: fs.readFileSync(CONFIG.CERT_PUBLIC_PATH),
|
||||||
}
|
},
|
||||||
})
|
})
|
||||||
.listen(port, () => {
|
.listen(port, () => {
|
||||||
setProxy('127.0.0.1', port)
|
setProxy('127.0.0.1', port)
|
||||||
@ -162,7 +168,7 @@ export async function startServer({ win, setProxyErrorCallback = f => f }) {
|
|||||||
},
|
},
|
||||||
async (req, res) => {
|
async (req, res) => {
|
||||||
if (req.url.includes('/web/pages/feed')) {
|
if (req.url.includes('/web/pages/feed')) {
|
||||||
res.string = res.string.replace('</body>', injection_html + "\n</body>");
|
res.string = res.string.replace('</body>', injection_html + '\n</body>');
|
||||||
res.statusCode = 200;
|
res.statusCode = 200;
|
||||||
console.log('inject[channels.weixin.qq.com]:', req.url, res.string.length);
|
console.log('inject[channels.weixin.qq.com]:', req.url, res.string.length);
|
||||||
}
|
}
|
||||||
@ -173,10 +179,9 @@ export async function startServer({ win, setProxyErrorCallback = f => f }) {
|
|||||||
{
|
{
|
||||||
phase: 'response',
|
phase: 'response',
|
||||||
hostname: 'res.wx.qq.com',
|
hostname: 'res.wx.qq.com',
|
||||||
as: 'string'
|
as: 'string',
|
||||||
},
|
},
|
||||||
async (req, res) => {
|
async (req, res) => {
|
||||||
// console.log('response[res.wx.qq.com]:', req.url);
|
|
||||||
if (req.url.includes('wvds.inject.js')) {
|
if (req.url.includes('wvds.inject.js')) {
|
||||||
console.log('inject[res.wx.qq.com]:', req.url, res.string.length);
|
console.log('inject[res.wx.qq.com]:', req.url, res.string.length);
|
||||||
res.string = injection_script;
|
res.string = injection_script;
|
||||||
@ -185,6 +190,18 @@ export async function startServer({ win, setProxyErrorCallback = f => f }) {
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
proxy.intercept(
|
||||||
|
{
|
||||||
|
phase: 'response',
|
||||||
|
hostname: 'res.wx.qq.com',
|
||||||
|
as: 'string',
|
||||||
|
},
|
||||||
|
async (req, res) => {
|
||||||
|
if (req.url.includes('polyfills.publish')) {
|
||||||
|
res.string = res.string + '\n' + injection_script;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,7 +80,12 @@ function App() {
|
|||||||
icon={<DownloadOutlined />}
|
icon={<DownloadOutlined />}
|
||||||
type="primary"
|
type="primary"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
send({ type: 'e_下载', url: hdUrl || url, decodeKey: decodeKey, description: description });
|
send({
|
||||||
|
type: 'e_下载',
|
||||||
|
url: hdUrl || url,
|
||||||
|
decodeKey: decodeKey,
|
||||||
|
description: description,
|
||||||
|
});
|
||||||
}}
|
}}
|
||||||
size="small"
|
size="small"
|
||||||
>
|
>
|
||||||
|
@ -190,7 +190,7 @@ export default createMachine(
|
|||||||
.catch(() => send('e_取消'));
|
.catch(() => send('e_取消'));
|
||||||
},
|
},
|
||||||
invoke_下载视频:
|
invoke_下载视频:
|
||||||
({ currentUrl, savePath, decodeKey, description }) =>
|
({ currentUrl, savePath, decodeKey, description }) =>
|
||||||
send => {
|
send => {
|
||||||
ipcRenderer
|
ipcRenderer
|
||||||
.invoke('invoke_下载视频', {
|
.invoke('invoke_下载视频', {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user