mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
221 lines
6.7 KiB
Go
221 lines
6.7 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
//
|
|
|
|
package ghttp
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/gogf/gf/v2/encoding/gjson"
|
|
"github.com/gogf/gf/v2/internal/json"
|
|
"github.com/gogf/gf/v2/util/gconv"
|
|
)
|
|
|
|
// Write writes `content` to the response buffer.
|
|
func (r *Response) Write(content ...interface{}) {
|
|
if r.hijacked || len(content) == 0 {
|
|
return
|
|
}
|
|
if r.Status == 0 {
|
|
r.Status = http.StatusOK
|
|
}
|
|
for _, v := range content {
|
|
switch value := v.(type) {
|
|
case []byte:
|
|
r.buffer.Write(value)
|
|
case string:
|
|
r.buffer.WriteString(value)
|
|
default:
|
|
r.buffer.WriteString(gconv.String(v))
|
|
}
|
|
}
|
|
}
|
|
|
|
// WriteExit writes `content` to the response buffer and exits executing of current handler.
|
|
// The "Exit" feature is commonly used to replace usage of return statement in the handler,
|
|
// for convenience.
|
|
func (r *Response) WriteExit(content ...interface{}) {
|
|
r.Write(content...)
|
|
r.Request.Exit()
|
|
}
|
|
|
|
// WriteOver overwrites the response buffer with `content`.
|
|
func (r *Response) WriteOver(content ...interface{}) {
|
|
r.ClearBuffer()
|
|
r.Write(content...)
|
|
}
|
|
|
|
// WriteOverExit overwrites the response buffer with `content` and exits executing
|
|
// of current handler. The "Exit" feature is commonly used to replace usage of return
|
|
// statement in the handler, for convenience.
|
|
func (r *Response) WriteOverExit(content ...interface{}) {
|
|
r.WriteOver(content...)
|
|
r.Request.Exit()
|
|
}
|
|
|
|
// Writef writes the response with fmt.Sprintf.
|
|
func (r *Response) Writef(format string, params ...interface{}) {
|
|
r.Write(fmt.Sprintf(format, params...))
|
|
}
|
|
|
|
// WritefExit writes the response with fmt.Sprintf and exits executing of current handler.
|
|
// The "Exit" feature is commonly used to replace usage of return statement in the handler,
|
|
// for convenience.
|
|
func (r *Response) WritefExit(format string, params ...interface{}) {
|
|
r.Writef(format, params...)
|
|
r.Request.Exit()
|
|
}
|
|
|
|
// Writeln writes the response with `content` and new line.
|
|
func (r *Response) Writeln(content ...interface{}) {
|
|
if len(content) == 0 {
|
|
r.Write("\n")
|
|
return
|
|
}
|
|
r.Write(append(content, "\n")...)
|
|
}
|
|
|
|
// WritelnExit writes the response with `content` and new line and exits executing
|
|
// of current handler. The "Exit" feature is commonly used to replace usage of return
|
|
// statement in the handler, for convenience.
|
|
func (r *Response) WritelnExit(content ...interface{}) {
|
|
r.Writeln(content...)
|
|
r.Request.Exit()
|
|
}
|
|
|
|
// Writefln writes the response with fmt.Sprintf and new line.
|
|
func (r *Response) Writefln(format string, params ...interface{}) {
|
|
r.Writeln(fmt.Sprintf(format, params...))
|
|
}
|
|
|
|
// WriteflnExit writes the response with fmt.Sprintf and new line and exits executing
|
|
// of current handler. The "Exit" feature is commonly used to replace usage of return
|
|
// statement in the handler, for convenience.
|
|
func (r *Response) WriteflnExit(format string, params ...interface{}) {
|
|
r.Writefln(format, params...)
|
|
r.Request.Exit()
|
|
}
|
|
|
|
// WriteJson writes `content` to the response with JSON format.
|
|
func (r *Response) WriteJson(content interface{}) error {
|
|
r.Header().Set("Content-Type", contentTypeJson)
|
|
// If given string/[]byte, response it directly to client.
|
|
switch content.(type) {
|
|
case string, []byte:
|
|
r.Write(gconv.String(content))
|
|
return nil
|
|
}
|
|
// Else use json.Marshal function to encode the parameter.
|
|
if b, err := json.Marshal(content); err != nil {
|
|
return err
|
|
} else {
|
|
r.Write(b)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// WriteJsonExit writes `content` to the response with JSON format and exits executing
|
|
// of current handler if success. The "Exit" feature is commonly used to replace usage of
|
|
// return statement in the handler, for convenience.
|
|
func (r *Response) WriteJsonExit(content interface{}) error {
|
|
if err := r.WriteJson(content); err != nil {
|
|
return err
|
|
}
|
|
r.Request.Exit()
|
|
return nil
|
|
}
|
|
|
|
// WriteJsonP writes `content` to the response with JSONP format.
|
|
//
|
|
// Note that there should be a "callback" parameter in the request for JSONP format.
|
|
func (r *Response) WriteJsonP(content interface{}) error {
|
|
r.Header().Set("Content-Type", contentTypeJson)
|
|
// If given string/[]byte, response it directly to client.
|
|
switch content.(type) {
|
|
case string, []byte:
|
|
r.Write(gconv.String(content))
|
|
return nil
|
|
}
|
|
// Else use json.Marshal function to encode the parameter.
|
|
if b, err := json.Marshal(content); err != nil {
|
|
return err
|
|
} else {
|
|
// r.Header().Set("Content-Type", "application/json")
|
|
if callback := r.Request.Get("callback").String(); callback != "" {
|
|
buffer := []byte(callback)
|
|
buffer = append(buffer, byte('('))
|
|
buffer = append(buffer, b...)
|
|
buffer = append(buffer, byte(')'))
|
|
r.Write(buffer)
|
|
} else {
|
|
r.Write(b)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// WriteJsonPExit writes `content` to the response with JSONP format and exits executing
|
|
// of current handler if success. The "Exit" feature is commonly used to replace usage of
|
|
// return statement in the handler, for convenience.
|
|
//
|
|
// Note that there should be a "callback" parameter in the request for JSONP format.
|
|
func (r *Response) WriteJsonPExit(content interface{}) error {
|
|
if err := r.WriteJsonP(content); err != nil {
|
|
return err
|
|
}
|
|
r.Request.Exit()
|
|
return nil
|
|
}
|
|
|
|
// WriteXml writes `content` to the response with XML format.
|
|
func (r *Response) WriteXml(content interface{}, rootTag ...string) error {
|
|
r.Header().Set("Content-Type", contentTypeXml)
|
|
// If given string/[]byte, response it directly to client.
|
|
switch content.(type) {
|
|
case string, []byte:
|
|
r.Write(gconv.String(content))
|
|
return nil
|
|
}
|
|
if b, err := gjson.New(content).ToXml(rootTag...); err != nil {
|
|
return err
|
|
} else {
|
|
r.Write(b)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// WriteXmlExit writes `content` to the response with XML format and exits executing
|
|
// of current handler if success. The "Exit" feature is commonly used to replace usage
|
|
// of return statement in the handler, for convenience.
|
|
func (r *Response) WriteXmlExit(content interface{}, rootTag ...string) error {
|
|
if err := r.WriteXml(content, rootTag...); err != nil {
|
|
return err
|
|
}
|
|
r.Request.Exit()
|
|
return nil
|
|
}
|
|
|
|
// WriteStatus writes HTTP `status` and `content` to the response.
|
|
// Note that do not set Content-Type header here.
|
|
func (r *Response) WriteStatus(status int, content ...interface{}) {
|
|
r.WriteHeader(status)
|
|
if len(content) > 0 {
|
|
r.Write(content...)
|
|
} else {
|
|
r.Write(http.StatusText(status))
|
|
}
|
|
}
|
|
|
|
// WriteStatusExit writes HTTP `status` and `content` to the response and exits executing
|
|
// of current handler if success. The "Exit" feature is commonly used to replace usage of
|
|
// return statement in the handler, for convenience.
|
|
func (r *Response) WriteStatusExit(status int, content ...interface{}) {
|
|
r.WriteStatus(status, content...)
|
|
r.Request.Exit()
|
|
}
|