+17
@@ -0,0 +1,17 @@
|
||||
package events
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
)
|
||||
|
||||
// SendEmailsEvent instructs the notification service to send grouped emails
|
||||
type SendEmailsEvent struct {
|
||||
Interval string
|
||||
}
|
||||
|
||||
// Unmarshal to fulfill umarshaller interface
|
||||
func (SendEmailsEvent) Unmarshal(v []byte) (interface{}, error) {
|
||||
e := SendEmailsEvent{}
|
||||
err := json.Unmarshal(v, &e)
|
||||
return e, err
|
||||
}
|
||||
+13
@@ -114,9 +114,22 @@ func (a *authorizer) GetInfoByDomain(_ context.Context, domain string) (*ocmprov
|
||||
return nil, err
|
||||
}
|
||||
for _, p := range a.providers {
|
||||
// we can exit early if this an exact match
|
||||
if strings.Contains(p.Domain, normalizedDomain) {
|
||||
return p, nil
|
||||
}
|
||||
|
||||
// check if the domain matches a regex
|
||||
if ok, err := regexp.MatchString(p.Domain, normalizedDomain); ok && err == nil {
|
||||
// overwrite wildcards with the actual domain
|
||||
for i, s := range p.Services {
|
||||
s.Endpoint.Path = strings.ReplaceAll(s.Endpoint.Path, p.Domain, normalizedDomain)
|
||||
s.Host = strings.ReplaceAll(s.Host, p.Domain, normalizedDomain)
|
||||
p.Services[i] = s
|
||||
}
|
||||
p.Domain = normalizedDomain
|
||||
return p, nil
|
||||
}
|
||||
}
|
||||
return nil, errtypes.NotFound(domain)
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -367,7 +367,7 @@ github.com/cs3org/go-cs3apis/cs3/storage/provider/v1beta1
|
||||
github.com/cs3org/go-cs3apis/cs3/storage/registry/v1beta1
|
||||
github.com/cs3org/go-cs3apis/cs3/tx/v1beta1
|
||||
github.com/cs3org/go-cs3apis/cs3/types/v1beta1
|
||||
# github.com/cs3org/reva/v2 v2.27.1-0.20250108145244-9d64adf0696e
|
||||
# github.com/cs3org/reva/v2 v2.27.1-0.20250109115603-fe9caac22593
|
||||
## explicit; go 1.22.0
|
||||
github.com/cs3org/reva/v2/cmd/revad/internal/grace
|
||||
github.com/cs3org/reva/v2/cmd/revad/runtime
|
||||
|
||||
Reference in New Issue
Block a user