ginKit

package
v2.2.44 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 21, 2023 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Overview

Package ginKit

TODO: 响应文件或文件流,目前一律用no-cache,在此种情况下会有问题:一个网址对应复数的图片(可以参考Web.docx).

Package ginKit 路由相关

Package ginKit 静态资源相关

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AddHeader

func AddHeader(ctx *gin.Context, key, value string)

func AttachDefaultFavicon added in v2.2.40

func AttachDefaultFavicon(engine *gin.Engine) error

func AttachDefaultNoRoute added in v2.2.40

func AttachDefaultNoRoute(engine IEngine) error

AttachDefaultNoRoute 使用自带的404页面.

PS: 会在临时目录下生成文件,注意不要删掉他们!!!

func DelHeader

func DelHeader(ctx *gin.Context, key string)

func GetClientIp

func GetClientIp(ctx *gin.Context) string

GetClientIp 获取客户端IP地址(客户端的真实IP地址,但结果并不总是可靠的).

在Gin框架中,ctx.ClientIP() VS ctx.RemoteIP():

(1) 当客户端直接连接到服务器时,RemoteIP 和 ClientIP 方法返回的结果相同。 (2) 当客户端通过代理服务器连接时,这两个方法返回的结果可能会不同。此时,RemoteIP 方法返回代理服务器的 IP 地址,而 ClientIP 方法则尝试从 HTTP 请求头中获取客户端的真实 IP 地址。 e.g.

ClientIP 方法首先检查 HTTP 请求头中的 X-Forwarded-For 和 X-Real-Ip 字段。如果这些字段存在,则 ClientIP 方法会返回其中的值作为客户端的真实 IP 地址。如果这些字段不存在,则 ClientIP 方法会返回与 RemoteIP 方法相同的结果。

总结:

在使用Gin框架时,如果您希望获取客户端的真实 IP 地址,应该使用 ClientIP 方法而不是 RemoteIP 方法。但是,请注意,由于客户端可以伪造 HTTP 请求头中的 X-Forwarded-For 和 X-Real-Ip 字段,因此 ClientIP 方法返回的结果并不总是可靠的。在某些情况下,您可能需要使用其他方法来验证客户端的真实 IP 地址。

func GetHeader

func GetHeader(ctx *gin.Context, key string) string

func GetRemoteIP added in v2.1.54

func GetRemoteIP(ctx *gin.Context) string

GetRemoteIP 获取客户端IP地址(客户端的远程IP地址).

func GetUserAgent

func GetUserAgent(ctx *gin.Context) string

GetUserAgent 获取http请求头中"User Agent"的值.

参考: https://www.sunzhongwei.com/golang-gin-for-user-agent-in-http-request-header-value

e.g. Chrome浏览器: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Safari浏览器: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

func LoadHTMLFiles deprecated added in v2.1.52

func LoadHTMLFiles(engine IEngine, filePaths ...string)

LoadHTMLFiles 加载(多个)html文件

Deprecated: 直接调用 IEngine 的方法.

func LoadHTMLGlob deprecated added in v2.1.52

func LoadHTMLGlob(engine IEngine, pattern string)

LoadHTMLGlob

Deprecated: 直接调用 IEngine 的方法.

func MustSetUp

func MustSetUp(config Config, recoveryMiddleware gin.HandlerFunc, businessLogic func(engine *gin.Engine) error)

func NewCorsMiddleware

func NewCorsMiddleware(origins []string) gin.HandlerFunc

NewCorsMiddleware 新建一个cors中间件.

「Go框架」 Gin 怎么实现允许前端跨域请求?

https://mp.weixin.qq.com/s/2eJUJKJ3Xu5jOYXAfknqtA

@param origins (0) 可以为nil

(1) origin白名单
(2) 支持wildcard(*)
(3) len(origins) == 0,则通配(请求的origin是什么就允许什么)

e.g.

传参: []string{"https://*.github.com", "https://api.*", "http://*", "https://facebook.com", "*.golang.org"}

func NewEngine

func NewEngine() *gin.Engine

NewEngine

@param recovery 可以为nil,将采用默认值 gin.Recovery()

func NoRoute

func NoRoute(engine IEngine, handlers ...gin.HandlerFunc)

NoRoute 404

func ObtainBoolParam

func ObtainBoolParam(ctx *gin.Context, key string) (bool, error)

func ObtainFloat32Param

func ObtainFloat32Param(ctx *gin.Context, key string) (float32, error)

func ObtainFloat64Param

func ObtainFloat64Param(ctx *gin.Context, key string) (float64, error)

func ObtainFormFileContent

