forked from tnychn/mpv-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discord.lua
120 lines (107 loc) · 2.47 KB
/
discord.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
local msg = require("mp.msg")
local opts = require("mp.options")
local utils = require("mp.utils")
local options = {
key = "D",
active = true,
client_id = "737663962677510245",
binary_path = "",
socket_path = "/tmp/mpvsocket",
use_static_socket_path = true,
autohide_threshold = 0,
}
opts.read_options(options, "discord")
if options.binary_path == "" then
msg.fatal("Missing binary path in config file.")
os.exit(1)
end
function file_exists(path) -- fix(#23): use this instead of utils.file_info
local f = io.open(path, "r")
if f ~= nil then
io.close(f)
return true
else
return false
end
end
if not file_exists(options.binary_path) then
msg.fatal("The specified binary path does not exist.")
os.exit(1)
end
local version = "1.6.1"
msg.info(("mpv-discord v%s by tnychn"):format(version))
local socket_path = options.socket_path
if not options.use_static_socket_path then
local pid = utils.getpid()
local filename = ("mpv-discord-%s"):format(pid)
if socket_path == "" then
socket_path = "/tmp/" -- default
end
socket_path = utils.join_path(socket_path, filename)
elseif socket_path == "" then
msg.fatal("Missing socket path in config file.")
os.exit(1)
end
msg.info(("(mpv-ipc): %s"):format(socket_path))
mp.set_property("input-ipc-server", socket_path)
local cmd = nil
local function start()
if cmd == nil then
cmd = mp.command_native_async({
name = "subprocess",
playback_only = false,
args = {
options.binary_path,
socket_path,
options.client_id,
},
}, function() end)
msg.info("launched subprocess")
mp.osd_message("Discord Rich Presence: Started")
end
end
function stop()
mp.abort_async_command(cmd)
cmd = nil
msg.info("aborted subprocess")
mp.osd_message("Discord Rich Presence: Stopped")
end
if options.active then
mp.register_event("file-loaded", start)
end
mp.add_key_binding(options.key, "toggle-discord", function()
if cmd ~= nil then
stop()
else
start()
end
end)
mp.register_event("shutdown", function()
if cmd ~= nil then
stop()
end
if not options.use_static_socket_path then
os.remove(socket_path)
end
end)
if options.autohide_threshold > 0 then
local timer = nil
local t = options.autohide_threshold
mp.observe_property("pause", "bool", function(_, value)
if value == true then
timer = mp.add_timeout(t, function()
if cmd ~= nil then
stop()
end
end)
else
if timer ~= nil then
timer:kill()
timer = nil
end
if options.active and cmd == nil then
start()
end
end
end)
end