Updates regarding moving to source.pztrn.name and dependencies bundling with golang/dep.
This commit is contained in:
@@ -18,22 +18,22 @@
|
||||
package slack
|
||||
|
||||
import (
|
||||
// stdlib
|
||||
"net/http"
|
||||
// stdlib
|
||||
"net/http"
|
||||
|
||||
// local
|
||||
"lab.pztrn.name/pztrn/opensaps/context"
|
||||
"lab.pztrn.name/pztrn/opensaps/slack/apiserverinterface"
|
||||
// local
|
||||
"source.pztrn.name/misc/opensaps/context"
|
||||
"source.pztrn.name/misc/opensaps/slack/apiserverinterface"
|
||||
)
|
||||
|
||||
var (
|
||||
c *context.Context
|
||||
// HTTP server.
|
||||
httpsrv *http.Server
|
||||
c *context.Context
|
||||
// HTTP server.
|
||||
httpsrv *http.Server
|
||||
)
|
||||
|
||||
func New(cc *context.Context) {
|
||||
c = cc
|
||||
sh := SlackAPIServer{}
|
||||
c.RegisterSlackAPIServerInterface(slackapiserverinterface.SlackAPIServerInterface(sh))
|
||||
c = cc
|
||||
sh := SlackAPIServer{}
|
||||
c.RegisterSlackAPIServerInterface(slackapiserverinterface.SlackAPIServerInterface(sh))
|
||||
}
|
||||
|
@@ -18,78 +18,78 @@
|
||||
package slack
|
||||
|
||||
import (
|
||||
// stdlib
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strings"
|
||||
// stdlib
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strings"
|
||||
|
||||
// local
|
||||
"lab.pztrn.name/pztrn/opensaps/slack/message"
|
||||
// local
|
||||
"source.pztrn.name/misc/opensaps/slack/message"
|
||||
)
|
||||
|
||||
type SlackHandler struct {}
|
||||
type SlackHandler struct{}
|
||||
|
||||
func (sh SlackHandler) ServeHTTP(respwriter http.ResponseWriter, req *http.Request) {
|
||||
c.Log.Debugf("Received '%s' (empty = GET) request from %s, URL: '%s'", req.Method, req.Host, req.URL.Path)
|
||||
c.Log.Debugf("Received '%s' (empty = GET) request from %s, URL: '%s'", req.Method, req.Host, req.URL.Path)
|
||||
|
||||
// We should catch only POST requests. Otherwise return HTTP 404.
|
||||
if req.Method != "POST" {
|
||||
c.Log.Debugln("Not a POST request, returning HTTP 404")
|
||||
respwriter.WriteHeader(404)
|
||||
fmt.Fprintf(respwriter, "NOT FOUND")
|
||||
return
|
||||
}
|
||||
// We should catch only POST requests. Otherwise return HTTP 404.
|
||||
if req.Method != "POST" {
|
||||
c.Log.Debugln("Not a POST request, returning HTTP 404")
|
||||
respwriter.WriteHeader(404)
|
||||
fmt.Fprintf(respwriter, "NOT FOUND")
|
||||
return
|
||||
}
|
||||
|
||||
body, _ := ioutil.ReadAll(req.Body)
|
||||
req.Body.Close()
|
||||
body, _ := ioutil.ReadAll(req.Body)
|
||||
req.Body.Close()
|
||||
|
||||
c.Log.Debugf("Received body: %s", string(body))
|
||||
c.Log.Debugf("Received body: %s", string(body))
|
||||
|
||||
// Try to figure out where we should push received data.
|
||||
url_splitted := strings.Split(req.URL.Path, "/")
|
||||
fmt.Println(url_splitted)
|
||||
cfg := c.Config.GetConfig()
|
||||
// Try to figure out where we should push received data.
|
||||
url_splitted := strings.Split(req.URL.Path, "/")
|
||||
fmt.Println(url_splitted)
|
||||
cfg := c.Config.GetConfig()
|
||||
|
||||
var sent_to_pusher bool = false
|
||||
for name, config := range cfg.Webhooks {
|
||||
if strings.Contains(url_splitted[2], config.Slack.Random1) && strings.Contains(url_splitted[3], config.Slack.Random2) && strings.Contains(url_splitted[4], config.Slack.LongRandom) {
|
||||
c.Log.Debugf("Passed data belongs to '%s' and should go to '%s' pusher, protocol '%s'", name, config.Remote.PushTo, config.Remote.Pusher)
|
||||
// Parse message into SlackMessage structure.
|
||||
if strings.Contains(string(body)[0:7], "payload") {
|
||||
// We have HTTP form payload. It still should be a
|
||||
// parseable JSON string, we just need to do some
|
||||
// preparations.
|
||||
// First - remove "payload=" from the beginning.
|
||||
temp_body := string(body)
|
||||
temp_body = strings.Replace(temp_body, "payload=", "", 1)
|
||||
// Second - unescape data.
|
||||
temp_body, err := url.QueryUnescape(temp_body)
|
||||
if err != nil {
|
||||
c.Log.Errorln("Failed to decode body into parseable string!")
|
||||
return
|
||||
}
|
||||
var sent_to_pusher bool = false
|
||||
for name, config := range cfg.Webhooks {
|
||||
if strings.Contains(url_splitted[2], config.Slack.Random1) && strings.Contains(url_splitted[3], config.Slack.Random2) && strings.Contains(url_splitted[4], config.Slack.LongRandom) {
|
||||
c.Log.Debugf("Passed data belongs to '%s' and should go to '%s' pusher, protocol '%s'", name, config.Remote.PushTo, config.Remote.Pusher)
|
||||
// Parse message into SlackMessage structure.
|
||||
if strings.Contains(string(body)[0:7], "payload") {
|
||||
// We have HTTP form payload. It still should be a
|
||||
// parseable JSON string, we just need to do some
|
||||
// preparations.
|
||||
// First - remove "payload=" from the beginning.
|
||||
temp_body := string(body)
|
||||
temp_body = strings.Replace(temp_body, "payload=", "", 1)
|
||||
// Second - unescape data.
|
||||
temp_body, err := url.QueryUnescape(temp_body)
|
||||
if err != nil {
|
||||
c.Log.Errorln("Failed to decode body into parseable string!")
|
||||
return
|
||||
}
|
||||
|
||||
// And finally - convert body back to bytes.
|
||||
body = []byte(temp_body)
|
||||
}
|
||||
slackmsg := slackmessage.SlackMessage{}
|
||||
err := json.Unmarshal(body, &slackmsg)
|
||||
if err != nil {
|
||||
c.Log.Error("Failed to decode JSON into SlackMessage struct: '%s'", err.Error())
|
||||
return
|
||||
}
|
||||
c.Log.Debug("Received message:", fmt.Sprintf("%+v", slackmsg))
|
||||
c.SendToPusher(config.Remote.Pusher, config.Remote.PushTo, slackmsg)
|
||||
sent_to_pusher = true
|
||||
}
|
||||
}
|
||||
// And finally - convert body back to bytes.
|
||||
body = []byte(temp_body)
|
||||
}
|
||||
slackmsg := slackmessage.SlackMessage{}
|
||||
err := json.Unmarshal(body, &slackmsg)
|
||||
if err != nil {
|
||||
c.Log.Error("Failed to decode JSON into SlackMessage struct: '%s'", err.Error())
|
||||
return
|
||||
}
|
||||
c.Log.Debug("Received message:", fmt.Sprintf("%+v", slackmsg))
|
||||
c.SendToPusher(config.Remote.Pusher, config.Remote.PushTo, slackmsg)
|
||||
sent_to_pusher = true
|
||||
}
|
||||
}
|
||||
|
||||
if !sent_to_pusher {
|
||||
c.Log.Debug("Don't know where to push data. Ignoring with HTTP 404")
|
||||
respwriter.WriteHeader(404)
|
||||
fmt.Fprintf(respwriter, "NOT FOUND")
|
||||
}
|
||||
if !sent_to_pusher {
|
||||
c.Log.Debug("Don't know where to push data. Ignoring with HTTP 404")
|
||||
respwriter.WriteHeader(404)
|
||||
fmt.Fprintf(respwriter, "NOT FOUND")
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user