when looking at another user on the same server, don't display controls.

you can't interact with other users via their pages because technically
it's like they are on a different server.
This commit is contained in:
Ted Unangst 2023-07-15 18:19:12 -04:00
parent 97b9634a9e
commit 2dd6b27356
1 changed files with 10 additions and 3 deletions

9
web.go
View File

@ -723,14 +723,19 @@ func showuser(w http.ResponseWriter, r *http.Request) {
return
}
u := login.GetUserInfo(r)
honks := gethonksbyuser(name, u != nil && u.Username == name, 0)
if u != nil && u.Username != name {
u = nil
}
honks := gethonksbyuser(name, u != nil, 0)
templinfo := getInfo(r)
templinfo["PageName"] = "user"
templinfo["PageArg"] = name
templinfo["Name"] = user.Name
templinfo["WhatAbout"] = user.HTAbout
templinfo["ServerMessage"] = ""
if u != nil {
templinfo["HonkCSRF"] = login.GetCSRF("honkhonk", r)
}
honkpage(w, u, honks, templinfo)
}
@ -1184,7 +1189,9 @@ func showonehonk(w http.ResponseWriter, r *http.Request) {
}
templinfo["ServerMessage"] = "one honk maybe more"
if u != nil {
templinfo["HonkCSRF"] = login.GetCSRF("honkhonk", r)
}
templinfo["APAltLink"] = templates.Sprintf("<link href='%s' rel='alternate' type='application/activity+json'>", xid)
honkpage(w, u, honks, templinfo)
}