1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*
- * @Author: LinkLeong link@icewhale.com
- * @Date: 2021-10-08 10:29:08
- * @LastEditors: LinkLeong
- * @LastEditTime: 2022-07-22 11:06:07
- * @FilePath: /CasaOS/middleware/gin.go
- * @Description:
- * @Website: https://www.casaos.io
- * Copyright (c) 2022 by icewhale, All Rights Reserved.
- */
- package middleware
- import (
- "fmt"
- "net/http"
- "strings"
- "github.com/IceWhaleTech/CasaOS/pkg/utils/loger"
- "github.com/gin-gonic/gin"
- "go.uber.org/zap"
- )
- func Cors() gin.HandlerFunc {
- return func(c *gin.Context) {
- method := c.Request.Method
- c.Header("Access-Control-Allow-Origin", "*")
- c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE,UPDATE")
- //允许跨域设置可以返回其他子段,可以自定义字段
- c.Header("Access-Control-Allow-Headers", "Authorization, Content-Length, X-CSRF-Token, Token,session,Language,Content-Type,Access-Control-Allow-Origin,Access-Control-Allow-Headers,Access-Control-Allow-Methods,Connection,Host,Origin,Referer,User-Agent,X-Requested-With")
- // 允许浏览器(客户端)可以解析的头部 (重要)
- c.Header("Access-Control-Expose-Headers", "Content-Length, Access-Control-Allow-Origin, Access-Control-Allow-Headers")
- //c.Writer.Header().Set("Access-Control-Allow-Headers", "Accept, Authorization, Content-Type, Content-Length, X-CSRF-Token, Token, session, Origin, Host, Connection, Accept-Encoding, Accept-Language, X-Requested-With")
- //设置缓存时间
- c.Header("Access-Control-Max-Age", "172800")
- c.Header("Access-Control-Allow-Credentials", "true")
- c.Set("Content-Type", "application/json")
- //}
- //允许类型校验
- if method == "OPTIONS" {
- c.JSON(http.StatusOK, "ok!")
- }
- defer func() {
- if err := recover(); err != nil {
- fmt.Println(err)
- }
- }()
- c.Next()
- }
- }
- func WriteLog() gin.HandlerFunc {
- return func(c *gin.Context) {
- if !strings.Contains(c.Request.URL.String(), "password") {
- loger.Info("request:", zap.Any("path", c.Request.URL.String()), zap.Any("param", c.Params), zap.Any("query", c.Request.URL.Query()), zap.Any("method", c.Request.Method))
- c.Next()
- }
- }
- }
|