-
Notifications
You must be signed in to change notification settings - Fork 38
/
scenecollection.go
83 lines (71 loc) · 1.84 KB
/
scenecollection.go
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
package main
import (
"errors"
"fmt"
"strings"
scenecollections "github.com/andreykaipov/goobs/api/requests/scene_collections"
"github.com/muesli/coral"
)
var (
sceneCollectionCmd = &coral.Command{
Use: "scenecollection",
Short: "manage scene collections",
Long: `The scenecollection command manages scene collections`,
RunE: nil,
}
listSceneCollectionCmd = &coral.Command{
Use: "list",
Short: "List all scene collections",
RunE: func(cmd *coral.Command, args []string) error {
return listSceneCollections()
},
}
getSceneCollectionCmd = &coral.Command{
Use: "get",
Short: "Get the current scene collection",
RunE: func(cmd *coral.Command, args []string) error {
return getSceneCollection()
},
}
setSceneCollectionCmd = &coral.Command{
Use: "set",
Short: "Set the current scene collection",
RunE: func(cmd *coral.Command, args []string) error {
if len(args) < 1 {
return errors.New("set requires a scene collection name as argument")
}
return setSceneCollection(strings.Join(args, " "))
},
}
)
func listSceneCollections() error {
r, err := client.SceneCollections.ListSceneCollections()
if err != nil {
return err
}
for _, v := range r.SceneCollections {
fmt.Println(v.ScName)
}
return nil
}
func setSceneCollection(collection string) error {
r := scenecollections.SetCurrentSceneCollectionParams{
ScName: collection,
}
_, err := client.SceneCollections.SetCurrentSceneCollection(&r)
return err
}
func getSceneCollection() error {
r, err := client.SceneCollections.GetCurrentSceneCollection()
if err != nil {
return err
}
fmt.Println(r.ScName)
return nil
}
func init() {
sceneCollectionCmd.AddCommand(listSceneCollectionCmd)
sceneCollectionCmd.AddCommand(setSceneCollectionCmd)
sceneCollectionCmd.AddCommand(getSceneCollectionCmd)
rootCmd.AddCommand(sceneCollectionCmd)
}