summaryrefslogtreecommitdiffstats
path: root/api/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/api.go')
-rw-r--r--api/api.go43
1 files changed, 3 insertions, 40 deletions
diff --git a/api/api.go b/api/api.go
index 4fecd3dd4..20f77e558 100644
--- a/api/api.go
+++ b/api/api.go
@@ -4,47 +4,15 @@
package api
import (
- "bytes"
- l4g "github.com/alecthomas/log4go"
+ "net/http"
+
"github.com/mattermost/platform/model"
"github.com/mattermost/platform/utils"
- "html/template"
- "net/http"
_ "github.com/cloudfoundry/jibber_jabber"
_ "github.com/nicksnyder/go-i18n/i18n"
)
-var ServerTemplates *template.Template
-
-type ServerTemplatePage Page
-
-func NewServerTemplatePage(templateName, locale string) *ServerTemplatePage {
- return &ServerTemplatePage{
- TemplateName: templateName,
- Props: make(map[string]string),
- Extra: make(map[string]string),
- Html: make(map[string]template.HTML),
- ClientCfg: utils.ClientCfg,
- Locale: locale,
- }
-}
-
-func (me *ServerTemplatePage) Render() string {
- var text bytes.Buffer
-
- T := utils.GetUserTranslations(me.Locale)
- me.Props["Footer"] = T("api.templates.email_footer")
- me.Html["EmailInfo"] = template.HTML(T("api.templates.email_info",
- map[string]interface{}{"SupportEmail": me.ClientCfg["SupportEmail"], "SiteName": me.ClientCfg["SiteName"]}))
-
- if err := ServerTemplates.ExecuteTemplate(&text, me.TemplateName, me); err != nil {
- l4g.Error(utils.T("api.api.render.error"), me.TemplateName, err)
- }
-
- return text.String()
-}
-
func InitApi() {
r := Srv.Router.PathPrefix("/api/v1").Subrouter()
InitUser(r)
@@ -60,12 +28,7 @@ func InitApi() {
InitPreference(r)
InitLicense(r)
- templatesDir := utils.FindDir("api/templates")
- l4g.Debug(utils.T("api.api.init.parsing_templates.debug"), templatesDir)
- var err error
- if ServerTemplates, err = template.ParseGlob(templatesDir + "*.html"); err != nil {
- l4g.Error(utils.T("api.api.init.parsing_templates.error"), err)
- }
+ utils.InitHTML()
}
func HandleEtag(etag string, w http.ResponseWriter, r *http.Request) bool {