-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinbox.go
99 lines (84 loc) · 2.65 KB
/
inbox.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
Copyright 2023, 2024 Dima Krasner
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package fed
import (
"bytes"
"encoding/json"
"errors"
"github.com/dimkr/tootik/ap"
"io"
"log/slog"
"net/http"
"path/filepath"
)
type inboxHandler struct {
*Listener
Log *slog.Logger
}
func (h *inboxHandler) Handle(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
receiver := filepath.Base(r.URL.Path)
var registered int
if err := h.DB.QueryRowContext(r.Context(), `select exists (select 1 from persons where actor->>'preferredUsername' = ? and host = ?)`, receiver, h.Domain).Scan(®istered); err != nil {
h.Log.Warn("Failed to check if receiving user exists", "receiver", receiver, "error", err)
w.WriteHeader(http.StatusInternalServerError)
return
} else if registered == 0 {
h.Log.Debug("Receiving user does not exist", "receiver", receiver)
w.WriteHeader(http.StatusNotFound)
return
}
body, err := io.ReadAll(io.LimitReader(r.Body, h.Config.MaxRequestBodySize))
if err != nil {
return
}
var activity ap.Activity
if err := json.Unmarshal(body, &activity); err != nil {
h.Log.Warn("Failed to unmarshal activity", "body", string(body), "error", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
r.Body = io.NopCloser(bytes.NewReader(body))
// if actor is deleted, ignore this activity if we don't know this actor
offline := false
if activity.Type == ap.DeleteActivity {
offline = true
}
sender, err := verify(r.Context(), h.Domain, h.Log, r, h.DB, h.Resolver, h.Actor, offline)
if err != nil {
if errors.Is(err, ErrActorGone) {
w.WriteHeader(http.StatusOK)
return
}
if errors.Is(err, ErrActorNotCached) {
h.Log.Debug("Ignoring Delete activity for unknown actor", "error", err)
} else {
w.WriteHeader(http.StatusUnauthorized)
}
return
}
if _, err = h.DB.ExecContext(
r.Context(),
`INSERT OR IGNORE INTO inbox (sender, activity) VALUES(?,?)`,
sender.ID,
string(body),
); err != nil {
h.Log.Error("Failed to insert activity", "sender", sender.ID, "error", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
}