const.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package model
  2. import "net"
  3. const (
  4. // PlatAndroid is int8 for android.
  5. PlatAndroid = int8(0)
  6. // PlatIPhone is int8 for iphone.
  7. PlatIPhone = int8(1)
  8. // PlatIPad is int8 for ipad.
  9. PlatIPad = int8(2)
  10. // PlatWPhone is int8 for wphone.
  11. PlatWPhone = int8(3)
  12. // PlatAndroidG is int8 for Android Googleplay.
  13. PlatAndroidG = int8(4)
  14. // PlatIPhoneI is int8 for Iphone Global.
  15. PlatIPhoneI = int8(5)
  16. // PlatIPadI is int8 for IPAD Global.
  17. PlatIPadI = int8(6)
  18. // PlatAndroidTV is int8 for AndroidTV Global.
  19. PlatAndroidTV = int8(7)
  20. // PlatAndroidI is int8 for Android Global.
  21. PlatAndroidI = int8(8)
  22. // PlatIpadHD is int8 for IpadHD
  23. PlatIpadHD = int8(9)
  24. )
  25. // IsAndroid check plat is android or ipad.
  26. func IsAndroid(plat int8) bool {
  27. return plat == PlatAndroid || plat == PlatAndroidG || plat == PlatAndroidI
  28. }
  29. // IsIOS check plat is iphone or ipad.
  30. func IsIOS(plat int8) bool {
  31. return plat == PlatIPad || plat == PlatIPhone || plat == PlatIPadI || plat == PlatIPhoneI
  32. }
  33. // IsIPhone check plat is iphone.
  34. func IsIPhone(plat int8) bool {
  35. return plat == PlatIPhone || plat == PlatIPhoneI
  36. }
  37. // IsIPad check plat is pad.
  38. func IsIPad(plat int8) bool {
  39. return plat == PlatIPad || plat == PlatIPadI || plat == PlatIpadHD
  40. }
  41. // IsPlayerScreen check plat is iphone or ipad.
  42. func IsPlayerScreen(tagID int64) bool {
  43. return tagID == AndroidPlayerScreen || tagID == AndroidPlayerScreenNothing || tagID == AndroidPlayerScreenDlna || tagID == AndroidPlayerScreenTV || tagID == IOSPlayerScreen || tagID == IOSPlayerScreenNothing || tagID == IOSPlayerScreenDlna || tagID == IOSPlayerScreenTV
  44. }
  45. // Plat return plat by platStr or mobiApp
  46. func Plat(mobiApp, device string) int8 {
  47. switch mobiApp {
  48. case "iphone":
  49. if device == "pad" {
  50. return PlatIPad
  51. }
  52. return PlatIPhone
  53. case "white":
  54. return PlatIPhone
  55. case "ipad":
  56. return PlatIpadHD
  57. case "android":
  58. return PlatAndroid
  59. case "win", "winphone":
  60. return PlatWPhone
  61. case "android_G":
  62. return PlatAndroidG
  63. case "android_i":
  64. return PlatAndroidI
  65. case "iphone_i":
  66. if device == "pad" {
  67. return PlatIPadI
  68. }
  69. return PlatIPhoneI
  70. case "ipad_i":
  71. return PlatIPadI
  72. case "android_tv":
  73. return PlatAndroidTV
  74. }
  75. return PlatIPhone
  76. }
  77. // IsOverseas is overseas
  78. func IsOverseas(plat int8) bool {
  79. return plat == PlatAndroidI || plat == PlatIPhoneI || plat == PlatIPadI
  80. }
  81. // InetAtoN conver ip addr to uint32.
  82. func InetAtoN(s string) (sum uint32) {
  83. ip := net.ParseIP(s)
  84. if ip == nil {
  85. return
  86. }
  87. ip = ip.To4()
  88. if ip == nil {
  89. return
  90. }
  91. sum += uint32(ip[0]) << 24
  92. sum += uint32(ip[1]) << 16
  93. sum += uint32(ip[2]) << 8
  94. sum += uint32(ip[3])
  95. return sum
  96. }
  97. // InetNtoA conver uint32 to ip addr.
  98. func InetNtoA(sum uint32) string {
  99. ip := make(net.IP, net.IPv4len)
  100. ip[0] = byte((sum >> 24) & 0xFF)
  101. ip[1] = byte((sum >> 16) & 0xFF)
  102. ip[2] = byte((sum >> 8) & 0xFF)
  103. ip[3] = byte(sum & 0xFF)
  104. return ip.String()
  105. }