| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package gatesink
- import (
- "encoding/json"
- "fmt"
- "strings"
- _ "bet24.com/log"
- "bet24.com/redis"
- )
- type gameRoom struct {
- Name string
- Online string
- PrizePool string
- }
- func (this *user) getGameRooms(msg, data string) {
- id := Sink.GetVersionID()
- retData := ""
- addrKey := fmt.Sprintf("Addr%d", id)
- onlineKey := fmt.Sprintf("Online%d", id)
- if Sink.IsChipRoom() {
- addrKey = "ChipAddr"
- onlineKey = "ChipOnline"
- }
- keys := redis.Key_GetKeys(fmt.Sprintf("%s:%s:*", data, addrKey))
- if len(keys) > 0 {
- var rooms []gameRoom
- for _, v := range keys {
- name, ok := redis.String_Get(v)
- if ok {
- var room gameRoom
- room.Name = name
- room.Online, ok = redis.String_Get(strings.Replace(v, addrKey, onlineKey, -1))
- rooms = append(rooms, room)
- }
- }
- d, _ := json.Marshal(rooms)
- retData = string(d)
- }
- this.WriteMsg(msg, retData)
- }
- func (this *user) getLonghuRooms(msg, data string) {
- this.getGameRooms(msg, "longhu")
- }
|