2019-10-26 19:01:29 +00:00
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
2019-10-26 21:39:01 +00:00
|
|
|
"github.com/velour/catbase/bot/msg"
|
|
|
|
|
2019-10-26 19:01:29 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"gopkg.in/go-playground/webhooks.v5/github"
|
|
|
|
"gopkg.in/go-playground/webhooks.v5/gitlab"
|
|
|
|
|
|
|
|
"github.com/velour/catbase/bot"
|
|
|
|
"github.com/velour/catbase/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
type GitPlugin struct {
|
|
|
|
b bot.Bot
|
|
|
|
c *config.Config
|
|
|
|
glhook *gitlab.Webhook
|
|
|
|
ghhook *github.Webhook
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(b bot.Bot) *GitPlugin {
|
|
|
|
glhook, err := gitlab.New()
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("could not initialize hook")
|
|
|
|
glhook = nil
|
|
|
|
}
|
|
|
|
ghhook, err := github.New()
|
|
|
|
if err != nil {
|
|
|
|
log.Error().Err(err).Msg("could not initialize hook")
|
|
|
|
ghhook = nil
|
|
|
|
}
|
|
|
|
p := &GitPlugin{
|
|
|
|
b: b,
|
|
|
|
c: b.Config(),
|
|
|
|
glhook: glhook,
|
|
|
|
ghhook: ghhook,
|
|
|
|
}
|
|
|
|
p.registerWeb()
|
2019-10-26 21:39:01 +00:00
|
|
|
b.Register(p, bot.Message, p.message)
|
2019-10-26 19:01:29 +00:00
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
2019-10-26 21:39:01 +00:00
|
|
|
func validService(service string) bool {
|
|
|
|
return service == "gitea" || service == "gitlab" || service == "github"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *GitPlugin) message(c bot.Connector, kind bot.Kind, message msg.Message, args ...interface{}) bool {
|
|
|
|
body := message.Body
|
|
|
|
lower := strings.ToLower(body)
|
|
|
|
parts := strings.Split(lower, " ")
|
|
|
|
|
|
|
|
if !strings.HasPrefix(lower, "regrepo") || len(parts) != 2 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
u := parts[1]
|
|
|
|
u = strings.ReplaceAll(u, "/", ".")
|
|
|
|
uparts := strings.Split(u, ".")
|
|
|
|
if len(uparts) != 3 || !validService(uparts[0]) {
|
|
|
|
m := "Valid formats are: `service.owner.repo` and valid services are one of gitea, gitlab, or github."
|
|
|
|
p.b.Send(c, bot.Message, message.Channel, m)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
chs := p.c.GetArray(u+".channels", []string{})
|
|
|
|
for _, ch := range chs {
|
|
|
|
if ch == message.Channel {
|
|
|
|
p.b.Send(c, bot.Message, message.Channel, "That's already registered here.")
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chs = append(chs, message.Channel)
|
|
|
|
p.c.SetArray(u+".channels", chs)
|
|
|
|
p.b.Send(c, bot.Message, message.Channel, "Registered new repository.")
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-10-26 19:01:29 +00:00
|
|
|
func (p *GitPlugin) registerWeb() {
|
2019-10-26 21:39:01 +00:00
|
|
|
http.HandleFunc("/git/gitea/event", p.giteaEvent)
|
2019-10-26 19:01:29 +00:00
|
|
|
http.HandleFunc("/git/github/event", p.githubEvent)
|
2019-10-26 19:37:26 +00:00
|
|
|
http.HandleFunc("/git/gitlab/event", p.gitlabEvent)
|
2019-10-26 19:01:29 +00:00
|
|
|
p.b.RegisterWeb("/git", "Git")
|
|
|
|
}
|