noauth.go 980 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package server
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "go-common/library/log"
  6. )
  7. func encodeRoomID(aid, cid int64) string {
  8. return fmt.Sprintf("video://%d/%d", aid, cid)
  9. }
  10. // NoAuthParam .
  11. type NoAuthParam struct {
  12. Key string `json:"key,omitempty"`
  13. Aid int64 `json:"aid,omitempty"`
  14. RoomID int64 `json:"roomid,omitempty"`
  15. UserID int64 `json:"uid,omitempty"`
  16. From int64 `json:"from,omitempty"`
  17. }
  18. // NoAuth .
  19. func (s *Server) NoAuth(ver int16, token []byte, ip string) (userID int64, roomID, key string, rpt *Report, err error) {
  20. param := NoAuthParam{}
  21. if err = json.Unmarshal(token, &param); err != nil {
  22. log.Error("json.Unmarshal(%d, %s) error(%v)", ver, token, err)
  23. return
  24. }
  25. if param.Key != "" {
  26. key = param.Key
  27. } else {
  28. key = s.NextKey()
  29. }
  30. userID = param.UserID
  31. roomID = encodeRoomID(param.Aid, param.RoomID)
  32. rpt = &Report{
  33. From: param.From,
  34. Aid: param.Aid,
  35. Cid: param.RoomID,
  36. Mid: param.UserID,
  37. Key: key,
  38. IP: ip,
  39. }
  40. return
  41. }