gosora/main.go

744 lines
20 KiB
Go
Raw Normal View History

/*
*
2022-02-21 03:16:15 +00:00
* Gosora Main File
* Copyright Azareal 2016 - 2020
*
*/
Added the In-Progress Widget Manager UI. Added the IsoCode field to phrase files. Rewrote a good portion of the widget system logic. Added some tests for the widget system. Added the Online Users widget. Added a few sealed incomplete widgets like the Search & Filter Widget. Added the AllUsers method to WsHubImpl for Online Users. Please don't abuse it. Added the optional *DBTableKey field to AddColumn. Added the panel_analytics_time_range template to reduce the amount of duplication. Failed registrations now show up in red in the registration logs for Nox. Failed logins now show up in red in the login logs for Nox. Added basic h2 CSS to the other themes. Added .show_on_block_edit and .hide_on_block_edit to the other themes. Updated contributing. Updated a bunch of dates to 2019. Replaced tblKey{} with nil where possible. Switched out some &s for &s to reduce the number of possible bugs. Fixed a bug with selector messages where the inspector would get really jittery due to unnecessary DOM updates. Moved header.Zone and associated fields to the bottom of ViewTopic to reduce the chances of problems arising. Added the ZoneData field to *Header. Added IDs to the items in the forum list template. Split the fetchPhrases function into the initPhrases and fetchPhrases functions in init.js Added .colstack_sub_head. Fixed the CSS in the menu list. Removed an inline style from the simple topic like and unlike buttons. Removed an inline style from the simple topic IP button. Simplified the LoginRequired error handler. Fixed a typo in the comment prior to DatabaseError() Reduce the number of false leaves for WebSocket page transitions. Added the error zone. De-duped the logic in WsHubImpl.getUsers. Fixed a potential widget security issue. Added twenty new phrases. Added the wid column to the widgets table. You will need to run the patcher / updater for this commit.
2019-01-21 12:27:59 +00:00
// Package main contains the main initialisation logic for Gosora
2022-02-21 03:53:13 +00:00
package main // import "git.tuxpa.in/a/gosora"
2016-12-02 07:38:54 +00:00
import (
2022-02-21 03:53:13 +00:00
"bytes"
"crypto/tls"
"flag"
"fmt"
"io"
"log"
"mime"
"net/http"
"os"
"os/signal"
"runtime"
"runtime/debug"
"runtime/pprof"
"strconv"
"strings"
"syscall"
"time"
2022-02-21 03:16:15 +00:00
2022-02-21 03:53:13 +00:00
c "git.tuxpa.in/a/gosora/common"
co "git.tuxpa.in/a/gosora/common/counters"
meta "git.tuxpa.in/a/gosora/common/meta"
p "git.tuxpa.in/a/gosora/common/phrases"
_ "git.tuxpa.in/a/gosora/extend"
qgen "git.tuxpa.in/a/gosora/query_gen"
"git.tuxpa.in/a/gosora/routes"
"git.tuxpa.in/a/gosora/uutils"
"github.com/fsnotify/fsnotify"
2022-02-21 03:16:15 +00:00
2022-02-21 03:53:13 +00:00
//"github.com/lucas-clemente/quic-go/http3"
"github.com/pkg/errors"
2016-12-02 07:38:54 +00:00
)
Added the Social Groups plugin. This is still under construction. Made a few improvements to the ForumStore, including bringing it's API closer in line with the other datastores, adding stubs for future subforum functionality, and improving efficiency in a few places. The auth interface now handles all the authentication stuff. Renamed the debug config variable to debug_mode. Added the PluginPerms API. Internal Errors will now dump the stack trace in the console. Added support for installable plugins. Refactored the routing logic so that the router now handles the common PreRoute logic(exc. /static/) Added the CreateTable method to the query generator. It might need some tweaking to better support other database systems. Added the same CreateTable method to the query builder. Began work on PostgreSQL support. Added the string-string hook type Added the pre_render hook type. Added the ParentID and ParentType fields to forums. Added the get_forum_url_prefix function. Added a more generic build_slug function. Added the get_topic_url_prefix function. Added the override_perms and override_forum_perms functions for bulk setting and unsetting permissions. Added more ExtData fields in a few structs and removed them on the Perms struct as the PluginPerms API supersedes them there. Plugins can now see the router instance. The plugin initialisation handlers can now throw errors. Plugins are now initialised after all the forum's subsystems are. Refactored the unit test logic. For instance, we now use the proper .Log method rather than fmt.Println in many cases. Sorry, we'll have to break Github's generated file detection, as the build instructions aren't working, unless I put them at the top, and they're far, far more important than getting Github to recognise the generated code as generated code. Fixed an issue with mysql.go's _init_database() overwriting the dbpassword variable. Not a huge issue, but it is a "gotcha" for those not expecting a ':' at the start. Fixed an issue with forum creation where the forum permissions didn't get cached. Fixed a bug in plugin_bbcode where negative numbers in rand would crash Gosora. Made the outputs of plugin_markdown and plugin_bbcode more compliant with the tests. Revamped the phrase system to make it easier for us to add language pack related features in the future. Added the WidgetMenu widget type. Revamped the theme again. I'm experimenting to see which approach I like most. - Excuse the little W3C rage. Some things about CSS drive me crazy :p Tests: Added 22 bbcode_full_parse tests. Added 19 bbcode_regex_parse tests. Added 27 markdown_parse tests. Added four UserStore tests. More to come when the test database functionality is added. Added 18 name_to_slug tests. Hooks: Added the pre_render hook. Added the pre_render_forum_list hook. Added the pre_render_view_forum hook. Added the pre_render_topic_list hook. Added the pre_render_view_topic hook. Added the pre_render_profile hook. Added the pre_render_custom_page hook. Added the pre_render_overview hook. Added the pre_render_create_topic hook. Added the pre_render_account_own_edit_critical hook. Added the pre_render_account_own_edit_avatar hook. Added the pre_render_account_own_edit_username hook. Added the pre_render_account_own_edit_email hook. Added the pre_render_login hook. Added the pre_render_register hook. Added the pre_render_ban hook. Added the pre_render_panel_dashboard hook. Added the pre_render_panel_forums hook. Added the pre_render_panel_delete_forum hook. Added the pre_render_panel_edit_forum hook. Added the pre_render_panel_settings hook. Added the pre_render_panel_setting hook. Added the pre_render_panel_plugins hook. Added the pre_render_panel_users hook. Added the pre_render_panel_edit_user hook. Added the pre_render_panel_groups hook. Added the pre_render_panel_edit_group hook. Added the pre_render_panel_edit_group_perms hook. Added the pre_render_panel_themes hook. Added the pre_render_panel_mod_log hook. Added the pre_render_error hook. Added the pre_render_security_error hook. Added the create_group_preappend hook. Added the intercept_build_widgets hook. Added the simple_forum_check_pre_perms hook. Added the forum_check_pre_perms hook.
2017-07-09 12:06:04 +00:00
var router *GenRouter
// TODO: Wrap the globals in here so we can pass pointers to them to subpackages
var globs *Globs
type Globs struct {
2022-02-21 03:16:15 +00:00
stmts *Stmts
}
// Temporary alias for renderTemplate
func init() {
2022-02-21 03:16:15 +00:00
c.RenderTemplateAlias = routes.RenderTemplate
}
func afterDBInit() (err error) {
2022-02-21 03:16:15 +00:00
if err := storeInit(); err != nil {
return err
}
log.Print("Exitted storeInit")
c.GzipStartEtag = "\"" + strconv.FormatInt(c.StartTime.Unix(), 10) + "-ng\""
c.StartEtag = "\"" + strconv.FormatInt(c.StartTime.Unix(), 10) + "-n\""
var uids []int
tc := c.Topics.GetCache()
if tc != nil {
log.Print("Preloading topics")
// Preload ten topics to get the wheels going
var count = 10
if tc.GetCapacity() <= 10 {
count = 2
if tc.GetCapacity() <= 2 {
count = 0
}
}
group, err := c.Groups.Get(c.GuestUser.Group)
if err != nil {
return err
}
// TODO: Use the same cached data for both the topic list and the topic fetches...
tList, _, _, err := c.TopicList.GetListByCanSee(group.CanSee, 1, 0, nil)
if err != nil {
return err
}
ctList := make([]*c.TopicsRow, len(tList))
copy(ctList, tList)
tList, _, _, err = c.TopicList.GetListByCanSee(group.CanSee, 2, 0, nil)
if err != nil {
return err
}
for _, tItem := range tList {
ctList = append(ctList, tItem)
}
tList, _, _, err = c.TopicList.GetListByCanSee(group.CanSee, 3, 0, nil)
if err != nil {
return err
}
for _, tItem := range tList {
ctList = append(ctList, tItem)
}
if count > len(ctList) {
count = len(ctList)
}
for i := 0; i < count; i++ {
_, _ = c.Topics.Get(ctList[i].ID)
}
}
uc := c.Users.GetCache()
if uc != nil {
// Preload associated users too...
for _, uid := range uids {
_, _ = c.Users.Get(uid)
}
}
log.Print("Exitted afterDBInit")
return nil
}
// Experimenting with a new error package here to try to reduce the amount of debugging we have to do
// TODO: Dynamically register these items to avoid maintaining as much code here?
func storeInit() (e error) {
2022-02-21 03:16:15 +00:00
acc := qgen.NewAcc()
ws := errors.WithStack
var rcache c.ReplyCache
if c.Config.ReplyCache == "static" {
rcache = c.NewMemoryReplyCache(c.Config.ReplyCacheCapacity)
}
c.Rstore, e = c.NewSQLReplyStore(acc, rcache)
if e != nil {
return ws(e)
}
c.Prstore, e = c.NewSQLProfileReplyStore(acc)
if e != nil {
return ws(e)
}
c.Likes, e = c.NewDefaultLikeStore(acc)
if e != nil {
return ws(e)
}
c.ForumActionStore, e = c.NewDefaultForumActionStore(acc)
if e != nil {
return ws(e)
}
c.Convos, e = c.NewDefaultConversationStore(acc)
if e != nil {
return ws(e)
}
c.UserBlocks, e = c.NewDefaultBlockStore(acc)
if e != nil {
return ws(e)
}
c.GroupPromotions, e = c.NewDefaultGroupPromotionStore(acc)
if e != nil {
return ws(e)
}
if e = p.InitPhrases(c.Site.Language); e != nil {
return ws(e)
}
if e = c.InitEmoji(); e != nil {
return ws(e)
}
if e = c.InitWeakPasswords(); e != nil {
return ws(e)
}
log.Print("Loading the static files.")
if e = c.Themes.LoadStaticFiles(); e != nil {
return ws(e)
}
if e = c.StaticFiles.Init(); e != nil {
return ws(e)
}
if e = c.StaticFiles.JSTmplInit(); e != nil {
return ws(e)
}
log.Print("Initialising the widgets")
c.Widgets = c.NewDefaultWidgetStore()
if e = c.InitWidgets(); e != nil {
return ws(e)
}
log.Print("Initialising the menu item list")
c.Menus = c.NewDefaultMenuStore()
if e = c.Menus.Load(1); e != nil { // 1 = the default menu
return ws(e)
}
menuHold, e := c.Menus.Get(1)
if e != nil {
return ws(e)
}
fmt.Printf("menuHold: %+v\n", menuHold)
var b bytes.Buffer
menuHold.Build(&b, &c.GuestUser, "/")
fmt.Println("menuHold output: ", string(b.Bytes()))
log.Print("Initialising the authentication system")
c.Auth, e = c.NewDefaultAuth()
if e != nil {
return ws(e)
}
log.Print("Initialising the stores")
c.WordFilters, e = c.NewDefaultWordFilterStore(acc)
if e != nil {
return ws(e)
}
c.MFAstore, e = c.NewSQLMFAStore(acc)
if e != nil {
return ws(e)
}
c.Pages, e = c.NewDefaultPageStore(acc)
if e != nil {
return ws(e)
}
c.Reports, e = c.NewDefaultReportStore(acc)
if e != nil {
return ws(e)
}
c.Emails, e = c.NewDefaultEmailStore(acc)
if e != nil {
return ws(e)
}
c.LoginLogs, e = c.NewLoginLogStore(acc)
if e != nil {
return ws(e)
}
c.RegLogs, e = c.NewRegLogStore(acc)
if e != nil {
return ws(e)
}
c.ModLogs, e = c.NewModLogStore(acc)
if e != nil {
return ws(e)
}
c.AdminLogs, e = c.NewAdminLogStore(acc)
if e != nil {
return ws(e)
}
c.IPSearch, e = c.NewDefaultIPSearcher()
if e != nil {
return ws(e)
}
if c.Config.Search == "" || c.Config.Search == "sql" {
c.RepliesSearch, e = c.NewSQLSearcher(acc)
if e != nil {
return ws(e)
}
}
c.Subscriptions, e = c.NewDefaultSubscriptionStore()
if e != nil {
return ws(e)
}
c.Attachments, e = c.NewDefaultAttachmentStore(acc)
if e != nil {
return ws(e)
}
c.Polls, e = c.NewDefaultPollStore(c.NewMemoryPollCache(100)) // TODO: Max number of polls held in cache, make this a config item
if e != nil {
return ws(e)
}
c.TopicList, e = c.NewDefaultTopicList(acc)
if e != nil {
return ws(e)
}
c.PasswordResetter, e = c.NewDefaultPasswordResetter(acc)
if e != nil {
return ws(e)
}
c.Analytics = c.NewDefaultAnalytics()
c.Activity, e = c.NewDefaultActivityStream(acc)
if e != nil {
return ws(e)
}
c.ActivityMatches, e = c.NewDefaultActivityStreamMatches(acc)
if e != nil {
return ws(e)
}
// TODO: Let the admin choose other thumbnailers, maybe ones defined in plugins
c.Thumbnailer = c.NewCaireThumbnailer()
c.Recalc, e = c.NewDefaultRecalc(acc)
if e != nil {
return ws(e)
}
log.Print("Initialising the meta store")
c.Meta, e = meta.NewDefaultMetaStore(acc)
if e != nil {
return ws(e)
}
log.Print("Initialising the view counters")
if !c.Config.DisableAnalytics {
co.GlobalViewCounter, e = co.NewGlobalViewCounter(acc)
if e != nil {
return ws(e)
}
co.AgentViewCounter, e = co.NewDefaultAgentViewCounter(acc)
if e != nil {
return ws(e)
}
co.OSViewCounter, e = co.NewDefaultOSViewCounter(acc)
if e != nil {
return ws(e)
}
co.LangViewCounter, e = co.NewDefaultLangViewCounter(acc)
if e != nil {
return ws(e)
}
if !c.Config.RefNoTrack {
co.ReferrerTracker, e = co.NewDefaultReferrerTracker()
if e != nil {
return ws(e)
}
}
co.MemoryCounter, e = co.NewMemoryCounter(acc)
if e != nil {
return ws(e)
}
co.PerfCounter, e = co.NewDefaultPerfCounter(acc)
if e != nil {
return ws(e)
}
}
co.RouteViewCounter, e = co.NewDefaultRouteViewCounter(acc)
if e != nil {
return ws(e)
}
co.PostCounter, e = co.NewPostCounter()
if e != nil {
return ws(e)
}
co.TopicCounter, e = co.NewTopicCounter()
if e != nil {
return ws(e)
}
co.TopicViewCounter, e = co.NewDefaultTopicViewCounter()
if e != nil {
return ws(e)
}
co.ForumViewCounter, e = co.NewDefaultForumViewCounter()
if e != nil {
return ws(e)
}
return nil
Added the AboutSegment feature, you can see this in use on Cosora, it's a little raw right now, but I'm planning to polish it in the next commit. Refactored the code to use switches instead of if blocks in some places. Refactored the Dashboard to make it easier to add icons to it like I did with Cosora. You can now use maps in transpiled templates. Made progress on Cosora's footer. Swapped out the ThemeName property in the HeaderVars struct for a more general and flexible Theme property. Added the colstack CSS class to make it easier to style the layouts for the Control Panel and profile. Renamed the FStore variable to Forums. Renamed the Fpstore variable to FPStore. Renamed the Gstore variable to Groups. Split the MemoryTopicStore into DefaultTopicStore and MemoryTopicCache. Split the MemoryUserStore into DefaultUserStore and MemoryUserCache. Removed the NullUserStore, SQLUserStore, and SQLTopicStore. Added the NullTopicCache and NullUserCache. Moved the Reload method out of the TopicCache interface and into the TopicStore one. Moved the Reload method out of the UserCache interface and into the UserStore one. Added the SetCache and GetCache methods to the TopicStore and UserStore. Added the BypassGetAll method to the WordFilterMap type. Renamed routePanelSetting to routePanelSettingEdit. Renamed routePanelSettingEdit to routePanelSettingEditSubmit. Moved the page titles into the english language pack. Split main() into main and afterDBInit to avoid code duplication in general_test.go Added the ReqIsJson method so that we don't have to sniff the headers every time. Added the LogStore interface. Added the SQLModLogStore and the SQLAdminLogStore. Refactored the phrase system to use getPhrasePlaceholder instead of hard-coding the string to return in a bunch of functions. Removed a redundant rank check. Added the GuildStore to plugin_guilds. Added the about_segment_title and about_segment_body settings. Refactored the setting system to use predefined errors to make it easier for an upstream caller to filter out sensitive error messages as opposed to safe errors. Added the BypassGetAll method to the SettingMap type. Added the Update method to the SettingMap type. BulkGet is now exposed via the MemoryUserCache. Refactored more logs in the template transpiler to reduce the amount of indentation. Refactored the tests to take up fewer lines. Further improved the Cosora theme's colours, padding, and profiles. Added styling for the Control Panel Dashboard to the Cosora Theme. Reduced the amount of code duplication in the installer query generator and opened the door to certain types of auto-migrations. Refactored the Control Panel Dashboard to reduce the amount of code duplication. Refactored the modlog route to reduce the amount of code duplication and string concatenation.
2017-11-23 05:37:08 +00:00
}
// TODO: Split this function up
func main() {
2022-02-21 03:16:15 +00:00
// TODO: Recover from panics
defer func() {
if r := recover(); r != nil {
log.Print(r)
debug.PrintStack()
log.Fatal("Fatal error.")
}
}()
c.StartTime = time.Now()
// TODO: Have a file for each run with the time/date the server started as the file name?
// TODO: Log panics with recover()
f, err := os.OpenFile("./logs/ops-"+strconv.FormatInt(c.StartTime.Unix(), 10)+".log", os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0755)
if err != nil {
log.Fatal(err)
}
//c.LogWriter = io.MultiWriter(os.Stderr, f)
c.LogWriter = io.MultiWriter(os.Stdout, f)
c.ErrLogWriter = io.MultiWriter(os.Stderr, f)
log.SetOutput(c.LogWriter)
c.ErrLogger = log.New(c.ErrLogWriter, "", log.LstdFlags)
log.Print("Running Gosora v" + c.SoftwareVersion.String())
fmt.Println("")
// TODO: Add a flag for enabling the profiler
if false {
f, err := os.Create(c.Config.LogDir + "cpu.prof")
if err != nil {
log.Fatal(err)
}
pprof.StartCPUProfile(f)
}
err = mime.AddExtensionType(".avif", "image/avif")
if err != nil {
log.Fatal(err)
}
jsToken, err := c.GenerateSafeString(80)
if err != nil {
log.Fatal(err)
}
c.JSTokenBox.Store(jsToken)
log.Print("Loading the configuration data")
err = c.LoadConfig()
if err != nil {
log.Fatal(err)
}
log.Print("Processing configuration data")
err = c.ProcessConfig()
if err != nil {
log.Fatal(err)
}
if c.Config.DisableStdout {
c.LogWriter = f
log.SetOutput(c.LogWriter)
}
if c.Config.DisableStderr {
c.ErrLogWriter = f
c.ErrLogger = log.New(c.ErrLogWriter, "", log.LstdFlags)
}
c.Tasks = c.NewScheduledTasks()
err = c.InitTemplates()
if err != nil {
log.Fatal(err)
}
c.Themes, err = c.NewThemeList()
if err != nil {
log.Fatal(err)
}
c.TopicListThaw = c.NewSingleServerThaw()
err = InitDatabase()
if err != nil {
log.Fatal(err)
}
defer db.Close()
buildTemplates := flag.Bool("build-templates", false, "build the templates")
flag.Parse()
if *buildTemplates {
if err = c.CompileTemplates(); err != nil {
log.Fatal(err)
}
if err = c.CompileJSTemplates(); err != nil {
log.Fatal(err)
}
return
}
err = afterDBInit()
if err != nil {
log.Fatalf("%+v", err)
}
err = c.VerifyConfig()
if err != nil {
log.Fatal(err)
}
if !c.Dev.NoFsnotify {
log.Print("Initialising the file watcher")
watcher, err := fsnotify.NewWatcher()
if err != nil {
log.Fatal(err)
}
defer watcher.Close()
go func() {
defer c.EatPanics()
var ErrFileSkip = errors.New("skip mod file")
modifiedFileEvent := func(path string) error {
pathBits := strings.Split(path, "\\")
if len(pathBits) == 0 {
return nil
}
if pathBits[0] == "themes" {
var themeName string
if len(pathBits) >= 2 {
themeName = pathBits[1]
}
if len(pathBits) >= 3 && pathBits[2] == "public" {
// TODO: Handle new themes freshly plopped into the folder?
theme, ok := c.Themes[themeName]
if ok {
return theme.LoadStaticFiles()
}
}
}
return ErrFileSkip
}
// TODO: Expand this to more types of files
var err error
for {
select {
case ev := <-watcher.Events:
// TODO: Handle file deletes (and renames more graciously by removing the old version of it)
if ev.Op&fsnotify.Write == fsnotify.Write {
err = modifiedFileEvent(ev.Name)
if err != ErrFileSkip {
log.Println("modified file:", ev.Name)
} else {
err = nil
}
} else if ev.Op&fsnotify.Create == fsnotify.Create {
log.Println("new file:", ev.Name)
err = modifiedFileEvent(ev.Name)
} else {
log.Println("unknown event:", ev)
err = nil
}
if err != nil {
c.LogError(err)
}
case err = <-watcher.Errors:
c.LogWarning(err)
}
}
}()
// TODO: Keep tabs on the (non-resource) theme stuff, and the langpacks
err = watcher.Add("./public")
if err != nil {
log.Fatal(err)
}
err = watcher.Add("./templates")
if err != nil {
log.Fatal(err)
}
for _, theme := range c.Themes {
err = watcher.Add("./themes/" + theme.Name + "/public")
if err != nil {
log.Fatal(err)
}
}
}
/*if err = c.StaticFiles.GenJS(); err != nil {
c.LogError(err)
}*/
log.Print("Checking for init tasks")
if err = sched(); err != nil {
c.LogError(err)
}
log.Print("Initialising the task system")
// Thumbnailer goroutine, we only want one image being thumbnailed at a time, otherwise they might wind up consuming all the CPU time and leave no resources left to service the actual requests
// TODO: Could we expand this to attachments and other things too?
thumbChan := make(chan bool)
go c.ThumbTask(thumbChan)
if err = tickLoop(thumbChan); err != nil {
c.LogError(err)
}
go TickLoop.Loop()
// Resource Management Goroutine
go func() {
defer c.EatPanics()
uc, tc := c.Users.GetCache(), c.Topics.GetCache()
if uc == nil && tc == nil {
return
}
var lastEvictedCount int
var couldNotDealloc bool
secondTicker := time.NewTicker(time.Second)
for {
select {
case <-secondTicker.C:
// TODO: Add a LastRequested field to cached User structs to avoid evicting the same things which wind up getting loaded again anyway?
if uc != nil {
ucap := uc.GetCapacity()
if uc.Length() <= ucap || c.Users.Count() <= ucap {
couldNotDealloc = false
continue
}
lastEvictedCount = uc.DeallocOverflow(couldNotDealloc)
couldNotDealloc = (lastEvictedCount == 0)
}
}
}
}()
log.Print("Initialising the router")
router, err = NewGenRouter(&RouterConfig{
Uploads: http.FileServer(http.Dir("./uploads")),
})
if err != nil {
log.Fatal(err)
}
log.Print("Initialising the plugins")
c.InitPlugins()
log.Print("Setting up the signal handler")
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
go func() {
defer c.EatPanics()
sig := <-sigs
log.Print("Received a signal to shutdown: ", sig)
// TODO: Gracefully shutdown the HTTP server
tw, cn := c.NewTickWatch(), uutils.Nanotime()
tw.Name = "shutdown"
tw.Set(&tw.Start, cn)
tw.Set(&tw.DBCheck, cn)
tw.Run()
n, e := func() (string, error) {
if e := runHook("before_shutdown_tick"); e != nil {
return "before_shutdown_tick ", e
}
tw.Set(&tw.StartHook, uutils.Nanotime())
log.Print("Running shutdown tasks")
if e := c.Tasks.Shutdown.Run(); e != nil {
return "shutdown tasks ", e
}
tw.Set(&tw.Tasks, uutils.Nanotime())
log.Print("Ran shutdown tasks")
if e := runHook("after_shutdown_tick"); e != nil {
return "after_shutdown_tick ", e
}
tw.Set(&tw.EndHook, uutils.Nanotime())
return "", nil
}()
if e != nil {
log.Print(n+" err:", e)
}
tw.Stop()
log.Print("Stopping server")
c.StoppedServer("Stopped server")
}()
// Start up the WebSocket ticks
c.WsHub.Start()
if false {
f, e := os.Create(c.Config.LogDir + "cpu.prof")
if e != nil {
log.Fatal(e)
}
pprof.StartCPUProfile(f)
}
//if profiling {
// pprof.StopCPUProfile()
//}
startServer()
args := <-c.StopServerChan
if false {
pprof.StopCPUProfile()
f, err := os.Create(c.Config.LogDir + "mem.prof")
if err != nil {
log.Fatal(err)
}
defer f.Close()
runtime.GC()
err = pprof.WriteHeapProfile(f)
if err != nil {
log.Fatal(err)
}
}
// Why did the server stop?
log.Fatal(args...)
}
func startServer() {
2022-02-21 03:16:15 +00:00
// We might not need timeouts, if we're behind a reverse-proxy like Nginx
newServer := func(addr string, h http.Handler) *http.Server {
f := func(timeout, dval int) int {
if timeout == 0 {
timeout = dval
} else if timeout == -1 {
timeout = 0
}
return timeout
}
rtime := f(c.Config.ReadTimeout, 8)
wtime := f(c.Config.WriteTimeout, 10)
itime := f(c.Config.IdleTimeout, 120)
return &http.Server{
Addr: addr,
Handler: h,
ConnState: c.ConnWatch.StateChange,
ReadTimeout: time.Duration(rtime) * time.Second,
WriteTimeout: time.Duration(wtime) * time.Second,
IdleTimeout: time.Duration(itime) * time.Second,
TLSConfig: &tls.Config{
PreferServerCipherSuites: true,
CurvePreferences: []tls.CurveID{
tls.CurveP256,
tls.X25519,
},
},
}
}
// TODO: Let users run *both* HTTP and HTTPS
log.Print("Initialising the HTTP server")
/*if c.Dev.QuicPort != 0 {
sQuicPort := strconv.Itoa(c.Dev.QuicPort)
log.Print("Listening on quic port " + sQuicPort)
go func() {
defer c.EatPanics()
c.StoppedServer(http3.ListenAndServeQUIC(":"+sQuicPort, c.Config.SslFullchain, c.Config.SslPrivkey, router))
}()
}*/
if !c.Site.EnableSsl {
if c.Site.Port == "" {
c.Site.Port = "80"
}
log.Print("Listening on port " + c.Site.Port)
go func() {
defer c.EatPanics()
c.StoppedServer(newServer(":"+c.Site.Port, router).ListenAndServe())
}()
return
}
if c.Site.Port == "" {
c.Site.Port = "443"
}
if c.Site.Port == "80" || c.Site.Port == "443" {
// We should also run the server on port 80
// TODO: Redirect to port 443
go func() {
defer c.EatPanics()
log.Print("Listening on port 80")
c.StoppedServer(newServer(":80", &HTTPSRedirect{}).ListenAndServe())
}()
}
log.Printf("Listening on port %s", c.Site.Port)
go func() {
defer c.EatPanics()
c.StoppedServer(newServer(":"+c.Site.Port, router).ListenAndServeTLS(c.Config.SslFullchain, c.Config.SslPrivkey))
}()
}