Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-09-05Fix typos in apps/ subdirectoryfix/fix-apps-typosluz paz
Found via `codespell -q 3 -S l10n,./apps/files_external/3rdparty -L adn,ba,boxs,keypair,jus,optionel,ressource,tabel ./apps/` Signed-off-by: luz paz <luzpaz@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-08-08Port existing server code to new interfaceCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-28Fix many issues with the testsCarl Schwan
- Return type were not correct - willReturn and with confusion Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-24Cleanup CardDav SyncServicecleanup/federation-appCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-24Summer cleanup of the federation appCarl Schwan
- Use IEventDispatcher instead of deprecated symfony dispatcher - Use LoggerInterface where possible - Use php 7.4 properties - Add type hinting where possible - Move federation hooks to a seperate listener Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-10-15Add support for Delegation Settings for more appsCarl Schwan
* This adds support for the sharing, groupware, theming and user_ldap app * This adds some code who disapeared during a rebase in the initial delegation PR (provisioning_api) Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-06-30Migrate HintException to OCPGary Kim
Signed-off-by: Gary Kim <gary@garykim.dev>
2021-06-04Update php licensesJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2021-04-27More cleaning after auto-add removalJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-04-26No longer add trusted servers on federated share creationRoeland Jago Douma
It was disabled by default for ages. And often resulted in unwanted behavior. If admins want trusted servers they just have to do it manually. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2021-03-01Fix a few RedundantCastRoeland Jago Douma
Reported by psalm For #25641 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2021-01-12Migrate internal classes to the OCP db col typesChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-01-11Remove unneeded casts that were found by PsalmMorris Jobke
In preparation of the update of Psalm from 4.2.1 to 4.3.1+ (see https://github.com/nextcloud/server/pull/24521) Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-12-30Update license headersChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-12-23Drop all dead packagesChristoph Wurst
Apparently we have plenty of leftover of previous sub-dependencies. Composer automatically dumps those with any future dependency update, so I'm dropping them in an atomic step. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-12-14Add missing parent::__construct() calls to JobsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-11-25Use proper OCP\BackgroundJobs\JobRoeland Jago Douma
And typehunt the IJobList Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-11-09Don't leave cursors open when tests failJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-26Make sure the function signatures of the backgroundjob matchRoeland Jago Douma
Else PHP says no Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-10-05Format code to a single space around binary operatorsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-08-24Update the license headers for Nextcloud 20Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-07-27Fix PSR-4 compatible namespaceJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-07-23Move federated_share_added into a typed eventMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-07-06Move federation to migrationsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-06-26Also always return in app commandsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-04-29Update license headers for 19Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Add visibility to all constantsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Format control structures, classes, methods and functionChristoph Wurst
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Use elseif instead of else ifChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Unify function spacing to PSR2 recommendationChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Use exactly one empty line after the namespace declarationChristoph Wurst
For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Fix (array) indent style to always use one tabChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-12-05Update license headersChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-11-22Some php-cs fixesRoeland Jago Douma
* Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-08-06A failing federation sync job is not an errorRoeland Jago Douma
This is an INFO warning at best. Else it spams the logs continiously. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-04-26move log constants to ILoggerArthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-04-25improve error reporting and move format parameter to the optionsBjoern Schiessle
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
2018-02-14Remove unused import statementsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-01-29Use ::class statement instead of stringMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-01-23Properly log the full exception instead of only the messageMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-12-11Catch the errors related to untrusted self signed certificates for federationRoeland Jago Douma
* Added tests Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-11-29Actually set the status so we don't cause another exceptionRoeland Jago Douma
* And add tests so I don't mess up again Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-11-29Do not log Exception if a connection error occuredRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-11-06Update license headersMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-08-02Merge pull request #5923 from nextcloud/expire-federation-jobsRoeland Jago Douma
Expire federation jobs
2017-08-02Close all the cursorsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-08-02Use automatic injection whenever possibleJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-08-01Remove explicit type hints for ControllerLukas Reschke
This is public API and breaks the middlewares of existing apps. Since this also requires maintaining two different code paths for 12 and 13 I'm at the moment voting for reverting this change. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-08-01Merge pull request #5877 from nextcloud/typehint_middlewareMorris Jobke
Prop argument type for Middleware
2017-08-01Use ITimeFactoryRoeland Jago Douma
* Inject the timefacotry so we can mock it properly in the tests. * Extended unit tests to cover the new paths Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>