unicom.go 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. package unicom
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "strconv"
  6. "strings"
  7. "time"
  8. "go-common/app/interface/main/app-wall/model"
  9. "go-common/library/log"
  10. xtime "go-common/library/time"
  11. )
  12. type Unicom struct {
  13. Id int `json:"-"`
  14. Spid int `json:"spid"`
  15. CardType int `json:"cardtype"`
  16. TypeInt int `json:"type"`
  17. Unicomtype int `json:"unicomtype,omitempty"`
  18. Ordertypes int `json:"-"`
  19. Channelcode int `json:"-"`
  20. Usermob string `json:"-"`
  21. Cpid string `json:"-"`
  22. Ordertime xtime.Time `json:"ordertime"`
  23. Canceltime xtime.Time `json:"canceltime,omitempty"`
  24. Endtime xtime.Time `json:"endtime,omitempty"`
  25. Province string `json:"-"`
  26. Area string `json:"-"`
  27. Videoid string `json:"-"`
  28. Time xtime.Time `json:"-"`
  29. Flowbyte int `json:"flowbyte"`
  30. }
  31. type UnicomJson struct {
  32. Usermob string `json:"usermob"`
  33. Userphone string `json:"userphone"`
  34. Cpid string `json:"cpid"`
  35. Spid string `json:"spid"`
  36. TypeInt string `json:"type"`
  37. Ordertime string `json:"ordertime"`
  38. Canceltime string `json:"canceltime"`
  39. Endtime string `json:"endtime"`
  40. Channelcode string `json:"channelcode"`
  41. Province string `json:"province"`
  42. Area string `json:"area"`
  43. Ordertypes string `json:"ordertype"`
  44. Videoid string `json:"videoid"`
  45. Time string `json:"time"`
  46. FlowbyteStr string `json:"flowbyte"`
  47. }
  48. type UnicomIpJson struct {
  49. Ipbegin string `json:"ipbegin"`
  50. Ipend string `json:"ipend"`
  51. Provinces string `json:"province"`
  52. Isopen string `json:"isopen"`
  53. Opertime string `json:"opertime"`
  54. Sign string `json:"sign"`
  55. }
  56. type UnicomIP struct {
  57. Ipbegin int `json:"-"`
  58. Ipend int `json:"-"`
  59. IPStartUint uint32 `json:"-"`
  60. IPEndUint uint32 `json:"-"`
  61. }
  62. type UnicomUserIP struct {
  63. IPStr string `json:"ip"`
  64. IsValide bool `json:"is_valide"`
  65. }
  66. type BroadbandOrder struct {
  67. Usermob string `json:"userid,omitempty"`
  68. Endtime string `json:"endtime,omitempty"`
  69. Channel string `json:"channel,omitempty"`
  70. }
  71. type UserBind struct {
  72. Usermob string `json:"usermob,omitempty"`
  73. Phone int `json:"phone"`
  74. Mid int64 `json:"mid"`
  75. Name string `json:"name,omitempty"`
  76. State int `json:"state,omitempty"`
  77. Integral int `json:"integral"`
  78. Flow int `json:"flow"`
  79. Monthly time.Time `json:"monthly,omitempty"`
  80. }
  81. type UserPack struct {
  82. ID int64 `json:"id"`
  83. Type int `json:"type"`
  84. Desc string `json:"desc"`
  85. Amount int `json:"amount"`
  86. Capped int8 `json:"capped"`
  87. Integral int `json:"integral"`
  88. Param string `json:"param"`
  89. State int `json:"state,omitempty"`
  90. }
  91. type UserPackLimit struct {
  92. IsLimit int `json:"is_limit"`
  93. Count int `json:"count"`
  94. }
  95. type UnicomUserFlow struct {
  96. Phone int `json:"phone"`
  97. Mid int64 `json:"mid"`
  98. Integral int `json:"integral"`
  99. Flow int `json:"flow"`
  100. Outorderid string `json:"outorderid"`
  101. Orderid string `json:"orderid"`
  102. Desc string `json:"desc"`
  103. }
  104. type UserPackLog struct {
  105. Phone int `json:"phone,omitempty"`
  106. Usermob string `json:"usermob,omitempty"`
  107. Mid int64 `json:"mid,omitempty"`
  108. RequestNo string `json:"request_no,omitempty"`
  109. Type int `json:"pack_type"`
  110. Desc string `json:"-"`
  111. UserDesc string `json:"pack_desc,omitempty"`
  112. Integral int `json:"integral,omitempty"`
  113. }
  114. type UserLog struct {
  115. Phone int `json:"phone,omitempty"`
  116. Integral int `json:"integral,omitempty"`
  117. Desc string `json:"pack_desc,omitempty"`
  118. Ctime string `json:"ctime,omitempty"`
  119. }
  120. type UserBindInfo struct {
  121. MID int64 `json:"mid"`
  122. Phone int `json:"phone"`
  123. Action string `json:"action"`
  124. }
  125. // UnicomChange
  126. func (u *Unicom) UnicomChange() {
  127. if u.Canceltime.Time().IsZero() {
  128. u.Canceltime = 0
  129. }
  130. if u.Endtime.Time().IsZero() {
  131. u.Endtime = 0
  132. }
  133. switch u.Spid {
  134. case 10019:
  135. u.CardType = 1
  136. case 10020:
  137. u.CardType = 2
  138. case 10021:
  139. u.CardType = 3
  140. case 979:
  141. u.CardType = 4
  142. }
  143. }
  144. func (u *UnicomJson) UnicomJSONChange() (err error) {
  145. if u.Ordertypes != "" {
  146. if _, err = strconv.Atoi(u.Ordertypes); err != nil {
  147. log.Error("UnicomJsonChange error(%v)", u)
  148. }
  149. }
  150. return
  151. }
  152. func (u *UnicomIP) UnicomIPChange() {
  153. u.IPStartUint = u.unicomIPTOUint(u.Ipbegin)
  154. u.IPEndUint = u.unicomIPTOUint(u.Ipend)
  155. }
  156. func (u *UnicomIP) unicomIPTOUint(ip int) (ipUnit uint32) {
  157. var (
  158. ip1, ip2, ip3, ip4 int
  159. ipStr string
  160. )
  161. var _initIP = "%d.%d.%d.%d"
  162. ip1 = ip / 1000000000
  163. ip2 = (ip / 1000000) % 1000
  164. ip3 = (ip / 1000) % 1000
  165. ip4 = ip % 1000
  166. ipStr = fmt.Sprintf(_initIP, ip1, ip2, ip3, ip4)
  167. ipUnit = model.InetAtoN(ipStr)
  168. return
  169. }
  170. // UnicomJSONTOUincom
  171. func (u *Unicom) UnicomJSONTOUincom(usermob string, ujson *UnicomJson) {
  172. u.Spid, _ = strconv.Atoi(ujson.Spid)
  173. u.Ordertime = timeStrToInt(ujson.Ordertime)
  174. u.Canceltime = timeStrToInt(ujson.Canceltime)
  175. u.Endtime = timeStrToInt(ujson.Endtime)
  176. u.TypeInt, _ = strconv.Atoi(ujson.TypeInt)
  177. u.Ordertypes, _ = strconv.Atoi(ujson.Ordertypes)
  178. u.Channelcode, _ = strconv.Atoi(ujson.Channelcode)
  179. u.Usermob = usermob
  180. u.Cpid = ujson.Cpid
  181. u.Province = ujson.Province
  182. u.UnicomChange()
  183. }
  184. // timeStrToInt
  185. func timeStrToInt(timeStr string) (timeInt xtime.Time) {
  186. var err error
  187. timeLayout := "20060102150405"
  188. loc, _ := time.LoadLocation("Local")
  189. theTime, _ := time.ParseInLocation(timeLayout, timeStr, loc)
  190. if err = timeInt.Scan(theTime); err != nil {
  191. log.Error("timeInt.Scan error(%v)", err)
  192. }
  193. return
  194. }
  195. func (u *UnicomIP) UnicomIPStrToint(ipstart, ipend string) {
  196. u.Ipbegin = ipToInt(ipstart)
  197. u.Ipend = ipToInt(ipend)
  198. }
  199. // ipToint
  200. func ipToInt(ipString string) (ipInt int) {
  201. tmp := strings.Split(ipString, ".")
  202. if len(tmp) < 4 {
  203. return
  204. }
  205. var ipStr string
  206. for _, tip := range tmp {
  207. var (
  208. ipLen = len(tip)
  209. last int
  210. ip1 string
  211. )
  212. if ipLen < 3 {
  213. last = 3 - ipLen
  214. switch last {
  215. case 1:
  216. ip1 = "0" + tip
  217. case 2:
  218. ip1 = "00" + tip
  219. case 3:
  220. ip1 = "000"
  221. }
  222. } else {
  223. ip1 = tip
  224. }
  225. ipStr = ipStr + ip1
  226. }
  227. ipInt, _ = strconv.Atoi(ipStr)
  228. return
  229. }
  230. func (t *UserLog) UserLogJSONChange(jsonData string) (err error) {
  231. if err = json.Unmarshal([]byte(jsonData), &t); err != nil {
  232. return
  233. }
  234. return
  235. }