This commit is contained in:
Huakun Shen 2025-01-18 03:25:02 -05:00
commit a1c863fbb1
No known key found for this signature in database
8 changed files with 2480 additions and 0 deletions

50
.github/workflows/npm-publish.yml vendored Normal file
View File

@ -0,0 +1,50 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: NPM Package Publish
on:
release:
types: [created]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Test
run: |
bun install
bun test --coverage
publish-npm:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- run: |
PACKAGE_NAME=$(jq -r '.name' package.json)
PACKAGE_VERSION=$(jq -r '.version' package.json)
# Get the version from npm registry
REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version)
# Compare versions
if [ "$PACKAGE_VERSION" == "$REGISTRY_VERSION" ]; then
echo "Version $PACKAGE_VERSION already exists in the npm registry."
exit 0
else
echo "Version $PACKAGE_VERSION does not exist in the npm registry. Proceeding..."
npm publish --provenance --access public
fi
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

177
.gitignore vendored Normal file
View File

@ -0,0 +1,177 @@
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
# Logs
logs
_.log
npm-debug.log_
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Caches
.cache
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
# Runtime data
pids
_.pid
_.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# IntelliJ based IDEs
.idea
# Finder (MacOS) folder config
.DS_Store
dist/

1
README.md Normal file
View File

@ -0,0 +1 @@
# Kunkun Extension Download Twitter Video

20
build.ts Normal file
View File

@ -0,0 +1,20 @@
import { watch } from "fs"
import { join } from "path"
import { refreshTemplateWorkerExtension } from "@kksh/api/dev"
import { $ } from "bun"
async function build() {
await $`bun build --minify --target=browser --outdir=./dist ./src/index.ts`
await refreshTemplateWorkerExtension()
}
const srcDir = join(import.meta.dir, "src")
await build()
if (Bun.argv.includes("dev")) {
console.log(`Watching ${srcDir} for changes...`)
watch(srcDir, { recursive: true }, async (event, filename) => {
await build()
})
}

55
package.json Normal file
View File

@ -0,0 +1,55 @@
{
"$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-download-twitter-video",
"version": "0.0.8",
"type": "module",
"repository": "https://github.com/kunkunsh/kunkun-ext-download-twitter-video",
"kunkun": {
"name": "Download Twitter Video",
"shortDescription": "Download Twitter Video",
"longDescription": "Prodivde a Tweet URL, the video in the given tweet will be downloaded for you",
"identifier": "download-twitter-video",
"permissions": [
"clipboard:read-text",
"updownload:download",
{
"permission": "open:folder",
"allow": [
{
"path": "$DOWNLOAD"
}
]
}
],
"demoImages": [],
"icon": {
"type": "iconify",
"value": "skill-icons:twitter"
},
"customUiCmds": [],
"templateUiCmds": [
{
"name": "Download Twitter/X Video",
"main": "dist/index.js",
"cmds": []
}
]
},
"files": [
"./dist"
],
"scripts": {
"dev": "bun build.ts dev",
"build": "bun build.ts"
},
"dependencies": {
"@kksh/api": "^0.0.52"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"packageManager": "pnpm@9.15.4"
}

2071
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

79
src/index.ts Normal file
View File

@ -0,0 +1,79 @@
import {
clipboard,
expose,
Form,
open,
path,
toast,
ui,
updownload,
WorkerExtension
} from "@kksh/api/ui/worker"
async function handleDownload(username: string, tweetID: string) {
const APIResponse = await fetch(`https://api.vxtwitter.com/${username}/status/${tweetID}`).then(
(res) => res.json()
)
const directURL = APIResponse.media_extended[0]?.url
if (!directURL) return toast.error("No video found")
const targetPath = await path.join(await path.downloadDir(), `${tweetID}.mp4`)
await updownload.download(directURL, targetPath)
return toast.success(
"Downloaded",
{
description: `Downloaded to ${targetPath}`,
actionLabel: "Open Folder"
},
async () => {
open.folder(await path.downloadDir())
}
)
}
class ExtensionTemplate extends WorkerExtension {
async onFormSubmit(value: { url: string }): Promise<void> {
console.log("Form submitted", value)
// value.
const url = value.url
const [username, tweetID] = [url.split("/")[3], url.split("/")[5]]
handleDownload(username, tweetID)
}
async load() {
const clipboardText = await clipboard.readText()
let defaultValue = undefined
if (
// TODO: Improve URL validation
clipboardText &&
(clipboardText.includes("twitter.com") || clipboardText.includes("x.com")) &&
clipboardText.split("/").length > 4
) {
defaultValue = clipboardText
}
const form = new Form.Form({
key: "video-url",
fields: [
new Form.InputField({
key: "url",
label: "Tweet URL",
default: defaultValue,
placeholder: "Enter Tweet URL"
})
]
})
console.log("form from worker", form.toModel())
return ui.render(form)
}
onSearchTermChange(term: string): Promise<void> {
return Promise.resolve()
}
onItemSelected(value: string): Promise<void> {
console.log("Item selected:", value)
return Promise.resolve()
}
}
expose(new ExtensionTemplate())

27
tsconfig.json Normal file
View File

@ -0,0 +1,27 @@
{
"compilerOptions": {
// Enable latest features
"lib": [
"ESNext",
"DOM"
],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}