gin/render/redirect.go

29 lines
739 B
Go
Raw Normal View History

2015-05-22 17:21:23 +00:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
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-06-04 03:25:21 +00:00
func (r Redirect) Render(w http.ResponseWriter) error {
// todo(thinkerou): go1.6 not support StatusPermanentRedirect(308)
// when we upgrade go version we can use http.StatusPermanentRedirect
2016-01-27 23:34:05 +00:00
if (r.Code < 300 || r.Code > 308) && r.Code != 201 {
2015-05-18 13:45:24 +00:00
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
}
func (r Redirect) WriteContentType(http.ResponseWriter) {}