mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
1a80cd3c02
This adds a new config value: `chorus` that signifies an instance is more about the Reader view than individual blogs / writers. When enabled, user navigation will show on all pages, including About, Reader, and Privacy (ref T680). It also uses different collection templates that keep the instance-wide navigation at the top of the page, instead of the author's name -- again, branded more for the collective than the individual. Ref T681
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
/*
|
|
* Copyright © 2018 A Bunch Tell LLC.
|
|
*
|
|
* This file is part of WriteFreely.
|
|
*
|
|
* WriteFreely is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License, included
|
|
* in the LICENSE file in this source code package.
|
|
*/
|
|
|
|
// package page provides mechanisms and data for generating a WriteFreely page.
|
|
package page
|
|
|
|
import (
|
|
"github.com/writeas/writefreely/config"
|
|
"strings"
|
|
)
|
|
|
|
type StaticPage struct {
|
|
// App configuration
|
|
config.AppCfg
|
|
Version string
|
|
HeaderNav bool
|
|
|
|
// Request values
|
|
Path string
|
|
Username string
|
|
Values map[string]string
|
|
Flashes []string
|
|
CanViewReader bool
|
|
IsAdmin bool
|
|
CanInvite bool
|
|
}
|
|
|
|
// SanitizeHost alters the StaticPage to contain a real hostname. This is
|
|
// especially important for the Tor hidden service, as it can be served over
|
|
// proxies, messing up the apparent hostname.
|
|
func (sp *StaticPage) SanitizeHost(cfg *config.Config) {
|
|
if cfg.Server.HiddenHost != "" && strings.HasPrefix(sp.Host, cfg.Server.HiddenHost) {
|
|
sp.Host = cfg.Server.HiddenHost
|
|
}
|
|
}
|
|
|
|
func (sp StaticPage) OfficialVersion() string {
|
|
p := strings.Split(sp.Version, "-")
|
|
return p[0]
|
|
}
|