.
This commit is contained in:
parent
87ab2e0af5
commit
8fafd623ac
@ -32,11 +32,11 @@ func connectToRabbitMQ() {
|
|||||||
go ConnectToExchangeForPublish(host, username, password)
|
go ConnectToExchangeForPublish(host, username, password)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var id int
|
var id int
|
||||||
|
|
||||||
func dumpUnhandledData(reqType string, data []byte) {
|
func dumpUnhandledData(reqType string, data []byte) {
|
||||||
id++
|
id++
|
||||||
os.WriteFile("/tmp/unhandled-json-" + reqType + "-" + fmt.Sprint(id) + ".json", data, 0600);
|
os.WriteFile("/tmp/unhandled-json-"+reqType+"-"+fmt.Sprint(id)+".json", data, 0600)
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -132,18 +132,32 @@ func main() {
|
|||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
switch repoAction.Action {
|
||||||
|
case "created", "deleted":
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
res.WriteHeader(http.StatusBadRequest)
|
||||||
|
if DebugMode {
|
||||||
|
dumpUnhandledData(reqType, data)
|
||||||
|
}
|
||||||
|
}
|
||||||
org = repoAction.Organization
|
org = repoAction.Organization
|
||||||
extraAction = repoAction.Action
|
extraAction = repoAction.Action
|
||||||
|
default:
|
||||||
|
res.WriteHeader(http.StatusBadRequest)
|
||||||
|
if DebugMode {
|
||||||
|
dumpUnhandledData(reqType, data)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// err = PublishMessage(repo.Owner.Username, reqType, data)
|
// err = PublishMessage(repo.Owner.Username, reqType, data)
|
||||||
// write to file for review
|
// write to file for review
|
||||||
os.WriteFile("test_data."+fmt.Sprint(connectionId), data, 0644)
|
os.WriteFile("test_data."+fmt.Sprint(connectionId), data, 0644)
|
||||||
connectionId++
|
connectionId++
|
||||||
log.Println(id, org.Username, extraAction)
|
log.Println(id, org.Username, extraAction)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
err = PublishMessage(repo.Name, reqType, data)
|
err = PublishMessage(org.Name, reqType, extraAction, data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errorStr := fmt.Sprintf("hook (%s) processing error: %v\n", reqType, err)
|
errorStr := fmt.Sprintf("hook (%s) processing error: %v\n", reqType, err)
|
||||||
res.Header().Add("Content-Type", "plain/text")
|
res.Header().Add("Content-Type", "plain/text")
|
||||||
|
@ -25,7 +25,7 @@ type Message struct {
|
|||||||
|
|
||||||
var messageQueue chan Message
|
var messageQueue chan Message
|
||||||
|
|
||||||
func PublicActionMessage(giteaOrg, giteaWebhookType, action string, data []byte) error {
|
func PublishActionMessage(giteaOrg, giteaWebhookType, action string, data []byte) error {
|
||||||
if messageQueue == nil {
|
if messageQueue == nil {
|
||||||
return fmt.Errorf("Queue not initialized")
|
return fmt.Errorf("Queue not initialized")
|
||||||
}
|
}
|
||||||
@ -47,10 +47,6 @@ func PublicActionMessage(giteaOrg, giteaWebhookType, action string, data []byte)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(action) > 0 {
|
|
||||||
msg.Topic = msg.Topic + "." + action
|
|
||||||
}
|
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case messageQueue <- msg:
|
case messageQueue <- msg:
|
||||||
default:
|
default:
|
||||||
@ -60,7 +56,7 @@ func PublicActionMessage(giteaOrg, giteaWebhookType, action string, data []byte)
|
|||||||
}
|
}
|
||||||
|
|
||||||
func PublishMessage(giteaOrg, giteaWebhookType string, data []byte) error {
|
func PublishMessage(giteaOrg, giteaWebhookType string, data []byte) error {
|
||||||
return PublicActionMessage(giteaOrg, giteaWebhookType, "", data)
|
return PublishActionMessage(giteaOrg, giteaWebhookType, "", data)
|
||||||
}
|
}
|
||||||
|
|
||||||
func ConnectToExchangeForPublish(host, username, password string) {
|
func ConnectToExchangeForPublish(host, username, password string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user