广告平台(站长使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

39 lines
1.0 KiB

  1. package mw
  2. import "github.com/gin-gonic/gin"
  3. //func SwagAuth(c *gin.Context) {
  4. // // 这里的 "user" 和 "password" 是示例,需要替换为实际的用户名和密码
  5. // username := c.Query("user")
  6. // password := c.Query("password")
  7. //
  8. // // 验证用户名和密码
  9. // if username != "micro_group" || password != "123456" {
  10. // //e.OutErr(c, e.ERR_UNAUTHORIZED, "Unauthorized!")
  11. // //return
  12. // c.AbortWithStatusJSON(401, gin.H{"error": "Unauthorized"})
  13. // return
  14. // }
  15. //
  16. // // 如果密码正确,则继续执行后续的处理函数
  17. // c.Next()
  18. //}
  19. // @summary 用于密码验证的中间件
  20. func SwagAuth() gin.HandlerFunc {
  21. return func(c *gin.Context) {
  22. // 这里的 "user" 和 "password" 是示例,需要替换为实际的用户名和密码
  23. username := c.Query("user")
  24. password := c.Query("password")
  25. // 验证用户名和密码
  26. if username != "admin" || password != "secret" {
  27. c.AbortWithStatusJSON(401, gin.H{"error": "Unauthorized"})
  28. return
  29. }
  30. // 如果密码正确,则继续执行后续的处理函数
  31. c.Next()
  32. }
  33. }