2016-07-07 18:54:16 -07:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
|
|
|
// This software (Documize Community Edition) is licensed under
|
|
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
//
|
|
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
|
|
// by contacting <sales@documize.com>.
|
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
|
|
|
// Package web contains the Documize static web data.
|
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
|
|
|
"html/template"
|
|
|
|
"net/http"
|
|
|
|
|
2021-08-18 19:39:51 -04:00
|
|
|
"github.com/documize/community/core/asset"
|
2017-07-24 16:24:21 +01:00
|
|
|
"github.com/documize/community/core/env"
|
2017-07-18 21:55:17 +01:00
|
|
|
"github.com/documize/community/core/secrets"
|
2018-09-27 15:14:48 +01:00
|
|
|
"github.com/documize/community/domain/store"
|
2016-07-07 18:54:16 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// SiteInfo describes set-up information about the site
|
|
|
|
var SiteInfo struct {
|
2019-06-19 12:47:18 +01:00
|
|
|
DBname, DBhash, Issue, Edition string
|
2016-07-07 18:54:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2017-07-19 18:47:01 +01:00
|
|
|
SiteInfo.DBhash = secrets.GenerateRandomPassword() // do this only once
|
2016-07-07 18:54:16 -07:00
|
|
|
}
|
|
|
|
|
2017-08-02 15:26:31 +01:00
|
|
|
// Handler contains the runtime information such as logging and database.
|
|
|
|
type Handler struct {
|
|
|
|
Runtime *env.Runtime
|
2018-09-27 15:14:48 +01:00
|
|
|
Store *store.Store
|
2017-08-02 15:26:31 +01:00
|
|
|
}
|
|
|
|
|
2017-07-21 18:14:19 +01:00
|
|
|
// EmberHandler serves HTML web pages
|
2017-08-02 15:26:31 +01:00
|
|
|
func (h *Handler) EmberHandler(w http.ResponseWriter, r *http.Request) {
|
2016-07-07 18:54:16 -07:00
|
|
|
filename := "index.html"
|
2021-08-18 19:39:51 -04:00
|
|
|
|
2017-08-02 15:26:31 +01:00
|
|
|
switch h.Runtime.Flags.SiteMode {
|
2017-07-24 16:24:21 +01:00
|
|
|
case env.SiteModeOffline:
|
2016-07-07 18:54:16 -07:00
|
|
|
filename = "offline.html"
|
2017-07-24 16:24:21 +01:00
|
|
|
case env.SiteModeSetup:
|
2021-08-18 19:39:51 -04:00
|
|
|
// noop
|
2017-07-24 16:24:21 +01:00
|
|
|
case env.SiteModeBadDB:
|
2016-07-07 18:54:16 -07:00
|
|
|
filename = "db-error.html"
|
|
|
|
default:
|
|
|
|
SiteInfo.DBhash = ""
|
|
|
|
}
|
|
|
|
|
2019-06-19 12:47:18 +01:00
|
|
|
SiteInfo.Edition = string(h.Runtime.Product.Edition)
|
|
|
|
|
2021-08-18 19:39:51 -04:00
|
|
|
content, _, err := asset.FetchStatic(h.Runtime.Assets, filename)
|
2016-07-07 18:54:16 -07:00
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-18 19:39:51 -04:00
|
|
|
emberView := template.Must(template.New(filename).Parse(string(content)))
|
2016-07-07 18:54:16 -07:00
|
|
|
|
|
|
|
if err := emberView.Execute(w, SiteInfo); err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
}
|