- package Friends
-
- import (
- "encoding/json"
- "net/http"
-
- "git.tovijaeschke.xyz/tovi/Envelope/Backend/Api/Auth"
- "git.tovijaeschke.xyz/tovi/Envelope/Backend/Database"
- "git.tovijaeschke.xyz/tovi/Envelope/Backend/Models"
- )
-
- // EncryptedFriendRequestList gets friend request list
- func EncryptedFriendRequestList(w http.ResponseWriter, r *http.Request) {
- var (
- userSession Models.Session
- friends []Models.FriendRequest
- returnJSON []byte
- err error
- )
-
- userSession, err = Auth.CheckCookie(r)
- if err != nil {
- http.Error(w, "Forbidden", http.StatusUnauthorized)
- return
- }
-
- friends, err = Database.GetFriendRequestsByUserID(userSession.UserID.String())
- if err != nil {
- http.Error(w, "Error", http.StatusInternalServerError)
- return
- }
-
- returnJSON, err = json.MarshalIndent(friends, "", " ")
- if err != nil {
- http.Error(w, "Error", http.StatusInternalServerError)
- return
- }
-
- w.WriteHeader(http.StatusOK)
- w.Write(returnJSON)
- }
|