mirror of
https://github.com/idanoo/go-mastodon-matrix-webhooks.git
synced 2024-11-22 08:25:17 +00:00
Add account approval webhooks
This commit is contained in:
parent
aeb8ce3a5c
commit
0ade039548
67
main.go
67
main.go
@ -71,8 +71,8 @@ func handler(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
|
||||
if i.Event == "report.created" {
|
||||
err = sendWebhook(
|
||||
fmt.Sprintf(
|
||||
// Build message
|
||||
msg := fmt.Sprintf(
|
||||
"[New Report](%s): **%s** has reported **%s**: %s",
|
||||
fmt.Sprintf(
|
||||
"https://mastodon.nz/admin/reports/%s",
|
||||
@ -81,7 +81,14 @@ func handler(w http.ResponseWriter, r *http.Request) {
|
||||
i.Object.Account.Username,
|
||||
i.Object.TargetAccount.Username,
|
||||
i.Object.Comment,
|
||||
),
|
||||
)
|
||||
|
||||
// Log to stdout
|
||||
log.Println(msg)
|
||||
|
||||
// Send to matrix
|
||||
err = sendWebhook(
|
||||
msg,
|
||||
MATRIX_REPORT_CHANNEL,
|
||||
)
|
||||
if err != nil {
|
||||
@ -89,9 +96,9 @@ func handler(w http.ResponseWriter, r *http.Request) {
|
||||
return
|
||||
}
|
||||
} else if i.Event == "account.created" {
|
||||
// Build message
|
||||
country := ipLookup(i.Object.IP)
|
||||
err = sendWebhook(
|
||||
fmt.Sprintf(
|
||||
msg := fmt.Sprintf(
|
||||
"[New Signup](%s) %s: **%s** (%s). %s",
|
||||
fmt.Sprintf(
|
||||
"https://mastodon.nz/admin/accounts/%s",
|
||||
@ -104,7 +111,14 @@ func handler(w http.ResponseWriter, r *http.Request) {
|
||||
"Notes: %s",
|
||||
i.Object.Notes,
|
||||
),
|
||||
),
|
||||
)
|
||||
|
||||
// Log to stdout
|
||||
log.Println(msg)
|
||||
|
||||
// Send to matrix
|
||||
err = sendWebhook(
|
||||
msg,
|
||||
MATRIX_ACCOUNT_CHANNEL,
|
||||
)
|
||||
if err != nil {
|
||||
@ -112,24 +126,29 @@ func handler(w http.ResponseWriter, r *http.Request) {
|
||||
return
|
||||
}
|
||||
} else if i.Event == "account.approved" {
|
||||
log.Println(r.Body)
|
||||
// err = sendWebhook(
|
||||
// fmt.Sprintf(
|
||||
// "[New Report](%s): **%s** has approved **%s**: %s",
|
||||
// fmt.Sprintf(
|
||||
// "https://mastodon.nz/admin/reports/%s",
|
||||
// i.Object.ID,
|
||||
// ),
|
||||
// i.Object.Account.Username,
|
||||
// i.Object.TargetAccount.Username,
|
||||
// i.Object.Comment,
|
||||
// ),
|
||||
// MATRIX_REPORT_CHANNEL,
|
||||
// )
|
||||
// if err != nil {
|
||||
// log.Println(err.Error())
|
||||
// return
|
||||
// }
|
||||
msg := fmt.Sprintf(
|
||||
"Account Approved [%s](%s)",
|
||||
i.Object.Username,
|
||||
fmt.Sprintf(
|
||||
"https://mastodon.nz/admin/accounts/%s",
|
||||
i.Object.ID,
|
||||
),
|
||||
)
|
||||
|
||||
// Log to stdout
|
||||
log.Println(msg)
|
||||
|
||||
// Send to Matrix
|
||||
err = sendWebhook(
|
||||
msg,
|
||||
MATRIX_ACCOUNT_CHANNEL,
|
||||
)
|
||||
if err != nil {
|
||||
log.Println(err.Error())
|
||||
return
|
||||
}
|
||||
} else {
|
||||
log.Printf("Unknown event %s", i.Event)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user