Skip to content

Commit 5655275

Browse files
committed
Add the ocm notification handler
1 parent ceca411 commit 5655275

File tree

16 files changed

+376
-29
lines changed

16 files changed

+376
-29
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ vendor-php
3838
# API acceptance tests - auto-generated files
3939
.php-cs-fixer.cache
4040

41-
# QA activity reports
41+
# QA activity reports
4242
tests/qa-activity-report/reports/
4343

4444
# drone CI is in .drone.star, do not let someone accidentally commit a local .drone.yml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Enhancement: Add the ocm notification handler
2+
3+
Added the ocm notification handler that allows receiving a notification from a remote party about changes to a previously known entity.
4+
5+
https://github.com/owncloud/ocis/pull/11004
6+
https://github.com/owncloud/enterprise/issues/7075

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/cenkalti/backoff v2.2.1+incompatible
1818
github.com/coreos/go-oidc/v3 v3.11.0
1919
github.com/cs3org/go-cs3apis v0.0.0-20241105092511-3ad35d174fc1
20-
github.com/cs3org/reva/v2 v2.27.5-0.20250205144957-2a7145a1d4ad
20+
github.com/cs3org/reva/v2 v2.27.5-0.20250217133727-8aefc9e791f7
2121
github.com/davidbyttow/govips/v2 v2.16.0
2222
github.com/dhowden/tag v0.0.0-20240417053706-3d75831295e8
2323
github.com/dutchcoders/go-clamd v0.0.0-20170520113014-b970184f4d9e

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,8 @@ github.com/crewjam/saml v0.4.14 h1:g9FBNx62osKusnFzs3QTN5L9CVA/Egfgm+stJShzw/c=
251251
github.com/crewjam/saml v0.4.14/go.mod h1:UVSZCf18jJkk6GpWNVqcyQJMD5HsRugBPf4I1nl2mME=
252252
github.com/cs3org/go-cs3apis v0.0.0-20241105092511-3ad35d174fc1 h1:RU6LT6mkD16xZs011+8foU7T3LrPvTTSWeTQ9OgfhkA=
253253
github.com/cs3org/go-cs3apis v0.0.0-20241105092511-3ad35d174fc1/go.mod h1:DedpcqXl193qF/08Y04IO0PpxyyMu8+GrkD6kWK2MEQ=
254-
github.com/cs3org/reva/v2 v2.27.5-0.20250205144957-2a7145a1d4ad h1:Ae/greWkZD/skjC70ZCxDVnABxga7sqWD6GpGbDzwg0=
255-
github.com/cs3org/reva/v2 v2.27.5-0.20250205144957-2a7145a1d4ad/go.mod h1:8yvuebW1eCKzRfzNXy+RSYYEESmMp5mCuM6MQ47zJow=
254+
github.com/cs3org/reva/v2 v2.27.5-0.20250217133727-8aefc9e791f7 h1:slkg8L8rG4ei0OKwEMDZ7EY88d3cduzO53rWMY6lX+A=
255+
github.com/cs3org/reva/v2 v2.27.5-0.20250217133727-8aefc9e791f7/go.mod h1:1H26PMXoa1rDrIoZ7lGOerq1Bg07/5srYfRaKfxBSsc=
256256
github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4=
257257
github.com/cyphar/filepath-securejoin v0.2.4 h1:Ugdm7cg7i6ZK6x3xDF1oEu1nfkyfH53EtKeQYTC3kyg=
258258
github.com/cyphar/filepath-securejoin v0.2.4/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4=

vendor/github.com/cs3org/reva/v2/internal/grpc/services/gateway/ocmcore.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cs3org/reva/v2/internal/grpc/services/ocmcore/ocmcore.go

+35-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cs3org/reva/v2/internal/grpc/services/ocminvitemanager/ocminvitemanager.go

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cs3org/reva/v2/internal/grpc/services/ocmshareprovider/ocmshareprovider.go

+61-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cs3org/reva/v2/internal/http/services/ocmd/notifications.go

+102-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)