gin/render/redirect.go

21 lines
352 B
Go
Raw Normal View History

package render
import (
"fmt"
"net/http"
)
2015-05-18 13:45:24 +00:00
type Redirect struct {
Code int
Request *http.Request
Location string
}
2015-05-18 13:45:24 +00:00
func (r Redirect) Write(w http.ResponseWriter) error {
if r.Code < 300 || r.Code > 308 {
panic(fmt.Sprintf("Cannot redirect with status code %d", r.Code))
}
2015-05-18 13:45:24 +00:00
http.Redirect(w, r.Request, r.Location, r.Code)
return nil
}