cacert-boardvoting/cmd/boardvoting/main.go

200 lines
4.8 KiB
Go
Raw Normal View History

/*
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
2022-05-09 19:09:24 +00:00
import (
"context"
2022-05-22 09:02:37 +00:00
"crypto/tls"
"crypto/x509"
2022-05-15 18:10:49 +00:00
"database/sql"
2022-05-09 19:09:24 +00:00
"flag"
2022-05-15 18:10:49 +00:00
"fmt"
"html/template"
2022-05-22 09:02:37 +00:00
"io/ioutil"
2022-05-09 19:09:24 +00:00
"log"
"net/http"
"os"
2022-05-15 18:10:49 +00:00
"github.com/jmoiron/sqlx"
_ "github.com/mattn/go-sqlite3"
2022-05-09 19:09:24 +00:00
2022-05-15 18:10:49 +00:00
"git.cacert.org/cacert-boardvoting/internal"
"git.cacert.org/cacert-boardvoting/internal/models"
2022-05-09 19:09:24 +00:00
)
var (
version = "undefined"
commit = "undefined"
date = "undefined"
)
2022-05-09 19:09:24 +00:00
type application struct {
errorLog, infoLog *log.Logger
2022-05-15 18:10:49 +00:00
voters *models.VoterModel
motions *models.MotionModel
2022-05-15 18:10:49 +00:00
jobScheduler *JobScheduler
mailNotifier *MailNotifier
2022-05-21 11:51:17 +00:00
mailConfig *mailConfig
2022-05-15 18:10:49 +00:00
baseURL string
templateCache map[string]*template.Template
2022-05-09 19:09:24 +00:00
}
func main() {
2022-05-09 19:09:24 +00:00
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)
}
2022-05-15 18:10:49 +00:00
config, err := GetConfig(ctx)
if err != nil {
errorLog.Fatal(err)
}
2022-05-09 19:09:24 +00:00
2022-05-15 18:10:49 +00:00
db, err := openDB(config.DatabaseFile)
if err != nil {
errorLog.Fatal(err)
2022-05-09 19:09:24 +00:00
}
2022-05-15 18:10:49 +00:00
defer func(db *sqlx.DB) {
_ = db.Close()
}(db)
2022-05-09 19:09:24 +00:00
2022-05-15 18:10:49 +00:00
if err != nil {
errorLog.Fatalf("could not setup decision model: %v", err)
}
2022-05-09 19:09:24 +00:00
templateCache, err := newTemplateCache()
if err != nil {
errorLog.Fatal(err)
}
2022-05-09 19:09:24 +00:00
app := &application{
errorLog: errorLog,
infoLog: infoLog,
motions: &models.MotionModel{DB: db, InfoLog: infoLog},
voters: &models.VoterModel{DB: db},
mailConfig: config.MailConfig,
baseURL: config.BaseURL,
templateCache: templateCache,
2022-05-09 19:09:24 +00:00
}
2022-05-21 12:09:19 +00:00
2022-05-15 18:10:49 +00:00
app.NewMailNotifier()
2022-05-21 12:09:19 +00:00
defer app.mailNotifier.Quit()
2022-05-15 18:10:49 +00:00
app.NewJobScheduler()
2022-05-21 12:09:19 +00:00
defer app.jobScheduler.Quit()
2022-05-09 19:09:24 +00:00
2022-05-15 18:10:49 +00:00
err = internal.InitializeDb(db.DB, infoLog)
2022-05-09 19:09:24 +00:00
if err != nil {
errorLog.Fatal(err)
}
2022-05-21 12:09:19 +00:00
go app.jobScheduler.Schedule()
2022-05-22 09:02:37 +00:00
infoLog.Printf("Starting server on %s", config.HTTPAddress)
errChan := make(chan error, 1)
go func() {
redirect := &http.Server{
Addr: config.HTTPAddress,
Handler: http.RedirectHandler(config.BaseURL, http.StatusMovedPermanently),
IdleTimeout: config.Timeouts.Idle,
ReadHeaderTimeout: config.Timeouts.ReadHeader,
ReadTimeout: config.Timeouts.Read,
WriteTimeout: config.Timeouts.Write,
}
if err := redirect.ListenAndServe(); err != nil {
errChan <- err
}
close(errChan)
}()
tlsConfig, err := setupTLSConfig(config)
if err != nil {
errorLog.Fatalf("could not setup TLS configuration: %v", err)
}
infoLog.Printf("TLS config setup, starting TLS server on %s", config.HTTPSAddress)
2022-05-09 19:09:24 +00:00
srv := &http.Server{
2022-05-22 09:02:37 +00:00
Addr: config.HTTPSAddress,
TLSConfig: tlsConfig,
2022-05-15 18:10:49 +00:00
ErrorLog: errorLog,
Handler: app.routes(),
IdleTimeout: config.Timeouts.Idle,
ReadHeaderTimeout: config.Timeouts.ReadHeader,
ReadTimeout: config.Timeouts.Read,
WriteTimeout: config.Timeouts.Write,
2022-05-09 19:09:24 +00:00
}
2022-05-22 09:02:37 +00:00
err = srv.ListenAndServeTLS(config.ServerCert, config.ServerKey)
if err != nil {
errorLog.Fatalf("ListenAndServeTLS (HTTPS) failed: %v", err)
}
if err := <-errChan; err != nil {
errorLog.Fatalf("ListenAndServe (HTTP) failed: %v", err)
}
}
2022-05-09 19:09:24 +00:00
2022-05-22 09:02:37 +00:00
func setupTLSConfig(config *Config) (*tls.Config, error) {
caCert, err := ioutil.ReadFile(config.ClientCACertificates)
if err != nil {
return nil, fmt.Errorf("could not read client certificate CAs %w", err)
}
caCertPool := x509.NewCertPool()
if !caCertPool.AppendCertsFromPEM(caCert) {
return nil, fmt.Errorf(
"could not initialize client CA certificate pool from %s",
config.ClientCACertificates,
)
}
2022-05-15 18:10:49 +00:00
2022-05-22 09:02:37 +00:00
return &tls.Config{
MinVersion: tls.VersionTLS12,
ClientCAs: caCertPool,
ClientAuth: tls.VerifyClientCertIfGiven,
}, nil
}
2022-05-15 18:10:49 +00:00
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
}