// Copyright (c) 2025 Tethys Plex // // This file is part of Veloera. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . package controller import ( "github.com/gin-gonic/gin" "net/http" "veloera/model" "veloera/setting" ) func GetGroups(c *gin.Context) { groupNames := make([]string, 0) for groupName := range setting.GetGroupRatioCopy() { groupNames = append(groupNames, groupName) } c.JSON(http.StatusOK, gin.H{ "success": true, "message": "", "data": groupNames, }) } func GetUserGroups(c *gin.Context) { usableGroups := make(map[string]map[string]interface{}) userGroup := "" userId := c.GetInt("id") userGroup, _ = model.GetUserGroup(userId, false) for groupName, ratio := range setting.GetGroupRatioCopy() { // UserUsableGroups contains the groups that the user can use userUsableGroups := setting.GetUserUsableGroups(userGroup) if desc, ok := userUsableGroups[groupName]; ok { usableGroups[groupName] = map[string]interface{}{ "ratio": ratio, "desc": desc, } } } c.JSON(http.StatusOK, gin.H{ "success": true, "message": "", "data": usableGroups, }) }