-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandlecommand.go
More file actions
128 lines (106 loc) · 2.47 KB
/
handlecommand.go
File metadata and controls
128 lines (106 loc) · 2.47 KB
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
121
122
123
124
125
126
127
128
package main
import (
"log"
"os"
"strconv"
"strings"
)
func handle(buf []byte) {
command := strings.Split(string(buf), ":")[0]
if !strings.Contains(string(buf), ":") {
println("Command requires : at the end even if there are no arguments")
println("Example, test:")
return
}
arguments := strings.SplitN(string(buf), ":", 2)[1]
switch command {
//Server commands
case "test":
print("Testicles:")
print(arguments)
case "kill":
os.Remove("/tmp/castdaemon.sock")
os.Exit(1)
case "subscribe":
subscribe(arguments)
case "updateFeed":
updateFeed(arguments)
case "download":
//Sanitize and parse epNum
if len(strings.Split(arguments, ":")) < 2 {
log.Println("Download takes 2 arguments\ndownload:podtitle:epnum")
}
epNum, err := strconv.ParseUint(strings.ReplaceAll(strings.Split(arguments, ":")[1], "\n", ""), 0, 32)
if err != nil {
log.Print(err)
return
}
downloadEp(strings.Split(arguments, ":")[0], epNum)
case "delete":
if len(strings.Split(arguments, ":")) < 2 {
log.Println("Delete takes 2 arguments\ndelete:podtitle:epnum")
return
}
epNum, err := strconv.ParseUint(strings.ReplaceAll(strings.Split(arguments, ":")[1], "\n", ""), 0, 32)
if err != nil {
log.Print(err)
return
}
deleteEp(strings.Split(arguments, ":")[0], epNum)
case "play":
//Sanitze and parse epNum
if len(strings.Split(arguments, ":")) < 2 {
log.Println("Play takes 2 arguments\nplay:podtitle:epnum")
return
}
epNum, err := strconv.ParseUint(strings.ReplaceAll(strings.Split(arguments, ":")[1], "\n", ""), 0, 32)
if err != nil {
log.Print(err)
return
}
go play(strings.Split(arguments, ":")[0], epNum)
case "stop":
stop()
//setup mpris compatibility
case "mprize":
go mprize()
//A bunch of mediaplayer commands
case "pause":
pause()
case "unpause":
unpause()
case "ptoggle":
pausetoggle()
case "speed":
whatspeed, err := strconv.ParseFloat(strings.ReplaceAll(arguments, "\n", ""), 32)
if err != nil {
log.Print(err)
return
}
speed(whatspeed)
case "slow":
slow()
case "fast":
fast()
case "forward":
forward()
case "backward":
backward()
case "seek":
wheresec, err := strconv.ParseUint(strings.ReplaceAll(arguments, "\n", ""), 0, 32)
if err != nil {
log.Print(err)
return
}
seek(wheresec)
case "fskip":
forwardskip()
case "bskip":
backwardskip()
//Client player commands
case "getsubscribed":
returnsubscribed()
//case "getdownloaded":
// returndownloaded()
}
}