-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
server.go
253 lines (206 loc) · 5.77 KB
/
server.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
// 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 (
"net/http"
"os"
"sync"
"github.com/e154/smart-home/common/apperr"
"github.com/gin-gonic/gin"
"go.uber.org/atomic"
"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/gate_client"
"github.com/e154/smart-home/system/scripts"
)
// Server ...
type Server struct {
engine *gin.Engine
isStarted *atomic.Bool
addressPort *string
server *http.Server
skillLock *sync.Mutex
skills map[string]*Skill
adaptors *adaptors.Adaptors
config Config
scriptService scripts.ScriptService
gate *gate_client.GateClient
eventBus bus.Bus
}
// NewServer ...
func NewServer(adaptors *adaptors.Adaptors,
config Config,
scriptService scripts.ScriptService,
gateClient *gate_client.GateClient,
eventBus bus.Bus) *Server {
return &Server{
isStarted: atomic.NewBool(false),
adaptors: adaptors,
skillLock: &sync.Mutex{},
skills: make(map[string]*Skill),
config: config,
scriptService: scriptService,
gate: gateClient,
eventBus: eventBus,
}
}
// Start ...
func (s *Server) Start() {
if s.isStarted.Load() {
return
}
s.isStarted.Store(true)
s.init()
logger := NewLogger()
gin.DisableConsoleColor()
gin.DefaultWriter = logger
gin.DefaultErrorWriter = logger
gin.SetMode(gin.ReleaseMode)
s.engine = gin.New()
s.engine.POST("/*any", s.Auth, s.handlerFunc)
s.server = &http.Server{
Addr: s.config.String(),
Handler: s.engine,
}
go func() {
if err := s.server.ListenAndServe(); err != nil && err != http.ErrServerClosed {
log.Fatalf("listen: %s", err.Error())
}
}()
//todo fix
//s.gate.SetAlexaApiEngine(s.engine)
log.Infof("Serving server at %s", s.config.String())
}
func (s *Server) init() {
list, err := s.adaptors.AlexaSkill.ListEnabled(999, 0)
if err != nil {
log.Error(err.Error())
return
}
for _, skill := range list {
s.AddSkill(skill)
}
}
// Stop ...
func (s *Server) Stop() {
if !s.isStarted.Load() {
return
}
s.isStarted.Store(false)
//todo fix
//s.gate.SetAlexaApiEngine(nil)
if s.server != nil {
_ = s.server.Close()
}
}
func (s *Server) handlerFunc(ctx *gin.Context) {
log.Info("new request")
req := &Request{}
if err := ctx.ShouldBindJSON(req); err != nil {
log.Error(err.Error())
_ = ctx.AbortWithError(400, err)
return
}
resp := NewResponse()
switch req.GetRequestType() {
case "LaunchRequest":
s.OnLaunchHandler(ctx, req, resp)
case "IntentRequest":
s.OnIntentHandle(ctx, req, resp)
case "SessionEndedRequest":
s.OnSessionEndedHandler(ctx, req, resp)
case "AudioPlayer":
s.OnAudioPlayerHandler(ctx, req, resp)
default:
http.Error(ctx.Writer, "Invalid request.", http.StatusBadRequest)
}
ctx.Writer.Header().Set("Content-Type", "application/json;charset=UTF-8")
b, _ := resp.String()
_, _ = ctx.Writer.Write(b)
}
// OnLaunchHandler ...
func (s *Server) OnLaunchHandler(ctx *gin.Context, req *Request, resp *Response) {
s.skillLock.Lock()
defer s.skillLock.Unlock()
if skill, ok := s.skills[req.Context.System.Application.ApplicationID]; ok {
skill.OnLaunch(ctx, req, resp)
}
}
// OnIntentHandle ...
func (s *Server) OnIntentHandle(ctx *gin.Context, req *Request, resp *Response) {
s.skillLock.Lock()
defer s.skillLock.Unlock()
if skill, ok := s.skills[req.Context.System.Application.ApplicationID]; ok {
skill.OnIntent(ctx, req, resp)
}
}
// OnSessionEndedHandler ...
func (s *Server) OnSessionEndedHandler(ctx *gin.Context, req *Request, resp *Response) {
s.skillLock.Lock()
defer s.skillLock.Unlock()
if skill, ok := s.skills[req.Context.System.Application.ApplicationID]; ok {
skill.OnSessionEnded(ctx, req, resp)
}
}
// OnAudioPlayerHandler ...
func (s *Server) OnAudioPlayerHandler(ctx *gin.Context, req *Request, resp *Response) {
s.skillLock.Lock()
defer s.skillLock.Unlock()
for _, skill := range s.skills {
if skill.GetAppID() != req.Context.System.Application.ApplicationID {
continue
}
//todo check
//if skill.OnAudioPlayerState != nil {
// skill.OnAudioPlayerState(ctx, req, resp)
//}
}
}
// Auth ...
func (s Server) Auth(ctx *gin.Context) {
if os.Getenv("DEV") == "true" {
return
}
if !IsValidAlexaRequest(ctx.Writer, ctx.Request) {
_ = ctx.AbortWithError(401, apperr.ErrBadRequestParams)
return
}
}
// AddSkill ...
func (s *Server) AddSkill(skill *m.AlexaSkill) {
s.skillLock.Lock()
defer s.skillLock.Unlock()
if _, ok := s.skills[skill.SkillId]; !ok {
s.skills[skill.SkillId] = NewSkill(skill, s.adaptors, s.scriptService, s.eventBus)
}
}
// UpdateSkill ...
func (s *Server) UpdateSkill(skill *m.AlexaSkill) {
s.skillLock.Lock()
defer s.skillLock.Unlock()
s.skills[skill.SkillId] = NewSkill(skill, s.adaptors, s.scriptService, s.eventBus)
}
// DeleteSkill ...
func (s *Server) DeleteSkill(skill *m.AlexaSkill) {
s.skillLock.Lock()
defer s.skillLock.Unlock()
if _, ok := s.skills[skill.SkillId]; !ok {
delete(s.skills, skill.SkillId)
}
}