2021-09-01 21:12:31 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-09-01 21:12:31 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-07-07 14:46:42 +01:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-07-13 15:05:03 +01:00
|
|
|
"html/template"
|
2021-07-07 14:46:42 +01:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2021-09-13 13:45:33 +01:00
|
|
|
"time"
|
2021-07-07 14:46:42 +01:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2021-12-07 12:31:39 +00:00
|
|
|
"github.com/spf13/viper"
|
2021-09-13 13:45:33 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/api/model"
|
2021-07-07 14:46:42 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
|
|
|
)
|
|
|
|
|
2022-02-07 11:04:31 +00:00
|
|
|
// LoadTemplates loads html templates for use by the given engine
|
2021-12-07 12:31:39 +00:00
|
|
|
func loadTemplates(engine *gin.Engine) error {
|
|
|
|
templateBaseDir := viper.GetString(config.Keys.WebTemplateBaseDir)
|
2022-05-02 15:06:03 +01:00
|
|
|
if templateBaseDir == "" {
|
|
|
|
return fmt.Errorf("%s cannot be empty and must be a relative or absolute path", config.Keys.WebTemplateBaseDir)
|
|
|
|
}
|
2021-07-07 14:46:42 +01:00
|
|
|
|
2022-05-02 15:06:03 +01:00
|
|
|
templateBaseDir, err := filepath.Abs(templateBaseDir)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error getting absolute path of %s: %s", templateBaseDir, err)
|
2022-04-29 10:00:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := os.Stat(filepath.Join(templateBaseDir, "index.tmpl")); err != nil {
|
|
|
|
return fmt.Errorf("%s doesn't seem to contain the templates; index.tmpl is missing: %w", templateBaseDir, err)
|
2022-02-07 11:04:31 +00:00
|
|
|
}
|
|
|
|
|
2022-05-02 15:06:03 +01:00
|
|
|
engine.LoadHTMLGlob(filepath.Join(templateBaseDir, "*"))
|
2021-07-07 14:46:42 +01:00
|
|
|
return nil
|
|
|
|
}
|
2021-07-13 15:05:03 +01:00
|
|
|
|
2021-09-13 13:45:33 +01:00
|
|
|
func oddOrEven(n int) string {
|
|
|
|
if n%2 == 0 {
|
|
|
|
return "even"
|
|
|
|
}
|
2021-09-30 10:16:23 +01:00
|
|
|
return "odd"
|
2021-09-13 13:45:33 +01:00
|
|
|
}
|
|
|
|
|
2021-07-13 15:05:03 +01:00
|
|
|
func noescape(str string) template.HTML {
|
2021-11-22 07:46:19 +00:00
|
|
|
/* #nosec G203 */
|
2021-07-13 15:05:03 +01:00
|
|
|
return template.HTML(str)
|
|
|
|
}
|
|
|
|
|
2021-09-13 13:45:33 +01:00
|
|
|
func timestamp(stamp string) string {
|
|
|
|
t, _ := time.Parse(time.RFC3339, stamp)
|
|
|
|
return t.Format("January 2, 2006, 15:04:05")
|
|
|
|
}
|
|
|
|
|
2022-04-15 13:33:01 +01:00
|
|
|
func timestampShort(stamp string) string {
|
|
|
|
t, _ := time.Parse(time.RFC3339, stamp)
|
|
|
|
return t.Format("January, 2006")
|
|
|
|
}
|
|
|
|
|
2021-09-30 10:16:23 +01:00
|
|
|
type iconWithLabel struct {
|
2021-09-13 13:45:33 +01:00
|
|
|
faIcon string
|
|
|
|
label string
|
|
|
|
}
|
|
|
|
|
|
|
|
func visibilityIcon(visibility model.Visibility) template.HTML {
|
2021-09-30 10:16:23 +01:00
|
|
|
var icon iconWithLabel
|
2021-09-13 13:45:33 +01:00
|
|
|
|
2021-11-22 07:46:19 +00:00
|
|
|
switch visibility {
|
|
|
|
case model.VisibilityPublic:
|
2021-09-30 10:16:23 +01:00
|
|
|
icon = iconWithLabel{"globe", "public"}
|
2021-11-22 07:46:19 +00:00
|
|
|
case model.VisibilityUnlisted:
|
2021-09-30 10:16:23 +01:00
|
|
|
icon = iconWithLabel{"unlock", "unlisted"}
|
2021-11-22 07:46:19 +00:00
|
|
|
case model.VisibilityPrivate:
|
2021-09-30 10:16:23 +01:00
|
|
|
icon = iconWithLabel{"lock", "private"}
|
2021-11-22 07:46:19 +00:00
|
|
|
case model.VisibilityMutualsOnly:
|
2021-09-30 10:16:23 +01:00
|
|
|
icon = iconWithLabel{"handshake-o", "mutuals only"}
|
2021-11-22 07:46:19 +00:00
|
|
|
case model.VisibilityDirect:
|
2021-09-30 10:16:23 +01:00
|
|
|
icon = iconWithLabel{"envelope", "direct"}
|
2021-09-13 13:45:33 +01:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:46:19 +00:00
|
|
|
/* #nosec G203 */
|
|
|
|
return template.HTML(fmt.Sprintf(`<i aria-label="Visibility: %v" class="fa fa-%v"></i>`, icon.label, icon.faIcon))
|
2021-09-13 13:45:33 +01:00
|
|
|
}
|
|
|
|
|
2022-02-07 11:04:31 +00:00
|
|
|
func LoadTemplateFunctions(engine *gin.Engine) {
|
2021-07-13 15:05:03 +01:00
|
|
|
engine.SetFuncMap(template.FuncMap{
|
2021-09-13 13:45:33 +01:00
|
|
|
"noescape": noescape,
|
|
|
|
"oddOrEven": oddOrEven,
|
|
|
|
"visibilityIcon": visibilityIcon,
|
|
|
|
"timestamp": timestamp,
|
2022-04-15 13:33:01 +01:00
|
|
|
"timestampShort": timestampShort,
|
2021-07-13 15:05:03 +01:00
|
|
|
})
|
|
|
|
}
|