agola/internal/services/notification/notification.go

76 lines
1.9 KiB
Go
Raw Normal View History

// Copyright 2019 Sorint.lab
//
// 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 notification
import (
"context"
2019-07-01 09:40:20 +00:00
"agola.io/agola/internal/common"
"agola.io/agola/internal/etcd"
slog "agola.io/agola/internal/log"
"agola.io/agola/internal/services/config"
csapi "agola.io/agola/internal/services/configstore/api"
rsapi "agola.io/agola/internal/services/runservice/api"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
var level = zap.NewAtomicLevelAt(zapcore.InfoLevel)
var logger = slog.New(level)
var log = logger.Sugar()
type NotificationService struct {
gc *config.Config
c *config.Notification
e *etcd.Store
runserviceClient *rsapi.Client
configstoreClient *csapi.Client
}
func NewNotificationService(gc *config.Config) (*NotificationService, error) {
c := &gc.Notification
if c.Debug {
level.SetLevel(zapcore.DebugLevel)
}
e, err := common.NewEtcd(&c.Etcd, logger, "notification")
if err != nil {
return nil, err
}
configstoreClient := csapi.NewClient(c.ConfigstoreURL)
runserviceClient := rsapi.NewClient(c.RunserviceURL)
return &NotificationService{
gc: gc,
c: c,
e: e,
runserviceClient: runserviceClient,
configstoreClient: configstoreClient,
}, nil
}
func (n *NotificationService) Run(ctx context.Context) error {
go n.runEventsHandlerLoop(ctx)
<-ctx.Done()
log.Infof("notification service exiting")
return nil
}