-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.go
executable file
·52 lines (42 loc) · 1.05 KB
/
commands.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
package main
import (
"bytes"
"html/template"
"io/ioutil"
"log"
"github.com/kyokomi/emoji"
"gopkg.in/yaml.v2"
)
type commandFile struct {
File []*Command `yaml:"commands"`
}
// ReadCommandsFromFile read and parse the given YAML file
func ReadCommandsFromFile(file string) ([]*Command, error) {
data, err := ioutil.ReadFile(file)
if err != nil {
return nil, err
}
var f commandFile
if err := yaml.Unmarshal(data, &f); err != nil {
log.Fatalf("error: %v", err)
}
return f.File, nil
}
// Command describe a Owncast stream command
type Command struct {
Trigger string `yaml:"trigger"`
Template string `yaml:"template"`
}
// Parse the current command template and replace placeholders with their respective result
func (c *Command) Parse() (string, error) {
tpl := template.Must(template.New("").Funcs(template.FuncMap{
"uptime": Uptime,
}).Parse(c.Template))
// Execute template functions
var content bytes.Buffer
if err := tpl.Execute(&content, nil); err != nil {
return "", err
}
// Set emojis
return emoji.Sprint(content.String()), nil
}