rework of permissions needed

This commit is contained in:
2026-04-23 20:52:14 +02:00
parent 8aaa27a6dc
commit 9cb05e7155
2 changed files with 90 additions and 0 deletions
+44
View File
@@ -2,6 +2,7 @@ package httpRequest
import (
"context"
"errors"
"net/http"
"go-socket/packages/convertions"
@@ -34,6 +35,7 @@ func getUserByToken(ctx context.Context, token string) (*types.User, error) {
}
return getUserById(ctx, userId)
}
func getConnectionWithResponseOnFail(response *http.ResponseWriter, request *http.Request, user *types.User) (*types.Connection, bool) {
connectionId, err := convertions.StringToUuid(request.FormValue("connectionid"))
if err != nil {
@@ -47,3 +49,45 @@ func getConnectionWithResponseOnFail(response *http.ResponseWriter, request *htt
}
return conn, true
}
func getHubByIdStr(ctx context.Context, hubId string) (*types.Hub, error) {
hubUuid, err := convertions.StringToUuid(hubId)
if err != nil {
return nil, err
}
hub, ok := cache.GetHubById(hubUuid)
if !ok {
hub = types.NewHub()
hub.Id = hubUuid
if err := postgresql.GetWholeHub(ctx, hub); err != nil {
return nil, err
}
}
return hub, nil
}
func getHubUserIfValidWithResponseOnFail(ctx context.Context, response http.ResponseWriter, token string, hubId string) (
*types.User, *types.HubUser, *types.Hub, error) {
hub, err := getHubByIdStr(ctx, hubId)
if err != nil {
http.Error(response, "invalid hubid", http.StatusBadRequest)
return nil, nil, nil, errors.New("no such hub")
}
user, err := getUserByToken(ctx, token)
if err != nil {
http.Error(response, "invalid token", http.StatusBadRequest)
return nil, nil, nil, errors.New("invalid token")
}
hub.Mu.RLock()
hubUser, ok := hub.Users[user.Id]
hub.Mu.RUnlock()
if !ok {
http.Error(response, "invalid hubid", http.StatusUnauthorized)
return nil, nil, nil, errors.New("invalid hubid")
}
return user, hubUser, hub, nil
}