-
Notifications
You must be signed in to change notification settings - Fork 180
/
plugins.go
132 lines (119 loc) · 3.83 KB
/
plugins.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
/*
* Copyright (c) 2018. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
// Package grpc provides the actual logic for posting emails to queue or to mail servers
package grpc
import (
"context"
"time"
"github.com/micro/go-micro"
"github.com/pydio/cells/common/plugins"
"github.com/pydio/cells/x/configx"
"go.uber.org/zap"
"github.com/pydio/cells/common"
"github.com/pydio/cells/common/config"
"github.com/pydio/cells/common/log"
defaults "github.com/pydio/cells/common/micro"
"github.com/pydio/cells/common/proto/jobs"
"github.com/pydio/cells/common/proto/mailer"
"github.com/pydio/cells/common/service"
servicecontext "github.com/pydio/cells/common/service/context"
)
var (
// Name is the identifier of this service
Name = common.ServiceGrpcNamespace_ + common.ServiceMailer
)
func init() {
plugins.Register(func(ctx context.Context) {
config.RegisterExposedConfigs(Name, ExposedConfigs)
service.NewService(
service.Name(Name),
service.Context(ctx),
service.Tag(common.ServiceTagBroker),
service.Description("MailSender Service"),
service.Dependency(common.ServiceGrpcNamespace_+common.ServiceJobs, []string{}),
service.Unique(true),
service.AutoRestart(true),
service.Migrations([]*service.Migration{
{
TargetVersion: service.FirstRun(),
Up: RegisterQueueJob,
},
}),
service.WithMicro(func(m micro.Service) error {
ctx := m.Options().Context
conf := servicecontext.GetConfig(ctx)
handler, err := NewHandler(ctx, conf)
if err != nil {
log.Logger(ctx).Error("Init handler", zap.Error(err))
return err
}
log.Logger(ctx).Debug("Init handler OK", zap.Any("h", handler))
mailer.RegisterMailerServiceHandler(m.Options().Server, handler)
return nil
}),
)
})
}
func watchConfigChanges(ctx context.Context, handler *Handler) (configx.Receiver, error) {
watcher, err := config.Watch("services", Name)
if err != nil {
return nil, err
}
go func() {
for {
_, err := watcher.Next()
if err != nil {
return
}
log.Logger(ctx).Info("Refreshing configs - Checking it's valid")
handler.checkConfigChange(ctx, true)
}
}()
return watcher, nil
}
// RegisterQueueJob adds a job to the scheduler to regularly flush the queue
func RegisterQueueJob(ctx context.Context) error {
log.Logger(ctx).Info("Registering default job for consuming mailer queue")
job := &jobs.Job{
ID: "flush-mailer-queue",
Label: "Flush Mails Queue",
Owner: common.PydioSystemUsername,
MaxConcurrency: 1,
AutoStart: false,
Schedule: &jobs.Schedule{
Iso8601Schedule: "R/2012-06-04T19:25:16.828696-07:00/PT5M", // every 5 mn
},
Actions: []*jobs.Action{
{
ID: "actions.cmd.rpc",
Parameters: map[string]string{
"service": Name,
"method": "MailerService.ConsumeQueue",
"request": `{}`,
},
},
},
}
return service.Retry(ctx, func() error {
cliJob := jobs.NewJobServiceClient(common.ServiceGrpcNamespace_+common.ServiceJobs, defaults.NewClient())
_, e := cliJob.PutJob(ctx, &jobs.PutJobRequest{Job: job})
return e
}, 5*time.Second, 20*time.Second)
}