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
2021-10-21Fix unit testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-10-14Send the subscription key to the appstore requestsJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2021-04-27Fix unit testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-16Only retry fetching app store data once every 5 minutes in case it failsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-08-12Change PHPDoc type hint from PHPUnit_Framework_MockObject_MockObject to ↵Morris Jobke
\PHPUnit\Framework\MockObject\MockObject Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-06-12Increase timeout of the appstore requestsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-05-20Revert "Compress the appstore requests by default"Morris Jobke
This reverts commit 6ffde128ad17a1ebe38f8d18b21a37d01b47c46b. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-05-20Compress the appstore requests by defaultMorris Jobke
In test it reduced the transfered data from 5 MB to 2 MB. This should reduce the load on the appstore significantly. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-05-20Cache appstore requests for 60 instead of 5 minutesMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
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>
2019-12-22Restore old behavior allowing to set custom appstoreGeorg Ehrke
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
2019-11-27Mode to modern phpunitRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-11-27Make phpunit8 compatibleRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-05-14Fix testsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-11-17Fix testsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-05-12Merge pull request #4825 from nextcloud/add-timeout-appstoreLukas Reschke
Add timeout for requests to appstore
2017-05-12Fix unit testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-05-12Fix failed assertionsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-05-10Automatic injection into the FetchersJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-05-02Fix and update testsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-02-24Fix unit tests and improve appstore logicMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-01-05Add ETag validation to appstore requestsRoeland Jago Douma
* If the ETag if present store it * If a stored ETag is present then pass it along (with the original response) to get * Add tests * Added files to classmap Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2016-12-16Clear appstore cache on version upgradeRoeland Jago Douma
* Add version to cached json * Compare version * Updated calls * Updated tests Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2016-11-24Loop for newest version in appstore responseLukas Reschke
The current implementation when fetching apps from the appstore is to assume that the first element is the newest version, this is now always applicable and leads to the fact that for some apps (e.g. nextant) the newest version is not delivered. This can be easily tested by comparing the version of the downloaded Nextant version. This change will loop over all releases delivered by the appstore and chooses the newest compatible one. While not the cleanest solution, it does its job. Most of the code are actually unit tests. Whereas I have copied the whole original response from the appstore and also have performed the transformation. So that's why the diff looks so huge. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2016-10-31Use new appstore APILukas Reschke
This change introduces the new appstore API in Nextcloud. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>