package svc // import "github.com/getwtxt/getwtxt/svc"
import (
"fmt"
"log"
"net"
"os"
"strings"
"sync"
"github.com/getwtxt/registry"
"github.com/spf13/viper"
)
var (
testport string
initTestOnce sync.Once
initDBOnce sync.Once
initPersOnce sync.Once
)
func initTestConf() {
initTestOnce.Do(func() {
logToNull()
testConfig()
tmpls = initTemplates()
pingAssets()
confObj.Mu.RLock()
defer confObj.Mu.RUnlock()
testport = fmt.Sprintf(":%v", confObj.Port)
})
}
func initTestDB() {
initDBOnce.Do(func() {
initDatabase()
})
}
func initTestPers() {
initPersOnce.Do(func() {
initPersistence()
})
}
func logToNull() {
hush, err := os.Open("/dev/null")
if err != nil {
log.Printf("%v\n", err)
}
log.SetOutput(hush)
}
func testConfig() {
viper.SetConfigName("getwtxt")
viper.SetConfigType("yml")
viper.AddConfigPath("../")
viper.SetDefault("BehindProxy", true)
viper.SetDefault("UseTLS", false)
viper.SetDefault("TLSCert", "/etc/ssl/getwtxt.pem")
viper.SetDefault("TLSKey", "/etc/ssl/private/getwtxt.pem")
viper.SetDefault("ListenPort", 9001)
viper.SetDefault("DatabasePath", "getwtxt.db")
viper.SetDefault("AssetsDirectory", "assets")
viper.SetDefault("DatabaseType", "leveldb")
viper.SetDefault("ReCacheInterval", "9m")
viper.SetDefault("DatabasePushInterval", "4m")
viper.SetDefault("Instance.SiteName", "getwtxt")
viper.SetDefault("Instance.OwnerName", "Anonymous Microblogger")
viper.SetDefault("Instance.Email", "nobody@knows")
viper.SetDefault("Instance.URL", "https://twtxt.example.com")
viper.SetDefault("Instance.Description", "A fast, resilient twtxt registry server written in Go!")
confObj.Mu.Lock()
defer confObj.Mu.Unlock()
confObj.Port = viper.GetInt("ListenPort")
confObj.AssetsDir = "../" + viper.GetString("AssetsDirectory")
confObj.DBType = strings.ToLower(viper.GetString("DatabaseType"))
confObj.DBPath = viper.GetString("DatabasePath")
confObj.CacheInterval = viper.GetDuration("StatusFetchInterval")
confObj.DBInterval = viper.GetDuration("DatabasePushInterval")
confObj.Instance.Vers = Vers
confObj.Instance.Name = viper.GetString("Instance.SiteName")
confObj.Instance.URL = viper.GetString("Instance.URL")
confObj.Instance.Owner = viper.GetString("Instance.OwnerName")
confObj.Instance.Mail = viper.GetString("Instance.Email")
confObj.Instance.Desc = viper.GetString("Instance.Description")
}
// Creates a fresh mock registry, with a single
// user and their statuses, for testing.
func mockRegistry() {
twtxtCache = registry.NewIndex()
statuses, _, _ := registry.GetTwtxt("https://gbmor.dev/twtxt.txt")
parsed, _ := registry.ParseUserTwtxt(statuses, "gbmor", "https://gbmor.dev/twtxt.txt")
_ = twtxtCache.AddUser("gbmor", "https://gbmor.dev/twtxt.txt", "1", net.ParseIP("127.0.0.1"), parsed)
}
// Empties the mock registry's user of statuses
// for functions that test status modifications
func killStatuses() {
twtxtCache.Mu.Lock()
user := twtxtCache.Users["https://gbmor.dev/twtxt.txt"]
user.Mu.Lock()
user.Status = registry.NewTimeMap()
user.RLen = "0"
twtxtCache.Users["https://gbmor.dev/twtxt.txt"] = user
user.Mu.Unlock()
twtxtCache.Mu.Unlock()
}