watermark.go 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package watermark
  2. import (
  3. "time"
  4. )
  5. const (
  6. // TypeName 带用户名的水印.
  7. TypeName = 1
  8. // TypeUID 带uid的水印.
  9. TypeUID = 2
  10. // TypeNewName 用户名和logo位置为上下的水印.
  11. TypeNewName = 3
  12. // StatClose 未开启水印.
  13. StatClose = 0
  14. // StatOpen 开启水印.
  15. StatOpen = 1
  16. // StatPreview 预览水印(不写入数据库).
  17. StatPreview = 2
  18. // PosLeftTop 水印位置左上角.
  19. PosLeftTop = 1
  20. // PosRightTop 水印位置右上角.
  21. PosRightTop = 2
  22. // PosLeftBottom 水印位置左下角.
  23. PosLeftBottom = 3
  24. // PosRightBottom 水印位置右下角.
  25. PosRightBottom = 4
  26. )
  27. // Watermark watermark info.
  28. type Watermark struct {
  29. ID int64 `json:"id"`
  30. MID int64 `json:"mid"`
  31. Uname string `json:"uname"`
  32. State int8 `json:"state"`
  33. Ty int8 `json:"type"`
  34. Pos int8 `json:"position"`
  35. URL string `json:"url"`
  36. MD5 string `json:"md5"`
  37. Info string `json:"info"`
  38. Tip string `json:"tip"`
  39. CTime time.Time `json:"ctime"`
  40. MTime time.Time `json:"mtime"`
  41. }
  42. //WatermarkParam set watermark param
  43. type WatermarkParam struct {
  44. MID int64
  45. State int8
  46. Ty int8
  47. Pos int8
  48. Sync int8
  49. IP string
  50. }
  51. // Image image width & height.
  52. type Image struct {
  53. Width int `json:"width"`
  54. Height int `json:"height"`
  55. }
  56. // IsState check state.
  57. func IsState(st int8) bool {
  58. return st == StatClose || st == StatOpen || st == StatPreview
  59. }
  60. // IsType check type.
  61. func IsType(ty int8) bool {
  62. return ty == TypeName || ty == TypeUID || ty == TypeNewName
  63. }
  64. // IsPos check position.
  65. func IsPos(pos int8) bool {
  66. return pos == PosLeftTop || pos == PosRightTop || pos == PosLeftBottom || pos == PosRightBottom
  67. }
  68. // Msg from passport.
  69. type Msg struct {
  70. Action string `json:"action"`
  71. Old *UserInfo `json:"old"`
  72. New *UserInfo `json:"new"`
  73. }
  74. // UserInfo user modify detail.
  75. type UserInfo struct {
  76. MID int64 `json:"mid"`
  77. Uname string `json:"uname"`
  78. UserID string `json:"userid"`
  79. }
  80. //GenWatermark for wm api.
  81. type GenWatermark struct {
  82. Location string `json:"location"`
  83. MD5 string `json:"md5"` // 文件的hash值
  84. Width int `json:"width"`
  85. Height int `json:"height"`
  86. }