mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-06 04:15:43 +08:00
Merge pull request #51 from lecepin/fix-update-rule
feat: Rule update & Electron update
This commit is contained in:
commit
17e0ffdb93
@ -20,9 +20,16 @@ export default function initIPC() {
|
|||||||
return startServer({
|
return startServer({
|
||||||
interceptCallback: phase => async (req, res) => {
|
interceptCallback: phase => async (req, res) => {
|
||||||
if (phase === 'response' && res?._data?.headers?.['content-type'] == 'video/mp4') {
|
if (phase === 'response' && res?._data?.headers?.['content-type'] == 'video/mp4') {
|
||||||
|
const fixUrl = {}
|
||||||
|
if(req.fullUrl().includes("video.qq.com")){
|
||||||
|
fixUrl.fixUrl = req.fullUrl().replace(/\/20302\//g, '/20304/');
|
||||||
|
fixUrl.hdUrl = fixUrl.fixUrl.replace(/(\?|&)(?!(encfilekey=|token=))[^&]+/g, '');
|
||||||
|
}
|
||||||
|
|
||||||
win?.webContents?.send?.('VIDEO_CAPTURE', {
|
win?.webContents?.send?.('VIDEO_CAPTURE', {
|
||||||
url: req.fullUrl(),
|
url: req.fullUrl(),
|
||||||
size: res?._data?.headers?.['content-length'] ?? 0,
|
size: res?._data?.headers?.['content-length'] ?? 0,
|
||||||
|
...fixUrl
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "wechat-video-downloader",
|
"name": "wechat-video-downloader",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "./build-electron/index.js",
|
"main": "./build-electron/index.js",
|
||||||
"homepage": "./",
|
"homepage": "./",
|
||||||
@ -34,7 +34,7 @@
|
|||||||
"concurrently": "^7.1.0",
|
"concurrently": "^7.1.0",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"customize-cra": "^1.0.0",
|
"customize-cra": "^1.0.0",
|
||||||
"electron": "^18.2.3",
|
"electron": "^26.1.0",
|
||||||
"electron-builder": "^23.0.3",
|
"electron-builder": "^23.0.3",
|
||||||
"electron-icon-builder": "^2.0.1",
|
"electron-icon-builder": "^2.0.1",
|
||||||
"husky": "^8.0.1",
|
"husky": "^8.0.1",
|
||||||
|
10
src/App.jsx
10
src/App.jsx
@ -60,8 +60,8 @@ function App() {
|
|||||||
title: '操作',
|
title: '操作',
|
||||||
dataIndex: 'action',
|
dataIndex: 'action',
|
||||||
key: 'action',
|
key: 'action',
|
||||||
width: '200px',
|
width: '210px',
|
||||||
render: (_, { url, fullFileName }) => (
|
render: (_, { url, hdUrl, fixUrl, fullFileName, }) => (
|
||||||
<div>
|
<div>
|
||||||
{fullFileName ? (
|
{fullFileName ? (
|
||||||
<Button
|
<Button
|
||||||
@ -80,18 +80,18 @@ function App() {
|
|||||||
icon={<DownloadOutlined />}
|
icon={<DownloadOutlined />}
|
||||||
type="primary"
|
type="primary"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
send({ type: 'e_下载', url });
|
send({ type: 'e_下载', url: (hdUrl || url) });
|
||||||
}}
|
}}
|
||||||
size="small"
|
size="small"
|
||||||
>
|
>
|
||||||
下载
|
{hdUrl ? "高清" : ""}下载
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
icon={<PlaySquareOutlined />}
|
icon={<PlaySquareOutlined />}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
send({ type: 'e_预览', url });
|
send({ type: 'e_预览', url: (fixUrl || url) });
|
||||||
}}
|
}}
|
||||||
size="small"
|
size="small"
|
||||||
>
|
>
|
||||||
|
10
src/fsm.js
10
src/fsm.js
@ -161,8 +161,8 @@ export default createMachine(
|
|||||||
.finally(() => send('e_重新检测'));
|
.finally(() => send('e_重新检测'));
|
||||||
},
|
},
|
||||||
invoke_启动服务: (context, event) => send => {
|
invoke_启动服务: (context, event) => send => {
|
||||||
const fnDealVideoCapture = (eName, { url, size }) => {
|
const fnDealVideoCapture = (eName, { url, size, ...other }) => {
|
||||||
send({ type: 'e_视频捕获', url, size });
|
send({ type: 'e_视频捕获', url, size, ...other });
|
||||||
};
|
};
|
||||||
|
|
||||||
ipcRenderer
|
ipcRenderer
|
||||||
@ -217,8 +217,8 @@ export default createMachine(
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
action_视频捕获: actions.assign(({ captureList }, { size, url }) => {
|
action_视频捕获: actions.assign(({ captureList }, { size, url, ...other }) => {
|
||||||
captureList.push({ size, url, prettySize: prettyBytes(+size) });
|
captureList.push({ size, url, prettySize: prettyBytes(+size), ...other });
|
||||||
|
|
||||||
return {
|
return {
|
||||||
captureList: uniqBy(captureList, 'url'),
|
captureList: uniqBy(captureList, 'url'),
|
||||||
@ -247,7 +247,7 @@ export default createMachine(
|
|||||||
action_下载完成: actions.assign(({ captureList }, { fullFileName, currentUrl }) => {
|
action_下载完成: actions.assign(({ captureList }, { fullFileName, currentUrl }) => {
|
||||||
return {
|
return {
|
||||||
captureList: captureList.map(item => {
|
captureList: captureList.map(item => {
|
||||||
if (item.url === currentUrl) {
|
if ((item.hdUrl || item.url) === currentUrl) {
|
||||||
item.fullFileName = fullFileName;
|
item.fullFileName = fullFileName;
|
||||||
}
|
}
|
||||||
return item;
|
return item;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user