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-11-08fix repairing non user shares when repairing all sharesRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-11-08split repairing into two stages to prevent long open transactionRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-11-08update shares directly in dbRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-11-08More verbose output for repair share ownership cmdVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2022-11-08move share owner repair to occ commandRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-10-11Merge pull request #32859 from nextcloud/bug/31973/array-key-might-be-emptyLouis
Fix Uninitialized string offset 0 at GenerateMimetypeFileBuilder.php#39
2022-08-25Parameter of RepairAdvanceEvent is actually an increment, not a step idCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-08-25Surround cli output with appropriate xml tagsCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-08-25Migrate Repair events to OCP\EventDispatcher\EventCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-08-25Moving to string key for arguments of GenericEvent in RepairCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-08-01Remove OCP\App and OCP\BackgroundJobcleanup/remove-long-deprecated-classesCarl Schwan
Both deprecated since NC 23 IAppManager is the replacement for OCP\App unfortunately it can't be dependency injected in classes used by the installed otherwise the database connection is initialised too early Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-06-28Fix Uninitialized string offset 0 at GenerateMimetypeFileBuilder.php#39bug/31973/array-key-might-be-emptyDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2022-05-20Update core to PHP 7.4 standardcore-cleanup-74Carl Schwan
- Typed properties - Port to LoggerInterface Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-06-04Update php licensesJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2021-04-27Fix unit testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-03-18make repair errors more visibleRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2021-01-07Add more previous exceptions to database setup codeMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2021-01-07Print an exception trace for setup exceptionsChristoph Wurst
Right now any setup error will just result in the exception message being printed. In some cases this doesn't give any insights into what went wrong. This adds some dedicated logic to print the exception trace and any previous exceptions to the CLI. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-12-16Update all license headers for Nextcloud 21Christoph 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-08-20Don't use deprecated getIniWrapper() anymoreJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-06-26Add return value to all commandsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-05-26Remove db prefix option from cli install commandJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-05-06Fix syntaxJoas 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-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-02-05Correctly append the port to the host so it's written to the config correctlyJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
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>
2019-05-30Add function parameter typehintXheni Myrtaj
Signed-off-by: Xheni Myrtaj <myrtajxheni@gmail.com>
2019-05-29Do not fail integrity check if mimetype list is changedXheni Myrtaj
Signed-off-by: Xheni Myrtaj <myrtajxheni@gmail.com>
2019-04-18Fix #15042Temtaime
2019-02-22Make sure maintenance mode is always casted to boolJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-02-14Do not run getRepairSteps in register_commandsDaniel Kesselberg
getRepairSteps is quite expensive (because every repair step is initialized and their dependencies are injected). Should not call it during register. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2018-10-02Validate email in occ commandDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2018-10-02Add --admin-email to cli installerDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2018-07-01Adds an info if the maintenance mode is already enabled/disabled.Michael Weimann
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-02-14Remove unused import statementsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-01-27Remove unneeded semicolon and parenthesesMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-01-15Fix case when overwrite URL is empty during setupMorris Jobke
Found while testing strict typing for PHP 7+. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-12-19Merge pull request #7531 from nextcloud/ldap/createdistributedRoeland Jago Douma
don't use deprecated method for requesting memcache
2017-12-18Also replace all other occurencesMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-12-18Use injected AppManagerRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-11-25Get the Installer via DIMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-11-06Update license headersMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-10-24Use proper DI for repair commandMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-10-24Use appmanager instead of OC_App for check for enabled appMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>