func ObtainFormFileContent(ctx *gin.Context, key string) ([]byte, string, error)

ObtainFormFileContent form请求,根据 传参key 获取文件的字节流.(单文件上传)

@return 文件内容 + 文件名 + 错误

func ObtainGetParam deprecated

func ObtainGetParam(ctx *gin.Context, key string) string

ObtainGetParam 从url获取参数

Deprecated: 使用原生方法,用法更加丰富.

PS: 不需要额外手动解码.

func ObtainInt32Param

func ObtainInt32Param(ctx *gin.Context, key string) (int32, error)

func ObtainInt64Param

func ObtainInt64Param(ctx *gin.Context, key string) (int64, error)

func ObtainIntParam

func ObtainIntParam(ctx *gin.Context, key string) (int, error)

func ObtainParam

func ObtainParam(ctx *gin.Context, key string) string

ObtainParam 获取请求参数(顺序: GET、POST).

PS: 不需要额外手动解码.

func ObtainPostParam deprecated

func ObtainPostParam(ctx *gin.Context, key string) string

ObtainPostParam

Deprecated: 使用原生方法,用法更加丰富.

PS: (1) 不需要额外手动解码. (2) 支持的Content-Type: multipart/form-data、x-www-form-urlencoded ...

func RegisterRoute added in v2.1.52

func RegisterRoute(group IGroup, route string, methods []string, handlers ...gin.HandlerFunc)

RegisterRoute

适用场景: 1个路由,n个Method.

@param methods nil => 接收所有类型method的请求. e.g. http.MethodGet、http.MethodPost

func RegisterRoutes added in v2.1.52

func RegisterRoutes(group IGroup, routes []string, methods []string, handlers ...gin.HandlerFunc)

RegisterRoutes 将多个相同的处理器,注册到多个路由.

func RespondError

func RespondError(ctx *gin.Context, statusCode int, err error)

func RespondFile

func RespondFile(ctx *gin.Context, httpStatusCode int, path, name string)

RespondFile

PS: (1) 支持的浏览器: ie、Edge、Safari、Chrome、Firefox; (2) 按照实际的业务,自行判断是否和 ginKit.SetCacheControlNoCache() 或 ginKit.SetCacheControlNoStore() 组合使用,或者不设置 "Cache-Control".

@param name 文件名(如果为"",将自动从传参path中获取)

func RespondFileContent

func RespondFileContent(ctx *gin.Context, httpStatusCode int, name, contentType string, data []byte)

RespondFileContent 响应文件流([]byte)给客户端.

PS: (1) 支持的浏览器: ie、Edge、Safari、Chrome、Firefox; (2) 按照实际的业务,自行判断是否和 ginKit.SetCacheControlNoCache() 或 ginKit.SetCacheControlNoStore() 组合使用,或者不设置 "Cache-Control".

@param name 可以为"" @param contentType 可以为"",将会使用默认值

func RespondFileFromFS

func RespondFileFromFS(ctx *gin.Context, httpStatusCode int, filePath string, fs http.FileSystem)

RespondFileFromFS

PS: (1) 支持的浏览器: ie、Edge、Safari、Chrome、Firefox; (2) 按照实际的业务,自行判断是否和 ginKit.SetCacheControlNoCache() 或 ginKit.SetCacheControlNoStore() 组合使用,或者不设置 "Cache-Control".

func RespondHtml

func RespondHtml(ctx *gin.Context, httpStatusCode int, htmlData []byte)

RespondHtml 响应html([]byte形式)给前端.

PS: (1) 只能是单纯的html文件,就算有js和css也只能内嵌,不能从外部导入; (2) 无法进行渲染(ctx.HTML()可以进行渲染); (3) 可以搭配 go-bindata 一起使用.

func RespondIcon

func RespondIcon(ctx *gin.Context, httpStatusCode int, iconData []byte)

func RespondPackage

func RespondPackage(ctx *gin.Context, pack *ResponsePackage)

RespondPackage

PS: 优先顺序(从高到低):文本(包括json)、 文件(路径)、文件(内容)、错误(error)

@param pack 可以为nil,此时:状态码为200,响应内容为空(不存在请求转发的情况).

func RespondPackageOrError

func RespondPackageOrError(ctx *gin.Context, pack *ResponsePackage, err error)

func RespondPanic

func RespondPanic(ctx *gin.Context, err any)

func RespondPdfContentToPrint

func RespondPdfContentToPrint(ctx *gin.Context, httpStatusCode int, pdfContent []byte)

RespondPdfContentToPrint 会触发浏览器端的打印.

PS: (1) 不要传文件名 (2) contentType为"application/pdf"

