diff options
author | 2023-03-19 13:11:46 +0100 | |
---|---|---|
committer | 2023-03-19 13:11:46 +0100 | |
commit | 7db81cde444f6bc95e79527af0997de1788d48c7 (patch) | |
tree | f6c077ec298a4f018d0870798bc46bd64ba70069 /internal/processing/fromfederator.go | |
parent | [docs] Update docs on how to login (#1626) (diff) | |
download | gotosocial-7db81cde444f6bc95e79527af0997de1788d48c7.tar.xz |
[feature] Email notifications for new / closed moderation reports (#1628)
* start fiddling about with email sending to allow multiple recipients
* do some fiddling
* notifs working
* notify on closed report
* finishing up
* envparsing
* use strings.ContainsAny
Diffstat (limited to 'internal/processing/fromfederator.go')
-rw-r--r-- | internal/processing/fromfederator.go | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/internal/processing/fromfederator.go b/internal/processing/fromfederator.go index 014c4a324..32a970114 100644 --- a/internal/processing/fromfederator.go +++ b/internal/processing/fromfederator.go @@ -359,10 +359,15 @@ func (p *Processor) processCreateBlockFromFederator(ctx context.Context, federat } func (p *Processor) processCreateFlagFromFederator(ctx context.Context, federatorMsg messages.FromFederator) error { - // TODO: handle side effects of flag creation: - // - send email to admins - // - notify admins - return nil + incomingReport, ok := federatorMsg.GTSModel.(*gtsmodel.Report) + if !ok { + return errors.New("flag was not parseable as *gtsmodel.Report") + } + + // TODO: handle additional side effects of flag creation: + // - notify admins by dm / notification + + return p.notifyReport(ctx, incomingReport) } // processUpdateAccountFromFederator handles Activity Update and Object Profile |