Albirew/nyaa-pantsu
Albirew
/
nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/main.go

67 lignes
1.3 KiB
Go
Brut Vue normale Historique

2017-05-02 12:39:53 +02:00
package main
import (
"bufio"
"flag"
2017-05-09 17:07:42 +02:00
"github.com/nicksnyder/go-i18n/i18n"
"github.com/ewhal/nyaa/config"
2017-05-06 20:27:26 +02:00
"github.com/ewhal/nyaa/db"
2017-05-07 21:51:37 +02:00
"github.com/ewhal/nyaa/network"
"github.com/ewhal/nyaa/router"
"github.com/ewhal/nyaa/util/log"
2017-05-07 14:07:20 +02:00
"github.com/ewhal/nyaa/util/signals"
2017-05-02 12:39:53 +02:00
"net/http"
"os"
2017-05-02 12:39:53 +02:00
"time"
)
func initI18N() {
/* Initialize the languages translation */
i18n.MustLoadTranslationFile("translations/en-us.all.json")
}
func RunServer(conf *config.Config) {
http.Handle("/", router.Router)
2017-05-02 12:39:53 +02:00
// Set up server,
srv := &http.Server{
WriteTimeout: 15 * time.Second,
ReadTimeout: 15 * time.Second,
}
2017-05-07 21:51:37 +02:00
l, err := network.CreateHTTPListener(conf)
log.CheckError(err)
2017-05-07 21:51:37 +02:00
if err == nil {
log.Infof("listening on %s", l.Addr())
err := srv.Serve(l)
log.CheckError(err)
}
2017-05-02 12:39:53 +02:00
}
func main() {
conf := config.NewConfig()
2017-05-06 20:27:26 +02:00
process_flags := conf.BindFlags()
defaults := flag.Bool("print-defaults", false, "print the default configuration file on stdout")
flag.Parse()
if *defaults {
stdout := bufio.NewWriter(os.Stdout)
conf.Pretty(stdout)
stdout.Flush()
os.Exit(0)
} else {
2017-05-06 20:27:26 +02:00
err := process_flags()
if err != nil {
log.CheckError(err)
}
db.ORM, _ = db.GormInit(conf)
initI18N()
2017-05-07 14:07:20 +02:00
go signals.Handle()
if len(config.TorrentFileStorage) > 0 {
os.MkdirAll(config.TorrentFileStorage, 0755)
}
RunServer(conf)
}
}