b9973719a5
Preloaded a small number of users and topics. Use cache.Set instead of cache.Add in a few spots for topics to avoid issues with the counter falling out of sync with the cache length. Embed Reply in ReplyUser instead of duplicating the same fields. Add the missing AttachCount and ActionType fields to Reply. Add the missing Poll field to TopicsRow. Added the TopicUser.Replies method to better abstract the reply list generation logic. Shortened some common.s to c.s Moved memStuff out of the analytics memory panes and into analytics.js Removed the temporary preStats fix for label overflow now that we have a better solution. Added the panel_analytics_script_memory template to help de-dupe logic in the analytics memory panes. Added the Topic method to TopicsRow. Added the GetRidsForTopic method to help cache replies in a small set of scenarios. Added the ReplyCache config.json setting. Added the ReplyCacheCapacity config.json setting. Added a parser test case. Added more Reply and ReplyStore related test cases.
323 lines
7.3 KiB
Go
323 lines
7.3 KiB
Go
/*
|
|
*
|
|
* Gosora Installer
|
|
* Copyright Azareal 2017 - 2019
|
|
*
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"runtime/debug"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/Azareal/Gosora/install"
|
|
)
|
|
|
|
var scanner *bufio.Scanner
|
|
|
|
var siteShortName string
|
|
var siteName string
|
|
var siteURL string
|
|
var serverPort string
|
|
|
|
var defaultAdapter = "mysql"
|
|
var defaultHost = "localhost"
|
|
var defaultUsername = "root"
|
|
var defaultDbname = "gosora"
|
|
var defaultSiteShortName = "SN"
|
|
var defaultSiteName = "Site Name"
|
|
var defaultsiteURL = "localhost"
|
|
var defaultServerPort = "80" // 8080's a good one, if you're testing and don't want it to clash with port 80
|
|
|
|
func main() {
|
|
// Capture panics instead of closing the window at a superhuman speed before the user can read the message on Windows
|
|
defer func() {
|
|
r := recover()
|
|
if r != nil {
|
|
fmt.Println(r)
|
|
debug.PrintStack()
|
|
pressAnyKey()
|
|
return
|
|
}
|
|
}()
|
|
|
|
scanner = bufio.NewScanner(os.Stdin)
|
|
fmt.Println("Welcome to Gosora's Installer")
|
|
fmt.Println("We're going to take you through a few steps to help you get started :)")
|
|
adap, ok := handleDatabaseDetails()
|
|
if !ok {
|
|
err := scanner.Err()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
} else {
|
|
err = errors.New("Something went wrong!")
|
|
}
|
|
abortError(err)
|
|
return
|
|
}
|
|
|
|
if !getSiteDetails() {
|
|
err := scanner.Err()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
} else {
|
|
err = errors.New("Something went wrong!")
|
|
}
|
|
abortError(err)
|
|
return
|
|
}
|
|
|
|
err := adap.InitDatabase()
|
|
if err != nil {
|
|
abortError(err)
|
|
return
|
|
}
|
|
|
|
err = adap.TableDefs()
|
|
if err != nil {
|
|
abortError(err)
|
|
return
|
|
}
|
|
|
|
err = adap.CreateAdmin()
|
|
if err != nil {
|
|
abortError(err)
|
|
return
|
|
}
|
|
|
|
err = adap.InitialData()
|
|
if err != nil {
|
|
abortError(err)
|
|
return
|
|
}
|
|
|
|
configContents := []byte(`{
|
|
"Site": {
|
|
"ShortName":"` + siteShortName + `",
|
|
"Name":"` + siteName + `",
|
|
"URL":"` + siteURL + `",
|
|
"Port":"` + serverPort + `",
|
|
"EnableSsl":false,
|
|
"EnableEmails":false,
|
|
"HasProxy":false,
|
|
"Language": "english"
|
|
},
|
|
"Config": {
|
|
"SslPrivkey": "",
|
|
"SslFullchain": "",
|
|
"SMTPServer": "",
|
|
"SMTPUsername": "",
|
|
"SMTPPassword": "",
|
|
"SMTPPort": "25",
|
|
|
|
"MaxRequestSizeStr":"5MB",
|
|
"UserCache":"static",
|
|
"TopicCache":"static",
|
|
"ReplyCache":"static",
|
|
"UserCacheCapacity":180,
|
|
"TopicCacheCapacity":400,
|
|
"ReplyCacheCapacity":20,
|
|
"DefaultPath":"/topics/",
|
|
"DefaultGroup":3,
|
|
"ActivationGroup":5,
|
|
"StaffCSS":"staff_post",
|
|
"DefaultForum":2,
|
|
"MinifyTemplates":true,
|
|
"BuildSlugs":true,
|
|
"ServerCount":1,
|
|
"Noavatar":"https://api.adorable.io/avatars/{width}/{id}.png",
|
|
"ItemsPerPage":25
|
|
},
|
|
"Database": {
|
|
"Adapter": "` + adap.Name() + `",
|
|
"Host": "` + adap.DBHost() + `",
|
|
"Username": "` + adap.DBUsername() + `",
|
|
"Password": "` + adap.DBPassword() + `",
|
|
"Dbname": "` + adap.DBName() + `",
|
|
"Port": "` + adap.DBPort() + `",
|
|
|
|
"TestAdapter": "` + adap.Name() + `",
|
|
"TestHost": "",
|
|
"TestUsername": "",
|
|
"TestPassword": "",
|
|
"TestDbname": "",
|
|
"TestPort": ""
|
|
},
|
|
"Dev": {
|
|
"DebugMode":true,
|
|
"SuperDebug":false
|
|
}
|
|
}`)
|
|
|
|
fmt.Println("Opening the configuration file")
|
|
configFile, err := os.Create("./config/config.json")
|
|
if err != nil {
|
|
abortError(err)
|
|
return
|
|
}
|
|
|
|
fmt.Println("Writing to the configuration file...")
|
|
_, err = configFile.Write(configContents)
|
|
if err != nil {
|
|
abortError(err)
|
|
return
|
|
}
|
|
|
|
configFile.Sync()
|
|
configFile.Close()
|
|
fmt.Println("Finished writing to the configuration file")
|
|
|
|
fmt.Println("Yay, you have successfully installed Gosora!")
|
|
fmt.Println("Your name is Admin and you can login with the password 'password'. Don't forget to change it! Seriously. It's really insecure.")
|
|
pressAnyKey()
|
|
}
|
|
|
|
func abortError(err error) {
|
|
fmt.Println(err)
|
|
fmt.Println("Aborting installation...")
|
|
pressAnyKey()
|
|
}
|
|
|
|
func handleDatabaseDetails() (adap install.InstallAdapter, ok bool) {
|
|
var dbAdapter string
|
|
var dbHost string
|
|
var dbUsername string
|
|
var dbPassword string
|
|
var dbName string
|
|
// TODO: Let the admin set the database port?
|
|
//var dbPort string
|
|
|
|
for {
|
|
fmt.Println("Which database adapter do you wish to use? mysql, mssql, or mysql? Default: mysql")
|
|
if !scanner.Scan() {
|
|
return nil, false
|
|
}
|
|
dbAdapter := strings.TrimSpace(scanner.Text())
|
|
if dbAdapter == "" {
|
|
dbAdapter = defaultAdapter
|
|
}
|
|
adap, ok = install.Lookup(dbAdapter)
|
|
if ok {
|
|
break
|
|
}
|
|
fmt.Println("That adapter doesn't exist")
|
|
}
|
|
fmt.Println("Set database adapter to " + dbAdapter)
|
|
|
|
fmt.Println("Database Host? Default: " + defaultHost)
|
|
if !scanner.Scan() {
|
|
return nil, false
|
|
}
|
|
dbHost = scanner.Text()
|
|
if dbHost == "" {
|
|
dbHost = defaultHost
|
|
}
|
|
fmt.Println("Set database host to " + dbHost)
|
|
|
|
fmt.Println("Database Username? Default: " + defaultUsername)
|
|
if !scanner.Scan() {
|
|
return nil, false
|
|
}
|
|
dbUsername = scanner.Text()
|
|
if dbUsername == "" {
|
|
dbUsername = defaultUsername
|
|
}
|
|
fmt.Println("Set database username to " + dbUsername)
|
|
|
|
fmt.Println("Database Password? Default: ''")
|
|
if !scanner.Scan() {
|
|
return nil, false
|
|
}
|
|
dbPassword = scanner.Text()
|
|
if len(dbPassword) == 0 {
|
|
fmt.Println("You didn't set a password for this user. This won't block the installation process, but it might create security issues in the future.")
|
|
fmt.Println("")
|
|
} else {
|
|
fmt.Println("Set password to " + obfuscatePassword(dbPassword))
|
|
}
|
|
|
|
fmt.Println("Database Name? Pick a name you like or one provided to you. Default: " + defaultDbname)
|
|
if !scanner.Scan() {
|
|
return nil, false
|
|
}
|
|
dbName = scanner.Text()
|
|
if dbName == "" {
|
|
dbName = defaultDbname
|
|
}
|
|
fmt.Println("Set database name to " + dbName)
|
|
|
|
adap.SetConfig(dbHost, dbUsername, dbPassword, dbName, adap.DefaultPort())
|
|
return adap, true
|
|
}
|
|
|
|
func getSiteDetails() bool {
|
|
fmt.Println("Okay. We also need to know some actual information about your site!")
|
|
fmt.Println("What's your site's name? Default: " + defaultSiteName)
|
|
if !scanner.Scan() {
|
|
return false
|
|
}
|
|
siteName = scanner.Text()
|
|
if siteName == "" {
|
|
siteName = defaultSiteName
|
|
}
|
|
fmt.Println("Set the site name to " + siteName)
|
|
|
|
// ? - We could compute this based on the first letter of each word in the site's name, if it's name spans multiple words. I'm not sure how to do this for single word names.
|
|
fmt.Println("Can we have a short abbreviation for your site? Default: " + defaultSiteShortName)
|
|
if !scanner.Scan() {
|
|
return false
|
|
}
|
|
siteShortName = scanner.Text()
|
|
if siteShortName == "" {
|
|
siteShortName = defaultSiteShortName
|
|
}
|
|
fmt.Println("Set the short name to " + siteShortName)
|
|
|
|
fmt.Println("What's your site's url? Default: " + defaultsiteURL)
|
|
if !scanner.Scan() {
|
|
return false
|
|
}
|
|
siteURL = scanner.Text()
|
|
if siteURL == "" {
|
|
siteURL = defaultsiteURL
|
|
}
|
|
fmt.Println("Set the site url to " + siteURL)
|
|
|
|
fmt.Println("What port do you want the server to listen on? If you don't know what this means, you should probably leave it on the default. Default: " + defaultServerPort)
|
|
if !scanner.Scan() {
|
|
return false
|
|
}
|
|
serverPort = scanner.Text()
|
|
if serverPort == "" {
|
|
serverPort = defaultServerPort
|
|
}
|
|
_, err := strconv.Atoi(serverPort)
|
|
if err != nil {
|
|
fmt.Println("That's not a valid number!")
|
|
return false
|
|
}
|
|
fmt.Println("Set the server port to " + serverPort)
|
|
return true
|
|
}
|
|
|
|
func obfuscatePassword(password string) (out string) {
|
|
for i := 0; i < len(password); i++ {
|
|
out += "*"
|
|
}
|
|
return out
|
|
}
|
|
|
|
func pressAnyKey() {
|
|
//fmt.Println("Press any key to exit...")
|
|
fmt.Println("Please press enter to exit...")
|
|
for scanner.Scan() {
|
|
_ = scanner.Text()
|
|
return
|
|
}
|
|
}
|