mirror of
https://github.com/pompurin404/mihomo-party.git
synced 2024-11-16 03:32:17 +08:00
75b2df4de1
Some checks are pending
Build / windows (arm64) (push) Waiting to run
Build / windows (ia32) (push) Waiting to run
Build / windows (x64) (push) Waiting to run
Build / windows7 (ia32) (push) Waiting to run
Build / windows7 (x64) (push) Waiting to run
Build / linux (arm64) (push) Waiting to run
Build / linux (x64) (push) Waiting to run
Build / macos (arm64) (push) Waiting to run
Build / macos (x64) (push) Waiting to run
Build / macos10 (arm64) (push) Waiting to run
Build / macos10 (x64) (push) Waiting to run
Build / artifact (push) Blocked by required conditions
Build / updater (push) Blocked by required conditions
Build / aur-release-updater (mihomo-party) (push) Blocked by required conditions
Build / aur-release-updater (mihomo-party-bin) (push) Blocked by required conditions
Build / aur-release-updater (mihomo-party-electron) (push) Blocked by required conditions
Build / aur-release-updater (mihomo-party-electron-bin) (push) Blocked by required conditions
Build / aur-git-updater (push) Waiting to run
Build / Update WinGet Package (push) Blocked by required conditions
Build / Update Homebrew cask (push) Blocked by required conditions
159 lines
5.1 KiB
JavaScript
159 lines
5.1 KiB
JavaScript
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|
import fs from 'fs'
|
|
import axios from 'axios'
|
|
import path from 'path'
|
|
import FormData from 'form-data'
|
|
import { execSync } from 'child_process'
|
|
|
|
const CHAT_ID = '@MihomoPartyCi'
|
|
const GITHUB_WORKSPACE = process.env.GITHUB_WORKSPACE
|
|
const pkg = fs.readFileSync('package.json', 'utf-8')
|
|
const { version } = JSON.parse(pkg)
|
|
const hash = execSync('git rev-parse --short HEAD').toString().trim()
|
|
const message = execSync('git log -1 --pretty=%B').toString().trim()
|
|
|
|
const linuxFiles = [
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-linux-${version}-aarch64.rpm`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-linux-${version}-arm64.deb`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-linux-${version}-x86_64.rpm`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-linux-${version}-amd64.deb`)
|
|
]
|
|
|
|
const macosFiles = [
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-macos-${version}-arm64.pkg`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-macos-${version}-x64.pkg`)
|
|
]
|
|
|
|
const macos10Files = [
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-catalina-${version}-arm64.pkg`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-catalina-${version}-x64.pkg`)
|
|
]
|
|
|
|
const windowsFiles = [
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-windows-${version}-x64-setup.exe`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-windows-${version}-x64-portable.7z`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-windows-${version}-ia32-setup.exe`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-windows-${version}-ia32-portable.7z`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-windows-${version}-arm64-setup.exe`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-windows-${version}-arm64-portable.7z`)
|
|
]
|
|
|
|
const windows7Files = [
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-win7-${version}-x64-setup.exe`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-win7-${version}-x64-portable.7z`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-win7-${version}-ia32-setup.exe`),
|
|
path.join(GITHUB_WORKSPACE, `mihomo-party-win7-${version}-ia32-portable.7z`)
|
|
]
|
|
|
|
const windowsMedia = windowsFiles.map((file, index) => ({
|
|
type: 'document',
|
|
media: `attach://file${index}`
|
|
}))
|
|
windowsMedia[windowsMedia.length - 1].caption = `#${hash} #Windows10 #Windows11\n${message}`
|
|
const windowsForm = new FormData()
|
|
windowsForm.append('chat_id', CHAT_ID)
|
|
windowsForm.append('media', JSON.stringify(windowsMedia))
|
|
windowsFiles.forEach((file, index) => {
|
|
windowsForm.append(`file${index}`, fs.createReadStream(file))
|
|
})
|
|
|
|
const windows7Media = windows7Files.map((file, index) => ({
|
|
type: 'document',
|
|
media: `attach://file${index}`
|
|
}))
|
|
windows7Media[windows7Media.length - 1].caption = `#${hash} #Windows7 #Windows8\n${message}`
|
|
const windows7Form = new FormData()
|
|
windows7Form.append('chat_id', CHAT_ID)
|
|
windows7Form.append('media', JSON.stringify(windows7Media))
|
|
windows7Files.forEach((file, index) => {
|
|
windows7Form.append(`file${index}`, fs.createReadStream(file))
|
|
})
|
|
|
|
const linuxMedia = linuxFiles.map((file, index) => ({
|
|
type: 'document',
|
|
media: `attach://file${index}`
|
|
}))
|
|
linuxMedia[linuxMedia.length - 1].caption = `#${hash} #Linux\n${message}`
|
|
const linuxForm = new FormData()
|
|
linuxForm.append('chat_id', CHAT_ID)
|
|
linuxForm.append('media', JSON.stringify(linuxMedia))
|
|
linuxFiles.forEach((file, index) => {
|
|
linuxForm.append(`file${index}`, fs.createReadStream(file))
|
|
})
|
|
|
|
const macosMedia = macosFiles.map((file, index) => ({
|
|
type: 'document',
|
|
media: `attach://file${index}`
|
|
}))
|
|
macosMedia[macosMedia.length - 1].caption = `#${hash} #macOS11+\n${message}`
|
|
const macosForm = new FormData()
|
|
macosForm.append('chat_id', CHAT_ID)
|
|
macosForm.append('media', JSON.stringify(macosMedia))
|
|
macosFiles.forEach((file, index) => {
|
|
macosForm.append(`file${index}`, fs.createReadStream(file))
|
|
})
|
|
|
|
const macos10Media = macos10Files.map((file, index) => ({
|
|
type: 'document',
|
|
media: `attach://file${index}`
|
|
}))
|
|
macos10Media[macos10Media.length - 1].caption = `#${hash} #macOS10+\n${message}`
|
|
const macos10Form = new FormData()
|
|
macos10Form.append('chat_id', CHAT_ID)
|
|
macos10Form.append('media', JSON.stringify(macos10Media))
|
|
macos10Files.forEach((file, index) => {
|
|
macos10Form.append(`file${index}`, fs.createReadStream(file))
|
|
})
|
|
|
|
function sleep(ms) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms))
|
|
}
|
|
|
|
await axios.post(
|
|
`http://127.0.0.1:8081/bot${process.env.TELEGRAM_BOT_TOKEN}/sendMediaGroup`,
|
|
windowsForm,
|
|
{
|
|
headers: windowsForm.getHeaders()
|
|
}
|
|
)
|
|
|
|
await sleep(10000)
|
|
|
|
await axios.post(
|
|
`http://127.0.0.1:8081/bot${process.env.TELEGRAM_BOT_TOKEN}/sendMediaGroup`,
|
|
windows7Form,
|
|
{
|
|
headers: windows7Form.getHeaders()
|
|
}
|
|
)
|
|
|
|
await sleep(10000)
|
|
|
|
await axios.post(
|
|
`http://127.0.0.1:8081/bot${process.env.TELEGRAM_BOT_TOKEN}/sendMediaGroup`,
|
|
macosForm,
|
|
{
|
|
headers: macosForm.getHeaders()
|
|
}
|
|
)
|
|
|
|
await sleep(10000)
|
|
|
|
await axios.post(
|
|
`http://127.0.0.1:8081/bot${process.env.TELEGRAM_BOT_TOKEN}/sendMediaGroup`,
|
|
macos10Form,
|
|
{
|
|
headers: macos10Form.getHeaders()
|
|
}
|
|
)
|
|
|
|
await sleep(10000)
|
|
|
|
await axios.post(
|
|
`http://127.0.0.1:8081/bot${process.env.TELEGRAM_BOT_TOKEN}/sendMediaGroup`,
|
|
linuxForm,
|
|
{
|
|
headers: linuxForm.getHeaders()
|
|
}
|
|
)
|