diff pkg/scheduler/boot.go @ 1557:62171cd9a42b

Import scheduler: Start scheduler a gemma boot time with configurations from database which have a schedule.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 11 Dec 2018 22:59:10 +0100
parents
children f39957ea08aa
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pkg/scheduler/boot.go	Tue Dec 11 22:59:10 2018 +0100
@@ -0,0 +1,77 @@
+// This is Free Software under GNU Affero General Public License v >= 3.0
+// without warranty, see README.md and license for details.
+//
+// SPDX-License-Identifier: AGPL-3.0-or-later
+// License-Filename: LICENSES/AGPL-3.0.txt
+//
+// Copyright (C) 2018 by via donau
+//   – Österreichische Wasserstraßen-Gesellschaft mbH
+// Software engineering by Intevation GmbH
+//
+// Author(s):
+//  * Sascha L. Teichmann <sascha.teichmann@intevation.de>
+
+package scheduler
+
+import (
+	"context"
+	"database/sql"
+	"log"
+
+	"gemma.intevation.de/gemma/pkg/auth"
+	"gemma.intevation.de/gemma/pkg/config"
+)
+
+const (
+	bootRole = "sys_admin"
+
+	selectImportConfSQL = `
+SELECT id, username, kind, cron
+FROM waterway.import_configuration
+WHERE cron IS NOT NULL`
+)
+
+func init() { go boot() }
+
+// boot starts the scheduler with the configurations from
+// the database which have a schedule.
+func boot() {
+	config.WaitReady()
+	log.Println("info: booting scheduler from database.")
+	ctx := context.Background()
+	err := auth.RunAs(
+		ctx, bootRole,
+		func(conn *sql.Conn) error {
+			rows, err := conn.QueryContext(ctx, selectImportConfSQL)
+			if err != nil {
+				return err
+			}
+			defer rows.Close()
+			err = BootActions(func(ba *BoundAction) (bool, error) {
+				if err != nil {
+					return false, err
+				}
+				if !rows.Next() {
+					return false, nil
+				}
+				var id int64
+				if err = rows.Scan(
+					&id,
+					&ba.User,
+					&ba.Name,
+					&ba.Spec,
+				); err != nil {
+					return false, err
+				}
+				ba.CfgID = &id
+				return true, nil
+			})
+			if err != nil {
+				return err
+			}
+			return rows.Err()
+		})
+	if err != nil {
+		log.Printf("error: %v\n", err)
+	}
+}