Commit Graph

11511 Commits

Author SHA1 Message Date
Florian Schade
6bd601a46f bump copyright 2022-11-03 14:57:37 +01:00
kobergj
92d3f77ab8 Readme for Auth-Basic (#4919)
* readme for the auth-basic service

Signed-off-by: jkoberg <jkoberg@owncloud.com>

* Apply suggestions from code review

* Apply suggestions from code review

Co-authored-by: Jörn Friedrich Dreyer <jfd@butonic.de>

* Update services/auth-basic/README.md

Co-authored-by: Martin <github@diemattels.at>

Signed-off-by: jkoberg <jkoberg@owncloud.com>
Co-authored-by: Martin <github@diemattels.at>
Co-authored-by: Jörn Friedrich Dreyer <jfd@butonic.de>
2022-11-03 14:24:22 +01:00
dependabot[bot]
036829ecbe Bump github.com/go-micro/plugins/v4/server/http from 1.1.1 to 1.2.0 (#4963)
Bumps [github.com/go-micro/plugins/v4/server/http](https://github.com/go-micro/plugins) from 1.1.1 to 1.2.0.
- [Release notes](https://github.com/go-micro/plugins/releases)
- [Commits](https://github.com/go-micro/plugins/compare/v4/server/grpc/v1.1.1...v4/auth/jwt/v1.2.0)

---
updated-dependencies:
- dependency-name: github.com/go-micro/plugins/v4/server/http
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-03 14:19:58 +01:00
Michael Barz
8371de7056 Merge pull request #4964 from aduffeck/rescan-less-aggressively
Reindex less aggressively
2022-11-03 14:11:53 +01:00
David Christofas
1dec463216 Automated changelog update [skip ci] 2022-11-03 12:25:50 +00:00
David Christofas
3125459415 [full-ci]fallback to stored roles (#4890)
* fallback to stored roles

If there are no roles in the current context load the user's roles from the storage.

* some code clean up
2022-11-03 13:25:21 +01:00
André Duffeck
cfb4f45f8d Fix indentation 2022-11-03 13:22:44 +01:00
André Duffeck
12bdf29ac4 Change the default reindex debounce duration to 1s.
Also make it configurable using an env var.
2022-11-03 13:15:54 +01:00
Martin
5602668634 Add the missing auth providers to AUTH_BASIC_AUTH_PROVIDER description (#4923)
* Add the missing auth providers to AUTH_BASIC_AUTH_PROVIDER description

* fix strings on more locations

* WOPIDriver

* Apply suggestions from code review

* Update services/users/pkg/config/config.go
2022-11-03 12:31:57 +01:00
dependabot[bot]
968bf088d0 Bump github.com/go-micro/plugins/v4/wrapper/breaker/gobreaker (#4962)
Bumps [github.com/go-micro/plugins/v4/wrapper/breaker/gobreaker](https://github.com/go-micro/plugins) from 1.1.0 to 1.2.0.
- [Release notes](https://github.com/go-micro/plugins/releases)
- [Commits](https://github.com/go-micro/plugins/compare/v3/auth/jwt/v1.1.0...v4/auth/jwt/v1.2.0)

---
updated-dependencies:
- dependency-name: github.com/go-micro/plugins/v4/wrapper/breaker/gobreaker
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-03 12:28:28 +01:00
Ralf Haferkamp
b24d126b30 Introduce TLS Settings for go-micro based http services
TLS for the services can be configure by setting the "OCIS_HTTP_TLS_ENABLED",
"OCIS_HTTP_TLS_CERTIFICATE" and "OCIS_HTTP_TLS_KEY" environment variables.
Currently the ocis proxy is this only service that directly accesses backend
services. It determines whether to use TLS or not by looking a the new registry
metadata "use_tls". As specific CA Cert for certificate verification
can be set with the "PROXY_HTTPS_CACERT" environment variable.
2022-11-03 11:58:53 +01:00
Ralf Haferkamp
cbe41fb85f Add method for creating in-memory certificates 2022-11-03 11:58:53 +01:00
Ralf Haferkamp
a4f5682851 Switch proxy defaults to use go-micro registry everywhere
This makes the default configuration somewhat easier. There doesn't
seem to be a specific reason why some services were still using a
static backend configuration.
2022-11-03 11:58:53 +01:00
kobergj
d161ad3a08 Automated changelog update [skip ci] 2022-11-03 10:39:58 +00:00
kobergj
a5bccc2807 Validate Space Names (#4955)
* validate space names

Signed-off-by: jkoberg <jkoberg@owncloud.com>

* Update services/graph/pkg/service/v0/drives.go

Co-authored-by: Michael Barz <michael.barz@zeitgestalten.eu>

Signed-off-by: jkoberg <jkoberg@owncloud.com>
Co-authored-by: Michael Barz <michael.barz@zeitgestalten.eu>
2022-11-03 11:39:02 +01:00
David Christofas
ac6d53d317 Merge pull request #4960 from owncloud/ocis-readme
add a README to the ocis package
2022-11-03 10:44:58 +01:00
Ralf Haferkamp
06d4a80bc3 Automated changelog update [skip ci] 2022-11-03 09:17:48 +00:00
Ralf Haferkamp
ee974afebf [full-ci] Introduce TLS Settings for go-micro based grpc services and clients (#4901)
* Introduce TLS Settings for go-micro based grpc services and clients

TLS for the services can be configure by setting the OCIS_MICRO_GRPC_TLS_ENABLED"
"OCIS_MICRO_GRPC_TLS_CERTIFICATE" and "OCIS_MICRO_GRPC_TLS_KEY"
enviroment variables.

TLS for the clients can configured by setting the "OCIS_MICRO_GRPC_CLIENT_TLS_MODE"
and "OCIS_MICRO_GRPC_CLIENT_TLS_CACERT" variables.

By default TLS is disabled.

Co-authored-by: Martin <github@diemattels.at>

* Unify TLS configuration for all grpc services

All grpc service (whether they're based on reva) or go-micro use the
same set of config vars now.

TLS for the services can be configure by setting the OCIS_GRPC_TLS_ENABLED,
OCIS_GRPC_TLS_CERTIFICATE and OCIS_GRPC_TLS_KEY enviroment variables.

TLS for the clients can configured by setting the OCIS_GRPC_CLIENT_TLS_MODE
and OCIS_MICRO_GRPC_CLIENT_TLS_CACERT variables.

There are no individual per service config vars currently. If really
needed, per service tls configurations can be specified via config file.

Co-authored-by: Martin <github@diemattels.at>

Co-authored-by: Martin <github@diemattels.at>
2022-11-03 10:17:08 +01:00
Edith Parzefall
2e22d00801 Apply suggestions from code review
language review
2022-11-03 09:42:47 +01:00
David Christofas
56c3d9d76f add a README to the ocis package 2022-11-03 09:42:39 +01:00
Sawjan Gurung
b7482e5410 Merge pull request #4953 from owncloud/bump-core-commitid
[full-ci] [tests-only] Bump core commit id
2022-11-02 17:38:01 +05:45
Prarup Gurung
9d872eb840 Fixed line numbers in expected failures 2022-11-02 16:24:24 +05:45
Prarup Gurung
3c6a650116 Bump core commit id 2022-11-02 16:24:24 +05:45
Jörn Friedrich Dreyer
ed42a02606 clarify wording
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
2022-11-02 11:06:15 +01:00
Martin
1abcc8eb17 Apply suggestions from code review
Co-authored-by: Ralf Haferkamp <rhaferkamp@owncloud.com>
2022-11-02 11:06:15 +01:00
Jörn Friedrich Dreyer
0ace006291 add frontend readme
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
2022-11-02 11:06:15 +01:00
dependabot[bot]
aae24ae1cf Bump github.com/go-micro/plugins/v4/wrapper/monitoring/prometheus
Bumps [github.com/go-micro/plugins/v4/wrapper/monitoring/prometheus](https://github.com/go-micro/plugins) from 1.1.0 to 1.2.0.
- [Release notes](https://github.com/go-micro/plugins/releases)
- [Commits](https://github.com/go-micro/plugins/compare/v3/auth/jwt/v1.1.0...v4/auth/jwt/v1.2.0)

---
updated-dependencies:
- dependency-name: github.com/go-micro/plugins/v4/wrapper/monitoring/prometheus
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-02 10:48:46 +01:00
dependabot[bot]
6bf30da59c Bump github.com/grpc-ecosystem/grpc-gateway/v2 from 2.12.0 to 2.13.0
Bumps [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) from 2.12.0 to 2.13.0.
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/master/.goreleaser.yml)
- [Commits](https://github.com/grpc-ecosystem/grpc-gateway/compare/v2.12.0...v2.13.0)

---
updated-dependencies:
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-02 10:12:57 +01:00
Florian Schade
52d618ef50 remove expires header in no-cache cases (#4942) 2022-11-01 15:06:17 +01:00
Jörn Friedrich Dreyer
20174215d2 Automated changelog update [skip ci] 2022-11-01 12:36:29 +00:00
Jörn Friedrich Dreyer
c61b959f4d fix CORS in frontend service (#4948)
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>

Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
2022-11-01 13:33:22 +01:00
Prarup Gurung
c184bef462 Merge pull request #4947 from owncloud/refactor-feature-files
[full-ci] [tests-only] Refactored inter scenarios space
2022-11-01 16:44:13 +05:45
Prarup Gurung
9b8a729ab5 Fixed line numbers in expected failures 2022-11-01 15:54:45 +05:45
Prarup Gurung
35672b0014 Refactored feature files to make consistent inter-scenarios space 2022-11-01 15:13:14 +05:45
dependabot[bot]
a39f754afd Bump github.com/gofrs/uuid from 4.3.0+incompatible to 4.3.1+incompatible
Bumps [github.com/gofrs/uuid](https://github.com/gofrs/uuid) from 4.3.0+incompatible to 4.3.1+incompatible.
- [Release notes](https://github.com/gofrs/uuid/releases)
- [Commits](https://github.com/gofrs/uuid/compare/v4.3.0...v4.3.1)

---
updated-dependencies:
- dependency-name: github.com/gofrs/uuid
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-01 09:31:08 +01:00
Prarup Gurung
7aae4e957d Merge pull request #4944 from owncloud/bump-core-commitid
[full-ci] [tests-only] Bump core commit id
2022-11-01 11:22:27 +05:45
Prarup Gurung
cdb4383e7d Fixed line numbers in expected failures 2022-11-01 10:42:31 +05:45
Artur Neumann
64d4badb28 Merge pull request #4939 from owncloud/individual-it-patch-2
delete reference to issue 2131
2022-11-01 09:58:46 +05:45
Prarup Gurung
910c9f0b07 Bump core commit id 2022-11-01 09:20:57 +05:45
David Christofas
14622545ec Merge pull request #4943 from owncloud/dependabot/go_modules/github.com/urfave/cli/v2-2.23.0
Bump github.com/urfave/cli/v2 from 2.20.3 to 2.23.0
2022-10-31 11:54:31 +01:00
dependabot[bot]
b29c7b8935 Bump github.com/urfave/cli/v2 from 2.20.3 to 2.23.0
Bumps [github.com/urfave/cli/v2](https://github.com/urfave/cli) from 2.20.3 to 2.23.0.
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](https://github.com/urfave/cli/compare/v2.20.3...v2.23.0)

---
updated-dependencies:
- dependency-name: github.com/urfave/cli/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-31 10:02:51 +00:00
David Christofas
cd43a131d0 Merge pull request #4928 from owncloud/dependabot/go_modules/github.com/nats-io/nats-server/v2-2.9.4
Bump github.com/nats-io/nats-server/v2 from 2.9.3 to 2.9.4
2022-10-31 11:01:06 +01:00
David Christofas
7355d98b28 Merge pull request #4914 from owncloud/dependabot/go_modules/github.com/onsi/gomega-1.23.0
Bump github.com/onsi/gomega from 1.22.1 to 1.23.0
2022-10-31 10:58:56 +01:00
Phil Davis
37536d76d1 Merge pull request #4938 from owncloud/individual-it-patch-1
fix typo in beta testplan
2022-10-31 12:17:59 +05:45
Artur Neumann
5dee88f436 delete reference to issue 2131 2022-10-31 12:00:09 +05:45
Artur Neumann
a76dea5315 fix typo in beta testplan 2022-10-31 11:57:49 +05:45
Martin
ef4900d221 Merge pull request #4935 from owncloud/fix_missing_REVA_description
Add REVA_ env description for WebDav
2022-10-28 15:13:38 +02:00
Phil Davis
f5d7658d0f Merge pull request #4931 from owncloud/bump-oCIS-commit-id-for-tests-oct-28-2022
[tests-only][full-ci] bump oC/core commit ID for the tests
2022-10-28 18:30:55 +05:45
Martin
bc06dfb20a Merge pull request #4911 from owncloud/proxy-readme
add proxy README
2022-10-28 14:33:00 +02:00
Martin
f116f78702 Merge pull request #4934 from owncloud/mmattel-patch-1
Update ADOC.tmpl
2022-10-28 14:22:39 +02:00