1 Star 0 Fork 0

xxiaowo/golang101

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
redirects.go 1.69 KB
一键复制 编辑 原始数据 按行查看 历史
TapirLiu 提交于 2022-05-23 14:29 . supports theme switching
package main
import (
"bytes"
"log"
"net/http"
)
var redirectPages = map[[2]string][2]string{
{"fundamentals", "go-sdk.html"}: {"fundamentals", "go-toolchain.html"},
{"fundamentals", "tools.html"}: {"apps-and-libs", "101.html"},
{"fundamentals", "tool-golds.html"}: {"apps-and-libs", "golds.html"},
}
func (go101 *Go101) RedirectArticlePage(w http.ResponseWriter, r *http.Request, group, file string) bool {
redirectPage, ok := redirectPages[[2]string{group, file}]
if ok {
page, isLocal := go101.ArticlePage(group, file)
if page == nil {
pageParams := map[string]interface{}{
"RedirectPage": "/" + redirectPage[0] + "/" + redirectPage[1],
//"IsLocalServer": isLocal,
//"Value": func() func(string, ...interface{}) interface{} {
// var kvs = map[string]interface{}{}
// return func(k string, v ...interface{}) interface{} {
// if len(v) == 0 {
// return kvs[k]
// }
// kvs[k] = v[0]
// return ""
// }
//}(),
}
t := retrievePageTemplate(Template_Redirect, !isLocal)
var buf bytes.Buffer
if err := t.Execute(&buf, pageParams); err == nil {
page = buf.Bytes()
} else {
page = []byte(err.Error())
}
if !isLocal {
go101.CacheArticlePage(group, file, page)
}
}
if len(page) == 0 { // blank page means page not found.
log.Printf("文章%s/%s未找到", group, file)
//w.Header().Set("Cache-Control", "no-cache, private, max-age=0")
http.Redirect(w, r, "/article/101.html", http.StatusNotFound)
} else if isLocal {
w.Header().Set("Cache-Control", "no-cache, private, max-age=0")
} else {
w.Header().Set("Cache-Control", "max-age=50000") // about 14 hours
}
w.Write(page)
}
return ok
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xxiaowo_admin/golang101.git
[email protected]:xxiaowo_admin/golang101.git
xxiaowo_admin
golang101
golang101
master

搜索帮助