Converted GitHub

This commit is contained in:
Dean Karn
2018-07-25 22:05:43 -07:00
parent adb918738a
commit 077706a514
13 changed files with 746 additions and 516 deletions
+95 -96
View File
@@ -1,124 +1,123 @@
package webhooks
import (
"fmt"
"net/http"
)
// Header provides http.Header to minimize imports
type Header http.Header
// Provider defines the type of webhook
type Provider int
// // Provider defines the type of webhook
// type Provider int
func (p Provider) String() string {
switch p {
case GitHub:
return "GitHub"
case Bitbucket:
return "Bitbucket"
case GitLab:
return "GitLab"
case Gogs:
return "Gogs"
default:
return "Unknown"
}
}
// func (p Provider) String() string {
// switch p {
// case GitHub:
// return "GitHub"
// case Bitbucket:
// return "Bitbucket"
// case GitLab:
// return "GitLab"
// case Gogs:
// return "Gogs"
// default:
// return "Unknown"
// }
// }
// webhooks available providers
const (
GitHub Provider = iota
Bitbucket
GitLab
Gogs
)
// // webhooks available providers
// const (
// GitHub Provider = iota
// Bitbucket
// GitLab
// Gogs
// )
// Webhook interface defines a webhook to receive events
type Webhook interface {
Provider() Provider
ParsePayload(w http.ResponseWriter, r *http.Request)
}
// // Webhook interface defines a webhook to receive events
// type Webhook interface {
// Provider() Provider
// ParsePayload(w http.ResponseWriter, r *http.Request)
// }
type server struct {
hook Webhook
path string
includePathCheck bool
}
// type server struct {
// hook Webhook
// path string
// includePathCheck bool
// }
// ProcessPayloadFunc is a common function for payload return values
type ProcessPayloadFunc func(payload interface{}, header Header)
type ProcessPayloadFunc func(payload interface{}, header Header) error
// Handler returns the webhook http.Handler for use in your own Mux implementation
func Handler(hook Webhook) http.Handler {
return &server{
hook: hook,
}
}
// // Handler returns the webhook http.Handler for use in your own Mux implementation
// func Handler(hook Webhook) http.Handler {
// return &server{
// hook: hook,
// }
// }
// Run runs a server
func Run(hook Webhook, addr string, path string) error {
srv := &server{
hook: hook,
path: path,
includePathCheck: true,
}
s := &http.Server{Addr: addr, Handler: srv}
// // Run runs a server
// func Run(hook Webhook, addr string, path string) error {
// srv := &server{
// hook: hook,
// path: path,
// includePathCheck: true,
// }
// s := &http.Server{Addr: addr, Handler: srv}
DefaultLog.Info(fmt.Sprintf("Listening on addr: %s path: %s", addr, path))
return s.ListenAndServe()
}
// DefaultLog.Info(fmt.Sprintf("Listening on addr: %s path: %s", addr, path))
// return s.ListenAndServe()
// }
// RunServer runs a custom server.
func RunServer(s *http.Server, hook Webhook, path string) error {
// // RunServer runs a custom server.
// func RunServer(s *http.Server, hook Webhook, path string) error {
srv := &server{
hook: hook,
path: path,
includePathCheck: true,
}
// srv := &server{
// hook: hook,
// path: path,
// includePathCheck: true,
// }
s.Handler = srv
DefaultLog.Info(fmt.Sprintf("Listening on addr: %s path: %s", s.Addr, path))
return s.ListenAndServe()
}
// s.Handler = srv
// DefaultLog.Info(fmt.Sprintf("Listening on addr: %s path: %s", s.Addr, path))
// return s.ListenAndServe()
// }
// RunTLSServer runs a custom server with TLS configuration.
// NOTE: http.Server Handler will be overridden by this library, just set it to nil.
// Setting the Certificates can be done in the http.Server.TLSConfig.Certificates
// see example here: https://github.com/go-playground/webhooks/blob/v2/webhooks_test.go#L178
func RunTLSServer(s *http.Server, hook Webhook, path string) error {
// // RunTLSServer runs a custom server with TLS configuration.
// // NOTE: http.Server Handler will be overridden by this library, just set it to nil.
// // Setting the Certificates can be done in the http.Server.TLSConfig.Certificates
// // see example here: https://github.com/go-playground/webhooks/blob/v2/webhooks_test.go#L178
// func RunTLSServer(s *http.Server, hook Webhook, path string) error {
srv := &server{
hook: hook,
path: path,
includePathCheck: true,
}
// srv := &server{
// hook: hook,
// path: path,
// includePathCheck: true,
// }
s.Handler = srv
DefaultLog.Info(fmt.Sprintf("Listening on addr: %s path: %s", s.Addr, path))
return s.ListenAndServeTLS("", "")
}
// s.Handler = srv
// DefaultLog.Info(fmt.Sprintf("Listening on addr: %s path: %s", s.Addr, path))
// return s.ListenAndServeTLS("", "")
// }
// ServeHTTP is the Handler for every posted WebHook Event
func (s *server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
DefaultLog.Info("Webhook received")
// // ServeHTTP is the Handler for every posted WebHook Event
// func (s *server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// defer r.Body.Close()
// DefaultLog.Info("Webhook received")
if r.Method != "POST" {
DefaultLog.Error(fmt.Sprintf("405 Method not allowed, attempt made using Method: %s", r.Method))
http.Error(w, "405 Method not allowed", http.StatusMethodNotAllowed)
return
}
// if r.Method != "POST" {
// DefaultLog.Error(fmt.Sprintf("405 Method not allowed, attempt made using Method: %s", r.Method))
// http.Error(w, "405 Method not allowed", http.StatusMethodNotAllowed)
// return
// }
DefaultLog.Debug(fmt.Sprintf("Include path check: %t", s.includePathCheck))
if s.includePathCheck {
if r.URL.Path != s.path {
DefaultLog.Error(fmt.Sprintf("404 Not found, POST made using path: %s, but expected %s", r.URL.Path, s.path))
http.Error(w, "404 Not found", http.StatusNotFound)
return
}
}
// DefaultLog.Debug(fmt.Sprintf("Include path check: %t", s.includePathCheck))
// if s.includePathCheck {
// if r.URL.Path != s.path {
// DefaultLog.Error(fmt.Sprintf("404 Not found, POST made using path: %s, but expected %s", r.URL.Path, s.path))
// http.Error(w, "404 Not found", http.StatusNotFound)
// return
// }
// }
s.hook.ParsePayload(w, r)
}
// s.hook.ParsePayload(w, r)
// }