2018-05-27 09:36:35 +00:00
|
|
|
package routes
|
|
|
|
|
2018-10-27 03:21:02 +00:00
|
|
|
import (
|
|
|
|
"net/http"
|
2018-11-12 09:23:36 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2018-12-08 00:45:27 +00:00
|
|
|
"time"
|
2018-10-27 03:21:02 +00:00
|
|
|
|
|
|
|
"github.com/Azareal/Gosora/common"
|
|
|
|
)
|
|
|
|
|
2018-05-27 09:36:35 +00:00
|
|
|
var successJSONBytes = []byte(`{"success":"1"}`)
|
2018-10-27 03:21:02 +00:00
|
|
|
|
2018-11-12 09:23:36 +00:00
|
|
|
func ParseSEOURL(urlBit string) (slug string, id int, err error) {
|
|
|
|
halves := strings.Split(urlBit, ".")
|
|
|
|
if len(halves) < 2 {
|
|
|
|
halves = append(halves, halves[0])
|
|
|
|
}
|
|
|
|
tid, err := strconv.Atoi(halves[1])
|
|
|
|
return halves[0], tid, err
|
|
|
|
}
|
|
|
|
|
2018-10-27 03:21:02 +00:00
|
|
|
func renderTemplate(tmplName string, w http.ResponseWriter, r *http.Request, header *common.Header, pi interface{}) common.RouteError {
|
2019-02-28 07:28:17 +00:00
|
|
|
if header.CurrentUser.Loggedin {
|
|
|
|
header.MetaDesc = ""
|
|
|
|
header.OGDesc = ""
|
|
|
|
} else if header.MetaDesc != "" && header.OGDesc == "" {
|
2019-02-24 08:02:00 +00:00
|
|
|
header.OGDesc = header.MetaDesc
|
|
|
|
}
|
|
|
|
// TODO: Expand this to non-HTTPS requests too
|
|
|
|
if !header.LooseCSP && common.Site.EnableSsl {
|
2019-03-03 23:21:06 +00:00
|
|
|
w.Header().Set("Content-Security-Policy", "default-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-eval' 'unsafe-inline'; img-src * data: 'unsafe-eval' 'unsafe-inline'; connect-src * 'unsafe-eval' 'unsafe-inline'; upgrade-insecure-requests")
|
2019-02-24 08:02:00 +00:00
|
|
|
}
|
2018-12-08 00:45:27 +00:00
|
|
|
if header.CurrentUser.IsAdmin {
|
|
|
|
header.Elapsed1 = time.Since(header.StartedAt).String()
|
|
|
|
}
|
2018-10-27 03:21:02 +00:00
|
|
|
if common.RunPreRenderHook("pre_render_"+tmplName, w, r, &header.CurrentUser, pi) {
|
|
|
|
return nil
|
|
|
|
}
|
2018-12-08 00:45:27 +00:00
|
|
|
err := header.Theme.RunTmpl(tmplName, pi, w)
|
2018-10-27 03:21:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return common.InternalError(err, w, r)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|