2015-05-22 20:21:23 +03: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.
|
|
|
|
|
2015-05-07 13:44:52 +03:00
|
|
|
package render
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2015-05-18 16:45:24 +03:00
|
|
|
type Redirect struct {
|
|
|
|
Code int
|
|
|
|
Request *http.Request
|
|
|
|
Location string
|
2015-05-07 13:44:52 +03:00
|
|
|
}
|
|
|
|
|
2015-06-04 06:25:21 +03:00
|
|
|
func (r Redirect) Render(w http.ResponseWriter) error {
|
2015-05-18 16:45:24 +03:00
|
|
|
if r.Code < 300 || r.Code > 308 {
|
|
|
|
panic(fmt.Sprintf("Cannot redirect with status code %d", r.Code))
|
2015-05-07 13:44:52 +03:00
|
|
|
}
|
2015-05-18 16:45:24 +03:00
|
|
|
http.Redirect(w, r.Request, r.Location, r.Code)
|
|
|
|
return nil
|
2015-05-07 13:44:52 +03:00
|
|
|
}
|