135 lines
3.1 KiB
Go
135 lines
3.1 KiB
Go
/*
|
|
Copyright 2017-2022 CAcert Inc.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// The CAcert board voting software.
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/jmoiron/sqlx"
|
|
_ "github.com/mattn/go-sqlite3"
|
|
|
|
"git.cacert.org/cacert-boardvoting/internal"
|
|
"git.cacert.org/cacert-boardvoting/internal/models"
|
|
)
|
|
|
|
var (
|
|
version = "undefined"
|
|
commit = "undefined"
|
|
date = "undefined"
|
|
)
|
|
|
|
type application struct {
|
|
errorLog, infoLog *log.Logger
|
|
voters *models.VoterModel
|
|
decisions *models.DecisionModel
|
|
jobScheduler *JobScheduler
|
|
mailNotifier *MailNotifier
|
|
mailConfig *mailConfig
|
|
baseURL string
|
|
}
|
|
|
|
func main() {
|
|
configFile := flag.String("config", "config.yaml", "Configuration file name")
|
|
flag.Parse()
|
|
|
|
infoLog := log.New(os.Stdout, "INFO\t", log.Ldate|log.Ltime)
|
|
errorLog := log.New(os.Stderr, "ERROR\t", log.Ldate|log.Ltime)
|
|
|
|
infoLog.Printf("CAcert Board Voting version %s, commit %s built at %s", version, commit, date)
|
|
|
|
ctx, err := parseConfig(context.Background(), *configFile)
|
|
if err != nil {
|
|
errorLog.Fatal(err)
|
|
}
|
|
|
|
config, err := GetConfig(ctx)
|
|
if err != nil {
|
|
errorLog.Fatal(err)
|
|
}
|
|
|
|
db, err := openDB(config.DatabaseFile)
|
|
if err != nil {
|
|
errorLog.Fatal(err)
|
|
}
|
|
|
|
defer func(db *sqlx.DB) {
|
|
_ = db.Close()
|
|
}(db)
|
|
|
|
if err != nil {
|
|
errorLog.Fatalf("could not setup decision model: %v", err)
|
|
}
|
|
|
|
app := &application{
|
|
errorLog: errorLog,
|
|
infoLog: infoLog,
|
|
decisions: &models.DecisionModel{DB: db, InfoLog: infoLog},
|
|
voters: &models.VoterModel{DB: db},
|
|
mailConfig: config.MailConfig,
|
|
baseURL: config.BaseURL,
|
|
}
|
|
|
|
app.NewMailNotifier()
|
|
defer app.mailNotifier.Quit()
|
|
|
|
app.NewJobScheduler()
|
|
defer app.jobScheduler.Quit()
|
|
|
|
err = internal.InitializeDb(db.DB, infoLog)
|
|
if err != nil {
|
|
errorLog.Fatal(err)
|
|
}
|
|
|
|
go app.jobScheduler.Schedule()
|
|
|
|
srv := &http.Server{
|
|
Addr: config.HTTPAddress,
|
|
ErrorLog: errorLog,
|
|
Handler: app.routes(),
|
|
IdleTimeout: config.Timeouts.Idle,
|
|
ReadHeaderTimeout: config.Timeouts.ReadHeader,
|
|
ReadTimeout: config.Timeouts.Read,
|
|
WriteTimeout: config.Timeouts.Write,
|
|
}
|
|
|
|
infoLog.Printf("Starting server on %s", config.HTTPAddress)
|
|
|
|
err = srv.ListenAndServe()
|
|
|
|
errorLog.Fatal(err)
|
|
}
|
|
|
|
func openDB(dbFile string) (*sqlx.DB, error) {
|
|
db, err := sql.Open("sqlite3", dbFile)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not open database file %s: %w", dbFile, err)
|
|
}
|
|
|
|
if err = db.Ping(); err != nil {
|
|
return nil, fmt.Errorf("could not ping database: %w", err)
|
|
}
|
|
|
|
return sqlx.NewDb(db, "sqlite3"), nil
|
|
}
|