]> Sergey Matveev's repositories - sgblog.git/blobdiff - cmd/sgblog/main.go
Raise copyright years
[sgblog.git] / cmd / sgblog / main.go
index 8dbb1d8156ef1d03c63cda655562bc79e978ad9d..6cd1efd17b7a35a7bb12f4faa16ffdee120bbb14 100644 (file)
@@ -1,6 +1,6 @@
 /*
 SGBlog -- Git-backed CGI/UCSPI blogging/phlogging/gemlogging engine
-Copyright (C) 2020-2021 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2020-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
@@ -20,11 +20,13 @@ package main
 
 import (
        "crypto/sha1"
+       "embed"
        "encoding/json"
        "flag"
        "fmt"
-       "io/ioutil"
+       "io/fs"
        "log"
+       "os"
        "regexp"
        "strings"
 
@@ -32,6 +34,8 @@ import (
        "github.com/go-git/go-git/v5/plumbing"
        "github.com/go-git/go-git/v5/plumbing/object"
        "github.com/hjson/hjson-go"
+       "github.com/vorlif/spreak"
+       "golang.org/x/text/language"
 )
 
 const (
@@ -46,12 +50,18 @@ var (
        commentsTree *object.Tree
        topicsRef    *plumbing.Reference
        topicsTree   *object.Tree
+
+       localizer *spreak.Localizer
+
+       //go:embed locale/*
+       locales embed.FS
 )
 
 type Cfg struct {
        GitPath string
        Branch  string
        Title   string
+       Lang    string
 
        URLPrefix string
 
@@ -126,7 +136,7 @@ func initRepo(cfg *Cfg) (*plumbing.Hash, error) {
 }
 
 func readCfg(cfgPath string) (*Cfg, error) {
-       cfgRaw, err := ioutil.ReadFile(cfgPath)
+       cfgRaw, err := os.ReadFile(cfgPath)
        if err != nil {
                return nil, err
        }
@@ -145,6 +155,22 @@ func readCfg(cfgPath string) (*Cfg, error) {
        return cfg, nil
 }
 
+func initLocalizer(lang string) {
+       fsys, _ := fs.Sub(locales, "locale")
+       bundle, err := spreak.NewBundle(
+               spreak.WithSourceLanguage(language.English),
+               spreak.WithDomainFs(spreak.NoDomain, fsys),
+               spreak.WithLanguage(language.Russian),
+       )
+       if err != nil {
+               log.Fatalln(err)
+       }
+       if lang == "" {
+               lang = language.English.String()
+       }
+       localizer = spreak.NewLocalizer(bundle, language.MustParse(lang))
+}
+
 func main() {
        gopherCfgPath := flag.String("gopher", "", "Path to gopher-related configuration file")
        geminiCfgPath := flag.String("gemini", "", "Path to gemini-related configuration file")