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/cache"
"github.com/NyaaPantsu/nyaa/config"
"github.com/NyaaPantsu/nyaa/db"
"github.com/NyaaPantsu/nyaa/network"
"github.com/NyaaPantsu/nyaa/router"
"github.com/NyaaPantsu/nyaa/service/scraper"
"github.com/NyaaPantsu/nyaa/service/torrent/metainfoFetcher"
"github.com/NyaaPantsu/nyaa/service/user"
"github.com/NyaaPantsu/nyaa/util/log"
2017-05-29 17:07:18 +02:00
"github.com/NyaaPantsu/nyaa/util/publicSettings"
2017-05-17 07:58:40 +02:00
"github.com/NyaaPantsu/nyaa/util/search"
"github.com/NyaaPantsu/nyaa/util/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-05-05 15:08:02 +02:00
func RunServer ( conf * config . Config ) {
2017-05-11 18:30:38 +02:00
// TODO Use config from cli
os . Mkdir ( router . DatabaseDumpPath , 700 )
// TODO Use config from cli
os . Mkdir ( router . GPGPublicKeyPath , 700 )
2017-05-03 19:45:18 +02:00
2017-05-30 00:18:43 +02:00
http . Handle ( "/" , router . Router )
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-05-07 21:51:37 +02:00
l , err := network . 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
2017-05-10 19:29:35 +02:00
// RunScraper runs tracker scraper mainloop
func RunScraper ( conf * config . Config ) {
// bind to network
pc , err := network . CreateScraperSocket ( conf )
if err != nil {
log . Fatalf ( "failed to bind udp socket for scraper: %s" , err )
}
// configure tracker scraperv
var scraper * scraperService . Scraper
scraper , err = scraperService . New ( & conf . Scrape )
if err != nil {
pc . Close ( )
log . Fatalf ( "failed to configure scraper: %s" , err )
}
workers := conf . Scrape . NumWorkers
if workers < 1 {
workers = 1
}
2017-05-29 08:15:21 +02:00
signals . OnInterrupt ( func ( ) {
pc . Close ( )
scraper . Close ( )
} )
2017-05-10 19:29:35 +02:00
// run udp scraper worker
for workers > 0 {
2017-05-11 13:40:50 +02:00
log . Infof ( "starting up worker %d" , workers )
2017-05-10 19:29:35 +02:00
go scraper . RunWorker ( pc )
workers --
}
// run scraper
go scraper . Run ( )
scraper . Wait ( )
}
2017-05-14 13:20:34 +02:00
// RunMetainfoFetcher runs the database filesize fetcher main loop
func RunMetainfoFetcher ( conf * config . Config ) {
fetcher , err := metainfoFetcher . New ( & conf . MetainfoFetcher )
2017-05-13 19:58:48 +02:00
if err != nil {
log . Fatalf ( "failed to start fetcher, %s" , err )
return
}
2017-05-29 08:15:21 +02:00
signals . OnInterrupt ( func ( ) {
fetcher . Close ( )
} )
2017-05-13 21:07:39 +02:00
fetcher . RunAsync ( )
fetcher . Wait ( )
2017-05-13 19:58:48 +02:00
}
2017-05-05 14:10:35 +02:00
func main ( ) {
2017-05-31 04:21:57 +02:00
conf := config . Conf
2017-05-31 12:20:06 +02:00
if buildversion != "" {
conf . Build = buildversion
} else {
conf . Build = "unknown"
}
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
processFlags := conf . BindFlags ( )
2017-05-05 14:10:35 +02:00
defaults := flag . Bool ( "print-defaults" , false , "print the default configuration file on stdout" )
2017-05-17 00:47:55 +02:00
mode := flag . String ( "mode" , "webapp" , "which mode to run daemon in, either webapp, scraper or metainfo_fetcher" )
2017-05-31 04:21:57 +02:00
flag . Float64Var ( & conf . Cache . Size , "c" , config . Conf . Cache . Size , "size of the search cache in MB" )
2017-05-11 15:24:20 +02:00
2017-05-05 14:10:35 +02:00
flag . Parse ( )
if * defaults {
stdout := bufio . NewWriter ( os . 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
err := conf . Pretty ( stdout )
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 {
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
err := processFlags ( )
2017-05-06 20:27:26 +02:00
if err != nil {
log . CheckError ( err )
}
2017-05-11 08:01:12 +02:00
db . ORM , err = db . GormInit ( conf , db . DefaultLogger )
2017-05-09 19:23:21 +02:00
if err != nil {
log . Fatal ( err . Error ( ) )
}
2017-05-27 19:08:47 +02:00
err = publicSettings . InitI18n ( conf . I18n , userService . NewCurrentUserRetriever ( ) )
2017-05-13 22:52:10 +02:00
if err != nil {
log . Fatal ( err . Error ( ) )
}
2017-05-11 15:24:20 +02:00
err = cache . Configure ( & conf . Cache )
if err != nil {
log . Fatal ( err . Error ( ) )
}
err = search . Configure ( & conf . 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-05-31 04:21:57 +02:00
if len ( config . Conf . Torrents . FileStorage ) > 0 {
err := os . MkdirAll ( config . Conf . 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-05-10 19:29:35 +02:00
if * mode == "scraper" {
RunScraper ( conf )
} else if * mode == "webapp" {
RunServer ( conf )
2017-05-14 13:20:34 +02:00
} else if * mode == "metainfo_fetcher" {
RunMetainfoFetcher ( conf )
2017-05-10 19:29:35 +02:00
} else {
log . Fatalf ( "invalid runtime mode: %s" , * mode )
}
2017-05-05 14:10:35 +02:00
}
2017-05-07 01:58:15 +02:00
}