Files
recap/startos/actions/updateYtdlp.ts
T
2026-04-09 15:03:31 -05:00

51 lines
1.4 KiB
TypeScript

import { i18n } from '../i18n'
import { sdk } from '../sdk'
export const updateYtdlp = sdk.Action.withoutInput(
'update-ytdlp',
async ({ effects }) => ({
name: i18n('Update yt-dlp'),
description: i18n(
'Downloads the latest version of yt-dlp. Run this if YouTube downloads are failing — YouTube frequently changes its systems, requiring yt-dlp updates.',
),
warning: i18n('This may take a minute. The service will continue running.'),
allowedStatuses: 'any',
group: null,
visibility: 'enabled' as const,
}),
async ({ effects }) => {
// Run pip upgrade inside the running subcontainer
const sub = await sdk.SubContainer.of(
effects,
{ imageId: 'main' },
sdk.Mounts.of().mountVolume({
volumeId: 'main',
subpath: null,
mountpoint: '/data',
readonly: false,
}),
'ytdlp-update-sub',
)
const result = await sub.exec(['sh', '-c',
'pip3 install --break-system-packages -U yt-dlp curl_cffi 2>&1; echo "---"; echo "yt-dlp version: $(yt-dlp --version)"',
])
const output = result.stdout || 'Update completed'
return {
version: '1' as const,
title: 'yt-dlp Update',
message: output,
result: {
type: 'single' as const,
name: 'Output',
value: output,
masked: false,
copyable: true,
qr: false,
},
}
},
)