initial commit on github

This commit is contained in:
2021-05-02 16:04:45 +03:00
commit 7babade475
37 changed files with 3271 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
package v1
type Club struct {
ID uint16 `json:"id"`
Name string `json:"name"`
Avatar string `json:"avatar"`
Owner int `json:"-"`
IsPrivate bool `json:"is_private" db:"is_private"`
}
func GetClubs(userId uint64) ([]*Club, error) {
clubs := make([]*Club, 0)
err := database.Select(&clubs, "select clubs.* from clubs join club_member cm on clubs.id = cm.club_id where not is_private or cm.user_id=$1;", userId)
return clubs, err
}
func GetClub(id uint16, userId uint64) (*Club, error) {
club := new(Club)
err := database.Get(club, "select clubs.* from clubs join club_member cm on clubs.id = cm.club_id where club_id=$1 and (not is_private or cm.user_id=$2);", id, userId)
return club, err
}