Skip to content

Commit

Permalink
improve sse sending in clientlog service
Browse files Browse the repository at this point in the history
Signed-off-by: jkoberg <jkoberg@owncloud.com>
  • Loading branch information
kobergj committed Sep 21, 2023
1 parent 6e8f168 commit b59fec9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
5 changes: 5 additions & 0 deletions changelog/unreleased/improve-sses.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Enhancement: Improve SSE format

Improve format of sse notifications

https://github.com/owncloud/ocis/pull/7325
6 changes: 6 additions & 0 deletions services/clientlog/pkg/service/events.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package service

// FileReadyEvent is emitted when the postprocessing of a file is finished
type FileReadyEvent struct {
ItemID string `json:"itemid"`
}
23 changes: 10 additions & 13 deletions services/clientlog/pkg/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@ import (
"go.opentelemetry.io/otel/trace"
)

// ClientNotification is the event the clientlog service is sending to the client
type ClientNotification struct {
Type string
ItemID string
}

// ClientlogService is the service responsible for user activities
type ClientlogService struct {
log log.Logger
Expand Down Expand Up @@ -94,7 +88,8 @@ func (cl *ClientlogService) processEvent(event events.Event) {

var (
users []string
noti ClientNotification
typ string
data interface{}
)
switch e := event.Event.(type) {
default:
Expand All @@ -106,8 +101,10 @@ func (cl *ClientlogService) processEvent(event events.Event) {
return
}

noti.Type = "postprocessing-finished"
noti.ItemID = storagespace.FormatResourceID(*info.GetId())
typ = "postprocessing-finished"
data = FileReadyEvent{
ItemID: storagespace.FormatResourceID(*info.GetId()),
}

users, err = utils.GetSpaceMembers(ctx, info.GetSpace().GetId().GetOpaqueId(), gwc, utils.ViewerRole)
}
Expand All @@ -119,22 +116,22 @@ func (cl *ClientlogService) processEvent(event events.Event) {

// II) instruct sse service to send the information
for _, id := range users {
if err := cl.sendSSE(id, noti); err != nil {
if err := cl.sendSSE(id, typ, data); err != nil {
cl.log.Error().Err(err).Str("userID", id).Str("eventid", event.ID).Msg("failed to store event for user")
return
}
}
}

func (cl *ClientlogService) sendSSE(userid string, noti ClientNotification) error {
b, err := json.Marshal(noti)
func (cl *ClientlogService) sendSSE(userid string, typ string, data interface{}) error {
b, err := json.Marshal(data)
if err != nil {
return err
}

return events.Publish(context.Background(), cl.publisher, events.SendSSE{
UserID: userid,
Type: "clientlog-notification",
Type: typ,
Message: b,
})
}

0 comments on commit b59fec9

Please sign in to comment.