aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorFChannel <>2021-05-30 14:01:01 -0700
committerFChannel <>2021-05-30 14:01:01 -0700
commit6413dd0fa2b3a381d306069ad8d2dd766fe754ec (patch)
treee3bfcfc6361368f83cf6dda91708daf7b3d25473 /main.go
parent30714d5e76a94947a49487f526e48a996f1d9eaa (diff)
removed Header Referer for re routing since it does not work for all browsers ie IceCat
Diffstat (limited to 'main.go')
-rw-r--r--main.go71
1 files changed, 53 insertions, 18 deletions
diff --git a/main.go b/main.go
index bd88c41..8405bc6 100644
--- a/main.go
+++ b/main.go
@@ -472,9 +472,14 @@ func main() {
FollowingBoards = GetActorFollowingDB(db, Domain)
- Boards = GetBoardCollection(db)
+ Boards = GetBoardCollection(db)
+
+ var redirect string
+ if(actor.Name != "main") {
+ redirect = "/" + actor.Name
+ }
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ http.Redirect(w, r, "/" + *Key + "/" + redirect, http.StatusSeeOther)
} else if manage && actor.Name != "" {
t := template.Must(template.ParseFiles("./static/main.html", "./static/manage.html"))
@@ -646,7 +651,7 @@ func main() {
Boards = GetBoardCollection(db)
}
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ http.Redirect(w, r, "/" + *Key, http.StatusSeeOther)
})
http.HandleFunc("/verify", func(w http.ResponseWriter, r *http.Request){
@@ -707,8 +712,9 @@ func main() {
http.HandleFunc("/delete", func(w http.ResponseWriter, r *http.Request){
id := r.URL.Query().Get("id")
- board := r.URL.Query().Get("board")
- actor := GetActorFromPath(db, id, "/")
+ board := r.URL.Query().Get("board")
+ col := GetCollectionFromID(id)
+ actor := col.OrderedItems[0].Actor
_, auth := GetPasswordFromSession(r)
if id == "" || auth == "" {
@@ -723,29 +729,51 @@ func main() {
return
}
+ var OP string
+ if len(col.OrderedItems[0].InReplyTo) > 0 {
+ OP = col.OrderedItems[0].InReplyTo[0].Id
+ }
+
if !IsIDLocal(db, id) {
CreateLocalDeleteDB(db, id, "post")
- CloseLocalReportDB(db, id, board)
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ CloseLocalReportDB(db, id, actor.Id)
+
+ if(board != "") {
+ http.Redirect(w, r, "/" + *Key + "/" + board , http.StatusSeeOther)
+ } else if(OP != ""){
+ http.Redirect(w, r, OP, http.StatusSeeOther)
+ } else {
+ http.Redirect(w, r, actor.Id, http.StatusSeeOther)
+ }
+
return
}
var obj ObjectBase
obj.Id = id
- obj.Actor = &actor
+ obj.Actor = actor
isOP := CheckIfObjectOP(db, obj.Id)
if !isOP {
DeleteObjectRequest(db, id)
DeleteObject(db, obj.Id)
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ if(board != ""){
+ http.Redirect(w, r, "/" + *Key + "/" + board , http.StatusSeeOther)
+ }else{
+ http.Redirect(w, r, OP, http.StatusSeeOther)
+ }
return
+
} else {
DeleteObjectAndRepliesRequest(db, id)
DeleteObjectAndReplies(db, obj.Id)
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ if(board != ""){
+ http.Redirect(w, r, "/" + *Key + "/" + board , http.StatusSeeOther)
+ }else{
+ http.Redirect(w, r, actor.Id, http.StatusSeeOther)
+ }
return
}
@@ -756,7 +784,16 @@ func main() {
http.HandleFunc("/deleteattach", func(w http.ResponseWriter, r *http.Request){
id := r.URL.Query().Get("id")
+ col := GetCollectionFromID(id)
+ actor := col.OrderedItems[0].Actor
+ var OP string
+ if (len(col.OrderedItems[0].InReplyTo) > 0 && col.OrderedItems[0].InReplyTo[0].Id != "") {
+ OP = col.OrderedItems[0].InReplyTo[0].Id
+ } else {
+ OP = id
+ }
+
_, auth := GetPasswordFromSession(r)
if id == "" || auth == "" {
@@ -765,8 +802,6 @@ func main() {
return
}
- actor := GetActorFromPath(db, id, "/")
-
if !HasAuth(db, auth, actor.Id) {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(""))
@@ -775,13 +810,13 @@ func main() {
if !IsIDLocal(db, id) {
CreateLocalDeleteDB(db, id, "attachment")
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ http.Redirect(w, r, OP, http.StatusSeeOther)
return
}
DeleteAttachmentFromFile(db, id)
DeletePreviewFromFile(db, id)
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ http.Redirect(w, r, OP, http.StatusSeeOther)
})
http.HandleFunc("/report", func(w http.ResponseWriter, r *http.Request){
@@ -818,13 +853,13 @@ func main() {
if !IsIDLocal(db, id) {
CloseLocalReportDB(db, id, board)
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ http.Redirect(w, r, "/" + *Key + "/" + board, http.StatusSeeOther)
return
}
reported := DeleteReportActivity(db, id)
if reported {
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ http.Redirect(w, r, "/" + *Key + "/" + board, http.StatusSeeOther)
return
}
@@ -835,13 +870,13 @@ func main() {
if !IsIDLocal(db, id) {
CreateLocalReportDB(db, id, board, reason)
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ http.Redirect(w, r, "/" + board + "/" + remoteShort(id), http.StatusSeeOther)
return
}
reported := ReportActivity(db, id, reason)
if reported {
- http.Redirect(w, r, r.Header.Get("Referer"), http.StatusSeeOther)
+ http.Redirect(w, r, id, http.StatusSeeOther)
return
}