woodpecker/server/ws.go

143 lines
3.2 KiB
Go
Raw Normal View History

2015-04-08 22:43:59 +00:00
package server
import (
2015-04-30 02:57:43 +00:00
"fmt"
"net/url"
"strconv"
2015-04-08 22:43:59 +00:00
"time"
2015-04-25 00:06:46 +00:00
"github.com/drone/drone/common"
2015-04-08 22:43:59 +00:00
"github.com/drone/drone/eventbus"
2015-04-25 00:06:46 +00:00
log "github.com/Sirupsen/logrus"
2015-04-08 22:43:59 +00:00
"github.com/gin-gonic/gin"
"github.com/gorilla/websocket"
2015-04-30 02:57:43 +00:00
"github.com/koding/websocketproxy"
2015-04-08 22:43:59 +00:00
)
const (
// Time allowed to write the message to the client.
writeWait = 10 * time.Second
// Time allowed to read the next pong message from the client.
pongWait = 60 * time.Second
// Send pings to client with this period. Must be less than pongWait.
pingPeriod = (pongWait * 9) / 10
)
var upgrader = websocket.Upgrader{
ReadBufferSize: 1024,
WriteBufferSize: 1024,
}
// GetEvents will upgrade the connection to a Websocket and will stream
// event updates to the browser.
func GetEvents(c *gin.Context) {
bus := ToBus(c)
user := ToUser(c)
remote := ToRemote(c)
2015-04-25 00:06:46 +00:00
// TODO (bradrydzewski) revisit this approach at some point.
//
// instead of constantly checking for remote permissions, we will
// cache them for the lifecycle of this websocket. The pro here is
// that we are making way less external calls (good). The con is that
// if a ton of developers conntect to websockets for long periods of
// time with heavy build traffic (not super likely, but possible) this
// caching strategy could take up a lot of memory.
perms_ := map[string]*common.Perm{}
2015-04-08 22:43:59 +00:00
// upgrade the websocket
ws, err := upgrader.Upgrade(c.Writer, c.Request, nil)
if err != nil {
c.Fail(400, err)
return
}
ticker := time.NewTicker(pingPeriod)
eventc := make(chan *eventbus.Event, 1)
bus.Subscribe(eventc)
defer func() {
bus.Unsubscribe(eventc)
ticker.Stop()
ws.Close()
close(eventc)
}()
go func() {
for {
select {
case event := <-eventc:
if event == nil {
return // why would this ever happen?
}
2015-04-25 00:06:46 +00:00
perm, ok := perms_[event.Repo.FullName]
if !ok {
perm = perms(remote, user, event.Repo)
perms_[event.Repo.FullName] = perm
}
if perm != nil && perm.Pull {
err := ws.WriteJSON(event)
if err != nil {
log.Errorln(err, event)
}
2015-04-08 22:43:59 +00:00
}
case <-ticker.C:
ws.SetWriteDeadline(time.Now().Add(writeWait))
err := ws.WriteMessage(websocket.PingMessage, []byte{})
if err != nil {
ws.Close()
2015-04-25 00:06:46 +00:00
log.Debugf("closed websocket")
2015-04-08 22:43:59 +00:00
return
}
}
}
}()
readWebsocket(ws)
2015-04-25 00:06:46 +00:00
log.Debugf("closed websocket")
2015-04-08 22:43:59 +00:00
}
2015-04-30 02:57:43 +00:00
func GetStream(c *gin.Context) {
store := ToDatastore(c)
repo := ToRepo(c)
build, _ := strconv.Atoi(c.Params.ByName("build"))
task, _ := strconv.Atoi(c.Params.ByName("number"))
agent, err := store.BuildAgent(repo.FullName, build)
if err != nil {
c.Fail(404, err)
return
}
url_, err := url.Parse("ws://" + agent.Addr)
if err != nil {
c.Fail(500, err)
return
}
url_.Path = fmt.Sprintf("/stream/%s/%v/%v", repo.FullName, build, task)
proxy := websocketproxy.NewProxy(url_)
proxy.ServeHTTP(c.Writer, c.Request)
log.Debugf("closed websocket")
}
2015-04-08 22:43:59 +00:00
// readWebsocket will block while reading the websocket data
func readWebsocket(ws *websocket.Conn) {
defer ws.Close()
ws.SetReadLimit(512)
ws.SetReadDeadline(time.Now().Add(pongWait))
ws.SetPongHandler(func(string) error {
ws.SetReadDeadline(time.Now().Add(pongWait))
return nil
})
for {
_, _, err := ws.ReadMessage()
if err != nil {
break
}
}
}