func SetCacheControlNoCache

func SetCacheControlNoCache(ctx *gin.Context)

SetCacheControlNoCache 实际上是有缓存的)浏览器对请求回来的response做缓存,但是每次在向客户端(浏览器)提供响应数据时,缓存都要向服务器评估缓存响应的有效性。

PS: 详见"Web.docx".

func SetCacheControlNoStore

func SetCacheControlNoStore(ctx *gin.Context)

SetCacheControlNoStore 禁止一切缓存.

PS: 详见"Web.docx".

func SetHeader

func SetHeader(ctx *gin.Context, key, value string)

func SetHttpStatusCode

func SetHttpStatusCode(ctx *gin.Context, statusCode int)

SetHttpStatusCode 设置http状态码

func StaticDir deprecated

func StaticDir(group IGroup, relativePath, dirPath string, listDirectory bool)

StaticDir 静态资源(目录)

Deprecated: 直接调用 IGroup 的方法.

@param relativePath 路由 @param dirPath 静态资源所在的目录(相对路径 || 绝对路径)

func StaticFile deprecated

func StaticFile(group IGroup, relativePath, filePath string)

StaticFile 静态资源(单个文件)

Deprecated: 直接调用 IGroup 的方法.

func WrapToHandlerFunc

func WrapToHandlerFunc(handler Handler) gin.HandlerFunc

WrapToHandlerFunc Handler 类型 => gin.HandlerFunc 类型

@param handler 不能为nil

Types

type Config

type Config struct {
	Mode     string `json:"mode,default=debug,options=debug|release|test" yaml:"mode"`
	HostName string `json:"hostName,optional" yaml:"hostName"`
	Port     int    `json:"port,default=80,range=[1:65535]" yaml:"port"`
	Colorful bool   `json:"colorful,default=true" yaml:"colorful"`
	Pprof    bool   `json:"pprof,default=false" yaml:"pprof"`

	SSL        SslConfig        `json:"ssl" yaml:"ssl"`
	Middleware MiddlewareConfig `json:"middleware" yaml:"middleware"`
}

func (*Config) Verify

func (config *Config) Verify() error

type CorsConfig

type CorsConfig struct {
	Access  bool     `json:"access,default=false" yaml:"access"`
	Origins []string `json:"origins,optional" yaml:"origins"`
}

CorsConfig cors(跨源资源共享)的配置

type Handler

type Handler func(ctx *gin.Context) (*ResponsePackage, error)

type IEngine

type IEngine interface {
	LoadHTMLFiles(filePaths ...string)

	LoadHTMLGlob(pattern string)

	NoRoute(handlers ...gin.HandlerFunc)
}

type IGroup

type IGroup interface {
	Handle(httpMethod, relativePath string, handlers ...gin.HandlerFunc) gin.IRoutes

	Any(relativePath string, handlers ...gin.HandlerFunc) gin.IRoutes

	StaticFile(relativePath, filepath string) gin.IRoutes

	StaticFS(relativePath string, fs http.FileSystem) gin.IRoutes

	Static(relativePath, root string) gin.IRoutes
}

type MiddlewareConfig

type MiddlewareConfig struct {
	BodyLimit     int64                                `json:"bodyLimit,default=-1,range=[-1:]" yaml:"bodyLimit"`
	Gzip          bool                                 `json:"gzip,default=false" yaml:"gzip"`
	XFrameOptions string                               `json:"xFrameOptions,optional" yaml:"xFrameOptions"`
	Cors          CorsConfig                           `json:"cors" yaml:"cors"`
	Referer       []*refererKit.RefererVerifierBuilder `json:"referer,optional" yaml:"referer"`
}

type ResponsePackage

type ResponsePackage struct {
	// StatusCode http状态码(默认200,即 http.StatusOK)
	StatusCode int

	// Object json对象(不为nil的情况下,序列化为json并响应给前端)
	Object interface{}

	// Text 响应字符串(也可以是json)
	Text string

	// FilePath 响应文件的路径
	FilePath string
	// FileContent 响应文件的内容
	FileContent []byte
	// ContentType 响应文件内容的类型(需要与 FileContent 搭配使用)
	ContentType string
	// FileName 文件名
	/*
		PS: 使用 FilePath 的情况下, FileName 是可选的,为空的话会自己从 FilePath 中截取
	*/
	FileName string

	Error error
}

type SslConfig

type SslConfig struct {
	Access   bool   `json:"access,default=false" yaml:"access"`
	CertFile string `json:"certFile,optional" yaml:"certFile"`
	KeyFile  string `json:"keyFile,optional" yaml:"keyFile"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL