Documentation ¶
Overview ¶
Package server web 服务管理
Index ¶
- Constants
- type BuildResultFunc
- type CTXSanitizer
- type Context
- func (ctx *Context) Body() (body []byte, err error)
- func (ctx *Context) ClientIP() string
- func (ctx *Context) Error(status int, v ...any) Responser
- func (ctx *Context) Errorf(status int, format string, v ...any) Responser
- func (ctx *Context) Header() http.Header
- func (ctx *Context) InternalServerError(v ...any) Responser
- func (ctx *Context) InternalServerErrorf(format string, v ...any) Responser
- func (ctx *Context) IsXHR() bool
- func (ctx *Context) LanguageTag() language.Tag
- func (ctx *Context) LocalePrinter() *message.Printer
- func (ctx *Context) Location() *time.Location
- func (ctx *Context) Log(level, deep int, v ...any)
- func (ctx *Context) Logf(level, deep int, format string, v ...any)
- func (ctx *Context) Logs() *logs.Logs
- func (ctx *Context) Marshal(status int, body any, headers map[string]string) error
- func (ctx *Context) Now() time.Time
- func (ctx *Context) OnExit(f func(int))
- func (ctx *Context) ParamID(key, code string) (int64, Responser)
- func (ctx *Context) ParamInt64(key, code string) (int64, Responser)
- func (ctx *Context) ParamString(key, code string) (string, Responser)
- func (ctx *Context) Params() *Params
- func (ctx *Context) ParseTime(layout, value string) (time.Time, error)
- func (ctx *Context) Queries() (*Queries, error)
- func (ctx *Context) QueryObject(v any, code string) Responser
- func (ctx *Context) Read(v any, code string) Responser
- func (ctx *Context) Request() *http.Request
- func (ctx *Context) Result(code string, fields ResultFields) Responser
- func (ctx *Context) Server() *Server
- func (ctx *Context) SetLanguage(l string) error
- func (ctx *Context) SetLocation(name string) error
- func (ctx *Context) Sprintf(key message.Reference, v ...any) string
- func (ctx *Context) Unmarshal(v any) error
- func (ctx *Context) Write(bs []byte) (int, error)
- func (ctx *Context) WriteHeader(status int)
- type HandlerFunc
- type Middleware
- type MiddlewareFunc
- type Module
- func (m *Module) AddFS(fsys ...fs.FS)
- func (m *Module) AddResult(status int, code string, phrase localeutil.LocaleStringer)
- func (m *Module) AddResults(status int, messages map[string]localeutil.LocaleStringer)
- func (m *Module) Cache() cache.Access
- func (m *Module) FileServer(name, index string) HandlerFunc
- func (m *Module) Glob(pattern string) ([]string, error)
- func (m *Module) ID() string
- func (m *Module) NewModule(id string) *Module
- func (m *Module) Open(name string) (fs.File, error)
- func (m *Module) Server() *Server
- type Options
- type Params
- func (p *Params) Bool(key string) bool
- func (p *Params) Errors() ResultFields
- func (p *Params) Float64(key string) float64
- func (p *Params) HasErrors() bool
- func (p *Params) ID(key string) int64
- func (p *Params) Int64(key string) int64
- func (p *Params) MustBool(key string, def bool) bool
- func (p *Params) MustFloat64(key string, def float64) float64
- func (p *Params) MustID(key string, def int64) int64
- func (p *Params) MustInt64(key string, def int64) int64
- func (p *Params) MustString(key, def string) string
- func (p *Params) Result(code string) Responser
- func (p *Params) String(key string) string
- type Queries
- func (q *Queries) Bool(key string, def bool) bool
- func (q *Queries) Errors() ResultFields
- func (q *Queries) Float64(key string, def float64) float64
- func (q *Queries) HasErrors() bool
- func (q *Queries) Int(key string, def int) int
- func (q *Queries) Int64(key string, def int64) int64
- func (q *Queries) Object(v any)
- func (q *Queries) Result(code string) Responser
- func (q *Queries) String(key, def string) string
- type Responser
- type Result
- type ResultFields
- type Router
- type RouterOptions
- type Routers
- type ScheduledJob
- type ScheduledJobFunc
- type Scheduler
- type Server
- func (srv *Server) AddAt(title string, f ScheduledJobFunc, ti time.Time, delay bool)
- func (srv *Server) AddCron(title string, f ScheduledJobFunc, spec string, delay bool)
- func (srv *Server) AddJob(title string, f ScheduledJobFunc, scheduler Scheduler, delay bool)
- func (srv *Server) AddResult(status int, code string, phrase localeutil.LocaleStringer)
- func (srv *Server) AddResults(status int, messages map[string]localeutil.LocaleStringer)
- func (srv *Server) AddService(title string, f ServiceFunc)
- func (srv *Server) AddTicker(title string, f ScheduledJobFunc, dur time.Duration, imm, delay bool)
- func (srv *Server) Cache() cache.Cache
- func (srv *Server) Close(shutdownTimeout time.Duration) error
- func (srv *Server) Encodings() *serialization.Encodings
- func (srv *Server) FileServer(fsys fs.FS, name, index string) HandlerFunc
- func (srv *Server) Files() *serialization.Files
- func (srv *Server) Jobs() []*ScheduledJob
- func (srv *Server) Locale() *serialization.Locale
- func (srv *Server) LocalePrinter() *message.Printer
- func (srv *Server) Location() *time.Location
- func (srv *Server) Logs() *logs.Logs
- func (srv *Server) Mimetypes() *serialization.Mimetypes
- func (srv *Server) Name() string
- func (srv *Server) NewContext(w http.ResponseWriter, r *http.Request) *Context
- func (srv *Server) NewModule(id string) *Module
- func (srv *Server) Now() time.Time
- func (srv *Server) OnClose(f func() error)
- func (srv *Server) Open(name string) (fs.File, error)
- func (srv *Server) ParseTime(layout, value string) (time.Time, error)
- func (srv *Server) Result(p *message.Printer, code string, fields ResultFields) Result
- func (srv *Server) Results(p *message.Printer) map[string]string
- func (srv *Server) Routers() *Routers
- func (srv *Server) Serve() (err error)
- func (srv *Server) Services() []*Service
- func (srv *Server) Serving() bool
- func (srv *Server) Tag() language.Tag
- func (srv *Server) Uptime() time.Time
- func (srv *Server) Vars() *sync.Map
- func (srv *Server) Version() string
- type Service
- type ServiceFunc
- type ServiceState
Constants ¶
const ( DefaultMimetype = "application/octet-stream" DefaultCharset = "utf-8" )
const ( ServiceStopped = scheduled.Stopped // 当前处于停止状态,默认状态 ServiceRunning = scheduled.Running // 正在运行 ServiceFailed = scheduled.Failed // 出错,不再执行后续操作 )
几种可能的状态值
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BuildResultFunc ¶ added in v0.44.0
BuildResultFunc 用于生成 Result 接口对象的函数
用户可以通过 BuildResultFunc 返回自定义的 Result 对象, 在 Result 中用户可以自定义其展示方式,可参考默认的实现 DefaultResultBuilder
type CTXSanitizer ¶
type CTXSanitizer interface { // CTXSanitize 验证和修正当前对象的数据 // // 如果验证有误,则需要返回这些错误信息。 CTXSanitize(*Context) ResultFields }
CTXSanitizer 提供对数据的验证和修正
在 Context.Read 和 Queries.Object 中会在解析数据成功之后,调用该接口进行数据验证。
type Context ¶
type Context struct { // 保存 Context 在存续期间的可复用变量 // // 这是比 context.Value 更经济的传递变量方式,但是这并不是协程安全的。 Vars map[any]any // contains filtered or unexported fields }
Context 根据当次 HTTP 请求生成的上下文内容
Context 同时也实现了 http.ResponseWriter 接口, 但是不推荐非必要情况下直接使用 http.ResponseWriter 的接口方法, 而是采用返回 Responser 的方式向客户端输出内容。
func (*Context) ClientIP ¶
ClientIP 返回客户端的 IP 地址及端口
获取顺序如下:
- X-Forwarded-For 的第一个元素
- Remote-Addr 报头
- X-Read-IP 报头
func (*Context) Error ¶
Error 输出日志到 ERROR 通道并向用户输出指定状态码的页面
NOTE:应该在出错的地方直接调用 Error,而不是将 Error 嵌套在另外的函数里, 否则出错信息的位置信息将不准确。
func (*Context) InternalServerError ¶ added in v0.49.0
InternalServerError 输出日志到 ERROR 通道并向用户输出 500 状态码的页面
注意事项参考 Error
func (*Context) InternalServerErrorf ¶ added in v0.49.0
InternalServerErrorf 输出日志到 ERROR 通道并向用户输出 500 状态码的页面
注意事项参考 Error
func (*Context) LanguageTag ¶ added in v0.49.0
func (*Context) LocalePrinter ¶
func (*Context) Marshal ¶
Marshal 向客户端输出内容
headers 的内容将是以 ctx.Header().Add 的形式加入到报头中,Content-* 系列报头在有内容输出时会被强行覆盖;
func (*Context) OnExit ¶ added in v0.49.0
OnExit 注册退出当前请求时的处理函数
f 的原型为
func(status int)
其中 status 为最终输出到客户端的状态码。
func (*Context) ParamID ¶
ParamID 获取地址参数中表示 key 的值并并转换成大于 0 的 int64
相对于 Context.ParamInt64(),该值必须大于 0。
NOTE: 若需要获取多个参数,使用 Context.Params 会更方便。
func (*Context) ParamInt64 ¶
ParamInt64 取地址参数中的 key 表示的值 int64 类型值
NOTE: 若需要获取多个参数,可以使用 Context.Params 获取会更方便。
func (*Context) ParamString ¶
ParamString 取地址参数中的 key 表示的 string 类型值
NOTE: 若需要获取多个参数,可以使用 Context.Params 获取会更方便。
func (*Context) QueryObject ¶
QueryObject 将查询参数解析到一个对象中
func (*Context) Read ¶
Read 从客户端读取数据并转换成 v 对象
功能与 Unmarshal() 相同,只不过 Read() 在出错时,返回的不是 error, 而是一个表示错误信息的 Response 对象。
如果 v 实现了 CTXSanitizer 接口,则在读取数据之后,会调用其接口函数。 如果验证失败,会输出以 code 作为错误代码的 Response 对象。
func (*Context) Result ¶ added in v0.40.0
func (ctx *Context) Result(code string, fields ResultFields) Responser
Result 向客户端输出指定代码的错误信息
如果找不到 code 对应的错误信息,则会直接 panic。
func (*Context) SetLanguage ¶ added in v0.49.0
SetLanguage 设置输出的语言
默认情况下,会根据用户提交的 Accept-Language 报头设置默认值。
func (*Context) SetLocation ¶ added in v0.49.0
SetLocation 设置时区信息
name 为时区名称,比如 'America/New_York',具体说明可参考 time.LoadLocataion
func (*Context) WriteHeader ¶ added in v0.48.0
type Middleware ¶ added in v0.48.0
type Middleware = mux.MiddlewareOf[HandlerFunc]
type MiddlewareFunc ¶ added in v0.48.0
type MiddlewareFunc = mux.MiddlewareFuncOf[HandlerFunc]
type Module ¶
type Module struct {
// contains filtered or unexported fields
}
func (*Module) AddFS ¶ added in v0.41.0
AddFS 添加文件系统
Module 默认以 id 为名称相对于 Server 创建了一个文件系统, 此操作会将 fsys 作为 Module 另一个文件系统与 Module 相关联, 当执行 Open 等操作时,会依然以关联顺序查找相应的文件系统,直到找到。
需要注意的是,fs.Glob 不是搜索所有的 fsys 然后返回集合。
func (*Module) AddResult ¶ added in v0.48.0
func (m *Module) AddResult(status int, code string, phrase localeutil.LocaleStringer)
AddResult 注册错误代码
此功能与 Server.AddResult 的唯一区别是,code 参数会加上 Module.ID() 作为其前缀。
func (*Module) AddResults ¶ added in v0.48.0
func (m *Module) AddResults(status int, messages map[string]localeutil.LocaleStringer)
AddResults 添加多条错误信息
此功能与 Server.AddResult 的唯一区别是,code 参数会加上 Module.ID() 作为其前缀。
func (*Module) FileServer ¶ added in v0.48.0
func (m *Module) FileServer(name, index string) HandlerFunc
FileServer 返回以当前模块作为文件系统的静态文件服务
type Options ¶
type Options struct { // 项目默认可存取的文件系统 // // 默认情况下为可执行文件所在的目录。 FS fs.FS // 服务器的时区 // // 默认值为 time.Local Location *time.Location // 指定生成 Result 数据的方法 // // 默认情况下指向 DefaultResultBuilder。 ResultBuilder BuildResultFunc // 缓存系统 // // 默认值为内存类型。 Cache cache.Cache // 端口号 // // 格式参照 net/http.Server.Addr 字段。 // 可以为空,表示由 net/http.Server 确定其默认值。 // // NOTE: 该值可能会被 HTTPServer 的操作所覆盖。 Port string // 可以对 http.Server 的内容进行修改 // // NOTE: 对 http.Server.Handler 的修改不会启作用,该值始终会指向 Server.routers HTTPServer func(*http.Server) // 日志的输出通道设置 // // 如果此值为空,那么在被初始化 logs.New(nil) 值,表示不会输出到任何通道。 Logs *logs.Logs // 指定用于序列化文件的方法 // // 该对象同时被用于加载配置文件和序列化文件。 如果为空,会初始化一个空对象。 Files *serialization.Files // 忽略的压缩类型 // // 当用户请求的 accept 报头与此列表相匹配时,将不会对此请求的内容进行压缩。 // 可以有通配符,比如 image/* 表示任意 image/ 开头的内容。 // 默认为空。 IgnoreEncodings []string // 默认的语言标签 // // 在用户请求的报头中没有匹配的语言标签时,会采用此值作为该用户的本地化语言, // 同时也用来初始化 Server.LocalePrinter。 // // 如果为空,则会尝试读取当前系统的本地化信息。 Tag language.Tag // 本地化操作的对象 // // 与 Files 组合构建 serialization.Locale 对象,可以为空。 Catalog *catalog.Builder // contains filtered or unexported fields }
Options 初始化 Server 的参数
type Params ¶
type Params struct {
// contains filtered or unexported fields
}
Params 用于处理路径中包含的参数
p := ctx.Params() aid := p.Int64("aid") bid := p.Int64("bid") if p.HasErrors() { // do something return }
func (*Params) Bool ¶
Bool 获取参数 key 所代表的值并转换成 bool
最终会调用 strconv.ParseBool 进行转换, 也只有该方法中允许的字符串会被正确转换。
func (*Params) MustBool ¶
MustBool 获取参数 key 所代表的值并转换成 bool
若不存在或是转换出错,则返回 def 作为其默认值。 仅在类型转换出错时,才会向 errors 写入错误信息。
最终会调用 strconv.ParseBool 进行转换, 也只有该方法中允许的字符串会被正确转换。
func (*Params) MustFloat64 ¶
MustFloat64 获取参数 key 所代表的值并转换成 float64
若不存在或是转换出错,则返回 def 作为其默认值。 仅在类型转换出错时,才会向 errors 写入错误信息。
func (*Params) MustID ¶
MustID 获取参数 key 所代表的值并转换成 int64
值必须大于 0,否则会输出错误信息,并返回零值。
若不存在或是转换出错,则返回 def 作为其默认值。 仅在类型转换出错或是小于零时,才会向 errors 写入错误信息。
func (*Params) MustInt64 ¶
MustInt64 获取参数 key 所代表的值并转换成 int64
若不存在或是转换出错,则返回 def 作为其默认值。 仅在类型转换出错时,才会向 errors 写入错误信息。
type Queries ¶
type Queries struct {
// contains filtered or unexported fields
}
Queries 用于处理路径中的查询参数
q,_ := ctx.Queries() page := q.Int64("page", 1) size := q.Int64("size", 20) if q.HasErrors() { // do something return }
func (*Queries) Object ¶
Object 将查询参数解析到一个对象中
具体的文档信息可以参考 https://github.com/issue9/query
如果 v 实现了 CTXSanitizer 接口,则在读取数据之后,会调用其接口函数。 如果验证失败,错误信息存入 q.errors。
type Responser ¶ added in v0.40.0
type Responser interface { // Apply 通过 *Context 将当前内容渲染到客户端 Apply(*Context) }
Responser 表示向客户端输出对象最终需要实现的接口
type Result ¶
type Result interface { Responser // Add 添加详细的错误信息 // // 相同的 key 应该能关联多个 val 值。 Add(key string, val ...string) // Set 设置详细的错误信息 // // 如果已经相同的 key,会被覆盖。 Set(key string, val ...string) // HasFields 是否存在详细的错误信息 // // 如果有通过 Add 添加内容,那么应该返回 true HasFields() bool }
Result 展示错误代码需要实现的接口
func DefaultResultBuilder ¶ added in v0.44.0
DefaultResultBuilder 默认的 BuildResultFunc 实现
支持以下格式的返回信息:
JSON:
{ 'message': 'error message', 'code': '4000001', 'fields':[ {'name': 'username': 'message': ['名称过短', '不能包含特殊符号']}, {'name': 'password': 'message': ['不能为空']}, ] }
XML:
<result code="400"> <message>error message</message> <field name="username"> <message>名称过短</message> <message>不能包含特殊符号</message> </field> <field name="password"><message>不能为空</message></field> </result>
YAML:
message: 'error message' code: '40000001' fields: - name: username message: - 名称过短 - 不能包含特殊符号 - name: password message: - 不能为空
protobuf:
message Result { string message = 1; string code = 2; repeated Field fields = 3; } message Field { string name = 1; repeated string message = 2; }
FormData:
message=errormessage&code=4000001&fields.username=名称过短&fields.username=不能包含特殊符号&fields.password=不能为空
protobuf
message Result { string message = 1; string code = 2; repeated Field fields = 3; } message Field { string name = 1; repeated string message = 2; }
type ResultFields ¶ added in v0.44.0
type ResultFields = validation.Messages
ResultFields 表示字段的错误信息列表
原始类型为 map[string][]string,键名为字段名,键值为错误信息列表。
type Router ¶
type Router = mux.RouterOf[HandlerFunc]
type RouterOptions ¶ added in v0.48.0
type RouterOptions = mux.OptionsOf[HandlerFunc]
type Routers ¶ added in v0.48.0
type Routers = mux.RoutersOf[HandlerFunc]
type ScheduledJob ¶ added in v0.44.0
type ScheduledJobFunc ¶ added in v0.44.0
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Server 提供 HTTP 服务
func New ¶
New 返回 *Server 实例
name, version 表示服务的名称和版本号; o 指定了初始化 Server 一些非必要参数。在传递给 New 之后,再对其值进行改变,是无效的。
func (*Server) AddAt ¶ added in v0.44.0
AddAt 添加新的定时任务
f 表示服务的运行函数; title 是对该服务的简要说明; t 指定的时间点; delay 是否在任务执行完之后,才计算下一次的执行时间点。
func (*Server) AddCron ¶ added in v0.44.0
func (srv *Server) AddCron(title string, f ScheduledJobFunc, spec string, delay bool)
AddCron 添加新的定时任务
f 表示服务的运行函数; title 是对该服务的简要说明; spec cron 表达式,支持秒; delay 是否在任务执行完之后,才计算下一次的执行时间点。
func (*Server) AddJob ¶ added in v0.44.0
func (srv *Server) AddJob(title string, f ScheduledJobFunc, scheduler Scheduler, delay bool)
AddJob 添加新的计划任务
f 表示服务的运行函数; title 是对该服务的简要说明; scheduler 计划任务的时间调度算法实现; delay 是否在任务执行完之后,才计算下一次的执行时间点。
func (*Server) AddResult ¶ added in v0.41.0
func (srv *Server) AddResult(status int, code string, phrase localeutil.LocaleStringer)
AddResult 添加一条错误信息
status 指定了该错误代码反馈给客户端的 HTTP 状态码;
func (*Server) AddResults ¶ added in v0.42.0
func (srv *Server) AddResults(status int, messages map[string]localeutil.LocaleStringer)
AddResults 添加多条错误信息
func (*Server) AddService ¶ added in v0.44.0
func (srv *Server) AddService(title string, f ServiceFunc)
AddService 添加新的服务
f 表示服务的运行函数; title 是对该服务的简要说明。
NOTE: 如果 Manager 的所有服务已经处于运行的状态,则会自动运行新添加的服务。
func (*Server) AddTicker ¶ added in v0.44.0
AddTicker 添加新的定时任务
f 表示服务的运行函数; title 是对该服务的简要说明; dur 时间间隔; imm 是否立即执行一次该任务; delay 是否在任务执行完之后,才计算下一次的执行时间点。
func (*Server) Encodings ¶ added in v0.48.0
func (srv *Server) Encodings() *serialization.Encodings
func (*Server) FileServer ¶ added in v0.44.0
func (srv *Server) FileServer(fsys fs.FS, name, index string) HandlerFunc
FileServer 提供静态文件服务
fsys 为文件系统,如果为空则采用 srv.FS; name 表示参数名称; index 表示目录下的默认文件名;
func (*Server) Files ¶ added in v0.41.0
func (srv *Server) Files() *serialization.Files
Files 返回用于序列化文件内容的操作接口
func (*Server) Locale ¶ added in v0.41.0
func (srv *Server) Locale() *serialization.Locale
Locale 操作操作本地化文件的接口
func (*Server) LocalePrinter ¶ added in v0.41.0
func (*Server) Mimetypes ¶
func (srv *Server) Mimetypes() *serialization.Mimetypes
func (*Server) NewModule ¶ added in v0.40.0
NewModule 声明新的模块
id 模块的 ID,需要全局唯一,且要符合 fs.ValidPath 的要求。
func (*Server) Result ¶ added in v0.41.0
Result 返回 Result 实例
如果找不到 code 对应的错误信息,则会直接 panic。 fields 表示明细字段,可以为空,之后通过 Result.Add 添加。
type Service ¶ added in v0.44.0
type Service struct { Title string // contains filtered or unexported fields }
Service 服务模型
type ServiceFunc ¶ added in v0.45.0
ServiceFunc 服务实际需要执行的函数
实现者需要正确处理 ctx.Done 事件,调用者可能会主动取消函数执行; 如果是通 ctx.Done 取消的,应该返回 context.Canceled。