mirror of
https://github.com/ZiuChen/ClipboardManager.git
synced 2025-06-07 13:54:05 +08:00
feat: 不再内置二进制文件 让用户自行选择监听剪贴板方式
This commit is contained in:
parent
a05e9c4742
commit
73be7b47df
56
public/listener.js
Normal file
56
public/listener.js
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
const { chmodSync, existsSync } = require('fs')
|
||||||
|
const { EventEmitter } = require('events')
|
||||||
|
const path = require('path')
|
||||||
|
const { execFile } = require('child_process')
|
||||||
|
|
||||||
|
class ClipboardEventListener extends EventEmitter {
|
||||||
|
constructor() {
|
||||||
|
super()
|
||||||
|
this.child = null
|
||||||
|
this.listening = false
|
||||||
|
}
|
||||||
|
startListening(dbPath) {
|
||||||
|
const targetMap = {
|
||||||
|
win32: 'clipboard-event-handler-win32.exe',
|
||||||
|
linux: 'clipboard-event-handler-linux'
|
||||||
|
}
|
||||||
|
const { platform } = process
|
||||||
|
const target = path.resolve(
|
||||||
|
dbPath.split('_utools_clipboard_manager_storage')[0],
|
||||||
|
targetMap[platform]
|
||||||
|
)
|
||||||
|
if (!existsSync(target)) {
|
||||||
|
this.emit('error', '剪贴板监听程序不存在')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (platform === 'win32') {
|
||||||
|
this.child = execFile(target)
|
||||||
|
} else if (platform === 'linux') {
|
||||||
|
chmodSync(target, 0o755)
|
||||||
|
this.child = execFile(target)
|
||||||
|
} else {
|
||||||
|
throw 'Not yet supported'
|
||||||
|
}
|
||||||
|
this.child.stdout.on('data', (data) => {
|
||||||
|
if (data.trim() === 'CLIPBOARD_CHANGE') {
|
||||||
|
this.emit('change')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.child.stdout.on('close', () => {
|
||||||
|
this.emit('close')
|
||||||
|
this.listening = false
|
||||||
|
})
|
||||||
|
this.child.stdout.on('exit', () => {
|
||||||
|
this.emit('exit')
|
||||||
|
this.listening = false
|
||||||
|
})
|
||||||
|
this.listening = true
|
||||||
|
}
|
||||||
|
stopListening() {
|
||||||
|
const res = this.child.kill()
|
||||||
|
this.listening = false
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = new ClipboardEventListener()
|
21
public/node_modules/clipboard-event/LICENSE
generated
vendored
21
public/node_modules/clipboard-event/LICENSE
generated
vendored
@ -1,21 +0,0 @@
|
|||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2020 Sudhakar R
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
62
public/node_modules/clipboard-event/index.js
generated
vendored
62
public/node_modules/clipboard-event/index.js
generated
vendored
@ -1,62 +0,0 @@
|
|||||||
const { chmodSync, existsSync, mkdirSync, copyFileSync } = require('fs')
|
|
||||||
const { EventEmitter } = require('events')
|
|
||||||
const path = require('path')
|
|
||||||
const { execFile } = require('child_process')
|
|
||||||
const homeDir = require('os').homedir()
|
|
||||||
|
|
||||||
class ClipboardEventListener extends EventEmitter {
|
|
||||||
constructor() {
|
|
||||||
super()
|
|
||||||
this.child = null
|
|
||||||
this.listening = false
|
|
||||||
}
|
|
||||||
startListening() {
|
|
||||||
const { platform } = process
|
|
||||||
if (platform === 'win32') {
|
|
||||||
this.child = execFile(path.join(__dirname, 'platform/clipboard-event-handler-win32.exe'))
|
|
||||||
} else if (platform === 'linux') {
|
|
||||||
// linux: cant execFile without chmod, and cant chmod in app.asar
|
|
||||||
// so we need to copy the file to /usr/bin
|
|
||||||
const targetPath = path.resolve(homeDir, '.local', 'bin')
|
|
||||||
const target = path.resolve(targetPath, 'clipboard-event-handler-linux')
|
|
||||||
const p = path.join(__dirname, 'platform/clipboard-event-handler-linux')
|
|
||||||
try {
|
|
||||||
if (!existsSync(targetPath)) {
|
|
||||||
// bin dir doesnt exist, create it
|
|
||||||
mkdirSync(targetPath)
|
|
||||||
}
|
|
||||||
if (!existsSync(target)) {
|
|
||||||
// copy the file
|
|
||||||
copyFileSync(p, target)
|
|
||||||
chmodSync(target, 0o755)
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
this.emit('error', error)
|
|
||||||
}
|
|
||||||
this.child = execFile(target)
|
|
||||||
} else {
|
|
||||||
throw 'Not yet supported'
|
|
||||||
}
|
|
||||||
this.child.stdout.on('data', (data) => {
|
|
||||||
if (data.trim() === 'CLIPBOARD_CHANGE') {
|
|
||||||
this.emit('change')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
this.child.stdout.on('close', () => {
|
|
||||||
this.emit('close')
|
|
||||||
this.listening = false
|
|
||||||
})
|
|
||||||
this.child.stdout.on('exit', () => {
|
|
||||||
this.emit('exit')
|
|
||||||
this.listening = false
|
|
||||||
})
|
|
||||||
this.listening = true
|
|
||||||
}
|
|
||||||
stopListening() {
|
|
||||||
const res = this.child.kill()
|
|
||||||
this.listening = false
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = new ClipboardEventListener()
|
|
BIN
public/node_modules/clipboard-event/platform/clipboard-event-handler-linux
generated
vendored
BIN
public/node_modules/clipboard-event/platform/clipboard-event-handler-linux
generated
vendored
Binary file not shown.
BIN
public/node_modules/clipboard-event/platform/clipboard-event-handler-win32.exe
generated
vendored
BIN
public/node_modules/clipboard-event/platform/clipboard-event-handler-win32.exe
generated
vendored
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
const { existsSync, readFileSync, writeFileSync, mkdirSync } = require('fs')
|
const { existsSync, readFileSync, writeFileSync, mkdirSync } = require('fs')
|
||||||
const crypto = require('crypto')
|
const crypto = require('crypto')
|
||||||
const listener = require('clipboard-event')
|
const listener = require('./listener')
|
||||||
const { clipboard } = require('electron')
|
const { clipboard } = require('electron')
|
||||||
const time = require('./time')
|
const time = require('./time')
|
||||||
|
|
||||||
|
@ -214,31 +214,7 @@ export default function initPlugin() {
|
|||||||
db.addItem(item)
|
db.addItem(item)
|
||||||
}
|
}
|
||||||
|
|
||||||
const registerClipEvent = (listener) => {
|
const addCommonListener = () => {
|
||||||
const exitHandler = () => {
|
|
||||||
utools.showNotification('剪贴板监听异常退出 请重启插件以开启监听')
|
|
||||||
utools.outPlugin()
|
|
||||||
}
|
|
||||||
const errorHandler = (error) => {
|
|
||||||
const info = '请手动安装 clipboard-event-handler-linux 到 ~/.local/bin'
|
|
||||||
const site = 'https://ziuchen.gitee.io/project/ClipboardManager/guide/'
|
|
||||||
utools.showNotification('启动剪贴板监听出错: ' + error + info)
|
|
||||||
utools.shellOpenExternal(site)
|
|
||||||
utools.outPlugin()
|
|
||||||
}
|
|
||||||
listener
|
|
||||||
.on('change', handleClipboardChange)
|
|
||||||
.on('close', exitHandler)
|
|
||||||
.on('exit', exitHandler)
|
|
||||||
.on('error', (error) => errorHandler(error))
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!utools.isMacOs()) {
|
|
||||||
// 首次启动插件 即开启监听
|
|
||||||
registerClipEvent(listener)
|
|
||||||
listener.startListening()
|
|
||||||
} else {
|
|
||||||
// macos 由于无法执行 clipboard-event-handler-mac 所以使用旧方法
|
|
||||||
let prev = db.dataBase.data[0] || {}
|
let prev = db.dataBase.data[0] || {}
|
||||||
function loop() {
|
function loop() {
|
||||||
time.sleep(300).then(loop)
|
time.sleep(300).then(loop)
|
||||||
@ -256,11 +232,39 @@ export default function initPlugin() {
|
|||||||
loop()
|
loop()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const registerClipEvent = (listener) => {
|
||||||
|
const exitHandler = () => {
|
||||||
|
utools.showNotification('剪贴板监听异常退出 请重启插件以开启监听')
|
||||||
|
utools.outPlugin()
|
||||||
|
}
|
||||||
|
const errorHandler = (error) => {
|
||||||
|
const info = '请手动安装 clipboard-event-handler 到 剪贴板数据库目录'
|
||||||
|
const site = 'https://ziuchen.gitee.io/project/ClipboardManager/guide/'
|
||||||
|
utools.showNotification('启动剪贴板监听出错: ' + error + info)
|
||||||
|
utools.shellOpenExternal(site)
|
||||||
|
addCommonListener()
|
||||||
|
}
|
||||||
|
listener
|
||||||
|
.on('change', handleClipboardChange)
|
||||||
|
.on('close', exitHandler)
|
||||||
|
.on('exit', exitHandler)
|
||||||
|
.on('error', (error) => errorHandler(error))
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!utools.isMacOs()) {
|
||||||
|
// 首次启动插件 即开启监听
|
||||||
|
registerClipEvent(listener)
|
||||||
|
listener.startListening(setting.database.path)
|
||||||
|
} else {
|
||||||
|
// macos 由于无法执行 clipboard-event-handler-mac 所以使用旧方法
|
||||||
|
addCommonListener()
|
||||||
|
}
|
||||||
|
|
||||||
utools.onPluginEnter(() => {
|
utools.onPluginEnter(() => {
|
||||||
if (!listener.listening && !utools.isMacOs()) {
|
if (!listener.listening && !utools.isMacOs()) {
|
||||||
// 进入插件后 如果监听已关闭 则重新开启监听
|
// 进入插件后 如果监听已关闭 则重新开启监听
|
||||||
registerClipEvent(listener)
|
registerClipEvent(listener)
|
||||||
listener.startListening()
|
listener.startListening(setting.database.path)
|
||||||
}
|
}
|
||||||
toTop()
|
toTop()
|
||||||
resetNav()
|
resetNav()
|
||||||
|
@ -226,15 +226,17 @@ onMounted(() => {
|
|||||||
updateShowList(activeTab.value)
|
updateShowList(activeTab.value)
|
||||||
|
|
||||||
// 定期检查更新
|
// 定期检查更新
|
||||||
if (!utools.isMacOs) {
|
if (!utools.isMacOs() && window.listener.listening) {
|
||||||
|
// 非macOS系统且监听器开启时
|
||||||
window.listener.on('change', () => {
|
window.listener.on('change', () => {
|
||||||
list.value = window.db.dataBase.data
|
list.value = window.db.dataBase.data
|
||||||
updateShowList(activeTab.value)
|
updateShowList(activeTab.value)
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
// macos
|
// macOS且监听器启动失败时
|
||||||
let prev = {}
|
let prev = {}
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
|
console.log('interval')
|
||||||
const now = window.db.dataBase.data[0]
|
const now = window.db.dataBase.data[0]
|
||||||
if (prev?.id === now?.id) {
|
if (prev?.id === now?.id) {
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user