request_data.go 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package data
  2. import (
  3. "strings"
  4. "time"
  5. "github.com/google/btree"
  6. "git.scraperwall.com/scw/grs"
  7. )
  8. type RequestData struct {
  9. ID string `bson:"_id,omitempty" json:"_id,omitempty"`
  10. Connection string `bson:"connection" json:"connection"`
  11. IpDst string `bson:"ip_dst" json:"ip_dst"`
  12. TcpSeq uint32 `bson:"tcp_seq" json:"tcp_seq"`
  13. XForwardedFor string `bson:"x_forwarded_for" json:"x_forwarded_for"`
  14. XRealIP string `bson:"x_real_ip" json:"x_real_ip"`
  15. Origin string `bson:"origin" json:"origin"`
  16. PortDst uint32 `bson:"port_dst" json:"port_dst"`
  17. Referer string `bson:"referer" json:"referer"`
  18. XRequestedWith string `bson:"x_requested_with" json:"x_requested_with"`
  19. PortSrc uint32 `bson:"port_src" json:"port_src"`
  20. Url string `bson:"url" json:"url"`
  21. Reverse string `bson:"reverse" json:"reverse"`
  22. AcceptEncoding string `bson:"accept_encoding" json:"accept_encoding"`
  23. AcceptLanguage string `bson:"accept_language" json:"accept_language"`
  24. CreatedAt time.Time `bson:"created_at" json:"created_at"`
  25. SortTime time.Time `bson:"-" bson:"-"`
  26. IpSrc string `bson:"ip_src" json:"ip_src"`
  27. Method string `bson:"method" json:"method"`
  28. UserAgent string `bson:"user_agent" json:"user_agent"`
  29. Accept string `bson:"accept" json:"accept"`
  30. Cookie string `bson:"cookie" json:"cookie"`
  31. Host string `bson:"host" json:"host"`
  32. Protocol string `bson:"protocol" json:"protocol"`
  33. Source string `bson:"source" json:"source"`
  34. Via string `bson:"via" json:"via"`
  35. DataRaw map[string]interface{} `bson:"data_raw" json:"data_raw"`
  36. Weight uint64 `bson:"weight" json:"weight"`
  37. Grs grs.GRS `bson:"grs" json:"grs"`
  38. }
  39. func (a *RequestData) Less(b btree.Item) bool {
  40. return a.CreatedAt.Before(b.(*RequestData).CreatedAt)
  41. }
  42. func (a *RequestData) ToRequest() *Request {
  43. return &Request{
  44. Url: a.Url,
  45. Reverse: a.Reverse,
  46. IpSrc: a.IpSrc,
  47. IpDst: a.IpDst,
  48. PortSrc: a.PortSrc,
  49. PortDst: a.PortDst,
  50. TcpSeq: a.TcpSeq,
  51. CreatedAt: a.CreatedAt.UnixNano(),
  52. XForwardedFor: a.XForwardedFor,
  53. XRealIP: a.XRealIP,
  54. Method: a.Method,
  55. Origin: a.Origin,
  56. Referer: a.Referer,
  57. UserAgent: a.UserAgent,
  58. Source: a.Source,
  59. Host: a.Host,
  60. Protocol: a.Protocol,
  61. Connection: a.Connection,
  62. XRequestedWith: a.XRequestedWith,
  63. AcceptEncoding: a.AcceptEncoding,
  64. AcceptLanguage: a.AcceptLanguage,
  65. Accept: a.Accept,
  66. Cookie: a.Cookie,
  67. Via: a.Via,
  68. }
  69. }
  70. // Path returns the Url without any query string
  71. func (a *RequestData) Path() string {
  72. idx := strings.Index(a.Url, "?")
  73. if idx >= 0 {
  74. return a.Url[0:idx]
  75. }
  76. return a.Url
  77. }