-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvlo.go
178 lines (158 loc) · 4.89 KB
/
vlo.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
// Copyright 2024 Martin Zimandl <[email protected]>
// Copyright 2024 Institute of the Czech National Corpus,
// Faculty of Arts, Charles University
//
// 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.
package main
import (
"context"
"flag"
"fmt"
"net/http"
"os"
"os/signal"
"path/filepath"
"strings"
"syscall"
"time"
"github.com/czcorpus/cnc-gokit/logging"
"github.com/czcorpus/cnc-gokit/uniresp"
"github.com/gin-gonic/gin"
"github.com/rs/zerolog/log"
"github.com/czcorpus/cnc-vlo/cncdb"
"github.com/czcorpus/cnc-vlo/cnchook"
"github.com/czcorpus/cnc-vlo/cnf"
"github.com/czcorpus/cnc-vlo/general"
"github.com/czcorpus/cnc-vlo/oaipmh"
)
var (
version string
buildDate string
gitCommit string
)
func runApiServer(
conf *cnf.Conf,
syscallChan chan os.Signal,
exitEvent chan os.Signal,
db *cncdb.CNCMySQLHandler,
) {
if !conf.Logging.Level.IsDebugMode() {
gin.SetMode(gin.ReleaseMode)
}
engine := gin.New()
engine.Use(gin.Recovery())
engine.Use(logging.GinMiddleware())
engine.NoMethod(uniresp.NoMethodHandler)
engine.NoRoute(uniresp.NotFoundHandler)
hook := cnchook.NewCNCHook(conf, db)
handler := oaipmh.NewVLOHandler(conf.RepositoryInfo.BaseURL, hook)
engine.GET("/oai", handler.HandleOAIGet)
engine.POST("/oai", handler.HandleOAIPost)
engine.GET("/record/:recordId", handler.HandleSelfLink)
log.Info().Msgf("starting to listen at %s:%d", conf.ListenAddress, conf.ListenPort)
srv := &http.Server{
Handler: engine,
Addr: fmt.Sprintf("%s:%d", conf.ListenAddress, conf.ListenPort),
WriteTimeout: time.Duration(conf.ServerWriteTimeoutSecs) * time.Second,
ReadTimeout: time.Duration(conf.ServerReadTimeoutSecs) * time.Second,
}
go func() {
err := srv.ListenAndServe()
if err != nil {
log.Error().Err(err).Msg("")
}
syscallChan <- syscall.SIGTERM
}()
select {
case <-exitEvent:
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
err := srv.Shutdown(ctx)
if err != nil {
log.Info().Err(err).Msg("Shutdown request error")
}
}
}
func cleanVersionInfo(v string) string {
return strings.TrimLeft(strings.Trim(v, "'"), "v")
}
func main() {
version := general.VersionInfo{
Version: cleanVersionInfo(version),
BuildDate: cleanVersionInfo(buildDate),
GitCommit: cleanVersionInfo(gitCommit),
}
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "VLO repository\n\n")
fmt.Fprintf(os.Stderr, "Usage:\n\t%s [options] start [config.json]\n\t", filepath.Base(os.Args[0]))
fmt.Fprintf(os.Stderr, "%s [options] version\n", filepath.Base(os.Args[0]))
flag.PrintDefaults()
}
flag.Parse()
action := flag.Arg(0)
if action == "version" {
fmt.Printf("cnc-vlo %s\nbuild date: %s\nlast commit: %s\n", version.Version, version.BuildDate, version.GitCommit)
return
}
conf := cnf.LoadConfig(flag.Arg(1))
logging.SetupLogging(conf.Logging)
log.Info().Msg("Starting CNC-VLO node")
cnf.ValidateAndDefaults(conf)
syscallChan := make(chan os.Signal, 1)
signal.Notify(syscallChan, os.Interrupt)
signal.Notify(syscallChan, syscall.SIGTERM)
exitEvent := make(chan os.Signal)
go func() {
evt := <-syscallChan
exitEvent <- evt
close(exitEvent)
}()
switch action {
case "start":
if conf.CNCDB.Overrides.CorporaTableName != "" {
log.Warn().Msgf(
"Overriding default corpora table name to '%s'", conf.CNCDB.Overrides.CorporaTableName)
} else {
conf.CNCDB.Overrides.CorporaTableName = "kontext_corpus"
}
if conf.CNCDB.Overrides.UserTableName != "" {
log.Warn().Msgf(
"Overriding default user table name to '%s'", conf.CNCDB.Overrides.UserTableName)
} else {
conf.CNCDB.Overrides.UserTableName = "kontext_user"
}
if conf.CNCDB.Overrides.UserTableFirstNameCol != "" {
log.Warn().Msgf(
"Overriding default user table column for the `first name` to '%s'",
conf.CNCDB.Overrides.UserTableFirstNameCol,
)
} else {
conf.CNCDB.Overrides.UserTableFirstNameCol = "firstname"
}
if conf.CNCDB.Overrides.UserTableLastNameCol != "" {
log.Warn().Msgf(
"Overriding default user table column for the `first name` to '%s'",
conf.CNCDB.Overrides.UserTableLastNameCol,
)
} else {
conf.CNCDB.Overrides.UserTableLastNameCol = "lastname"
}
db, err := cncdb.NewCNCMySQLHandler(conf.CNCDB)
if err != nil {
log.Fatal().Err(err).Msg("Failed to create DB connection")
}
runApiServer(conf, syscallChan, exitEvent, db)
default:
log.Fatal().Msgf("Unknown action %s", action)
}
}