-
Notifications
You must be signed in to change notification settings - Fork 180
/
service.go
127 lines (106 loc) · 2.83 KB
/
service.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
/*
* Copyright (c) 2019-2022. 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 util
import (
"errors"
"strings"
"github.com/pydio/cells/v4/common"
pb "github.com/pydio/cells/v4/common/proto/registry"
"github.com/pydio/cells/v4/common/registry"
"github.com/pydio/cells/v4/common/utils/merger"
)
func ToProtoService(s registry.Service) *pb.Service {
if ss, ok := s.(*service); ok {
return ss.s
}
return &pb.Service{
Version: s.Version(),
Tags: s.Tags(),
Options: new(pb.Options),
}
}
func ToService(i *pb.Item, s *pb.Service) registry.Service {
return &service{i: i, s: s}
}
type service struct {
i *pb.Item
s *pb.Service
}
func (s *service) ID() string {
return s.i.Id
}
func (s *service) Name() string {
return s.i.Name
}
func (s *service) Version() string {
return s.s.Version
}
func (s *service) Metadata() map[string]string {
if s.i.Metadata == nil {
return map[string]string{}
}
return s.i.Metadata
}
func (s *service) Start(oo ...registry.RegisterOption) error {
return errors.New("not implemented")
}
func (s *service) Stop(oo ...registry.RegisterOption) error {
return errors.New("not implemented")
}
func (s *service) Tags() []string {
return s.s.Tags
}
func (s *service) ServerScheme() string {
if strings.HasPrefix(s.i.Name, common.ServiceGrpcNamespace_) {
return "grpc://"
} else if strings.HasPrefix(s.i.Name, common.ServiceRestNamespace_) {
return "http://"
} else {
return "generic://"
}
}
func (s *service) As(i interface{}) bool {
if ii, ok := i.(*registry.Service); ok {
*ii = s
return true
}
return false
}
func (s *service) Equals(differ merger.Differ) bool {
neu, ok := differ.(*service)
if !ok {
return false
}
return s.ID() == neu.ID() &&
s.Name() == neu.Name()
}
func (s *service) IsDeletable(m map[string]string) bool {
return true
}
func (s *service) IsMergeable(differ merger.Differ) bool {
return s.ID() == differ.GetUniqueId()
}
func (s *service) GetUniqueId() string {
return s.ID()
}
func (s *service) Merge(differ merger.Differ, params map[string]string) (merger.Differ, error) {
// Return target
return differ, nil
}