Skip to content

Commit 0d69f1a

Browse files
miraclxKikobeats
andauthored
feat!: rewrite the postinstall script (#192)
* fix: post-install should fail on error * chore: dump simple-get * chore: bump node version requirement * chore: npm,yarn,pnpm already implicitly hide logs * chore: follow convention * refactor: use debug-logfmt * refactor: remove simple-get dependency * refactor: remove unnecessary line * refactor: remove unnecessary lines * docs: add DEBUG * refactor: drop unnecessary line * fix: log report --------- Co-authored-by: Kiko Beats <[email protected]>
1 parent 6db69be commit 0d69f1a

File tree

3 files changed

+29
-30
lines changed

3 files changed

+29
-30
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ These environment variables can also be set through "npm config", for example `n
144144

145145
They setup the download configuration for getting the `yt-dlp` binary file.
146146

147+
### DEBUG
148+
149+
Set `DEBUG="youtube-dl-exec*"` to enable debug mode. This will enable log additional information during the post-install script.
150+
147151
### YOUTUBE_DL_DIR
148152

149153
It determines the folder where to put the binary file.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@
117117
"dependencies": {
118118
"bin-version-check": "~6.0.0",
119119
"dargs": "~7.0.0",
120+
"debug-logfmt": "~1.2.2",
120121
"is-unix": "~2.0.10",
121-
"simple-get": "~4.0.1",
122122
"tinyspawn": "~1.2.6"
123123
},
124124
"devDependencies": {
@@ -139,7 +139,7 @@
139139
"tsd": "latest"
140140
},
141141
"engines": {
142-
"node": ">= 14"
142+
"node": ">= 18"
143143
},
144144
"files": [
145145
"scripts",

scripts/postinstall.js

+23-28
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,9 @@
11
'use strict'
22

3-
const { writeFile, mkdir } = require('fs/promises')
4-
const { concat } = require('simple-get')
5-
6-
const mkdirp = filepath => mkdir(filepath, { recursive: true }).catch(() => {})
7-
8-
const get = url =>
9-
new Promise((resolve, reject) =>
10-
concat(
11-
{
12-
url,
13-
headers: {
14-
'user-agent': 'microlinkhq/youtube-dl-exec'
15-
}
16-
},
17-
(err, response, data) => (err ? reject(err) : resolve({ response, data }))
18-
)
19-
)
3+
const debug = require('debug-logfmt')('youtube-dl-exec:install')
4+
const { mkdir, chmod } = require('node:fs/promises')
5+
const { pipeline } = require('node:stream/promises')
6+
const { createWriteStream } = require('node:fs')
207

218
const {
229
YOUTUBE_DL_PATH,
@@ -26,23 +13,31 @@ const {
2613
YOUTUBE_DL_SKIP_DOWNLOAD
2714
} = require('../src/constants')
2815

29-
const getLatest = data => {
30-
const { assets } = JSON.parse(data)
16+
const getLatest = ({ assets }) => {
3117
const { browser_download_url: url } = assets.find(
3218
({ name }) => name === YOUTUBE_DL_FILE
3319
)
34-
return get(url).then(({ data }) => data)
20+
return fetch(url)
3521
}
3622

3723
const getBinary = async url => {
38-
const { response, data } = await get(url)
39-
return response.headers['content-type'] === 'application/octet-stream'
40-
? data
41-
: getLatest(data)
24+
let response = await fetch(url)
25+
if (response.headers.get('content-type') !== 'application/octet-stream') {
26+
response = await getLatest(await response.json())
27+
}
28+
return response.body
4229
}
4330

44-
if (!YOUTUBE_DL_SKIP_DOWNLOAD) {
45-
Promise.all([getBinary(YOUTUBE_DL_HOST), mkdirp(YOUTUBE_DL_DIR)])
46-
.then(([buffer]) => writeFile(YOUTUBE_DL_PATH, buffer, { mode: 0o755 }))
47-
.catch(err => console.error(err.message || err))
31+
const installBinary = async () => {
32+
debug('downloading', { url: YOUTUBE_DL_HOST })
33+
const [binary] = await Promise.all([
34+
getBinary(YOUTUBE_DL_HOST),
35+
mkdir(YOUTUBE_DL_DIR, { recursive: true })
36+
])
37+
debug('writing', { path: YOUTUBE_DL_PATH })
38+
await pipeline(binary, createWriteStream(YOUTUBE_DL_PATH))
39+
await chmod(YOUTUBE_DL_PATH, 0o755)
40+
debug({ status: 'success' })
4841
}
42+
43+
YOUTUBE_DL_SKIP_DOWNLOAD ? debug({ status: 'skipped' }) : installBinary()

0 commit comments

Comments
 (0)