2017-05-02 12:39:53 +02:00
package main
import (
2017-05-06 00:33:56 +02:00
"bufio"
2017-05-05 14:10:35 +02:00
"flag"
2017-05-10 19:29:35 +02:00
2017-05-29 08:15:21 +02:00
"context"
2017-05-10 12:06:32 +02:00
"net/http"
"os"
"time"
2017-05-09 17:07:42 +02:00
2017-05-17 07:58:40 +02:00
"github.com/NyaaPantsu/nyaa/config"
2017-06-28 13:42:38 +02:00
"github.com/NyaaPantsu/nyaa/controllers"
2017-07-16 17:15:57 +02:00
"github.com/NyaaPantsu/nyaa/controllers/databasedumps"
2017-07-02 23:53:23 +02:00
"github.com/NyaaPantsu/nyaa/models"
2017-07-02 16:54:55 +02:00
"github.com/NyaaPantsu/nyaa/utils/cookies"
"github.com/NyaaPantsu/nyaa/utils/log"
"github.com/NyaaPantsu/nyaa/utils/publicSettings"
"github.com/NyaaPantsu/nyaa/utils/search"
"github.com/NyaaPantsu/nyaa/utils/signals"
2017-05-02 12:39:53 +02:00
)
2017-05-31 12:20:06 +02:00
var buildversion string
2017-05-10 19:29:35 +02:00
// RunServer runs webapp mainloop
2017-08-02 17:12:52 +02:00
func RunServer ( ) {
conf := config . Get ( )
2017-05-11 18:30:38 +02:00
// TODO Use config from cli
2017-07-16 17:15:57 +02:00
os . Mkdir ( databasedumpsController . DatabaseDumpPath , 0700 )
2017-05-11 18:30:38 +02:00
// TODO Use config from cli
2017-07-16 17:15:57 +02:00
os . Mkdir ( databasedumpsController . GPGPublicKeyPath , 0700 )
2017-05-03 19:45:18 +02:00
2017-06-28 13:42:38 +02:00
http . Handle ( "/" , controllers . CSRFRouter )
2017-05-30 00:18:43 +02:00
2017-05-02 12:39:53 +02:00
// Set up server,
srv := & http . Server {
2017-05-20 01:10:16 +02:00
WriteTimeout : 30 * time . Second ,
ReadTimeout : 10 * time . Second ,
2017-05-02 12:39:53 +02:00
}
2017-06-28 13:42:38 +02:00
l , err := CreateHTTPListener ( conf )
2017-05-05 14:20:51 +02:00
log . CheckError ( err )
2017-05-29 08:15:21 +02:00
if err != nil {
return
}
log . Infof ( "listening on %s" , l . Addr ( ) )
// http.Server.Shutdown closes associated listeners/clients.
// context.Background causes srv to indefinitely try to
// gracefully shutdown. add a timeout if this becomes a problem.
signals . OnInterrupt ( func ( ) {
srv . Shutdown ( context . Background ( ) )
} )
err = srv . Serve ( l )
2017-05-07 21:51:37 +02:00
if err == nil {
2017-05-29 08:15:21 +02:00
log . Panic ( "http.Server.Serve never returns nil" )
2017-05-07 21:51:37 +02:00
}
2017-05-29 08:15:21 +02:00
if err == http . ErrServerClosed {
return
}
log . CheckError ( err )
2017-05-02 12:39:53 +02:00
}
2017-05-05 14:10:35 +02:00
func main ( ) {
2017-05-31 12:20:06 +02:00
if buildversion != "" {
2017-08-02 17:12:52 +02:00
config . Get ( ) . Build = buildversion
2017-05-31 12:20:06 +02:00
} else {
2017-08-02 17:12:52 +02:00
config . Get ( ) . Build = "unknown"
2017-05-31 12:20:06 +02:00
}
2017-05-05 14:10:35 +02:00
defaults := flag . Bool ( "print-defaults" , false , "print the default configuration file on stdout" )
2017-07-21 01:20:04 +02:00
callback := config . BindFlags ( )
2017-05-05 14:10:35 +02:00
flag . Parse ( )
if * defaults {
stdout := bufio . NewWriter ( os . Stdout )
2017-08-02 17:12:52 +02:00
err := config . Get ( ) . Pretty ( stdout )
Consistency, formatting, error checking, cleanup, and a couple bug fixes (#245)
* Checkpoint: it builds
The config, db, model, network, os, and public packages have had some
fixes to glaringly obvious flaws, dead code removed, and stylistic
changes.
* Style changes and old code removal in router
Router needs a lot of work done to its (lack of) error handling.
* Dead code removal and style changes
Now up to util/email/email.go. After I'm finished with the initial sweep
I'll go back and fix error handling and security issues. Then I'll fix
the broken API. Then I'll go through to add documentation and fix code
visibility.
* Finish dead code removal and style changes
Vendored libraries not touched. Everything still needs security fixes
and documentation. There's also one case of broken functionality.
* Fix accidental find-and-replace
* Style, error checking, saftey, bug fix changes
* Redo error checking erased during merge
* Re-add merge-erased fix. Make Safe safe.
2017-05-10 04:34:40 +02:00
if err != nil {
log . Fatal ( err . Error ( ) )
}
err = stdout . Flush ( )
if err != nil {
log . Fatal ( err . Error ( ) )
}
2017-05-05 14:10:35 +02:00
os . Exit ( 0 )
} else {
2017-07-21 01:20:04 +02:00
callback ( )
2017-07-10 14:11:05 +02:00
var err error
2017-08-02 17:12:52 +02:00
models . ORM , err = models . GormInit ( models . DefaultLogger )
2017-05-09 19:23:21 +02:00
if err != nil {
log . Fatal ( err . Error ( ) )
}
2017-07-28 05:46:40 +02:00
if config . Get ( ) . Search . EnableElasticSearch {
models . ElasticSearchClient , _ = models . ElasticSearchInit ( )
}
2017-08-02 17:12:52 +02:00
err = publicSettings . InitI18n ( config . Get ( ) . I18n , cookies . NewCurrentUserRetriever ( ) )
2017-05-13 22:52:10 +02:00
if err != nil {
log . Fatal ( err . Error ( ) )
}
2017-08-02 17:12:52 +02:00
err = search . Configure ( & config . Get ( ) . Search )
2017-05-11 15:01:53 +02:00
if err != nil {
log . Fatal ( err . Error ( ) )
}
2017-05-28 11:08:46 +02:00
signals . Handle ( )
2017-07-10 14:11:05 +02:00
if len ( config . Get ( ) . Torrents . FileStorage ) > 0 {
err := os . MkdirAll ( config . Get ( ) . Torrents . FileStorage , 0700 )
Consistency, formatting, error checking, cleanup, and a couple bug fixes (#245)
* Checkpoint: it builds
The config, db, model, network, os, and public packages have had some
fixes to glaringly obvious flaws, dead code removed, and stylistic
changes.
* Style changes and old code removal in router
Router needs a lot of work done to its (lack of) error handling.
* Dead code removal and style changes
Now up to util/email/email.go. After I'm finished with the initial sweep
I'll go back and fix error handling and security issues. Then I'll fix
the broken API. Then I'll go through to add documentation and fix code
visibility.
* Finish dead code removal and style changes
Vendored libraries not touched. Everything still needs security fixes
and documentation. There's also one case of broken functionality.
* Fix accidental find-and-replace
* Style, error checking, saftey, bug fix changes
* Redo error checking erased during merge
* Re-add merge-erased fix. Make Safe safe.
2017-05-10 04:34:40 +02:00
if err != nil {
log . Fatal ( err . Error ( ) )
}
2017-05-07 15:55:34 +02:00
}
2017-08-02 17:12:52 +02:00
RunServer ( )
2017-05-05 14:10:35 +02:00
}
2017-05-07 01:58:15 +02:00
}