-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
94 lines (76 loc) · 2.84 KB
/
main.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
Copyright (C) 2016 The BlameWarrior Authors.
This file is a part of BlameWarrior service.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"flag"
"fmt"
"log"
"os"
"github.com/blamewarrior/collaborators/blamewarrior"
"github.com/blamewarrior/collaborators/blamewarrior/tokens"
"github.com/blamewarrior/collaborators/github"
"github.com/bmizerany/pat"
)
var (
binaryName = os.Args[0]
version = "n/a"
buildDate = "n/a"
builder = "n/a"
buildGoVersion = "n/a"
args struct {
version bool
}
)
func init() {
flag.BoolVar(&args.version, "version", false, "Print version and quit")
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage: %s [OPTIONS]\nOptions:\n", binaryName)
flag.PrintDefaults()
}
}
func printVersion() {
fmt.Printf("%s version %s built with %s by %s on %s\n", binaryName, version, buildGoVersion, builder, buildDate)
}
func main() {
flag.Parse()
if args.version {
printVersion()
os.Exit(0)
}
dbName := os.Getenv("DB_NAME")
if dbName == "" {
log.Fatal("missing test database name (expected to be passed via ENV['DB_NAME'])")
}
opts := &blamewarrior.DatabaseOptions{
Host: os.Getenv("DB_HOST"),
Port: os.Getenv("DB_PORT"),
User: os.Getenv("DB_USER"),
Password: os.Getenv("DB_PASSWORD"),
}
db, err := blamewarrior.ConnectDatabase(dbName, opts)
if err != nil {
log.Fatalf("failed to establish connection with test db %s using connection string %s: %s", dbName, opts.ConnectionString(), err)
}
mux := pat.New()
tokenClient := tokens.NewTokenClient("https://blamewarrior.com")
githubClient := github.NewClient(tokenClient)
collaboration := blamewarrior.NewCollaborationService()
mux.Get("/:username/:repo/collaborators/fetch", NewFetchCollaboratorsHandler("blamewarrior.com", db, collaboration,
githubClient))
mux.Post("/:username/:repo/collaborators", NewAddCollaboratorHandler("blamewarrior.com", db, collaboration))
mux.Get("/:username/:repo/collaborators", NewListCollaboratorHandler("blamewarrior.com", db, collaboration))
mux.Put("/:username/:repo/collaborators", NewEditCollaboratorHandler("blamewarrior.com", db, collaboration))
mux.Del("/:username/:repo/collaborators/:collaborator", NewDisconnectCollaboratorHandler("blamewarrior.com", db, collaboration))
}