-
Notifications
You must be signed in to change notification settings - Fork 1
/
apiserver.go
86 lines (74 loc) · 2.76 KB
/
apiserver.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
// Copyright 2024 Tomas Machalek <[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 (
"camus/archiver"
"camus/cnf"
"camus/indexer"
"context"
"fmt"
"net/http"
"time"
"github.com/czcorpus/cnc-gokit/logging"
"github.com/czcorpus/cnc-gokit/uniresp"
"github.com/gin-gonic/gin"
"github.com/rs/zerolog/log"
)
type apiServer struct {
server *http.Server
conf *cnf.Conf
arch *archiver.ArchKeeper
fulltextService *indexer.Service
rdb *archiver.RedisAdapter
}
func (api *apiServer) Start(ctx context.Context) {
if !api.conf.LogLevel.IsDebugMode() {
gin.SetMode(gin.ReleaseMode)
}
engine := gin.New()
engine.Use(gin.Recovery())
engine.Use(logging.GinMiddleware())
engine.Use(uniresp.AlwaysJSONContentType())
engine.NoMethod(uniresp.NoMethodHandler)
engine.NoRoute(uniresp.NotFoundHandler)
archHandler := Actions{ArchKeeper: api.arch}
engine.GET("/overview", archHandler.Overview)
engine.GET("/record/:id", archHandler.GetRecord)
engine.GET("/validate/:id", archHandler.Validate)
engine.POST("/fix/:id", archHandler.Fix)
engine.POST("/dedup-reset", archHandler.DedupReset)
indexerHandler := indexer.NewActions(api.fulltextService)
engine.GET("/query-history/build", indexerHandler.IndexLatestRecords)
engine.GET("/query-history/rec2doc", indexerHandler.RecordToDoc)
engine.POST("/user-query-history/:userId", indexerHandler.Search)
engine.POST("/user-query-history/:userId/:queryId/:created", indexerHandler.Update)
engine.DELETE("/user-query-history/:userId/:queryId/:created", indexerHandler.Delete)
api.server = &http.Server{
Handler: engine,
Addr: fmt.Sprintf("%s:%d", api.conf.ListenAddress, api.conf.ListenPort),
WriteTimeout: time.Duration(api.conf.ServerWriteTimeoutSecs) * time.Second,
ReadTimeout: time.Duration(api.conf.ServerReadTimeoutSecs) * time.Second,
}
go func() {
if err := api.server.ListenAndServe(); err != nil && err != http.ErrServerClosed {
log.Fatal().Err(err).Msg("server error")
}
}()
}
func (s *apiServer) Stop(ctx context.Context) error {
log.Warn().Msg("shutting down http api server")
return s.server.Shutdown(ctx)
}