NatsERP_user.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package NatsServer
  2. import (
  3. "encoding/json"
  4. "errors"
  5. userlibs "git.baozhida.cn/ERP_libs/User"
  6. "github.com/vmihailenco/msgpack/v5"
  7. "time"
  8. )
  9. // 验证TOKEY
  10. func (m *NatsImpl) Verification(GetCookie string, GetString string) (userlibs.User, error) {
  11. var user userlibs.User
  12. User_tokey := GetCookie
  13. if len(User_tokey) == 0 {
  14. User_tokey = GetString
  15. }
  16. if len(User_tokey) == 0 {
  17. return user, errors.New("user tokey is null")
  18. }
  19. // 请求-响应, 向 verification 发布一个 `ToKey` 请求数据,设置超时间3秒,如果有多个响应,只接收第一个收到的消息
  20. msg, err := m.nats.Request("ERP_User_verification", []byte(User_tokey), 3*time.Second)
  21. if err != nil {
  22. return user, err
  23. }
  24. type T_R struct {
  25. Code int16 `xml:"Code"`
  26. Msg string `xml:"Msg"`
  27. Data userlibs.User `xml:"Data"` // 泛型
  28. }
  29. var t_R T_R
  30. err = msgpack.Unmarshal(msg.Data, &t_R)
  31. if err != nil {
  32. return user, err
  33. }
  34. if t_R.Code != 200 {
  35. return user, errors.New(t_R.Msg)
  36. }
  37. return t_R.Data, nil
  38. }
  39. // 添加系统日志
  40. func (m *NatsImpl) AddSysLogs(T_class, T_title string, T_txt interface{}) {
  41. jsonStu, _ := json.Marshal(T_txt)
  42. type T_S struct {
  43. T_class string
  44. T_title string
  45. T_txt string
  46. }
  47. b, _ := msgpack.Marshal(&T_S{T_class: T_class, T_title: T_title, T_txt: string(jsonStu)})
  48. // 发布-订阅 模式,向 test1 发布一个 `Hello World` 数据
  49. _ = m.nats.Publish("ERP_AddSysLogs", b)
  50. }
  51. // 添加用户日志
  52. func (m *NatsImpl) AddUserLogs(T_uuid, T_class, T_title string, T_txt interface{}) {
  53. jsonStu, _ := json.Marshal(T_txt)
  54. type T_S struct {
  55. T_uuid string
  56. T_class string
  57. T_title string
  58. T_txt string
  59. }
  60. b, _ := msgpack.Marshal(&T_S{T_uuid: T_uuid, T_class: T_class, T_title: T_title, T_txt: string(jsonStu)})
  61. // 发布-订阅 模式,向 test1 发布一个 `Hello World` 数据
  62. _ = m.nats.Publish("ERP_AddUserLogs", b)
  63. }
  64. // 添加用户日志
  65. func (m *NatsImpl) AddNews(T_uuid, T_title, T_Url string) {
  66. type T_S struct {
  67. T_uuid string
  68. T_Title string
  69. T_Url string
  70. }
  71. b, _ := msgpack.Marshal(&T_S{T_uuid: T_uuid, T_Title: T_title, T_Url: T_Url})
  72. // 发布-订阅 模式,向 test1 发布一个 `Hello World` 数据
  73. _ = m.nats.Publish("ERP_AddNews", b)
  74. }