model.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package source
  2. const (
  3. // PlatAndroid is int8 for android.
  4. PlatAndroid = int8(0)
  5. // PlatIPhone is int8 for iphone.
  6. PlatIPhone = int8(1)
  7. // PlatIPad is int8 for ipad.
  8. PlatIPad = int8(2)
  9. // PlatWPhone is int8 for wphone.
  10. PlatWPhone = int8(3)
  11. // PlatAndroidG is int8 for Android Googleplay.
  12. PlatAndroidG = int8(4)
  13. // PlatIPhoneI is int8 for Iphone Global.
  14. PlatIPhoneI = int8(5)
  15. // PlatIPadI is int8 for IPAD Global.
  16. PlatIPadI = int8(6)
  17. // PlatAndroidTV is int8 for AndroidTV Global.
  18. PlatAndroidTV = int8(7)
  19. // PlatAndroidI is int8 for Android Global.
  20. PlatAndroidI = int8(8)
  21. // PlatIpadHD is int8 for IpadHD
  22. PlatIpadHD = int8(9)
  23. // PlatAndroidB is int8 for Android Blue.
  24. PlatAndroidB = int8(10)
  25. )
  26. // IsAndroid check plat is android or ipad.
  27. func IsAndroid(plat int8) bool {
  28. return plat == PlatAndroid || plat == PlatAndroidG || plat == PlatAndroidI || plat == PlatAndroidB
  29. }
  30. // IsIOS check plat is iphone or ipad.
  31. func IsIOS(plat int8) bool {
  32. return plat == PlatIPad || plat == PlatIPhone || plat == PlatIPadI || plat == PlatIPhoneI
  33. }
  34. // IsIPhone check plat is iphone.
  35. func IsIPhone(plat int8) bool {
  36. return plat == PlatIPhone || plat == PlatIPhoneI
  37. }
  38. // IsIPad check plat is ipad.
  39. func IsIPad(plat int8) bool {
  40. return plat == PlatIPad
  41. }
  42. // Plat return plat by platStr or mobiApp
  43. func Plat(mobiApp, device string) int8 {
  44. switch mobiApp {
  45. case "iphone":
  46. if device == "pad" {
  47. return PlatIPad
  48. }
  49. return PlatIPhone
  50. case "white":
  51. return PlatIPhone
  52. case "ipad":
  53. return PlatIPad
  54. case "android", "android_b":
  55. return PlatAndroid
  56. case "win":
  57. return PlatWPhone
  58. case "android_G":
  59. return PlatAndroidG
  60. case "android_i":
  61. return PlatAndroidI
  62. case "iphone_i":
  63. if device == "pad" {
  64. return PlatIPadI
  65. }
  66. return PlatIPhoneI
  67. case "ipad_i":
  68. return PlatIPadI
  69. case "android_tv":
  70. return PlatAndroidTV
  71. }
  72. return PlatIPhone
  73. }