-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
skill.go
124 lines (106 loc) · 3.07 KB
/
skill.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
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
// This file is part of the Smart Home
// Program complex distribution https://github.com/e154/smart-home
// Copyright (C) 2016-2021, Filippov Alex
//
// This library is free software: you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library. If not, see
// <https://www.gnu.org/licenses/>.
package alexa
import (
"fmt"
"github.com/e154/smart-home/adaptors"
m "github.com/e154/smart-home/models"
"github.com/e154/smart-home/system/bus"
"github.com/e154/smart-home/system/scripts"
"github.com/gin-gonic/gin"
)
// Skill ...
type Skill struct {
adaptors *adaptors.Adaptors
model *m.AlexaSkill
scriptService scripts.ScriptService
eventBus bus.Bus
engine *scripts.Engine
jsBind *AlexaBind
}
// NewSkill ...
func NewSkill(model *m.AlexaSkill,
adaptors *adaptors.Adaptors,
scriptService scripts.ScriptService,
eventBus bus.Bus) (skill *Skill) {
skill = &Skill{
model: model,
adaptors: adaptors,
scriptService: scriptService,
eventBus: eventBus,
jsBind: NewAlexaBind(eventBus, model.Id),
}
if model.Script != nil {
skill.engine, _ = scriptService.NewEngine(model.Script)
if err := skill.engine.Compile(); err != nil {
log.Error(err.Error())
}
skill.engine.PushStruct("Alexa", skill.jsBind)
_, _ = skill.engine.Do()
}
return
}
// GetAppID ...
func (h Skill) GetAppID() string {
return h.model.SkillId
}
// OnLaunch ...
func (h *Skill) OnLaunch(_ *gin.Context, req *Request, resp *Response) {
if h.engine == nil {
return
}
h.jsBind.update(req, resp)
if _, err := h.engine.AssertFunction("skillOnLaunch"); err != nil {
log.Error(err.Error())
}
}
// OnIntent ...
func (h *Skill) OnIntent(_ *gin.Context, req *Request, resp *Response) {
var exist bool
for _, intent := range h.model.Intents {
if intent.Name != req.GetIntentName() {
continue
}
exist = true
h.jsBind.update(req, resp)
if _, err := h.engine.EvalScript(intent.Script); err != nil {
log.Error(fmt.Sprintf("%+v", err))
return
}
if _, err := h.engine.AssertFunction("skillOnIntent"); err != nil {
log.Error(fmt.Sprintf("%+v", err))
return
}
}
if !exist {
log.Warnf("unknown intent name %s", req.GetIntentName())
}
}
// OnSessionEnded ...
func (h *Skill) OnSessionEnded(_ *gin.Context, req *Request, resp *Response) {
if h.engine == nil {
return
}
h.jsBind.update(req, resp)
if _, err := h.engine.AssertFunction("skillOnSessionEnd"); err != nil {
log.Error(err.Error())
}
}
// OnAudioPlayerState ...
func (h Skill) OnAudioPlayerState(ctx *gin.Context, req *Request, resp *Response) {
}