This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocation.go
74 lines (65 loc) · 1.74 KB
/
location.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main
import (
"flag"
"fmt"
"os"
"time"
)
var cmdLocation = &Command{
UsageLine: "location [locname]",
Short: "Zeigt oder ändert Location des nächsten Stammtisches",
Long: `Zeigt oder ändert die Location des nächsten Stammtisches.
Schreibweise muss mit Feld 'locname' im stammtisch_*.md der entsprechenden
Stammtischseite im website-git übereinstimmen!
Bei Erfolg gibt der Befehl nichts aus.`,
Flag: flag.NewFlagSet("location", flag.ExitOnError),
NeedsDB: true,
RegenWebsite: true,
}
func init() {
cmdLocation.Run = RunLocation
}
func getLocation(date time.Time) (location string, err error) {
err = db.QueryRow("SELECT location FROM termine WHERE date = $1", date).Scan(&location)
return
}
func setLocation(date time.Time, location string) (updated bool, err error) {
result, err := db.Exec("UPDATE termine SET location = $2 WHERE date = $1", date, location)
if err != nil {
return false, err
}
n, err := result.RowsAffected()
if err != nil {
return false, err
}
return n > 0, nil
}
func RunLocation() {
// Wir holen uns die nächsten 5 Donnerstage -- darunter muss ein Stammtisch
// sein
var stammtisch time.Time
for _, d := range getNextThursdays(5) {
if d.Day() < 8 {
stammtisch = d
break
}
}
if cmdLocation.Flag.NArg() == 0 {
loc, err := getLocation(stammtisch)
if err != nil {
fmt.Fprintln(os.Stderr, "Kann Location nicht auslesen:", err)
return
}
fmt.Println(loc)
} else {
updated, err := setLocation(stammtisch, cmdLocation.Flag.Arg(0))
if err != nil {
fmt.Fprintln(os.Stderr, "Kann Location nicht setzen:", err)
return
}
if !updated {
fmt.Fprintln(os.Stderr, "Termin noch nicht vorhanden.")
fmt.Fprintln(os.Stderr, "Füge ihn erst mittels next hinzu.")
}
}
}