mobile.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package mobile
  2. import (
  3. "encoding/xml"
  4. "strconv"
  5. "time"
  6. "go-common/library/log"
  7. xtime "go-common/library/time"
  8. )
  9. type OrderXML struct {
  10. XMLName xml.Name `xml:"SyncFlowPkgOrderReq"`
  11. *MobileXML
  12. }
  13. type FlowXML struct {
  14. XMLName xml.Name `xml:"SyncFlowPkgLeftQuotaReq"`
  15. *MobileXML
  16. }
  17. type MobileXML struct {
  18. Orderid string `xml:"OrderID"`
  19. Userpseudocode string `xml:"UserPseudoCode"`
  20. Channelseqid string `xml:"ChannelSeqId"`
  21. Price string `xml:"Price"`
  22. Actiontime string `xml:"ActionTime"`
  23. Actionid string `xml:"ActionID"`
  24. Effectivetime string `xml:"EffectiveTime"`
  25. Expiretime string `xml:"ExpireTime"`
  26. Channelid string `xml:"ChannelId"`
  27. Productid string `xml:"ProductId"`
  28. Ordertype string `xml:"OrderType"`
  29. Threshold string `xml:"Threshold"`
  30. Resulttime string `xml:"ResultTime"`
  31. }
  32. type Mobile struct {
  33. Orderid string `json:"-"`
  34. Userpseudocode string `json:"-"`
  35. Channelseqid string `json:"-"`
  36. Price int `json:"-"`
  37. Actionid int `json:"actionid"`
  38. Effectivetime xtime.Time `json:"starttime,omitempty"`
  39. Expiretime xtime.Time `json:"endtime,omitempty"`
  40. Channelid string `json:"-"`
  41. Productid string `json:"productid,omitempty"`
  42. Ordertype int `json:"-"`
  43. Threshold int `json:"flow"`
  44. Resulttime xtime.Time `json:"-"`
  45. MobileType int `json:"orderstatus,omitempty"`
  46. ProductType int `json:"product_type,omitempty"`
  47. }
  48. type MobileIP struct {
  49. IPStartUint uint32 `json:"-"`
  50. IPEndUint uint32 `json:"-"`
  51. }
  52. type MobileUserIP struct {
  53. IPStr string `json:"ip"`
  54. IsValide bool `json:"is_valide"`
  55. }
  56. // MobileChange
  57. func (u *Mobile) MobileChange() {
  58. if u.Effectivetime.Time().IsZero() {
  59. u.Effectivetime = 0
  60. }
  61. if u.Expiretime.Time().IsZero() {
  62. u.Expiretime = 0
  63. }
  64. switch u.Productid {
  65. case "100000000028":
  66. u.ProductType = 1
  67. case "100000000030":
  68. u.ProductType = 2
  69. }
  70. }
  71. type Msg struct {
  72. Xmlns string `xml:"xmlns,attr"`
  73. MsgType string `xml:"MsgType"`
  74. Version string `xml:"Version"`
  75. HRet string `xml:"hRet"`
  76. }
  77. type OrderMsgXML struct {
  78. XMLName xml.Name `xml:"SyncFlowPkgOrderResp"`
  79. *Msg
  80. }
  81. type FlowMsgXML struct {
  82. XMLName xml.Name `xml:"SyncFlowPkgLeftQuotaResp"`
  83. *Msg
  84. }
  85. // MobileXMLMobile
  86. func (u *Mobile) MobileXMLMobile(uxml *MobileXML) {
  87. u.Actionid, _ = strconv.Atoi(uxml.Actionid)
  88. u.Effectivetime = timeStrToInt(uxml.Effectivetime)
  89. u.Expiretime = timeStrToInt(uxml.Expiretime)
  90. u.Threshold, _ = strconv.Atoi(uxml.Threshold)
  91. u.Productid = uxml.Productid
  92. u.MobileChange()
  93. }
  94. // timeStrToInt
  95. func timeStrToInt(timeStr string) (timeInt xtime.Time) {
  96. var err error
  97. timeLayout := "20060102"
  98. loc, _ := time.LoadLocation("Local")
  99. theTime, _ := time.ParseInLocation(timeLayout, timeStr, loc)
  100. if err = timeInt.Scan(theTime); err != nil {
  101. log.Error("timeInt.Scan error(%v)", err)
  102. }
  103. return
  104. }