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-10 12:06:32 +02:00
"net/http"
"os"
"path/filepath"
"time"
2017-05-09 17:07:42 +02:00
2017-05-10 12:06:32 +02:00
"github.com/ewhal/nyaa/cache"
2017-05-05 15:08:02 +02:00
"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"
2017-05-06 00:33:56 +02:00
"github.com/ewhal/nyaa/router"
2017-05-10 19:29:35 +02:00
"github.com/ewhal/nyaa/service/scraper"
2017-05-06 00:33:56 +02:00
"github.com/ewhal/nyaa/util/log"
2017-05-07 14:07:20 +02:00
"github.com/ewhal/nyaa/util/signals"
2017-05-10 12:06:32 +02:00
"github.com/nicksnyder/go-i18n/i18n"
2017-05-02 12:39:53 +02:00
)
2017-05-07 02:32:32 +02:00
func initI18N ( ) {
/* Initialize the languages translation */
2017-05-09 03:44:25 +02:00
i18n . MustLoadTranslationFile ( "translations/en-us.all.json" )
2017-05-09 19:46:16 +02:00
paths , err := filepath . Glob ( "translations/*.json" )
if err == nil {
for _ , path := range paths {
i18n . LoadTranslationFile ( path )
}
}
2017-05-07 02:32:32 +02:00
}
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-05 16:39:15 +02:00
http . Handle ( "/" , router . Router )
2017-05-03 19:45:18 +02:00
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 )
2017-05-05 14:20:51 +02:00
log . CheckError ( err )
2017-05-07 21:51:37 +02:00
if err == nil {
2017-05-10 14:23:29 +02:00
// add http server to be closed gracefully
signals . RegisterCloser ( & network . GracefulHttpCloser {
Server : srv ,
Listener : l ,
} )
2017-05-07 21:51:37 +02:00
log . Infof ( "listening on %s" , l . Addr ( ) )
err := srv . Serve ( l )
2017-05-10 14:23:29 +02:00
if err != nil && err != network . ErrListenerStopped {
log . CheckError ( err )
}
2017-05-07 21:51:37 +02:00
}
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
}
// register udp socket with signals
signals . RegisterCloser ( pc )
// register scraper with signals
signals . RegisterCloser ( scraper )
// run udp scraper worker
for workers > 0 {
go scraper . RunWorker ( pc )
workers --
}
// run scraper
go scraper . Run ( )
scraper . Wait ( )
}
2017-05-05 14:10:35 +02:00
func main ( ) {
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
conf := config . New ( )
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-10 19:29:35 +02:00
mode := flag . String ( "mode" , "webapp" , "which mode to run daemon in, either webapp or scraper" )
2017-05-10 12:06:32 +02:00
flag . Float64Var ( & cache . Size , "c" , cache . Size , "size of the search cache in MB" )
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-09 19:23:21 +02:00
db . ORM , err = db . GormInit ( conf )
if err != nil {
log . Fatal ( err . Error ( ) )
}
2017-05-07 02:32:32 +02:00
initI18N ( )
2017-05-07 14:07:20 +02:00
go signals . Handle ( )
2017-05-07 15:55:34 +02:00
if len ( config . TorrentFileStorage ) > 0 {
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 := os . MkdirAll ( config . TorrentFileStorage , 0700 )
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" {
log . Init ( "DEVELOPMENT" )
RunScraper ( conf )
} else if * mode == "webapp" {
RunServer ( conf )
} else {
log . Fatalf ( "invalid runtime mode: %s" , * mode )
}
2017-05-05 14:10:35 +02:00
}
2017-05-07 01:58:15 +02:00
}