mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-28 09:20:56 +01:00
118 lines
2.7 KiB
JavaScript
118 lines
2.7 KiB
JavaScript
import util from 'node:util'
|
|
import child_process from 'node:child_process'
|
|
import path from 'node:path'
|
|
import fs from 'node:fs'
|
|
import dayjs from 'dayjs'
|
|
import { Adb } from '@devicefarmer/adbkit'
|
|
import { adbPath } from '@electron/configs/index.js'
|
|
|
|
console.log('adbPath', adbPath)
|
|
|
|
const exec = util.promisify(child_process.exec)
|
|
|
|
let client = null
|
|
|
|
window.addEventListener('beforeunload', () => {
|
|
if (client) {
|
|
client.kill()
|
|
}
|
|
})
|
|
|
|
const shell = async command => exec(`${adbPath} ${command}`)
|
|
const getDevices = async () => await client.listDevicesWithPaths()
|
|
const deviceShell = async (id, command) =>
|
|
await client.getDevice(id).shell(command)
|
|
const kill = async (...params) => await client.kill(...params)
|
|
const connect = async (...params) => await client.connect(...params)
|
|
const disconnect = async (...params) => await client.disconnect(...params)
|
|
|
|
const getDeviceIP = async (id) => {
|
|
try {
|
|
const { stdout } = await shell(`-s ${id} shell ip -f inet addr show wlan0`)
|
|
// console.log('stdout', stdout)
|
|
const reg = /inet ([0-9.]+)\/\d+/
|
|
const match = stdout.match(reg)
|
|
const value = match[1]
|
|
return value
|
|
}
|
|
catch (error) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
const tcpip = async (id, port = 5555) => await client.getDevice(id).tcpip(port)
|
|
|
|
const screencap = async (deviceId, options = {}) => {
|
|
let fileStream = null
|
|
try {
|
|
const device = client.getDevice(deviceId)
|
|
fileStream = await device.screencap()
|
|
console.log('fileStream', fileStream)
|
|
}
|
|
catch (error) {
|
|
console.warn(error?.message || error)
|
|
return false
|
|
}
|
|
|
|
if (!fileStream) {
|
|
return false
|
|
}
|
|
|
|
const fileName = `Screencap-${dayjs().format('YYYY-MM-DD-HH-mm-ss')}.png`
|
|
const savePath = options.savePath || path.resolve('../', fileName)
|
|
|
|
return new Promise((resolve, reject) => {
|
|
fileStream
|
|
.pipe(fs.createWriteStream(savePath))
|
|
.on('finish', () => {
|
|
resolve(true)
|
|
})
|
|
.on('error', (error) => {
|
|
console.warn(error?.message || error)
|
|
reject(false)
|
|
})
|
|
})
|
|
}
|
|
|
|
const watch = async (callback) => {
|
|
const tracker = await client.trackDevices()
|
|
tracker.on('add', async (ret) => {
|
|
const host = await getDeviceIP(ret.id)
|
|
callback('add', { ...ret, $host: host })
|
|
})
|
|
|
|
tracker.on('remove', (device) => {
|
|
callback('remove', device)
|
|
})
|
|
|
|
tracker.on('end', (ret) => {
|
|
callback('end', ret)
|
|
})
|
|
|
|
tracker.on('error', (err) => {
|
|
callback('error', err)
|
|
})
|
|
|
|
const close = () => tracker.end()
|
|
|
|
return close
|
|
}
|
|
|
|
export default () => {
|
|
client = Adb.createClient({ bin: adbPath })
|
|
// console.log('client', client)
|
|
|
|
return {
|
|
shell,
|
|
getDevices,
|
|
deviceShell,
|
|
kill,
|
|
connect,
|
|
disconnect,
|
|
getDeviceIP,
|
|
tcpip,
|
|
screencap,
|
|
watch,
|
|
}
|
|
}
|