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
path: root/tests
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 10:22:29 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 11:16:08 +0300
commit2fbad1ed72bc9ef591a6f35558eb02e7b76ffd1b (patch)
treea3da09ffec08d6c8abc3bf0fabb7f8c8a1c830f6 /tests
parent1575bd838f2e938b18b04bcdcc28e2fc24d95c45 (diff)
Fix (array) indent style to always use one tab
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r--tests/Core/Controller/CSRFTokenControllerTest.php2
-rw-r--r--tests/Core/Controller/LoginControllerTest.php12
-rw-r--r--tests/Core/Controller/LostControllerTest.php4
-rw-r--r--tests/acceptance/features/bootstrap/FilesAppContext.php14
-rw-r--r--tests/acceptance/features/bootstrap/ThemingAppContext.php12
-rw-r--r--tests/lib/Accounts/AccountsManagerTest.php2
-rw-r--r--tests/lib/AllConfigTest.php10
-rw-r--r--tests/lib/App/AppStore/Fetcher/AppFetcherTest.php2430
-rw-r--r--tests/lib/App/CodeChecker/NodeVisitorTest.php8
-rw-r--r--tests/lib/App/PlatformRepositoryTest.php10
-rw-r--r--tests/lib/AppFramework/AppTest.php2
-rw-r--r--tests/lib/AppFramework/Controller/OCSControllerTest.php2
-rw-r--r--tests/lib/AppFramework/Http/DispatcherTest.php4
-rw-r--r--tests/lib/AppFramework/Http/OCSResponseTest.php60
-rw-r--r--tests/lib/AppFramework/Routing/RoutingTest.php54
-rw-r--r--tests/lib/AppFramework/Utility/SimpleContainerTest.php350
-rw-r--r--tests/lib/Collaboration/Collaborators/MailPluginTest.php4
-rw-r--r--tests/lib/Collaboration/Collaborators/SearchTest.php30
-rw-r--r--tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php12
-rw-r--r--tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php10
-rw-r--r--tests/lib/Contacts/ContactsMenu/Providers/EMailproviderTest.php4
-rw-r--r--tests/lib/DirectEditing/ManagerTest.php4
-rw-r--r--tests/lib/ErrorHandlerTest.php2
-rw-r--r--tests/lib/Files/Type/DetectionTest.php2
-rw-r--r--tests/lib/Group/ManagerTest.php4
-rw-r--r--tests/lib/IntegrityCheck/CheckerTest.php522
-rw-r--r--tests/lib/LegacyHelperTest.php10
-rw-r--r--tests/lib/NavigationManagerTest.php6
-rw-r--r--tests/lib/Repair/ClearGeneratedAvatarCacheTest.php6
-rw-r--r--tests/lib/Share/ShareTest.php26
-rw-r--r--tests/lib/Share20/DefaultShareProviderTest.php8
-rw-r--r--tests/lib/Share20/ManagerTest.php18
-rw-r--r--tests/lib/Template/CSSResourceLocatorTest.php12
-rw-r--r--tests/lib/Template/JSResourceLocatorTest.php8
34 files changed, 1832 insertions, 1832 deletions
diff --git a/tests/Core/Controller/CSRFTokenControllerTest.php b/tests/Core/Controller/CSRFTokenControllerTest.php
index a02f84832e5..88e54ee864a 100644
--- a/tests/Core/Controller/CSRFTokenControllerTest.php
+++ b/tests/Core/Controller/CSRFTokenControllerTest.php
@@ -67,7 +67,7 @@ class CSRFTokenControllerTest extends TestCase {
$this->assertSame(Http::STATUS_OK, $response->getStatus());
$this->assertEquals([
'token' => 'toktok123'
- ], $response->getData());
+ ], $response->getData());
}
public function testGetTokenNoStrictSameSiteCookie(): void {
diff --git a/tests/Core/Controller/LoginControllerTest.php b/tests/Core/Controller/LoginControllerTest.php
index c1177d84e1e..4b2511b9ab1 100644
--- a/tests/Core/Controller/LoginControllerTest.php
+++ b/tests/Core/Controller/LoginControllerTest.php
@@ -322,9 +322,9 @@ class LoginControllerTest extends TestCase {
->expects($this->exactly(2))
->method('getSystemValue')
->willReturnMap([
- ['login_form_autocomplete', true, true],
- ['lost_password_link', '', false],
- ]);
+ ['login_form_autocomplete', true, true],
+ ['lost_password_link', '', false],
+ ]);
$user = $this->createMock(IUser::class);
$user
->expects($this->once())
@@ -370,9 +370,9 @@ class LoginControllerTest extends TestCase {
->expects($this->exactly(2))
->method('getSystemValue')
->willReturnMap([
- ['login_form_autocomplete', true, true],
- ['lost_password_link', '', false],
- ]);
+ ['login_form_autocomplete', true, true],
+ ['lost_password_link', '', false],
+ ]);
$user = $this->createMock(IUser::class);
$user->expects($this->once())
->method('canChangePassword')
diff --git a/tests/Core/Controller/LostControllerTest.php b/tests/Core/Controller/LostControllerTest.php
index 750547473b1..4c416947008 100644
--- a/tests/Core/Controller/LostControllerTest.php
+++ b/tests/Core/Controller/LostControllerTest.php
@@ -695,7 +695,7 @@ class LostControllerTest extends \Test\TestCase {
$expectedResponse = [
'status' => 'error',
'msg' => 'Couldn\'t reset password because the token is invalid'
- ];
+ ];
$this->assertSame($expectedResponse, $response);
}
@@ -734,7 +734,7 @@ class LostControllerTest extends \Test\TestCase {
$expectedResponse = [
'status' => 'error',
'msg' => 'Couldn\'t reset password because the token is invalid'
- ];
+ ];
$this->assertSame($expectedResponse, $response);
}
diff --git a/tests/acceptance/features/bootstrap/FilesAppContext.php b/tests/acceptance/features/bootstrap/FilesAppContext.php
index 32b01916189..6a816d7f368 100644
--- a/tests/acceptance/features/bootstrap/FilesAppContext.php
+++ b/tests/acceptance/features/bootstrap/FilesAppContext.php
@@ -33,13 +33,13 @@ class FilesAppContext implements Context, ActorAwareInterface {
*/
public static function sections() {
return [ "All files" => "files",
- "Recent" => "recent",
- "Favorites" => "favorites",
- "Shared with you" => "sharingin",
- "Shared with others" => "sharingout",
- "Shared by link" => "sharinglinks",
- "Tags" => "systemtagsfilter",
- "Deleted files" => "trashbin" ];
+ "Recent" => "recent",
+ "Favorites" => "favorites",
+ "Shared with you" => "sharingin",
+ "Shared with others" => "sharingout",
+ "Shared by link" => "sharinglinks",
+ "Tags" => "systemtagsfilter",
+ "Deleted files" => "trashbin" ];
}
/**
diff --git a/tests/acceptance/features/bootstrap/ThemingAppContext.php b/tests/acceptance/features/bootstrap/ThemingAppContext.php
index 4791a70e813..79d140b2694 100644
--- a/tests/acceptance/features/bootstrap/ThemingAppContext.php
+++ b/tests/acceptance/features/bootstrap/ThemingAppContext.php
@@ -97,7 +97,7 @@ class ThemingAppContext implements Context, ActorAwareInterface {
$colorSelectorValue = $this->getRGBArray($actor->getSession()->evaluateScript("return $('#theming-color')[0].value;"));
$inputBgColor = $this->getRGBArray($actor->getSession()->evaluateScript("return $('#theming-color').css('background-color');"));
if ($colorSelectorValue == $inputBgColor) {
- return true;
+ return true;
}
return false;
@@ -109,19 +109,19 @@ class ThemingAppContext implements Context, ActorAwareInterface {
}
private function getRGBArray ($color) {
- if (preg_match("/rgb\(\s*(\d+),\s*(\d+),\s*(\d+)\)/", $color, $matches)) {
+ if (preg_match("/rgb\(\s*(\d+),\s*(\d+),\s*(\d+)\)/", $color, $matches)) {
// Already an RGB (R, G, B) color
// Convert from "rgb(R, G, B)" string to RGB array
$tmpColor = array_splice($matches, 1);
- } else if ($color[0] === '#') {
+ } else if ($color[0] === '#') {
$color = substr($color, 1);
// HEX Color, convert to RGB array.
$tmpColor = sscanf($color, "%02X%02X%02X");
- } else {
+ } else {
PHPUnit_Framework_Assert::fail("The acceptance test does not know how to handle the color string : '$color'. "
. "Please provide # before HEX colors in your features.");
- }
- return $tmpColor;
+ }
+ return $tmpColor;
}
/**
diff --git a/tests/lib/Accounts/AccountsManagerTest.php b/tests/lib/Accounts/AccountsManagerTest.php
index 958b6fd4738..78f8503123d 100644
--- a/tests/lib/Accounts/AccountsManagerTest.php
+++ b/tests/lib/Accounts/AccountsManagerTest.php
@@ -166,7 +166,7 @@ class AccountsManagerTest extends TestCase {
if(empty($expectedData)) {
$accountManager->expects($this->never())->method('addMissingDefaultValues');
- } else {
+ } else {
$accountManager->expects($this->once())->method('addMissingDefaultValues')->with($expectedData)
->willReturn($expectedData);
}
diff --git a/tests/lib/AllConfigTest.php b/tests/lib/AllConfigTest.php
index 9e30977e29b..c0e2878de37 100644
--- a/tests/lib/AllConfigTest.php
+++ b/tests/lib/AllConfigTest.php
@@ -308,11 +308,11 @@ class AllConfigTest extends \Test\TestCase {
$value = $config->getUserValueForUsers('appFetch2', 'keyFetch1',
['userFetch1', 'userFetch2', 'userFetch3', 'userFetch5']);
$this->assertEquals([
- 'userFetch1' => 'value1',
- 'userFetch2' => 'value2',
- 'userFetch3' => 3,
- 'userFetch5' => 'value5'
- ], $value);
+ 'userFetch1' => 'value1',
+ 'userFetch2' => 'value2',
+ 'userFetch3' => 3,
+ 'userFetch5' => 'value5'
+ ], $value);
$value = $config->getUserValueForUsers('appFetch2', 'keyFetch1',
['userFetch1', 'userFetch4', 'userFetch9']);
diff --git a/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php b/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php
index f18c24f2f61..a381175b0a6 100644
--- a/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php
+++ b/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php
@@ -60,48 +60,48 @@ EOD;
static $expectedResponse = [
'data' =>
[
- 0 =>
- [
- 'id' => 'direct_menu',
- 'categories' =>
- [
- 0 => 'customization',
- ],
- 'userDocs' => '',
- 'adminDocs' => '',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/juliushaertl/direct_menu/issues',
- 'website' => '',
- 'created' => '2016-10-01T09:16:06.030994Z',
- 'lastModified' => '2016-10-06T14:01:05.584192Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '0.9.2',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/juliushaertl/direct_menu/releases/download/v0.9.2/direct_menu.tar.gz',
- 'created' => '2016-10-06T14:01:05.578297Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-10-06T14:01:05.643813Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'ERBS9G5bZ3vwCizz2Ht5DehsVJmb63bzF3aYcH7xjbDVMPagOFWdUAiLDwTeZR1n
+ 0 =>
+ [
+ 'id' => 'direct_menu',
+ 'categories' =>
+ [
+ 0 => 'customization',
+ ],
+ 'userDocs' => '',
+ 'adminDocs' => '',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/juliushaertl/direct_menu/issues',
+ 'website' => '',
+ 'created' => '2016-10-01T09:16:06.030994Z',
+ 'lastModified' => '2016-10-06T14:01:05.584192Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '0.9.2',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/juliushaertl/direct_menu/releases/download/v0.9.2/direct_menu.tar.gz',
+ 'created' => '2016-10-06T14:01:05.578297Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-10-06T14:01:05.643813Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'ERBS9G5bZ3vwCizz2Ht5DehsVJmb63bzF3aYcH7xjbDVMPagOFWdUAiLDwTeZR1n
i4gdZ73J/IjHQQJoOPwtCjgbZgLPFqL5x13CLUO9mb/33dZe/+gqEDc/3AuJ4TlA
XUdLxHRb1bwIlJOwuSr/E24452VG20WUhLXBoM0Zm7WcMxvJWo2zAWnuqnLX3dy9
cPB4PX+6JU2lUMINj8OYQmM1QnqvjG8YV0cYHbBbnSicOGwXEnni7mojsC8T0cn7
@@ -112,42 +112,42 @@ u2SqRhwybS8j4YvfjAL9RPdRfPLwf6X2gx/Y6QFrKHH0QMI/9J/ZFyoUQcqKbsHV
bkR1DTBCyDjdpNBidpa3/26675dz5IT5Zedp4BBBREQzX08cIhJx5mgqDdX3CU09
uWtzoaLi71/1BWTFAN+Y9VyfZ8/Z3Pg3vKedRJ565mztIj0geL3riEsC5YnPS0+C
+a3B9sDiiOa101EORzX3lrPqL7reEPdCxrIwN+hKFBQ=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://bitgrid.net/~jus/direct_menu_nc.png',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Direct Menu',
- 'summary' => 'Provide easy access to all apps in the header.',
- 'description' => 'Provide easy access to all apps in the header.',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Julius Härtl',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://bitgrid.net/~jus/direct_menu_nc.png',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Direct Menu',
+ 'summary' => 'Provide easy access to all apps in the header.',
+ 'description' => 'Provide easy access to all apps in the header.',
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Julius Härtl',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEBjCCAu4CAhADMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -171,68 +171,68 @@ e/zxnB1EmeI2X5D2xceJDLB7Fy5W0EGrLixRIdFaSUommWFUm9E2hSIaNlziSBdc
G2dF9Gtu4GiQ5fuaJknaxlgXHovfqeZwZJX9o4M+Ug81AqiY7XjdiaCPdh0Tthcx
2OmWZo7UBREWenjKyFZZ/iKoqH5sdenBtpo=
-----END CERTIFICATE-----',
- ],
- 1 =>
- [
- 'id' => 'apporder',
- 'categories' =>
- [
- 0 => 'customization',
- ],
- 'userDocs' => '',
- 'adminDocs' => '',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/juliushaertl/apporder/issues',
- 'website' => '',
- 'created' => '2016-10-01T09:16:47.111889Z',
- 'lastModified' => '2016-10-12T19:50:16.038821Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '0.3.3',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/juliushaertl/apporder/releases/download/0.3.3/apporder.tar.gz',
- 'created' => '2016-10-12T19:14:10.802359Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-10-12T19:50:16.104357Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'nhlT9lhrmBxIsqh/e3RLm2NDw/U8ZvvoMyYQTLMM3H19DQmVcPYPYC9QWVTsowUzXblVaOXVGylbpKma9yOlOAqJtF3qyXecLl4+tA/Awb6BBhKPgHFdcLDAL5yy1K7/uei3SgEojMlJoI9vEK5I1C5YTh43yNH+//Im6MAuNYFUTlMXK426zdOe6ogpCI5GlYdXopqYANxcpT+WXWET6DDSM5Ev+MYwMcSAY4r8+tvARRU4ZAenRgjkBT6R5z6cD76emRax14tbV6vkjjwRcO+dQtM0tFPbd+5fsNInbauv50VzIMgjA6RnKTOI17gRsSdGlsV4vZn2aIxEPWauu6T/UohMvAE9HMn13vtbpPBSFwJAktj6yHASYGzupNQLprA0+OdyALoLZPpQAKNEXA42a4EVISBKu0EmduHJlUPeqhnIGkkGgVNWS8AWqzP2nFoPdXBgUWateiMcBTHxgEKDac5YmNc9lsXpzf1OxBaXHBhGYKuXPwIfyH3jTWb1OdwixJEuRe9dl63T9qOTRre8QWns/bMqKLibGfMtFhVB21ARJayBuX70eVvabG/2N7Y5t1zUlFygIKu51tvo3AVCRDdRrFWDvkAjxzIz5FIdALVZ+DReFYu/r4WF/w3V9rInFuEDSwb/OH4r8sQycs07tSlMyA74Y3FpjKTBxso=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://bitgrid.net/~jus/apporder-nc.gif',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'AppOrder',
- 'summary' => 'Sort apps in the menu with drag and drop',
- 'description' => '
+ ],
+ 1 =>
+ [
+ 'id' => 'apporder',
+ 'categories' =>
+ [
+ 0 => 'customization',
+ ],
+ 'userDocs' => '',
+ 'adminDocs' => '',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/juliushaertl/apporder/issues',
+ 'website' => '',
+ 'created' => '2016-10-01T09:16:47.111889Z',
+ 'lastModified' => '2016-10-12T19:50:16.038821Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '0.3.3',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/juliushaertl/apporder/releases/download/0.3.3/apporder.tar.gz',
+ 'created' => '2016-10-12T19:14:10.802359Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-10-12T19:50:16.104357Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'nhlT9lhrmBxIsqh/e3RLm2NDw/U8ZvvoMyYQTLMM3H19DQmVcPYPYC9QWVTsowUzXblVaOXVGylbpKma9yOlOAqJtF3qyXecLl4+tA/Awb6BBhKPgHFdcLDAL5yy1K7/uei3SgEojMlJoI9vEK5I1C5YTh43yNH+//Im6MAuNYFUTlMXK426zdOe6ogpCI5GlYdXopqYANxcpT+WXWET6DDSM5Ev+MYwMcSAY4r8+tvARRU4ZAenRgjkBT6R5z6cD76emRax14tbV6vkjjwRcO+dQtM0tFPbd+5fsNInbauv50VzIMgjA6RnKTOI17gRsSdGlsV4vZn2aIxEPWauu6T/UohMvAE9HMn13vtbpPBSFwJAktj6yHASYGzupNQLprA0+OdyALoLZPpQAKNEXA42a4EVISBKu0EmduHJlUPeqhnIGkkGgVNWS8AWqzP2nFoPdXBgUWateiMcBTHxgEKDac5YmNc9lsXpzf1OxBaXHBhGYKuXPwIfyH3jTWb1OdwixJEuRe9dl63T9qOTRre8QWns/bMqKLibGfMtFhVB21ARJayBuX70eVvabG/2N7Y5t1zUlFygIKu51tvo3AVCRDdRrFWDvkAjxzIz5FIdALVZ+DReFYu/r4WF/w3V9rInFuEDSwb/OH4r8sQycs07tSlMyA74Y3FpjKTBxso=',
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://bitgrid.net/~jus/apporder-nc.gif',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'AppOrder',
+ 'summary' => 'Sort apps in the menu with drag and drop',
+ 'description' => '
Enable sorting for icons inside the app menu. The order will be saved for each
user individually. Administrators can define a custom default order.
AppOrder works with the default owncloud menu as well as with the direct_menu
@@ -252,23 +252,23 @@ personal order by changing the following parameter in your config/config.php:
Users will now get redirected to the first app of the default order or to the
first app of the user order.
',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Julius Härtl',
- 'mail' => 'jus@bitgrid.net',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Julius Härtl',
+ 'mail' => 'jus@bitgrid.net',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEAzCCAusCAhAEMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -292,49 +292,49 @@ CSKtBro2jcnxzI3BvHdQcx4RAGo8sUzaqKBmsy+JmAqpCSk8f1zHR94x4Akp7n44
Tu+WGOL2Ee5U4k4XFdzeSLODWby08iU+Gx3bXTR6WIvXCYeIVsCPKK/luvfGkiSR
CpW1GUIA1cyulT4uyHf9g6BMdYVOsFQ=
-----END CERTIFICATE-----',
- ],
- 2 =>
- [
- 'id' => 'twofactor_totp',
- 'categories' =>
- [
- 0 => 'tools',
- ],
- 'userDocs' => '',
- 'adminDocs' => '',
- 'developerDocs' => '',
- 'issueTracker' => '',
- 'website' => '',
- 'created' => '2016-10-08T14:13:54.356716Z',
- 'lastModified' => '2016-10-12T14:38:56.186269Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '0.4.1',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '>=5.4.0 <7.1.0',
- 'platformVersionSpec' => '>=10.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/ChristophWurst/twofactor_totp/releases/download/0.4.1/twofactor_totp.tar.gz',
- 'created' => '2016-10-12T14:38:56.174612Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-10-12T14:38:56.248223Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '>=5.4 <=7.0',
- 'rawPlatformVersionSpec' => '>=10 <=11',
- 'signature' => 'bnwWxmHEn8xkoWbtwhC1kIrJ0dQfAI3PUtU62k+Tru/BHt1G2aVxqO8bCdghojZ7
+ ],
+ 2 =>
+ [
+ 'id' => 'twofactor_totp',
+ 'categories' =>
+ [
+ 0 => 'tools',
+ ],
+ 'userDocs' => '',
+ 'adminDocs' => '',
+ 'developerDocs' => '',
+ 'issueTracker' => '',
+ 'website' => '',
+ 'created' => '2016-10-08T14:13:54.356716Z',
+ 'lastModified' => '2016-10-12T14:38:56.186269Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '0.4.1',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '>=5.4.0 <7.1.0',
+ 'platformVersionSpec' => '>=10.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/ChristophWurst/twofactor_totp/releases/download/0.4.1/twofactor_totp.tar.gz',
+ 'created' => '2016-10-12T14:38:56.174612Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-10-12T14:38:56.248223Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '>=5.4 <=7.0',
+ 'rawPlatformVersionSpec' => '>=10 <=11',
+ 'signature' => 'bnwWxmHEn8xkoWbtwhC1kIrJ0dQfAI3PUtU62k+Tru/BHt1G2aVxqO8bCdghojZ7
zdFMlIJw4kekYFsVfLk8jzjUTZKVbNVKCdkHrVTQ0bUUryMAMLqGQ3PSRI5NX6D5
FpkvwO1coYwU0XVWF8KAS0meX0ztSkT3Mv96LLrxr8F8SrB/MGmKIE4WTjt1fAIa
ZLAVEUo/3sNFTGLYBtL3wjctrkZvJltP8abeRfls9FkRHu+rN7R3uLFzk42uZn3X
@@ -345,38 +345,38 @@ h7ro5ls+d3OQ8i3i4vdZm821Ytxdu/DQBHiVoOBarvFWwWAv2zd2VAvpTmk6J5yv
3y+csRqpEJYd9fcVMPsTu7WBRRrpBsAqdAHJcZEwak2kz1kdOgSf8FIzP1z6Q71d
Ml2RKcPeutMHHSLiGIN/h7fM5aSs49wGgGZmfz28fHVd7/U0HFSMYmkT/GMq5tMP
Iyc+QZAN4qbX8G0k/QSTkK/L4lOT2hQiQqiSqmWItMk=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Two Factor TOTP Provider',
- 'summary' => 'A Two-Factor-Auth Provider for TOTP (e.g. Google Authenticator)',
- 'description' => 'A Two-Factor-Auth Provider for TOTP (e.g. Google Authenticator)',
- ],
- ],
- 'isFeatured' => true,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Christoph Wurst',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Two Factor TOTP Provider',
+ 'summary' => 'A Two-Factor-Auth Provider for TOTP (e.g. Google Authenticator)',
+ 'description' => 'A Two-Factor-Auth Provider for TOTP (e.g. Google Authenticator)',
+ ],
+ ],
+ 'isFeatured' => true,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Christoph Wurst',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIECTCCAvECAhASMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -400,51 +400,51 @@ dIu2MkhxAZk9FZfnFkjTaAXcBHafJce7H/IEjHDEoIkFp5KnAQLHsJb4n8JeXmi9
VMgQ6yUWNuzOQMZpMIV7RMOUZHvxiX/ZWUFzXNYX0GYub6p4O2uh3LJE+xXyDf77
RBO7PLY3m4TXCeKesxZlkoGke+lnq7B8tkADdPI=
-----END CERTIFICATE-----',
- ],
- 3 =>
- [
- 'id' => 'contacts',
- 'categories' =>
- [
- 0 => 'office',
- 1 => 'organization',
- 2 => 'social',
- ],
- 'userDocs' => 'https://docs.nextcloud.com/server/11/user_manual/pim/contacts.html',
- 'adminDocs' => 'https://docs.nextcloud.com/server/11/admin_manual/configuration_server/occ_command.html?highlight=occ%20commands#dav-label',
- 'developerDocs' => 'https://github.com/nextcloud/contacts#building-the-app',
- 'issueTracker' => 'https://github.com/nextcloud/contacts/issues',
- 'website' => 'https://github.com/nextcloud/contacts#readme',
- 'created' => '2016-10-30T14:00:58.922766Z',
- 'lastModified' => '2016-11-22T22:08:01.904319Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '1.5.0',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/nextcloud/contacts/releases/download/v1.5.0/contacts.tar.gz',
- 'created' => '2016-11-22T22:08:01.861942Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-22T22:08:02.306939Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'ZqqhqtbHcNB+rzGCQ7FDIjjvHjit+dhAE1UhFgiXApkx3tmPP4nJOBAGNjHe+2Ao
+ ],
+ 3 =>
+ [
+ 'id' => 'contacts',
+ 'categories' =>
+ [
+ 0 => 'office',
+ 1 => 'organization',
+ 2 => 'social',
+ ],
+ 'userDocs' => 'https://docs.nextcloud.com/server/11/user_manual/pim/contacts.html',
+ 'adminDocs' => 'https://docs.nextcloud.com/server/11/admin_manual/configuration_server/occ_command.html?highlight=occ%20commands#dav-label',
+ 'developerDocs' => 'https://github.com/nextcloud/contacts#building-the-app',
+ 'issueTracker' => 'https://github.com/nextcloud/contacts/issues',
+ 'website' => 'https://github.com/nextcloud/contacts#readme',
+ 'created' => '2016-10-30T14:00:58.922766Z',
+ 'lastModified' => '2016-11-22T22:08:01.904319Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '1.5.0',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/nextcloud/contacts/releases/download/v1.5.0/contacts.tar.gz',
+ 'created' => '2016-11-22T22:08:01.861942Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-22T22:08:02.306939Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'ZqqhqtbHcNB+rzGCQ7FDIjjvHjit+dhAE1UhFgiXApkx3tmPP4nJOBAGNjHe+2Ao
VcTIX2SrWEfieRrA4Gp+0k7pUPWag1Z0T1OVOwO4cmS1AVFyGIOE1bRvDhMfsWTU
4CI4oXaKBFAY6mtnf7VJ7EeIdNqhImkohyWDQ88NiPRLM1XNkJJk6AvZBcT0fvCv
o145X4dLpbixSXsN99QFNJ/oXvK+9tBGwTd5i/WnNFY90vcNRLia8aRo7SA0YJRx
@@ -455,54 +455,54 @@ Me1EZcde8SLEpTbCWYIfIw/O9Fkp5cWD/dAqoiO6g+gNxSZ/gGp57qoGfFxn7d/x
H3aH8GljatAFjrwItw1JzR0THt0ukkOK+bw/pfCslk10sjHMitmz/GXa4qMS91DZ
BKLUd0dSfQUQzkfwcojImbzJRvca4/DYe3mfG7+RCH0tDL6t72dKL9joB++u5R1u
VZPgkToexlXcKWpiDB8H2/SEShKr4udAOjR5de9CYWM=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://raw.githubusercontent.com/nextcloud/screenshots/master/apps/Contacts/contacts.png',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Contacts',
- 'summary' => 'The new and improved app for your Contacts.',
- 'description' => 'The new and improved app for your Contacts.',
- ],
- ],
- 'isFeatured' => true,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Alexander Weidinger',
- 'mail' => '',
- 'homepage' => '',
- ],
- 1 =>
- [
- 'name' => 'Jan-Christoph Borchardt',
- 'mail' => '',
- 'homepage' => '',
- ],
- 2 =>
- [
- 'name' => 'Hendrik Leppelsack',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/nextcloud/screenshots/master/apps/Contacts/contacts.png',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Contacts',
+ 'summary' => 'The new and improved app for your Contacts.',
+ 'description' => 'The new and improved app for your Contacts.',
+ ],
+ ],
+ 'isFeatured' => true,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Alexander Weidinger',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ 1 =>
+ [
+ 'name' => 'Jan-Christoph Borchardt',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ 2 =>
+ [
+ 'name' => 'Hendrik Leppelsack',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEAzCCAusCAhATMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -526,49 +526,49 @@ iuPit2pjkw3nWz0JRHneRXz/BNoAWBnJiV7JMF2xwBAHN4ghTM8NSJzrGTurmpMI
Gld7yCP47xNPaAZEC66odcClvNtJ2Clgp8739jD6uJJCqcKDejeef0VU1PG7AXId
52bVrGMxJwOuL1393vKxGH0PHDzcB1M=
-----END CERTIFICATE-----',
- ],
- 4 =>
- [
- 'id' => 'mail',
- 'categories' =>
- [
- 0 => 'tools',
- ],
- 'userDocs' => '',
- 'adminDocs' => 'https://github.com/nextcloud/mail#readme',
- 'developerDocs' => '',
- 'issueTracker' => '',
- 'website' => '',
- 'created' => '2016-10-19T19:41:41.710285Z',
- 'lastModified' => '2016-10-19T19:57:33.689238Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '0.6.0',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '>=5.4.0 <7.1.0',
- 'platformVersionSpec' => '>=10.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/nextcloud/mail/releases/download/v0.6.0/mail.tar.gz',
- 'created' => '2016-10-19T19:57:33.676730Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-10-19T19:57:33.834580Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '>=5.4 <=7.0',
- 'rawPlatformVersionSpec' => '>=10 <=11',
- 'signature' => 'VbMsvDpt+gSPeFM8LrZXEK10rk8kkLlgCcblgqNdCSeGZeVpwDAYv3CccVSLa0+l
+ ],
+ 4 =>
+ [
+ 'id' => 'mail',
+ 'categories' =>
+ [
+ 0 => 'tools',
+ ],
+ 'userDocs' => '',
+ 'adminDocs' => 'https://github.com/nextcloud/mail#readme',
+ 'developerDocs' => '',
+ 'issueTracker' => '',
+ 'website' => '',
+ 'created' => '2016-10-19T19:41:41.710285Z',
+ 'lastModified' => '2016-10-19T19:57:33.689238Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '0.6.0',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '>=5.4.0 <7.1.0',
+ 'platformVersionSpec' => '>=10.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/nextcloud/mail/releases/download/v0.6.0/mail.tar.gz',
+ 'created' => '2016-10-19T19:57:33.676730Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-10-19T19:57:33.834580Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '>=5.4 <=7.0',
+ 'rawPlatformVersionSpec' => '>=10 <=11',
+ 'signature' => 'VbMsvDpt+gSPeFM8LrZXEK10rk8kkLlgCcblgqNdCSeGZeVpwDAYv3CccVSLa0+l
lTSqQ0VIoH+OIU6vIQNBKHmSCzTplk7OrY0+L5FajXx8LnBaOh892GfGSlEt1neN
KyM0i0uOjO/xpCP/NoUlgkz6hnmYY5XEdN6DTsJtJ/XZhDQ45IYuIkMkHE/eFehS
0JnOagIz+PSipeBY2Ry+tV8YbRa7bC1JAvZzlod0dyI015AHZESeitRUY+MwMWkt
@@ -579,11 +579,11 @@ sP8OrkQFooL4E7S4BWfdSiN/a8jUITJQkuXp/OVrVGeCupLWJh7qegUw6DvoqyGy
D4c6b+qYn68kx3CLaPPiz+tFAZQZQdj7+Kx/lohso8yTnVSiGYrMj4IvvCbpsQjg
WF3WSqF/K/tTnPYTWb9NUPSihTbVNv6AXOfTsPEp/ba2YSS5DjvjVjkr5vhR9eg1
ikQ3Cw6lW3vaA4LVCC+hFkMRnI4N0bo5qQavP3PnZPc=',
- 'translations' =>
- [
- 'en' =>
- [
- 'changelog' => '### Added
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'changelog' => '### Added
- Alias support
[#1523](https://github.com/owncloud/mail/pull/1523) @tahaalibra
- New incoming messages are prefetched
@@ -616,37 +616,37 @@ ikQ3Cw6lW3vaA4LVCC+hFkMRnI4N0bo5qQavP3PnZPc=',
[#1603](https://github.com/owncloud/mail/pull/1603) @ChristophWurst
- Update folder counters when reading/deleting messages
[#1585](https://github.com/owncloud/mail/pull/1585)',
- ],
- ],
- ],
- ],
- 'screenshots' =>
- [
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Mail',
- 'summary' => 'Easy to use email client which connects to your mail server via IMAP and SMTP.',
- 'description' => 'Easy to use email client which connects to your mail server via IMAP and SMTP.',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Christoph Wurst, Thomas Müller, Jan-Christoph Borchardt, Steffen Lindner & many more …',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ ],
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Mail',
+ 'summary' => 'Easy to use email client which connects to your mail server via IMAP and SMTP.',
+ 'description' => 'Easy to use email client which connects to your mail server via IMAP and SMTP.',
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Christoph Wurst, Thomas Müller, Jan-Christoph Borchardt, Steffen Lindner & many more …',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIID/zCCAucCAhAVMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -670,99 +670,99 @@ ZETmzhx0BXDt5enJYs8R2KMYJNIme1easQRYmWKliXogNY09W7ifT9FHtVW1HX+K
xRS4JXbapjolkxyGSpP+iYSgItVnYzl6o9KZResR4yDsBv7G/8fpV4GQU9IS3zLD
PiZOosVHWJdpUKCw9V4P1prGTQ==
-----END CERTIFICATE-----',
- ],
- 5 =>
- [
- 'id' => 'audioplayer',
- 'categories' =>
- [
- 0 => 'multimedia',
- ],
- 'userDocs' => 'https://github.com/rello/audioplayer/wiki#user-documentation',
- 'adminDocs' => 'https://github.com/rello/audioplayer/wiki#admin-documentation',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/rello/audioplayer/issues',
- 'website' => 'https://github.com/rello/audioplayer',
- 'created' => '2016-09-16T05:44:24.857567Z',
- 'lastModified' => '2016-11-17T22:34:34.637028Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '1.3.1',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '>=5.4.0',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/Rello/audioplayer/releases/download/1.3.1/audioplayer-1.3.1.tar.gz',
- 'created' => '2016-11-17T22:34:34.215350Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-17T22:34:34.867778Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '>=5.4',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'p6Zz0IEFrxvw6y/3jHgGWWCxR6qpMzvU2HKfxcIVsK6sJnoRUhWLeAXwZ432fH2a S2llj+IGS9OvW+5VQElrXgPtEjDK1BT00DRJnp5RFCRlUv0LNoedJMzx6B6AHqPP JBufk3cG1O/CO0M0L1ITGSmSOzfKvWTRo3lxVGF792NyBaP/SyZCkH1N1TzBQzUi Ywl3+HiglPcXbHjtJm/arnKorbJWVKoaN93xFuaBapd2ozQSpi0fE0uGRsici+U7 HNa1M5WFE1rzUJoufE0E9246At07rFY1e+TdNEq8IlLgCXg5vGCKkEyuWpWno6aX LfRaIiT9x39UTAwNvuDKS0c+n4uWDYPsGfKhDx9N7CXpUrthfXVEWRzZEXG7as10 6ANvrRPJemSZH8FUSrdJhD7k12qa9R825y7mIG68Li8P71V92EOxFfo9tNXqXwBt VuDGxBqByFVPqSCj5I8hrzJzQl2Xt40g8+8ZcSF96RMg/pM+bwRMTv+mz0V+vQQ4 DWjqnWVPalaJ1PPD5/QFFErtXuNRbyxKZ6BMWxfJlLM9Kz66P75K+8fYaSwz+2KG NxY7I3svzS2K9LGH3fBLUy1t3Hl+c3zGFq/ll1MJrf9NswV4yxt2WmISfM/KDww8 yELkGs2cRzbw2tCvnmYlJJhIqRLkyFAbDzWRH/XdVx4=',
- 'translations' =>
- [
- 'en' =>
- [
- 'changelog' => '2016-11-17
+ ],
+ 5 =>
+ [
+ 'id' => 'audioplayer',
+ 'categories' =>
+ [
+ 0 => 'multimedia',
+ ],
+ 'userDocs' => 'https://github.com/rello/audioplayer/wiki#user-documentation',
+ 'adminDocs' => 'https://github.com/rello/audioplayer/wiki#admin-documentation',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/rello/audioplayer/issues',
+ 'website' => 'https://github.com/rello/audioplayer',
+ 'created' => '2016-09-16T05:44:24.857567Z',
+ 'lastModified' => '2016-11-17T22:34:34.637028Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '1.3.1',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '>=5.4.0',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/Rello/audioplayer/releases/download/1.3.1/audioplayer-1.3.1.tar.gz',
+ 'created' => '2016-11-17T22:34:34.215350Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-17T22:34:34.867778Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '>=5.4',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'p6Zz0IEFrxvw6y/3jHgGWWCxR6qpMzvU2HKfxcIVsK6sJnoRUhWLeAXwZ432fH2a S2llj+IGS9OvW+5VQElrXgPtEjDK1BT00DRJnp5RFCRlUv0LNoedJMzx6B6AHqPP JBufk3cG1O/CO0M0L1ITGSmSOzfKvWTRo3lxVGF792NyBaP/SyZCkH1N1TzBQzUi Ywl3+HiglPcXbHjtJm/arnKorbJWVKoaN93xFuaBapd2ozQSpi0fE0uGRsici+U7 HNa1M5WFE1rzUJoufE0E9246At07rFY1e+TdNEq8IlLgCXg5vGCKkEyuWpWno6aX LfRaIiT9x39UTAwNvuDKS0c+n4uWDYPsGfKhDx9N7CXpUrthfXVEWRzZEXG7as10 6ANvrRPJemSZH8FUSrdJhD7k12qa9R825y7mIG68Li8P71V92EOxFfo9tNXqXwBt VuDGxBqByFVPqSCj5I8hrzJzQl2Xt40g8+8ZcSF96RMg/pM+bwRMTv+mz0V+vQQ4 DWjqnWVPalaJ1PPD5/QFFErtXuNRbyxKZ6BMWxfJlLM9Kz66P75K+8fYaSwz+2KG NxY7I3svzS2K9LGH3fBLUy1t3Hl+c3zGFq/ll1MJrf9NswV4yxt2WmISfM/KDww8 yELkGs2cRzbw2tCvnmYlJJhIqRLkyFAbDzWRH/XdVx4=',
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'changelog' => '2016-11-17
- fix: one-click-play for wav not working
- fix: wrong sql statement for PostgreSQL [#90](https://github.com/rello/audioplayer/issues/90)',
- ],
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://github.com/rello/screenshots/raw/master/audioplayer_main.png',
- ],
- 1 =>
- [
- 'url' => 'https://github.com/rello/screenshots/raw/master/audioplayer_lists.png',
- ],
- 2 =>
- [
- 'url' => 'https://github.com/rello/screenshots/raw/master/audioplayer_share.png',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Audio Player',
- 'summary' => 'Audio Player for ownCloud and Nextcloud',
- 'description' => 'Audio Player for MP3, MP4, Ogg, and Wave with a lot of flexibility for all your needs.',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Marcel Scherello',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ ],
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://github.com/rello/screenshots/raw/master/audioplayer_main.png',
+ ],
+ 1 =>
+ [
+ 'url' => 'https://github.com/rello/screenshots/raw/master/audioplayer_lists.png',
+ ],
+ 2 =>
+ [
+ 'url' => 'https://github.com/rello/screenshots/raw/master/audioplayer_share.png',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Audio Player',
+ 'summary' => 'Audio Player for ownCloud and Nextcloud',
+ 'description' => 'Audio Player for MP3, MP4, Ogg, and Wave with a lot of flexibility for all your needs.',
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Marcel Scherello',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEBjCCAu4CAhAIMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -786,49 +786,49 @@ zi7mQDFxmAE6FWSMBgKKUb4tqLc5oBap8e12tPEZl/UR6d9iUB2ltvrm3T3vrjjl
FNvGFVBn4r5qCiChEoq+rCXHRjPi/eCfbW21XeLFDiLxapcZyc85JIcA7znUYoFe
P7Y/ekMscwWhLbF91OaQlcWpRtEMyde/DaI=
-----END CERTIFICATE-----',
- ],
- 6 =>
- [
- 'id' => 'calendar',
- 'categories' =>
- [
- 0 => 'organization',
- ],
- 'userDocs' => 'https://docs.nextcloud.com/server/10/user_manual/pim/calendar.html',
- 'adminDocs' => '',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/nextcloud/calendar/issues',
- 'website' => 'https://github.com/nextcloud/calendar/',
- 'created' => '2016-10-01T12:40:39.060903Z',
- 'lastModified' => '2016-11-22T20:31:13.029921Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '1.4.1',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/nextcloud/calendar/releases/download/v1.4.1/calendar.tar.gz',
- 'created' => '2016-11-22T20:31:13.020268Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-22T20:31:13.087340Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'nThwe9CJBCan9nuDLdhfBiQyPhmum6Aa0UcYsIDdhGMw+C2acf81KhEmBJuTTWxo
+ ],
+ 6 =>
+ [
+ 'id' => 'calendar',
+ 'categories' =>
+ [
+ 0 => 'organization',
+ ],
+ 'userDocs' => 'https://docs.nextcloud.com/server/10/user_manual/pim/calendar.html',
+ 'adminDocs' => '',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/nextcloud/calendar/issues',
+ 'website' => 'https://github.com/nextcloud/calendar/',
+ 'created' => '2016-10-01T12:40:39.060903Z',
+ 'lastModified' => '2016-11-22T20:31:13.029921Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '1.4.1',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/nextcloud/calendar/releases/download/v1.4.1/calendar.tar.gz',
+ 'created' => '2016-11-22T20:31:13.020268Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-22T20:31:13.087340Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'nThwe9CJBCan9nuDLdhfBiQyPhmum6Aa0UcYsIDdhGMw+C2acf81KhEmBJuTTWxo
WGby6WcrcJJmeuCW+ePU91ju7Pd76RirprhVXIEceIDzSCxin+K0oZCZ1IGVIJjP
IkVehTsLuCeTBbjvz1b3k5QFyhUhvd32Xt7k5d7VARyI4OqnqYYNBtH9vvgeRrFw
AxsQr4o4axof6i3iykLg6WfWarYArY4dIuu5DkPuGPWf2bbgjwWEra4sQejhOs7G
@@ -839,68 +839,68 @@ hh1FBfA5pvCJbkJ6nr5bU4bKaffwDX1nr5h77FS5zzn0Pyd7ZIExmVmNtaeJfnfV
eFLKrUg3EvnTjvknbBxMB55h9jNJr0SAlkrmyEVm6+CE3BwRWpKB+cJMBuGiwPwv
r/ASRiJrkDThbNWAUtX70rUmCqDV6/MujLXViqOc/Q2OHvcXd1oGDccJSQT92/1z
7nonnedyYQIDqUt7u68WL8JRxp7pFsEqKLVuWSgxW3c=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://raw.githubusercontent.com/nextcloud/calendar/master/screenshots/1.png',
- ],
- 1 =>
- [
- 'url' => 'https://raw.githubusercontent.com/nextcloud/calendar/master/screenshots/2.png',
- ],
- 2 =>
- [
- 'url' => 'https://raw.githubusercontent.com/nextcloud/calendar/master/screenshots/3.png',
- ],
- 3 =>
- [
- 'url' => 'https://raw.githubusercontent.com/nextcloud/calendar/master/screenshots/4.png',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Calendar',
- 'summary' => 'Calendar GUI for Nextcloud\'s CalDAV server',
- 'description' => 'The Nextcloud calendar app is a user interface for Nextcloud\'s CalDAV server.
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/nextcloud/calendar/master/screenshots/1.png',
+ ],
+ 1 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/nextcloud/calendar/master/screenshots/2.png',
+ ],
+ 2 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/nextcloud/calendar/master/screenshots/3.png',
+ ],
+ 3 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/nextcloud/calendar/master/screenshots/4.png',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Calendar',
+ 'summary' => 'Calendar GUI for Nextcloud\'s CalDAV server',
+ 'description' => 'The Nextcloud calendar app is a user interface for Nextcloud\'s CalDAV server.
It integrates with other apps, allows you to manage calendars and events, display external calendars and invite attendees to your events',
- ],
- ],
- 'isFeatured' => true,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Georg Ehrke',
- 'mail' => '',
- 'homepage' => 'https://georg.coffee',
- ],
- 1 =>
- [
- 'name' => 'Raghu Nayyar',
- 'mail' => '',
- 'homepage' => 'http://raghunayyar.com',
- ],
- 2 =>
- [
- 'name' => 'Thomas Citharel',
- 'mail' => '',
- 'homepage' => 'https://tcit.fr',
- ],
- ],
- 'ratingRecent' => 0.94444444444444398,
- 'ratingOverall' => 0.94444444444444398,
- 'ratingNumRecent' => 9,
- 'ratingNumOverall' => 9,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ ],
+ ],
+ 'isFeatured' => true,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Georg Ehrke',
+ 'mail' => '',
+ 'homepage' => 'https://georg.coffee',
+ ],
+ 1 =>
+ [
+ 'name' => 'Raghu Nayyar',
+ 'mail' => '',
+ 'homepage' => 'http://raghunayyar.com',
+ ],
+ 2 =>
+ [
+ 'name' => 'Thomas Citharel',
+ 'mail' => '',
+ 'homepage' => 'https://tcit.fr',
+ ],
+ ],
+ 'ratingRecent' => 0.94444444444444398,
+ 'ratingOverall' => 0.94444444444444398,
+ 'ratingNumRecent' => 9,
+ 'ratingNumOverall' => 9,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEAzCCAusCAhARMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -924,49 +924,49 @@ D3xxtc17ll3B5IqrMnMHRqmOQ39Sbe56Y7T4agaIz/sUWpseo85D5kt7UAIOR+Mr
Q0Bl/QinETk72afGR46Qvc7tC1t9JjQQD3AUbEGuJdGvXjJJ9GREYu01XoODmPdT
jXXOI8XIOK6kxXhPHUc3iWu9b4KqGm0=
-----END CERTIFICATE-----',
- ],
- 8 =>
- [
- 'id' => 'ownpad',
- 'categories' =>
- [
- 0 => 'tools',
- ],
- 'userDocs' => 'https://github.com/otetard/ownpad/blob/master/README.md#mimetype-detection',
- 'adminDocs' => '',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/otetard/ownpad/issues',
- 'website' => '',
- 'created' => '2016-09-29T15:58:52.814912Z',
- 'lastModified' => '2016-11-19T17:37:52.278497Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '0.5.6',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/otetard/ownpad/releases/download/v0.5.6/ownpad.tar.gz',
- 'created' => '2016-11-19T17:37:52.234684Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-19T17:37:52.423930Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'dh+Txg1iVfqXr8+cxplNQuBZGErSnXUo0ewGwnybNMJqp8/EjEo72+zPpW3dVnhY
+ ],
+ 8 =>
+ [
+ 'id' => 'ownpad',
+ 'categories' =>
+ [
+ 0 => 'tools',
+ ],
+ 'userDocs' => 'https://github.com/otetard/ownpad/blob/master/README.md#mimetype-detection',
+ 'adminDocs' => '',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/otetard/ownpad/issues',
+ 'website' => '',
+ 'created' => '2016-09-29T15:58:52.814912Z',
+ 'lastModified' => '2016-11-19T17:37:52.278497Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '0.5.6',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/otetard/ownpad/releases/download/v0.5.6/ownpad.tar.gz',
+ 'created' => '2016-11-19T17:37:52.234684Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-19T17:37:52.423930Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'dh+Txg1iVfqXr8+cxplNQuBZGErSnXUo0ewGwnybNMJqp8/EjEo72+zPpW3dVnhY
67YCvhrm2bo+VRdFFymEfymzSJu9nWVFkGJhEwvTxPyIdAtuD5YAVrzmnR6L+H7m
7Q1nXE63ICPCAQpHkxIfIXLh25OhWeyofBB8AVsjDUNn58FEYJ8fFkr6dCgPriZS
sM2J+xtZMDYufy+xFMsVf/Q3WopjFuBjMC3qOecW76ZTwtREaswOC2RtpzUku2r1
@@ -977,46 +977,46 @@ qEC5WBgJucsFxSvkHh52v43M8jgPYBfHWEL/M/+377z3+mbuIh+BcQ+vcDdiqxTF
o3n0+gw3QYIhLEe75sUhxG6ynVUdW25AKKju1kVj3KJnZTBH1R8t8/zy4DnJG8d4
uRGqyU4BXpZjEC3nVlsC7vCncWWhxl0WZQ/MWKqsfjVAU4I88E518D6NioqMnPEJ
iCZ2x+69UCDEQyfCSKajgAYT17r3OhZei8F9KSCH8Vw=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Ownpad',
- 'summary' => '
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Ownpad',
+ 'summary' => '
Create and open Etherpad and Ethercalc documents.
',
- 'description' => '
+ 'description' => '
Ownpad is an ownCloud application that allows to create and open
Etherpad and Ethercalc documents.
This application requires to have access to an instance of
Etherpad and/or Ethercalc to work properly.
',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Olivier Tétard',
- 'mail' => 'olivier.tetard@miskin.fr',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Olivier Tétard',
+ 'mail' => 'olivier.tetard@miskin.fr',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEATCCAukCAhAPMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -1040,90 +1040,90 @@ ifneTw/Ba1d0AXBOq0c0HFyGxMPIlWe4qn5LtxH5t0wyVGeSj4jyv4nvd3ZGuAgY
EUa2uYht/z475k4+vf0YhV98iQH07GnmlfD2TDZgmOCQGKlNfJh1v88OZyLLa3dz
gRHzGwKbAiJ8T8bbpZ3e2ozXxADr
-----END CERTIFICATE-----',
- ],
- 9 =>
- [
- 'id' => 'announcementcenter',
- 'categories' =>
- [
- 0 => 'organization',
- ],
- 'userDocs' => '',
- 'adminDocs' => '',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/nextcloud/announcementcenter/issues',
- 'website' => 'https://github.com/nextcloud/announcementcenter',
- 'created' => '2016-09-14T10:38:53.939634Z',
- 'lastModified' => '2016-11-24T11:21:50.324839Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '2.0.0',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=10.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/nextcloud/announcementcenter/releases/download/v2.0.0/announcementcenter-2.0.0.tar.gz',
- 'created' => '2016-10-06T12:41:56.195206Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-10-06T12:41:56.263124Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=10 <=11',
- 'signature' => 'NVWYz73KtuoZ7ti2sluztJO5aFUc7PzhlDcg0VWyAQd1H7sk5wjw7i0bhrjw8O7M
+ ],
+ 9 =>
+ [
+ 'id' => 'announcementcenter',
+ 'categories' =>
+ [
+ 0 => 'organization',
+ ],
+ 'userDocs' => '',
+ 'adminDocs' => '',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/nextcloud/announcementcenter/issues',
+ 'website' => 'https://github.com/nextcloud/announcementcenter',
+ 'created' => '2016-09-14T10:38:53.939634Z',
+ 'lastModified' => '2016-11-24T11:21:50.324839Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '2.0.0',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=10.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/nextcloud/announcementcenter/releases/download/v2.0.0/announcementcenter-2.0.0.tar.gz',
+ 'created' => '2016-10-06T12:41:56.195206Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-10-06T12:41:56.263124Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=10 <=11',
+ 'signature' => 'NVWYz73KtuoZ7ti2sluztJO5aFUc7PzhlDcg0VWyAQd1H7sk5wjw7i0bhrjw8O7M
Lsrb+PegnsL9eMlYM2WrRom+RF1PDP482xymZf1T8vh8qcTCm3TK89xSuiSm8yoA
iWUb/Uv/ODj74wVDWqWxAFKaAG/FestCB3InOOZQqQZLzlAV0U9ziYDGNzBjFqof
9rLNxJ2IOqZOA7hhMIKhSrpA0KkSfNhBsVf8CWClYnVkZQiq0LoYkHkHIlXmXUr3
OfQFKEjtsx+bNLa6CkAaocHGHJXAofX3GQZ9cjBsjZqiTfbXfcVk0kRfz7pwL92L
I1McfJYvgMxDQG5bjRpNJw==',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://github.com/nextcloud/announcementcenter/raw/stable10/docs/AnnouncementCenterFrontpage.png',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Announcement Center',
- 'summary' => 'An announcement center for Nextcloud',
- 'description' => 'An announcement center for Nextcloud',
- ],
- ],
- 'isFeatured' => true,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Joas Schilling',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.75,
- 'ratingOverall' => 0.75,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://github.com/nextcloud/announcementcenter/raw/stable10/docs/AnnouncementCenterFrontpage.png',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Announcement Center',
+ 'summary' => 'An announcement center for Nextcloud',
+ 'description' => 'An announcement center for Nextcloud',
+ ],
+ ],
+ 'isFeatured' => true,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Joas Schilling',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.75,
+ 'ratingOverall' => 0.75,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIDDTCCAfUCAhABMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -1142,50 +1142,50 @@ sli/yAYQRTVDsXD8A3ACYT7BG31jGxyXtIHzqCci0MhZFdKKayMYkwfjZchIUtGN
JJoU8LQoHwGRtp3wutk0GlFzpEQEvSsn/Lsvvot5IfIe46tnzA6MVj5s64s5G8+Q
phhXFlzXqO/VxquPdbfYjvU=
-----END CERTIFICATE-----',
- ],
- 11 =>
- [
- 'id' => 'rainloop',
- 'categories' =>
- [
- 0 => 'social',
- 1 => 'tools',
- ],
- 'userDocs' => '',
- 'adminDocs' => '',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/RainLoop/rainloop-webmail/issues',
- 'website' => 'http://www.rainloop.net/',
- 'created' => '2016-10-20T04:17:37.217555Z',
- 'lastModified' => '2016-11-18T11:36:04.309739Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '4.26.0',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '>=5.4.0',
- 'platformVersionSpec' => '>=10.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/pierre-alain-b/rainloop-nextcloud/releases/download/v4.26.0/rainloop-4.26.0.tar.gz',
- 'created' => '2016-10-20T04:28:21.491747Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-18T11:36:04.619927Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '>=5.4',
- 'rawPlatformVersionSpec' => '>=10 <=11',
- 'signature' => 'nTYIVSB6mIwKtXIrKoVGsOGFflpLjed8jFem1VLQNtXQj4bztnNrdc4YaPIn0yzM
+ ],
+ 11 =>
+ [
+ 'id' => 'rainloop',
+ 'categories' =>
+ [
+ 0 => 'social',
+ 1 => 'tools',
+ ],
+ 'userDocs' => '',
+ 'adminDocs' => '',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/RainLoop/rainloop-webmail/issues',
+ 'website' => 'http://www.rainloop.net/',
+ 'created' => '2016-10-20T04:17:37.217555Z',
+ 'lastModified' => '2016-11-18T11:36:04.309739Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '4.26.0',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '>=5.4.0',
+ 'platformVersionSpec' => '>=10.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/pierre-alain-b/rainloop-nextcloud/releases/download/v4.26.0/rainloop-4.26.0.tar.gz',
+ 'created' => '2016-10-20T04:28:21.491747Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-18T11:36:04.619927Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '>=5.4',
+ 'rawPlatformVersionSpec' => '>=10 <=11',
+ 'signature' => 'nTYIVSB6mIwKtXIrKoVGsOGFflpLjed8jFem1VLQNtXQj4bztnNrdc4YaPIn0yzM
yLpMSqRDNzdYNFuOeDiyKLPJPTA++MotLCNjEe7kxUekek+m+qzgnGBdcT7RQT6R
p9xWGecnVx94d6aA55uiRhgQRyHpdDMMLCOz1be+HvpwHy69DRFZ1+SPmGUt6eW0
u5yS0vHCu1K22cbrVNXFKjxAOlGcIDm61oQuz7ycl3uAujZO4rZbWt55jilgKGak
@@ -1196,42 +1196,42 @@ hgFhPrg+7rf7g6UmJFOCp0dC9sBdyQ3KtJkv7bGqPr854r2cdA7xW0QHWQ2in9qQ
LhIczc32ECi3ZVVgyF8zyT4Y/3MRS05oX3FHvHyt88mjni6bVaO78F7ZRSha8gHh
NOAkku7AMXPvUCHaZP2iVCCoAViEso8GeR3O8xh2G42Ai61RLYwx8LB1+23EoJTr
mfFuRYNSg+qAKCokXNnh+lDlwu4AkaQo3vtKGPXvU7A=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://raw.githubusercontent.com/pierre-alain-b/rainloop-nextcloud/master/screenshots/2016.10.20-screenshot.jpg',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'RainLoop',
- 'summary' => 'RainLoop Webmail',
- 'description' => 'Simple, modern and fast web-based email client.',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'RainLoop Team',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/pierre-alain-b/rainloop-nextcloud/master/screenshots/2016.10.20-screenshot.jpg',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'RainLoop',
+ 'summary' => 'RainLoop Webmail',
+ 'description' => 'Simple, modern and fast web-based email client.',
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'RainLoop Team',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEAzCCAusCAhAXMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -1255,103 +1255,103 @@ pzAeVGiABI/e5URpxzz2UayRX7EE+vtpe3B84hzkLqsq0N39ZN6KLfaTyEBGLzqE
iLYeXQTV0XSRs8xVt+iyGlj7nPkv2DR0oCqRpWUFWeSBI//niDG5WxS3qg8kacSW
fDSYhSN+IjrnIkwNtc8V9t7/GeQB5FE=
-----END CERTIFICATE-----',
- ],
- 12 =>
- [
- 'id' => 'richdocuments',
- 'categories' =>
- [
- 0 => 'integration',
- 1 => 'office',
- ],
- 'userDocs' => 'https://nextcloud.com/collaboraonline/',
- 'adminDocs' => 'https://nextcloud.com/collaboraonline/',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/owncloud/richdocuments/issues',
- 'website' => '',
- 'created' => '2016-10-31T08:55:45.631429Z',
- 'lastModified' => '2016-11-24T12:13:53.905352Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '1.1.14',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/owncloud/richdocuments/releases/download/1.1.14/richdocuments.tar.gz',
- 'created' => '2016-11-24T12:10:13.337165Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-24T12:13:53.963638Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'prDGlfRPxqT6LP0BsAFPwGww7P4Bngha2N4u5B6+F02N+RVOjGtTcXKqvM1KjZb1
+ ],
+ 12 =>
+ [
+ 'id' => 'richdocuments',
+ 'categories' =>
+ [
+ 0 => 'integration',
+ 1 => 'office',
+ ],
+ 'userDocs' => 'https://nextcloud.com/collaboraonline/',
+ 'adminDocs' => 'https://nextcloud.com/collaboraonline/',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/owncloud/richdocuments/issues',
+ 'website' => '',
+ 'created' => '2016-10-31T08:55:45.631429Z',
+ 'lastModified' => '2016-11-24T12:13:53.905352Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '1.1.14',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/owncloud/richdocuments/releases/download/1.1.14/richdocuments.tar.gz',
+ 'created' => '2016-11-24T12:10:13.337165Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-24T12:13:53.963638Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'prDGlfRPxqT6LP0BsAFPwGww7P4Bngha2N4u5B6+F02N+RVOjGtTcXKqvM1KjZb1
Co7qJvgJmjpvIvDmB+rup02i8ObfwP2ct6UdsD7ouzOWJG2sJANXK31bHyvOmQ2h
vKu5eNcOkf+WFyFKYi51TbsfWn2+1Wge3WWujKAVcEvqtcOOz+uMWNtqzBptEupk
E1aaRnQfTx488YB8Ubul06LIY0PNCHgGCWPgy817tOVT7JA+V0P0FFonl/PXE0dr
WgtxRJmvGaNiFzYq+kQmdKMfayZTm3kdVgP0W52t5wp878K0i4s2KPg5lANvjTz7
DCT+VV2IGIE52o4RpMUGyQ==',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-document.png',
- ],
- 1 =>
- [
- 'url' => 'https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-app.png',
- ],
- 2 =>
- [
- 'url' => 'https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-presentation.png',
- ],
- 3 =>
- [
- 'url' => 'https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-spreadsheet.png',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Collabora Online',
- 'summary' => 'Edit office documents directly in your browser.',
- 'description' => 'Collabora Online allows you to to work with all kinds of office documents directly in your browser. This application requires Collabora Cloudsuite to be installed on one of your servers, please read the documentation to learn more about that.',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Collabora Productivity based on work of Frank Karlitschek, Victor Dubiniuk',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-document.png',
+ ],
+ 1 =>
+ [
+ 'url' => 'https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-app.png',
+ ],
+ 2 =>
+ [
+ 'url' => 'https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-presentation.png',
+ ],
+ 3 =>
+ [
+ 'url' => 'https://nextcloud.com/wp-content/themes/next/assets/img/features/collabora-spreadsheet.png',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Collabora Online',
+ 'summary' => 'Edit office documents directly in your browser.',
+ 'description' => 'Collabora Online allows you to to work with all kinds of office documents directly in your browser. This application requires Collabora Cloudsuite to be installed on one of your servers, please read the documentation to learn more about that.',
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Collabora Productivity based on work of Frank Karlitschek, Victor Dubiniuk',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIDCDCCAfACAhAZMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -1370,70 +1370,70 @@ Ru1DXn+LW7TJ4NZ8VtLWvmW/6Kfmi7dQ1V++Kmn0lO5ntRt5altePbStCHC8bhGp
myBOrjhrJgLIwvgH26MYZhdiSkFzoE38nMPZdrUmUDxcPCwucWJqgzDPudguFthj
WCVZ3TTG/2z3+tWM
-----END CERTIFICATE-----',
- ],
- 13 =>
- [
- 'id' => 'ocr',
- 'categories' =>
- [
- 0 => 'files',
- 1 => 'tools',
- ],
- 'userDocs' => 'https://janis91.github.io/ocr/',
- 'adminDocs' => 'https://github.com/janis91/ocr/wiki',
- 'developerDocs' => 'https://github.com/janis91/ocr/wiki',
- 'issueTracker' => 'https://github.com/janis91/ocr/issues',
- 'website' => 'https://janis91.github.io/ocr/',
- 'created' => '2016-09-19T12:07:49.220376Z',
- 'lastModified' => '2016-11-21T11:22:21.024501Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '1.0.0',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- 0 =>
- [
- 'id' => 'pgsql',
- 'versionSpec' => '*',
- 'rawVersionSpec' => '*',
- ],
- 1 =>
- [
- 'id' => 'mysql',
- 'versionSpec' => '*',
- 'rawVersionSpec' => '*',
- ],
- 2 =>
- [
- 'id' => 'sqlite',
- 'versionSpec' => '*',
- 'rawVersionSpec' => '*',
- ],
- ],
- 'shellCommands' =>
- [
- 0 => 'ocrmypdf',
- 1 => 'tesseract',
- ],
- 'phpVersionSpec' => '>=5.6.0 <8.0.0',
- 'platformVersionSpec' => '>=10.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/janis91/ocr/releases/download/v1.0.0/ocr.tar.gz',
- 'created' => '2016-10-24T06:50:43.283900Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-21T11:22:21.269108Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '>=5.6 <=7',
- 'rawPlatformVersionSpec' => '>=10 <=11',
- 'signature' => 'CBJkCIiUKyf2NuWfz2zJ3grhf8p7wJes7DPV/OxUzhlxIH0Fh7K54+U5A9JOOi6f
+ ],
+ 13 =>
+ [
+ 'id' => 'ocr',
+ 'categories' =>
+ [
+ 0 => 'files',
+ 1 => 'tools',
+ ],
+ 'userDocs' => 'https://janis91.github.io/ocr/',
+ 'adminDocs' => 'https://github.com/janis91/ocr/wiki',
+ 'developerDocs' => 'https://github.com/janis91/ocr/wiki',
+ 'issueTracker' => 'https://github.com/janis91/ocr/issues',
+ 'website' => 'https://janis91.github.io/ocr/',
+ 'created' => '2016-09-19T12:07:49.220376Z',
+ 'lastModified' => '2016-11-21T11:22:21.024501Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '1.0.0',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ 0 =>
+ [
+ 'id' => 'pgsql',
+ 'versionSpec' => '*',
+ 'rawVersionSpec' => '*',
+ ],
+ 1 =>
+ [
+ 'id' => 'mysql',
+ 'versionSpec' => '*',
+ 'rawVersionSpec' => '*',
+ ],
+ 2 =>
+ [
+ 'id' => 'sqlite',
+ 'versionSpec' => '*',
+ 'rawVersionSpec' => '*',
+ ],
+ ],
+ 'shellCommands' =>
+ [
+ 0 => 'ocrmypdf',
+ 1 => 'tesseract',
+ ],
+ 'phpVersionSpec' => '>=5.6.0 <8.0.0',
+ 'platformVersionSpec' => '>=10.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/janis91/ocr/releases/download/v1.0.0/ocr.tar.gz',
+ 'created' => '2016-10-24T06:50:43.283900Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-21T11:22:21.269108Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '>=5.6 <=7',
+ 'rawPlatformVersionSpec' => '>=10 <=11',
+ 'signature' => 'CBJkCIiUKyf2NuWfz2zJ3grhf8p7wJes7DPV/OxUzhlxIH0Fh7K54+U5A9JOOi6f
WPhjXG1ylkyIVY1glr/B8svWNsD4jAclpnUi1/9ZW5UPT8LnRBfTbtF9Uoj0OgNs
tsGQYbpuREoHnjbJWTRe0kq1OsOfX44xuf8PuX43B+lpQPW4iRSSz3ZIhdPcDGq1
7pyqQM7gdKhBQ6/tOiwd7Enyt5Hi4V6jhwhUOCYeTNiLD2V3yKL+qA9DzpXUfNNw
@@ -1444,33 +1444,33 @@ GsrecNftUEhP/ngxA6lMBVkLmmdpiexVisvsavPi64i34OUA6qOuxjgNVBDwg56i
D3tJOF7spnK6I3BhVLviou/zs30AIRVBDTU0Orzx78cbInwy6/vyJib2a1olAaHz
v05SzlQRnBWM4jYBe0mA/2ds9AO6VrXGrT/iLlHemj6JYoGBM185TGewA7OJyX3a
HSlSDqaremmi+aS3onx3AKhXykDxTRkMVarePwTzzFs=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://raw.githubusercontent.com/janis91/ocr/master/screenshots/sc1.png',
- ],
- 1 =>
- [
- 'url' => 'https://raw.githubusercontent.com/janis91/ocr/master/screenshots/sc2.png',
- ],
- 2 =>
- [
- 'url' => 'https://raw.githubusercontent.com/janis91/ocr/master/screenshots/sc3.png',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'OCR',
- 'summary' => 'Character recoginition for your images and pdf files.',
- 'description' => '# Description
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/janis91/ocr/master/screenshots/sc1.png',
+ ],
+ 1 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/janis91/ocr/master/screenshots/sc2.png',
+ ],
+ 2 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/janis91/ocr/master/screenshots/sc3.png',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'OCR',
+ 'summary' => 'Character recoginition for your images and pdf files.',
+ 'description' => '# Description
Nextcloud OCR (optical character recoginition) processing for images and PDF with tesseract-ocr and OCRmyPDF brings OCR capability to your Nextcloud 10.
The app uses tesseract-ocr, OCRmyPDF and a php internal message queueing service in order to process images (png, jpeg, tiff) and PDF (currently not all PDF-types are supported, for more information see [here](https://github.com/jbarlow83/OCRmyPDF)) asynchronously and save the output file to the same folder in nextcloud, so you are able to search in it.
@@ -1488,12 +1488,12 @@ The OCR app has some prerequisites:
- **[tesseract-ocr](https://github.com/tesseract-ocr/tesseract)** &gt;v3.02.02 with corresponding language files (e.g. tesseract-ocr-eng)
For further information see the homepage or the appropriate documentation.',
- ],
- 'de' =>
- [
- 'name' => 'OCR',
- 'summary' => 'Schrifterkennung für Bilder (mit Text) und PDF Dateien.',
- 'description' => '# Beschreibung
+ ],
+ 'de' =>
+ [
+ 'name' => 'OCR',
+ 'summary' => 'Schrifterkennung für Bilder (mit Text) und PDF Dateien.',
+ 'description' => '# Beschreibung
OCR (Automatische Texterkennung) für Bilder (mit Text) und PDF Dateien mithilfe von tesseract-ocr und OCRmyPDF ermöglicht Ihnen automatische Schrifterkennung direkt in Ihrer Nextcloud 10.
Die App nutzt Tesseract-ocr, OCRmyPDF und den internen Message Queueing Service von PHP, um so asynchron (im Hintegrund) Bilder (PNG, JPEG, TIFF) und PDFs (aktuell werden nicht alle Typen unterstützt, näheres [hier](https://github.com/jbarlow83/OCRmyPDF)) zu verarbeiten. Das Ergebnis, welches jetzt durchsuchbar, kopierbar und ähnliches ist, wird anschließend im selben Ordner gespeichert, wie die Ursprungsdatei.
@@ -1511,23 +1511,23 @@ Für die OCR App müssen folgende Anforderungen erfüllt sein:
- **[tesseract-ocr](https://github.com/tesseract-ocr/tesseract)** &gt;v3.02.02 mit den dazugehörigen Übersetzungs- und Sprachdateien (z. B. tesseract-ocr-deu)
Für weiter Informationen besuchen Sie die Homepage oder lesen Sie die zutreffende Dokumentation.',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Janis Koehr',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Janis Koehr',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIID/jCCAuYCAhAKMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -1551,49 +1551,49 @@ HR7qPCNz4uG2Va7mlUHE3UYUYnlv8JFOV3YdbVL0nxhWwIdzSri5sxFIhdlabpzY
yA1z/MCBEyTRo80jxFmL+MpwbsdbUJi7Qxlnd56zb6HHDGrLHXZTh9LXgyVbnhWL
kxomWjIXQh4aMHQL4QF7U4EK
-----END CERTIFICATE-----',
- ],
- 14 =>
- [
- 'id' => 'spreedme',
- 'categories' =>
- [
- 0 => 'tools',
- ],
- 'userDocs' => 'https://github.com/strukturag/nextcloud-spreedme/blob/master/README.md',
- 'adminDocs' => 'https://github.com/strukturag/nextcloud-spreedme/blob/master/README.md',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/strukturag/nextcloud-spreedme/issues',
- 'website' => '',
- 'created' => '2016-09-27T08:43:07.835196Z',
- 'lastModified' => '2016-11-21T16:51:23.703819Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '0.3.4',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://apps.owncloud.com/CONTENT/content-files/174436-spreedme.tar.gz',
- 'created' => '2016-11-21T16:51:23.689599Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-21T16:51:23.826509Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'Mhy3hXeGWlIujx1Op39MMRdqHYOo360BCwr4FPWoTNNggH3aS0gWlh48DAfGYK9W
+ ],
+ 14 =>
+ [
+ 'id' => 'spreedme',
+ 'categories' =>
+ [
+ 0 => 'tools',
+ ],
+ 'userDocs' => 'https://github.com/strukturag/nextcloud-spreedme/blob/master/README.md',
+ 'adminDocs' => 'https://github.com/strukturag/nextcloud-spreedme/blob/master/README.md',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/strukturag/nextcloud-spreedme/issues',
+ 'website' => '',
+ 'created' => '2016-09-27T08:43:07.835196Z',
+ 'lastModified' => '2016-11-21T16:51:23.703819Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '0.3.4',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://apps.owncloud.com/CONTENT/content-files/174436-spreedme.tar.gz',
+ 'created' => '2016-11-21T16:51:23.689599Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-21T16:51:23.826509Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'Mhy3hXeGWlIujx1Op39MMRdqHYOo360BCwr4FPWoTNNggH3aS0gWlh48DAfGYK9W
etNiOqIuRyA0NrVlsqR2vDILgFtODJSbKPyHd3PQn3hcGsjogjQ+dkKciLNLinw7
Ohbv6aDdRFLBeRHpX/7wOnWL5W3ko/gyn0Awvi88M9+nC5aARtqncQqPy2SxDGzH
KlOZHSNDnEQCGMhA8hNWWKdVwNUJHod/wmBWpW5QVNSJq5DqrKZcNwpGM2UUJoql
@@ -1604,54 +1604,54 @@ bOks45K5gE1da4QpkYOUQa3GVMNPqPiT3CqjmJ8tjxq7bGpb6v+YoCLACjjPpPZL
2Y28qLxwHVaINDFUUxD75WWdrlulRbqHwiSw8jolP9qrpXhDuLAqYam9tRwV5K5R
8uNawnFwWkicBEYkN/WtBTouWzehOPn38tHXov6SyEyD6lkuxUBZrsGQ2ru+t33U
k0kKCbV0GFw43I+3Ji5DiB4TUVNZYVoPG1B7Qve+UfA=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://raw.githubusercontent.com/strukturag/nextcloud-spreedme/master/screenshots/appstore/conference.gif',
- ],
- 1 =>
- [
- 'url' => 'https://raw.githubusercontent.com/strukturag/nextcloud-spreedme/master/screenshots/appstore/presentation.png',
- ],
- 2 =>
- [
- 'url' => 'https://raw.githubusercontent.com/strukturag/nextcloud-spreedme/master/screenshots/appstore/import.png',
- ],
- 3 =>
- [
- 'url' => 'https://raw.githubusercontent.com/strukturag/nextcloud-spreedme/master/screenshots/appstore/users.png',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Spreed.ME',
- 'summary' => 'Audio-, video- and text chat for your Nextcloud',
- 'description' => 'Securely communicate with your friends and family using rich audio-, video- and text chat, and much more right from your Nextcloud – in your browser',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'struktur AG',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/strukturag/nextcloud-spreedme/master/screenshots/appstore/conference.gif',
+ ],
+ 1 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/strukturag/nextcloud-spreedme/master/screenshots/appstore/presentation.png',
+ ],
+ 2 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/strukturag/nextcloud-spreedme/master/screenshots/appstore/import.png',
+ ],
+ 3 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/strukturag/nextcloud-spreedme/master/screenshots/appstore/users.png',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Spreed.ME',
+ 'summary' => 'Audio-, video- and text chat for your Nextcloud',
+ 'description' => 'Securely communicate with your friends and family using rich audio-, video- and text chat, and much more right from your Nextcloud – in your browser',
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'struktur AG',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEAzCCAusCAhANMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -1675,50 +1675,50 @@ axCNzc7veb2M98hS73w5ZE6vO+C/wz0GTsxuK0AoLitApT5naQnjvxSvSsjFPEGD
sUNUEU2Decyp0jxLVnrrpz6Y5UupfBR0V8yAv1t5Od/mCKLc5DxHsDWiKOpsob9U
JN+bdzJil2NNftihD4Dm7Ha7OS3O8W0=
-----END CERTIFICATE-----',
- ],
- 15 =>
- [
- 'id' => 'nextant',
- 'categories' =>
- [
- 0 => 'files',
- 1 => 'tools',
- ],
- 'userDocs' => '',
- 'adminDocs' => 'https://github.com/nextcloud/nextant/wiki',
- 'developerDocs' => '',
- 'issueTracker' => 'https://github.com/nextcloud/nextant/issues',
- 'website' => 'https://github.com/nextcloud/nextant/wiki',
- 'created' => '2016-09-14T14:34:35.977699Z',
- 'lastModified' => '2016-11-22T16:02:57.758477Z',
- 'releases' =>
- [
- 0 =>
- [
- 'version' => '0.6.6',
- 'phpExtensions' =>
- [
- ],
- 'databases' =>
- [
- ],
- 'shellCommands' =>
- [
- ],
- 'phpVersionSpec' => '*',
- 'platformVersionSpec' => '>=9.0.0 <12.0.0',
- 'minIntSize' => 32,
- 'download' => 'https://github.com/nextcloud/nextant/releases/download/v0.6.6/nextant-0.6.6.tar.gz',
- 'created' => '2016-11-16T15:11:14.344704Z',
- 'licenses' =>
- [
- 0 => 'agpl',
- ],
- 'lastModified' => '2016-11-16T20:39:59.030384Z',
- 'isNightly' => false,
- 'rawPhpVersionSpec' => '*',
- 'rawPlatformVersionSpec' => '>=9 <=11',
- 'signature' => 'aOZeEeThyZ0V/vXBcn6c+Z0vyCsZcN6nfSJ8oWEea4zXh4g705Si+MFZESqix3M2
+ ],
+ 15 =>
+ [
+ 'id' => 'nextant',
+ 'categories' =>
+ [
+ 0 => 'files',
+ 1 => 'tools',
+ ],
+ 'userDocs' => '',
+ 'adminDocs' => 'https://github.com/nextcloud/nextant/wiki',
+ 'developerDocs' => '',
+ 'issueTracker' => 'https://github.com/nextcloud/nextant/issues',
+ 'website' => 'https://github.com/nextcloud/nextant/wiki',
+ 'created' => '2016-09-14T14:34:35.977699Z',
+ 'lastModified' => '2016-11-22T16:02:57.758477Z',
+ 'releases' =>
+ [
+ 0 =>
+ [
+ 'version' => '0.6.6',
+ 'phpExtensions' =>
+ [
+ ],
+ 'databases' =>
+ [
+ ],
+ 'shellCommands' =>
+ [
+ ],
+ 'phpVersionSpec' => '*',
+ 'platformVersionSpec' => '>=9.0.0 <12.0.0',
+ 'minIntSize' => 32,
+ 'download' => 'https://github.com/nextcloud/nextant/releases/download/v0.6.6/nextant-0.6.6.tar.gz',
+ 'created' => '2016-11-16T15:11:14.344704Z',
+ 'licenses' =>
+ [
+ 0 => 'agpl',
+ ],
+ 'lastModified' => '2016-11-16T20:39:59.030384Z',
+ 'isNightly' => false,
+ 'rawPhpVersionSpec' => '*',
+ 'rawPlatformVersionSpec' => '>=9 <=11',
+ 'signature' => 'aOZeEeThyZ0V/vXBcn6c+Z0vyCsZcN6nfSJ8oWEea4zXh4g705Si+MFZESqix3M2
OPCnA/U8eASwdRTAEwQJrW5ECmu1THXSIsrzQzc9kFycvyOGzCgAWtuu0ayzZD2/
U5aDWlzpLHC1Czg9QJ5UnfZR0AfChWQ402N1YzGqMShdJv6AHXFrVE+uYnIyxuYI
oPJQBUYbQwthVUjpYwFwSxw50YU17gmx5RZ0Y0OPz3i/EiuEUrxopXtfDVYAuCML
@@ -1729,29 +1729,29 @@ oAKv2GkvWPQ0aiiBtA1i4oXuzvHW/M2wOrK7v7DCpNfILrD/sjxpljxcX082nRCd
9P3iPd2hQ6yOM9fG21LVN74b6wggI81BzFf/xJPd4ZqYLjfeG/yqd0zaiMOzMm1W
se+kc/a4iB3BoCNX3E942pBBzew4ya8LkCXdCHUUsuelDf1va1ikTh/G7D84ll9/
2avNqQnUh3hgOnxFCLI/5VrbqxfSTVdO6O/LTuAmwgw=',
- 'translations' =>
- [
- ],
- ],
- ],
- 'screenshots' =>
- [
- 0 =>
- [
- 'url' => 'https://raw.githubusercontent.com/nextcloud/nextant/master/screenshots/displayResult.jpg',
- ],
- 1 =>
- [
- 'url' => 'https://raw.githubusercontent.com/nextcloud/nextant/master/screenshots/admin.jpg',
- ],
- ],
- 'translations' =>
- [
- 'en' =>
- [
- 'name' => 'Nextant',
- 'summary' => 'Navigate through your cloud using Solr',
- 'description' => '
+ 'translations' =>
+ [
+ ],
+ ],
+ ],
+ 'screenshots' =>
+ [
+ 0 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/nextcloud/nextant/master/screenshots/displayResult.jpg',
+ ],
+ 1 =>
+ [
+ 'url' => 'https://raw.githubusercontent.com/nextcloud/nextant/master/screenshots/admin.jpg',
+ ],
+ ],
+ 'translations' =>
+ [
+ 'en' =>
+ [
+ 'name' => 'Nextant',
+ 'summary' => 'Navigate through your cloud using Solr',
+ 'description' => '
Navigate through your cloud using Solr
@@ -1787,23 +1787,23 @@ se+kc/a4iB3BoCNX3E942pBBzew4ya8LkCXdCHUUsuelDf1va1ikTh/G7D84ll9/
',
- ],
- ],
- 'isFeatured' => false,
- 'authors' =>
- [
- 0 =>
- [
- 'name' => 'Maxence Lange',
- 'mail' => '',
- 'homepage' => '',
- ],
- ],
- 'ratingRecent' => 0.5,
- 'ratingOverall' => 0.5,
- 'ratingNumRecent' => 0,
- 'ratingNumOverall' => 0,
- 'certificate' => '-----BEGIN CERTIFICATE-----
+ ],
+ ],
+ 'isFeatured' => false,
+ 'authors' =>
+ [
+ 0 =>
+ [
+ 'name' => 'Maxence Lange',
+ 'mail' => '',
+ 'homepage' => '',
+ ],
+ ],
+ 'ratingRecent' => 0.5,
+ 'ratingOverall' => 0.5,
+ 'ratingNumRecent' => 0,
+ 'ratingNumOverall' => 0,
+ 'certificate' => '-----BEGIN CERTIFICATE-----
MIIEAjCCAuoCAhAFMA0GCSqGSIb3DQEBCwUAMHsxCzAJBgNVBAYTAkRFMRswGQYD
VQQIDBJCYWRlbi1XdWVydHRlbWJlcmcxFzAVBgNVBAoMDk5leHRjbG91ZCBHbWJI
MTYwNAYDVQQDDC1OZXh0Y2xvdWQgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBB
@@ -1827,8 +1827,8 @@ my7Z1C7jG9/h57vx0+QBMDCYnTmqLsvMKqo27uHskzAiB7VXLEdSZ2FtMGHkLUQO
0bfhnvTZ2VhMmK83t7ovo71An4ycmsolGD/MA0vNI78VrVISrdI8rRh2WntUnCBU
EJL3BaQAQaASSsvFrcozYxrQG4VzEg==
-----END CERTIFICATE-----',
- ],
- ],
+ ],
+ ],
'timestamp' => 1234,
'ncversion' => '11.0.0.2',
'ETag' => '"myETag"',
diff --git a/tests/lib/App/CodeChecker/NodeVisitorTest.php b/tests/lib/App/CodeChecker/NodeVisitorTest.php
index d1b1f643677..2383b56b676 100644
--- a/tests/lib/App/CodeChecker/NodeVisitorTest.php
+++ b/tests/lib/App/CodeChecker/NodeVisitorTest.php
@@ -45,10 +45,10 @@ class NodeVisitorTest extends TestCase {
], 'test-deprecated-function-sub-alias.php'],
// TODO Failing to resolve variables to classes
-// [[['OCP\NamespaceName\ClassName::methodName', 1007]], 'test-deprecated-method.php'],
-// [[['Alias::methodName', 1002]], 'test-deprecated-method-alias.php'],
-// [[['NamespaceName\ClassName::methodName', 1002]], 'test-deprecated-method-sub.php'],
-// [[['SubAlias\ClassName::methodName', 1002]], 'test-deprecated-method-sub-alias.php'],
+ // [[['OCP\NamespaceName\ClassName::methodName', 1007]], 'test-deprecated-method.php'],
+ // [[['Alias::methodName', 1002]], 'test-deprecated-method-alias.php'],
+ // [[['NamespaceName\ClassName::methodName', 1002]], 'test-deprecated-method-sub.php'],
+ // [[['SubAlias\ClassName::methodName', 1002]], 'test-deprecated-method-sub-alias.php'],
];
}
diff --git a/tests/lib/App/PlatformRepositoryTest.php b/tests/lib/App/PlatformRepositoryTest.php
index 555247f7dda..9063dffa646 100644
--- a/tests/lib/App/PlatformRepositoryTest.php
+++ b/tests/lib/App/PlatformRepositoryTest.php
@@ -52,14 +52,14 @@ class PlatformRepositoryTest extends \Test\TestCase {
'parses dt+patch' => ['20100102-203040-p1', '20100102-203040-patch1'],
'parses master' => ['dev-master', '9999999-dev'],
'parses trunk' => ['dev-trunk', '9999999-dev'],
-// 'parses branches' => array('1.x-dev', '1.9999999.9999999.9999999-dev'),
+ // 'parses branches' => array('1.x-dev', '1.9999999.9999999.9999999-dev'),
'parses arbitrary' => ['dev-feature-foo', 'dev-feature-foo'],
'parses arbitrary2' => ['DEV-FOOBAR', 'dev-FOOBAR'],
'parses arbitrary3' => ['dev-feature/foo', 'dev-feature/foo'],
'ignores aliases' => ['dev-master as 1.0.0', '9999999-dev'],
-// 'semver metadata' => array('dev-master+foo.bar', '9999999-dev'),
-// 'semver metadata/2' => array('1.0.0-beta.5+foo', '1.0.0.0-beta5'),
-// 'semver metadata/3' => array('1.0.0+foo', '1.0.0.0'),
-// 'metadata w/ alias' => array('1.0.0+foo as 2.0', '1.0.0.0'),
+ // 'semver metadata' => array('dev-master+foo.bar', '9999999-dev'),
+ // 'semver metadata/2' => array('1.0.0-beta.5+foo', '1.0.0.0-beta5'),
+ // 'semver metadata/3' => array('1.0.0+foo', '1.0.0.0'),
+ // 'metadata w/ alias' => array('1.0.0+foo as 2.0', '1.0.0.0'),
];
}}
diff --git a/tests/lib/AppFramework/AppTest.php b/tests/lib/AppFramework/AppTest.php
index fd83b6feae5..bf856b3b89f 100644
--- a/tests/lib/AppFramework/AppTest.php
+++ b/tests/lib/AppFramework/AppTest.php
@@ -80,7 +80,7 @@ class AppTest extends \Test\TestCase {
$xml = '<?xml version="1.0" encoding="UTF-8"?>' .
'<info>' .
- '<id>namespacetestapp</id>' .
+ '<id>namespacetestapp</id>' .
'<namespace>NameSpaceTestApp</namespace>' .
'</info>';
file_put_contents($infoXmlPath, $xml);
diff --git a/tests/lib/AppFramework/Controller/OCSControllerTest.php b/tests/lib/AppFramework/Controller/OCSControllerTest.php
index f5eb838b584..85f2a7f6463 100644
--- a/tests/lib/AppFramework/Controller/OCSControllerTest.php
+++ b/tests/lib/AppFramework/Controller/OCSControllerTest.php
@@ -108,7 +108,7 @@ class OCSControllerTest extends \Test\TestCase {
));
$controller->setOCSVersion(1);
$expected = '{"ocs":{"meta":{"status":"ok","statuscode":100,"message":"OK",' .
- '"totalitems":"","itemsperpage":""},"data":{"test":"hi"}}}';
+ '"totalitems":"","itemsperpage":""},"data":{"test":"hi"}}}';
$params = new DataResponse(['test' => 'hi']);
$response = $controller->buildResponse($params, 'json');
diff --git a/tests/lib/AppFramework/Http/DispatcherTest.php b/tests/lib/AppFramework/Http/DispatcherTest.php
index b6b43d4a5d3..d6af034e95e 100644
--- a/tests/lib/AppFramework/Http/DispatcherTest.php
+++ b/tests/lib/AppFramework/Http/DispatcherTest.php
@@ -296,8 +296,8 @@ class DispatcherTest extends \Test\TestCase {
$this->request = new Request(
[
'post' => [
- 'int' => '3',
- 'bool' => 'false'
+ 'int' => '3',
+ 'bool' => 'false'
],
'method' => 'POST'
],
diff --git a/tests/lib/AppFramework/Http/OCSResponseTest.php b/tests/lib/AppFramework/Http/OCSResponseTest.php
index e092cb53f58..223248c8737 100644
--- a/tests/lib/AppFramework/Http/OCSResponseTest.php
+++ b/tests/lib/AppFramework/Http/OCSResponseTest.php
@@ -29,42 +29,42 @@ use OCP\AppFramework\Http\OCSResponse;
class OCSResponseTest extends \Test\TestCase {
- public function testHeadersJSON() {
- $response = new OCSResponse('json', 1, 2, 3);
- $type = $response->getHeaders()['Content-Type'];
- $this->assertEquals('application/json; charset=utf-8', $type);
- }
+ public function testHeadersJSON() {
+ $response = new OCSResponse('json', 1, 2, 3);
+ $type = $response->getHeaders()['Content-Type'];
+ $this->assertEquals('application/json; charset=utf-8', $type);
+ }
- public function testHeadersXML() {
- $response = new OCSResponse('xml', 1, 2, 3);
- $type = $response->getHeaders()['Content-Type'];
- $this->assertEquals('application/xml; charset=utf-8', $type);
- }
+ public function testHeadersXML() {
+ $response = new OCSResponse('xml', 1, 2, 3);
+ $type = $response->getHeaders()['Content-Type'];
+ $this->assertEquals('application/xml; charset=utf-8', $type);
+ }
- public function testRender() {
- $response = new OCSResponse(
- 'xml', 2, 'message', ['test' => 'hi'], 3, 4
- );
- $out = $response->render();
- $expected = "<?xml version=\"1.0\"?>\n" .
- "<ocs>\n" .
- " <meta>\n" .
- " <status>failure</status>\n" .
- " <statuscode>2</statuscode>\n" .
- " <message>message</message>\n" .
- " <totalitems>3</totalitems>\n" .
- " <itemsperpage>4</itemsperpage>\n" .
- " </meta>\n" .
- " <data>\n" .
- " <test>hi</test>\n" .
- " </data>\n" .
- "</ocs>\n";
+ public function testRender() {
+ $response = new OCSResponse(
+ 'xml', 2, 'message', ['test' => 'hi'], 3, 4
+ );
+ $out = $response->render();
+ $expected = "<?xml version=\"1.0\"?>\n" .
+ "<ocs>\n" .
+ " <meta>\n" .
+ " <status>failure</status>\n" .
+ " <statuscode>2</statuscode>\n" .
+ " <message>message</message>\n" .
+ " <totalitems>3</totalitems>\n" .
+ " <itemsperpage>4</itemsperpage>\n" .
+ " </meta>\n" .
+ " <data>\n" .
+ " <test>hi</test>\n" .
+ " </data>\n" .
+ "</ocs>\n";
- $this->assertEquals($expected, $out);
+ $this->assertEquals($expected, $out);
- }
+ }
}
diff --git a/tests/lib/AppFramework/Routing/RoutingTest.php b/tests/lib/AppFramework/Routing/RoutingTest.php
index 95f8996dbdb..5e0604263fc 100644
--- a/tests/lib/AppFramework/Routing/RoutingTest.php
+++ b/tests/lib/AppFramework/Routing/RoutingTest.php
@@ -24,8 +24,8 @@ class RoutingTest extends \Test\TestCase
public function testSimpleOCSRoute() {
$routes = ['ocs' => [
- ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'GET']
- ]
+ ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'GET']
+ ]
];
$this->assertSimpleOCSRoute($routes, 'folders.open', 'GET', '/apps/app1/folders/{folderId}/open', 'FoldersController', 'open');
@@ -42,8 +42,8 @@ class RoutingTest extends \Test\TestCase
public function testSimpleOCSRouteWithMissingVerb() {
$routes = ['ocs' => [
- ['name' => 'folders#open', 'url' => '/folders/{folderId}/open']
- ]
+ ['name' => 'folders#open', 'url' => '/folders/{folderId}/open']
+ ]
];
$this->assertSimpleOCSRoute($routes, 'folders.open', 'GET', '/apps/app1/folders/{folderId}/open', 'FoldersController', 'open');
@@ -60,8 +60,8 @@ class RoutingTest extends \Test\TestCase
public function testSimpleOCSRouteWithLowercaseVerb() {
$routes = ['ocs' => [
- ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete']
- ]
+ ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete']
+ ]
];
$this->assertSimpleOCSRoute($routes, 'folders.open', 'DELETE', '/apps/app1/folders/{folderId}/open', 'FoldersController', 'open');
@@ -78,8 +78,8 @@ class RoutingTest extends \Test\TestCase
public function testSimpleOCSRouteWithRequirements() {
$routes = ['ocs' => [
- ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete', 'requirements' => ['something']]
- ]
+ ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete', 'requirements' => ['something']]
+ ]
];
$this->assertSimpleOCSRoute($routes, 'folders.open', 'DELETE', '/apps/app1/folders/{folderId}/open', 'FoldersController', 'open', ['something']);
@@ -97,8 +97,8 @@ class RoutingTest extends \Test\TestCase
public function testSimpleOCSRouteWithDefaults() {
$routes = ['ocs' => [
- ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete', 'defaults' => ['param' => 'foobar']]
- ]
+ ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete', 'defaults' => ['param' => 'foobar']]
+ ]
];
$this->assertSimpleOCSRoute($routes, 'folders.open', 'DELETE', '/apps/app1/folders/{folderId}/open', 'FoldersController', 'open', [], ['param' => 'foobar']);
@@ -115,8 +115,8 @@ class RoutingTest extends \Test\TestCase
public function testSimpleOCSRouteWithPostfix() {
$routes = ['ocs' => [
- ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete', 'postfix' => '_something']
- ]
+ ['name' => 'folders#open', 'url' => '/folders/{folderId}/open', 'verb' => 'delete', 'postfix' => '_something']
+ ]
];
$this->assertSimpleOCSRoute($routes, 'folders.open', 'DELETE', '/apps/app1/folders/{folderId}/open', 'FoldersController', 'open', [], [], '_something');
@@ -484,11 +484,11 @@ class RoutingTest extends \Test\TestCase
# the section simple describes one route
routes:
- - name: folders#open
- url: /folders/{folderId}/open
- verb: GET
- # controller: name.split()[0]
- # action: name.split()[1]
+ - name: folders#open
+ url: /folders/{folderId}/open
+ verb: GET
+ # controller: name.split()[0]
+ # action: name.split()[1]
# for a resource following actions will be generated:
# - index
@@ -498,15 +498,15 @@ routes:
# - destroy
# - new
resources:
- accounts:
- url: /accounts
-
- folders:
- url: /accounts/{accountId}/folders
- # actions can be used to define additional actions on the resource
- actions:
- - name: validate
- verb: GET
- on-collection: false
+ accounts:
+ url: /accounts
+
+ folders:
+ url: /accounts/{accountId}/folders
+ # actions can be used to define additional actions on the resource
+ actions:
+ - name: validate
+ verb: GET
+ on-collection: false
* */
diff --git a/tests/lib/AppFramework/Utility/SimpleContainerTest.php b/tests/lib/AppFramework/Utility/SimpleContainerTest.php
index 0341be14af9..8343c05e916 100644
--- a/tests/lib/AppFramework/Utility/SimpleContainerTest.php
+++ b/tests/lib/AppFramework/Utility/SimpleContainerTest.php
@@ -30,193 +30,193 @@ interface TestInterface {}
class ClassEmptyConstructor implements IInterfaceConstructor {}
class ClassSimpleConstructor implements IInterfaceConstructor {
- public $test;
- public function __construct($test) {
- $this->test = $test;
- }
+ public $test;
+ public function __construct($test) {
+ $this->test = $test;
+ }
}
class ClassComplexConstructor {
- public $class;
- public $test;
- public function __construct(ClassSimpleConstructor $class, $test) {
- $this->class = $class;
- $this->test = $test;
- }
+ public $class;
+ public $test;
+ public function __construct(ClassSimpleConstructor $class, $test) {
+ $this->class = $class;
+ $this->test = $test;
+ }
}
interface IInterfaceConstructor {}
class ClassInterfaceConstructor {
- public $class;
- public $test;
- public function __construct(IInterfaceConstructor $class, $test) {
- $this->class = $class;
- $this->test = $test;
- }
+ public $class;
+ public $test;
+ public function __construct(IInterfaceConstructor $class, $test) {
+ $this->class = $class;
+ $this->test = $test;
+ }
}
class SimpleContainerTest extends \Test\TestCase {
- private $container;
-
- protected function setUp(): void {
- $this->container = new SimpleContainer();
- }
-
-
- public function testRegister() {
- $this->container->registerParameter('test', 'abc');
- $this->assertEquals('abc', $this->container->query('test'));
- }
-
-
-
- public function testNothingRegistered() {
- $this->expectException(\OCP\AppFramework\QueryException::class);
-
- $this->container->query('something really hard');
- }
-
-
-
- public function testNotAClass() {
- $this->expectException(\OCP\AppFramework\QueryException::class);
-
- $this->container->query('Test\AppFramework\Utility\TestInterface');
- }
-
-
- public function testNoConstructorClass() {
- $object = $this->container->query('Test\AppFramework\Utility\ClassEmptyConstructor');
- $this->assertTrue($object instanceof ClassEmptyConstructor);
- }
-
-
- public function testInstancesOnlyOnce() {
- $object = $this->container->query('Test\AppFramework\Utility\ClassEmptyConstructor');
- $object2 = $this->container->query('Test\AppFramework\Utility\ClassEmptyConstructor');
- $this->assertSame($object, $object2);
- }
-
- public function testConstructorSimple() {
- $this->container->registerParameter('test', 'abc');
- $object = $this->container->query(
- 'Test\AppFramework\Utility\ClassSimpleConstructor'
- );
- $this->assertTrue($object instanceof ClassSimpleConstructor);
- $this->assertEquals('abc', $object->test);
- }
-
-
- public function testConstructorComplex() {
- $this->container->registerParameter('test', 'abc');
- $object = $this->container->query(
- 'Test\AppFramework\Utility\ClassComplexConstructor'
- );
- $this->assertTrue($object instanceof ClassComplexConstructor);
- $this->assertEquals('abc', $object->class->test);
- $this->assertEquals('abc', $object->test);
- }
-
-
- public function testConstructorComplexInterface() {
- $this->container->registerParameter('test', 'abc');
- $this->container->registerService(
- 'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) {
- return $c->query('Test\AppFramework\Utility\ClassSimpleConstructor');
- });
- $object = $this->container->query(
- 'Test\AppFramework\Utility\ClassInterfaceConstructor'
- );
- $this->assertTrue($object instanceof ClassInterfaceConstructor);
- $this->assertEquals('abc', $object->class->test);
- $this->assertEquals('abc', $object->test);
- }
-
-
- public function testOverrideService() {
- $this->container->registerService(
- 'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) {
- return $c->query('Test\AppFramework\Utility\ClassSimpleConstructor');
- });
- $this->container->registerService(
- 'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) {
- return $c->query('Test\AppFramework\Utility\ClassEmptyConstructor');
- });
- $object = $this->container->query(
- 'Test\AppFramework\Utility\IInterfaceConstructor'
- );
- $this->assertTrue($object instanceof ClassEmptyConstructor);
- }
-
- public function testRegisterAliasParamter() {
- $this->container->registerParameter('test', 'abc');
- $this->container->registerAlias('test1', 'test');
- $this->assertEquals('abc', $this->container->query('test1'));
- }
-
- public function testRegisterAliasService() {
- $this->container->registerService('test', function() {
- return new \StdClass;
- }, true);
- $this->container->registerAlias('test1', 'test');
- $this->assertSame(
- $this->container->query('test'), $this->container->query('test'));
- $this->assertSame(
- $this->container->query('test1'), $this->container->query('test1'));
- $this->assertSame(
- $this->container->query('test'), $this->container->query('test1'));
- }
-
- public function sanitizeNameProvider() {
- return [
- ['ABC\\Foo', 'ABC\\Foo'],
- ['\\ABC\\Foo', '\\ABC\\Foo'],
- ['\\ABC\\Foo', 'ABC\\Foo'],
- ['ABC\\Foo', '\\ABC\\Foo'],
- ];
- }
-
- /**
- * @dataProvider sanitizeNameProvider
- */
- public function testSanitizeName($register, $query) {
- $this->container->registerService($register, function() {
- return 'abc';
- });
- $this->assertEquals('abc', $this->container->query($query));
- }
-
-
- public function testConstructorComplexNoTestParameterFound() {
- $this->expectException(\OCP\AppFramework\QueryException::class);
-
- $object = $this->container->query(
- 'Test\AppFramework\Utility\ClassComplexConstructor'
- );
- }
-
- public function testRegisterFactory() {
- $this->container->registerService('test', function() {
- return new \StdClass();
- }, false);
- $this->assertNotSame(
- $this->container->query('test'), $this->container->query('test'));
- }
-
- public function testRegisterAliasFactory() {
- $this->container->registerService('test', function() {
- return new \StdClass();
- }, false);
- $this->container->registerAlias('test1', 'test');
- $this->assertNotSame(
- $this->container->query('test'), $this->container->query('test'));
- $this->assertNotSame(
- $this->container->query('test1'), $this->container->query('test1'));
- $this->assertNotSame(
- $this->container->query('test'), $this->container->query('test1'));
- }
+ private $container;
+
+ protected function setUp(): void {
+ $this->container = new SimpleContainer();
+ }
+
+
+ public function testRegister() {
+ $this->container->registerParameter('test', 'abc');
+ $this->assertEquals('abc', $this->container->query('test'));
+ }
+
+
+
+ public function testNothingRegistered() {
+ $this->expectException(\OCP\AppFramework\QueryException::class);
+
+ $this->container->query('something really hard');
+ }
+
+
+
+ public function testNotAClass() {
+ $this->expectException(\OCP\AppFramework\QueryException::class);
+
+ $this->container->query('Test\AppFramework\Utility\TestInterface');
+ }
+
+
+ public function testNoConstructorClass() {
+ $object = $this->container->query('Test\AppFramework\Utility\ClassEmptyConstructor');
+ $this->assertTrue($object instanceof ClassEmptyConstructor);
+ }
+
+
+ public function testInstancesOnlyOnce() {
+ $object = $this->container->query('Test\AppFramework\Utility\ClassEmptyConstructor');
+ $object2 = $this->container->query('Test\AppFramework\Utility\ClassEmptyConstructor');
+ $this->assertSame($object, $object2);
+ }
+
+ public function testConstructorSimple() {
+ $this->container->registerParameter('test', 'abc');
+ $object = $this->container->query(
+ 'Test\AppFramework\Utility\ClassSimpleConstructor'
+ );
+ $this->assertTrue($object instanceof ClassSimpleConstructor);
+ $this->assertEquals('abc', $object->test);
+ }
+
+
+ public function testConstructorComplex() {
+ $this->container->registerParameter('test', 'abc');
+ $object = $this->container->query(
+ 'Test\AppFramework\Utility\ClassComplexConstructor'
+ );
+ $this->assertTrue($object instanceof ClassComplexConstructor);
+ $this->assertEquals('abc', $object->class->test);
+ $this->assertEquals('abc', $object->test);
+ }
+
+
+ public function testConstructorComplexInterface() {
+ $this->container->registerParameter('test', 'abc');
+ $this->container->registerService(
+ 'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) {
+ return $c->query('Test\AppFramework\Utility\ClassSimpleConstructor');
+ });
+ $object = $this->container->query(
+ 'Test\AppFramework\Utility\ClassInterfaceConstructor'
+ );
+ $this->assertTrue($object instanceof ClassInterfaceConstructor);
+ $this->assertEquals('abc', $object->class->test);
+ $this->assertEquals('abc', $object->test);
+ }
+
+
+ public function testOverrideService() {
+ $this->container->registerService(
+ 'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) {
+ return $c->query('Test\AppFramework\Utility\ClassSimpleConstructor');
+ });
+ $this->container->registerService(
+ 'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) {
+ return $c->query('Test\AppFramework\Utility\ClassEmptyConstructor');
+ });
+ $object = $this->container->query(
+ 'Test\AppFramework\Utility\IInterfaceConstructor'
+ );
+ $this->assertTrue($object instanceof ClassEmptyConstructor);
+ }
+
+ public function testRegisterAliasParamter() {
+ $this->container->registerParameter('test', 'abc');
+ $this->container->registerAlias('test1', 'test');
+ $this->assertEquals('abc', $this->container->query('test1'));
+ }
+
+ public function testRegisterAliasService() {
+ $this->container->registerService('test', function() {
+ return new \StdClass;
+ }, true);
+ $this->container->registerAlias('test1', 'test');
+ $this->assertSame(
+ $this->container->query('test'), $this->container->query('test'));
+ $this->assertSame(
+ $this->container->query('test1'), $this->container->query('test1'));
+ $this->assertSame(
+ $this->container->query('test'), $this->container->query('test1'));
+ }
+
+ public function sanitizeNameProvider() {
+ return [
+ ['ABC\\Foo', 'ABC\\Foo'],
+ ['\\ABC\\Foo', '\\ABC\\Foo'],
+ ['\\ABC\\Foo', 'ABC\\Foo'],
+ ['ABC\\Foo', '\\ABC\\Foo'],
+ ];
+ }
+
+ /**
+ * @dataProvider sanitizeNameProvider
+ */
+ public function testSanitizeName($register, $query) {
+ $this->container->registerService($register, function() {
+ return 'abc';
+ });
+ $this->assertEquals('abc', $this->container->query($query));
+ }
+
+
+ public function testConstructorComplexNoTestParameterFound() {
+ $this->expectException(\OCP\AppFramework\QueryException::class);
+
+ $object = $this->container->query(
+ 'Test\AppFramework\Utility\ClassComplexConstructor'
+ );
+ }
+
+ public function testRegisterFactory() {
+ $this->container->registerService('test', function() {
+ return new \StdClass();
+ }, false);
+ $this->assertNotSame(
+ $this->container->query('test'), $this->container->query('test'));
+ }
+
+ public function testRegisterAliasFactory() {
+ $this->container->registerService('test', function() {
+ return new \StdClass();
+ }, false);
+ $this->container->registerAlias('test1', 'test');
+ $this->assertNotSame(
+ $this->container->query('test'), $this->container->query('test'));
+ $this->assertNotSame(
+ $this->container->query('test1'), $this->container->query('test1'));
+ $this->assertNotSame(
+ $this->container->query('test'), $this->container->query('test1'));
+ }
}
diff --git a/tests/lib/Collaboration/Collaborators/MailPluginTest.php b/tests/lib/Collaboration/Collaborators/MailPluginTest.php
index 9cf308cd414..84888dc364c 100644
--- a/tests/lib/Collaboration/Collaborators/MailPluginTest.php
+++ b/tests/lib/Collaboration/Collaborators/MailPluginTest.php
@@ -607,7 +607,7 @@ class MailPluginTest extends TestCase {
],
// The user `User` cannot share with the current user
[
- 'test',
+ 'test',
[
[
'FN' => 'User',
@@ -627,7 +627,7 @@ class MailPluginTest extends TestCase {
],
// The user `User` cannot share with the current user, but there is an exact match on the e-mail address -> share by e-mail
[
- 'test@example.com',
+ 'test@example.com',
[
[
'FN' => 'User',
diff --git a/tests/lib/Collaboration/Collaborators/SearchTest.php b/tests/lib/Collaboration/Collaborators/SearchTest.php
index 284d8270c49..e5b5d2ef820 100644
--- a/tests/lib/Collaboration/Collaborators/SearchTest.php
+++ b/tests/lib/Collaboration/Collaborators/SearchTest.php
@@ -152,12 +152,12 @@ class SearchTest extends TestCase {
],
[
'test', [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_REMOTE], 1, 2, [
- ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
- ], [
- ['label' => 'testgroup1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
- ], [
- 'results' => [['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']]], 'exact' => [], 'exactIdMatch' => false,
- ],
+ ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
+ ], [
+ ['label' => 'testgroup1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
+ ], [
+ 'results' => [['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']]], 'exact' => [], 'exactIdMatch' => false,
+ ],
[
'exact' => ['users' => [], 'groups' => [], 'remotes' => []],
'users' => [
@@ -174,10 +174,10 @@ class SearchTest extends TestCase {
// No groups requested
[
'test', [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_REMOTE], 1, 2, [
- ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
- ], [], [
- 'results' => [['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']]], 'exact' => [], 'exactIdMatch' => false
- ],
+ ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
+ ], [], [
+ 'results' => [['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']]], 'exact' => [], 'exactIdMatch' => false
+ ],
[
'exact' => ['users' => [], 'remotes' => []],
'users' => [
@@ -191,8 +191,8 @@ class SearchTest extends TestCase {
// Share type restricted to user - Only one user
[
'test', [Share::SHARE_TYPE_USER], 1, 2, [
- ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
- ], [], [],
+ ['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
+ ], [], [],
[
'exact' => ['users' => []],
'users' => [
@@ -203,9 +203,9 @@ class SearchTest extends TestCase {
// Share type restricted to user - Multipage result
[
'test', [Share::SHARE_TYPE_USER], 1, 2, [
- ['label' => 'test 1', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
- ['label' => 'test 2', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
- ], [], [],
+ ['label' => 'test 1', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
+ ['label' => 'test 2', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
+ ], [], [],
[
'exact' => ['users' => []],
'users' => [
diff --git a/tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php b/tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php
index 31c52ea80e1..6883ed2f98c 100644
--- a/tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php
+++ b/tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php
@@ -76,13 +76,13 @@ class ActionProviderStoreTest extends TestCase {
'contactsmenu' => [
'OCA\Contacts\Provider1',
],
- ]);
+ ]);
$this->serverContainer->expects($this->exactly(2))
->method('query')
->willReturnMap([
- [EMailProvider::class, true, $provider1],
- ['OCA\Contacts\Provider1', true, $provider2]
- ]);
+ [EMailProvider::class, true, $provider1],
+ ['OCA\Contacts\Provider1', true, $provider2]
+ ]);
$providers = $this->actionProviderStore->getProviders($user);
@@ -105,8 +105,8 @@ class ActionProviderStoreTest extends TestCase {
$this->serverContainer->expects($this->once())
->method('query')
->willReturnMap([
- [EMailProvider::class, true, $provider1],
- ]);
+ [EMailProvider::class, true, $provider1],
+ ]);
$providers = $this->actionProviderStore->getProviders($user);
diff --git a/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php b/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php
index 82619fb5679..245c89c3228 100644
--- a/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php
+++ b/tests/lib/Contacts/ContactsMenu/ContactsStoreTest.php
@@ -73,7 +73,7 @@ class ContactsStoreTest extends TestCase {
'darren@roner.au'
],
],
- ]);
+ ]);
$user->expects($this->once())
->method('getUID')
->willReturn('user123');
@@ -83,7 +83,7 @@ class ContactsStoreTest extends TestCase {
$this->assertCount(2, $entries);
$this->assertEquals([
'darren@roner.au'
- ], $entries[1]->getEMailAddresses());
+ ], $entries[1]->getEMailAddresses());
}
public function testGetContactsHidesOwnEntry() {
@@ -103,7 +103,7 @@ class ContactsStoreTest extends TestCase {
'darren@roner.au'
],
],
- ]);
+ ]);
$user->expects($this->once())
->method('getUID')
->willReturn('user123');
@@ -131,7 +131,7 @@ class ContactsStoreTest extends TestCase {
],
'PHOTO' => base64_encode('photophotophoto'),
],
- ]);
+ ]);
$user->expects($this->once())
->method('getUID')
->willReturn('user123');
@@ -160,7 +160,7 @@ class ContactsStoreTest extends TestCase {
],
'PHOTO' => 'VALUE=uri:https://photo',
],
- ]);
+ ]);
$user->expects($this->once())
->method('getUID')
->willReturn('user123');
diff --git a/tests/lib/Contacts/ContactsMenu/Providers/EMailproviderTest.php b/tests/lib/Contacts/ContactsMenu/Providers/EMailproviderTest.php
index 85ffd1e72b1..ac90260d161 100644
--- a/tests/lib/Contacts/ContactsMenu/Providers/EMailproviderTest.php
+++ b/tests/lib/Contacts/ContactsMenu/Providers/EMailproviderTest.php
@@ -67,7 +67,7 @@ class EMailproviderTest extends TestCase {
->method('getEMailAddresses')
->willReturn([
'user@example.com',
- ]);
+ ]);
$this->actionFactory->expects($this->once())
->method('newEMailAction')
->with($this->equalTo($iconUrl), $this->equalTo('user@example.com'), $this->equalTo('user@example.com'))
@@ -94,7 +94,7 @@ class EMailproviderTest extends TestCase {
->method('getEMailAddresses')
->willReturn([
'',
- ]);
+ ]);
$this->actionFactory->expects($this->never())
->method('newEMailAction');
$entry->expects($this->never())
diff --git a/tests/lib/DirectEditing/ManagerTest.php b/tests/lib/DirectEditing/ManagerTest.php
index 004292eb47f..ef72a4e81d3 100644
--- a/tests/lib/DirectEditing/ManagerTest.php
+++ b/tests/lib/DirectEditing/ManagerTest.php
@@ -23,7 +23,7 @@ use Test\TestCase;
class CreateEmpty extends ACreateEmpty {
public function getId(): string {
- return 'createEmpty';
+ return 'createEmpty';
}
public function getName(): string {
@@ -42,7 +42,7 @@ class CreateEmpty extends ACreateEmpty {
class Editor implements IEditor {
public function getId(): string {
- return 'testeditor';
+ return 'testeditor';
}
public function getName(): string {
diff --git a/tests/lib/ErrorHandlerTest.php b/tests/lib/ErrorHandlerTest.php
index 179b5c12123..4cea21b4276 100644
--- a/tests/lib/ErrorHandlerTest.php
+++ b/tests/lib/ErrorHandlerTest.php
@@ -35,7 +35,7 @@ class ErrorHandlerTest extends \Test\TestCase {
['user', 'pass@word'],
['us:er', 'password'],
['user', 'pass:word'],
- ];
+ ];
}
diff --git a/tests/lib/Files/Type/DetectionTest.php b/tests/lib/Files/Type/DetectionTest.php
index 3befe64c825..1965dc405ff 100644
--- a/tests/lib/Files/Type/DetectionTest.php
+++ b/tests/lib/Files/Type/DetectionTest.php
@@ -71,7 +71,7 @@ class DetectionTest extends \Test\TestCase {
public function dataDetectContent(): array {
return [
['/', 'httpd/unix-directory'],
-// ['/data.tar.gz', 'application/x-gzip'], TODO: fix as it fails hard on php7.4 now
+ // ['/data.tar.gz', 'application/x-gzip'], TODO: fix as it fails hard on php7.4 now
['/data.zip', 'application/zip'],
['/testimage.mp3', 'audio/mpeg'],
['/testimage.png', 'image/png'],
diff --git a/tests/lib/Group/ManagerTest.php b/tests/lib/Group/ManagerTest.php
index 73b315ac297..7fc16dfcc6d 100644
--- a/tests/lib/Group/ManagerTest.php
+++ b/tests/lib/Group/ManagerTest.php
@@ -563,7 +563,7 @@ class ManagerTest extends TestCase {
->willReturnCallback(function($search, $limit, $offset) {
switch($offset) {
case 0 : return ['user3' => $this->getTestUser('user3'),
- 'user33' => $this->getTestUser('user33')];
+ 'user33' => $this->getTestUser('user33')];
case 2 : return [];
}
return null;
@@ -622,7 +622,7 @@ class ManagerTest extends TestCase {
->willReturnCallback(function($search, $limit, $offset) {
switch($offset) {
case 0 : return ['user3' => $this->getTestUser('user3'),
- 'user33' => $this->getTestUser('user33')];
+ 'user33' => $this->getTestUser('user33')];
case 2 : return ['user333' => $this->getTestUser('user333')];
}
return null;
diff --git a/tests/lib/IntegrityCheck/CheckerTest.php b/tests/lib/IntegrityCheck/CheckerTest.php
index 7d99316f479..98ae3bac9bb 100644
--- a/tests/lib/IntegrityCheck/CheckerTest.php
+++ b/tests/lib/IntegrityCheck/CheckerTest.php
@@ -170,8 +170,8 @@ class CheckerTest extends TestCase {
$expected = [
'EXCEPTION' => [
- 'class' => 'OC\IntegrityCheck\Exceptions\InvalidSignatureException',
- 'message' => 'Signature data not found.',
+ 'class' => 'OC\IntegrityCheck\Exceptions\InvalidSignatureException',
+ 'message' => 'Signature data not found.',
],
];
$this->assertSame($expected, $this->checker->verifyAppSignature('SomeApp'));
@@ -259,10 +259,10 @@ class CheckerTest extends TestCase {
->willReturn(file_get_contents(__DIR__ .'/../../data/integritycheck/root.crt'));
$expected = [
- 'EXCEPTION' => [
- 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
- 'message' => 'Signature could not get verified.',
- ],
+ 'EXCEPTION' => [
+ 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
+ 'message' => 'Signature could not get verified.',
+ ],
];
$this->assertEquals($expected, $this->checker->verifyAppSignature('SomeApp'));
}
@@ -310,20 +310,20 @@ class CheckerTest extends TestCase {
$expected = [
'INVALID_HASH' => [
'AnotherFile.txt' => [
- 'expected' => '1570ca9420e37629de4328f48c51da29840ddeaa03ae733da4bf1d854b8364f594aac560601270f9e1797ed4cd57c1aea87bf44cf4245295c94f2e935a2f0112',
- 'current' => '7322348ba269c6d5522efe02f424fa3a0da319a7cd9c33142a5afe32a2d9af2da3a411f086fcfc96ff4301ea566f481dba0960c2abeef3594c4d930462f6584c',
+ 'expected' => '1570ca9420e37629de4328f48c51da29840ddeaa03ae733da4bf1d854b8364f594aac560601270f9e1797ed4cd57c1aea87bf44cf4245295c94f2e935a2f0112',
+ 'current' => '7322348ba269c6d5522efe02f424fa3a0da319a7cd9c33142a5afe32a2d9af2da3a411f086fcfc96ff4301ea566f481dba0960c2abeef3594c4d930462f6584c',
],
],
'FILE_MISSING' => [
'subfolder/file.txt' => [
- 'expected' => '410738545fb623c0a5c8a71f561e48ea69e3ada0981a455e920a5ae9bf17c6831ae654df324f9328ff8453de179276ae51931cca0fa71fe8ccde6c083ca0574b',
- 'current' => '',
+ 'expected' => '410738545fb623c0a5c8a71f561e48ea69e3ada0981a455e920a5ae9bf17c6831ae654df324f9328ff8453de179276ae51931cca0fa71fe8ccde6c083ca0574b',
+ 'current' => '',
],
],
'EXTRA_FILE' => [
'UnecessaryFile' => [
- 'expected' => '',
- 'current' => 'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e',
+ 'expected' => '',
+ 'current' => 'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e',
],
],
@@ -371,24 +371,24 @@ class CheckerTest extends TestCase {
$expected = [
- 'INVALID_HASH' => [
- 'AnotherFile.txt' => [
- 'expected' => '1570ca9420e37629de4328f48c51da29840ddeaa03ae733da4bf1d854b8364f594aac560601270f9e1797ed4cd57c1aea87bf44cf4245295c94f2e935a2f0112',
- 'current' => '7322348ba269c6d5522efe02f424fa3a0da319a7cd9c33142a5afe32a2d9af2da3a411f086fcfc96ff4301ea566f481dba0960c2abeef3594c4d930462f6584c',
- ],
+ 'INVALID_HASH' => [
+ 'AnotherFile.txt' => [
+ 'expected' => '1570ca9420e37629de4328f48c51da29840ddeaa03ae733da4bf1d854b8364f594aac560601270f9e1797ed4cd57c1aea87bf44cf4245295c94f2e935a2f0112',
+ 'current' => '7322348ba269c6d5522efe02f424fa3a0da319a7cd9c33142a5afe32a2d9af2da3a411f086fcfc96ff4301ea566f481dba0960c2abeef3594c4d930462f6584c',
],
- 'FILE_MISSING' => [
- 'subfolder/file.txt' => [
- 'expected' => '410738545fb623c0a5c8a71f561e48ea69e3ada0981a455e920a5ae9bf17c6831ae654df324f9328ff8453de179276ae51931cca0fa71fe8ccde6c083ca0574b',
- 'current' => '',
- ],
+ ],
+ 'FILE_MISSING' => [
+ 'subfolder/file.txt' => [
+ 'expected' => '410738545fb623c0a5c8a71f561e48ea69e3ada0981a455e920a5ae9bf17c6831ae654df324f9328ff8453de179276ae51931cca0fa71fe8ccde6c083ca0574b',
+ 'current' => '',
],
- 'EXTRA_FILE' => [
- 'UnecessaryFile' => [
- 'expected' => '',
- 'current' => 'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e',
- ],
+ ],
+ 'EXTRA_FILE' => [
+ 'UnecessaryFile' => [
+ 'expected' => '',
+ 'current' => 'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e',
],
+ ],
];
$this->assertSame($expected, $this->checker->verifyAppSignature('SomeApp', \OC::$SERVERROOT . '/tests/data/integritycheck/appWithInvalidData/'));
@@ -432,10 +432,10 @@ class CheckerTest extends TestCase {
->willReturn(file_get_contents(__DIR__ .'/../../data/integritycheck/root.crt'));
$expected = [
- 'EXCEPTION' => [
- 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
- 'message' => 'Certificate is not valid for required scope. (Requested: SomeApp, current: CN=AnotherScope)',
- ],
+ 'EXCEPTION' => [
+ 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
+ 'message' => 'Certificate is not valid for required scope. (Requested: SomeApp, current: CN=AnotherScope)',
+ ],
];
$this->assertSame($expected, $this->checker->verifyAppSignature('SomeApp'));
}
@@ -781,215 +781,215 @@ class CheckerTest extends TestCase {
->method('getOnlyDefaultAliases')
->willReturn(
[
- '_comment' => 'Array of mimetype aliases.',
- '_comment2' => 'Any changes you make here will be overwritten on an update of Nextcloud.',
- '_comment3' => 'Put any custom mappings in a new file mimetypealiases.json in the config/ folder of Nextcloud',
- '_comment4' => 'After any change to mimetypealiases.json run:',
- '_comment5' => './occ maintenance:mimetype:update-js',
- '_comment6' => 'Otherwise your update won\'t propagate through the system.',
- 'application/coreldraw' => 'image',
- 'application/epub+zip' => 'text',
- 'application/font-sfnt' => 'image',
- 'application/font-woff' => 'image',
- 'application/gpx+xml' => 'location',
- 'application/illustrator' => 'image',
- 'application/javascript' => 'text/code',
- 'application/json' => 'text/code',
- 'application/msaccess' => 'file',
- 'application/msexcel' => 'x-office/spreadsheet',
- 'application/msonenote' => 'x-office/document',
- 'application/mspowerpoint' => 'x-office/presentation',
- 'application/msword' => 'x-office/document',
- 'application/octet-stream' => 'file',
- 'application/postscript' => 'image',
- 'application/rss+xml' => 'application/xml',
- 'application/vnd.android.package-archive' => 'package/x-generic',
- 'application/vnd.lotus-wordpro' => 'x-office/document',
- 'application/vnd.garmin.tcx+xml' => 'location',
- 'application/vnd.google-earth.kml+xml' => 'location',
- 'application/vnd.google-earth.kmz' => 'location',
- 'application/vnd.ms-excel' => 'x-office/spreadsheet',
- 'application/vnd.ms-excel.addin.macroEnabled.12' => 'x-office/spreadsheet',
- 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => 'x-office/spreadsheet',
- 'application/vnd.ms-excel.sheet.macroEnabled.12' => 'x-office/spreadsheet',
- 'application/vnd.ms-excel.template.macroEnabled.12' => 'x-office/spreadsheet',
- 'application/vnd.ms-fontobject' => 'image',
- 'application/vnd.ms-powerpoint' => 'x-office/presentation',
- 'application/vnd.ms-powerpoint.addin.macroEnabled.12' => 'x-office/presentation',
- 'application/vnd.ms-powerpoint.presentation.macroEnabled.12' => 'x-office/presentation',
- 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => 'x-office/presentation',
- 'application/vnd.ms-powerpoint.template.macroEnabled.12' => 'x-office/presentation',
- 'application/vnd.ms-visio.drawing.macroEnabled.12' => 'application/vnd.visio',
- 'application/vnd.ms-visio.drawing' => 'application/vnd.visio',
- 'application/vnd.ms-visio.stencil.macroEnabled.12' => 'application/vnd.visio',
- 'application/vnd.ms-visio.stencil' => 'application/vnd.visio',
- 'application/vnd.ms-visio.template.macroEnabled.12' => 'application/vnd.visio',
- 'application/vnd.ms-visio.template' => 'application/vnd.visio',
- 'application/vnd.ms-word.document.macroEnabled.12' => 'x-office/document',
- 'application/vnd.ms-word.template.macroEnabled.12' => 'x-office/document',
- 'application/vnd.oasis.opendocument.presentation' => 'x-office/presentation',
- 'application/vnd.oasis.opendocument.presentation-template' => 'x-office/presentation',
- 'application/vnd.oasis.opendocument.spreadsheet' => 'x-office/spreadsheet',
- 'application/vnd.oasis.opendocument.spreadsheet-template' => 'x-office/spreadsheet',
- 'application/vnd.oasis.opendocument.text' => 'x-office/document',
- 'application/vnd.oasis.opendocument.text-master' => 'x-office/document',
- 'application/vnd.oasis.opendocument.text-template' => 'x-office/document',
- 'application/vnd.oasis.opendocument.text-web' => 'x-office/document',
- 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => 'x-office/presentation',
- 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => 'x-office/presentation',
- 'application/vnd.openxmlformats-officedocument.presentationml.template' => 'x-office/presentation',
- 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => 'x-office/spreadsheet',
- 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => 'x-office/spreadsheet',
- 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => 'x-office/document',
- 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => 'x-office/document',
- 'application/vnd.visio' => 'x-office/document',
- 'application/vnd.wordperfect' => 'x-office/document',
- 'application/x-7z-compressed' => 'package/x-generic',
- 'application/x-bzip2' => 'package/x-generic',
- 'application/x-cbr' => 'text',
- 'application/x-compressed' => 'package/x-generic',
- 'application/x-dcraw' => 'image',
- 'application/x-deb' => 'package/x-generic',
- 'application/x-fictionbook+xml' => 'text',
- 'application/x-font' => 'image',
- 'application/x-gimp' => 'image',
- 'application/x-gzip' => 'package/x-generic',
- 'application/x-iwork-keynote-sffkey' => 'x-office/presentation',
- 'application/x-iwork-numbers-sffnumbers' => 'x-office/spreadsheet',
- 'application/x-iwork-pages-sffpages' => 'x-office/document',
- 'application/x-mobipocket-ebook' => 'text',
- 'application/x-perl' => 'text/code',
- 'application/x-photoshop' => 'image',
- 'application/x-php' => 'text/code',
- 'application/x-rar-compressed' => 'package/x-generic',
- 'application/x-tar' => 'package/x-generic',
- 'application/x-tex' => 'text',
- 'application/xml' => 'text/html',
- 'application/yaml' => 'text/code',
- 'application/zip' => 'package/x-generic',
- 'database' => 'file',
- 'httpd/unix-directory' => 'dir',
- 'text/css' => 'text/code',
- 'text/csv' => 'x-office/spreadsheet',
- 'text/html' => 'text/code',
- 'text/x-c' => 'text/code',
- 'text/x-c++src' => 'text/code',
- 'text/x-h' => 'text/code',
- 'text/x-java-source' => 'text/code',
- 'text/x-ldif' => 'text/code',
- 'text/x-python' => 'text/code',
- 'text/x-shellscript' => 'text/code',
- 'web' => 'text/code',
- 'application/internet-shortcut' => 'link',
- ]);
+ '_comment' => 'Array of mimetype aliases.',
+ '_comment2' => 'Any changes you make here will be overwritten on an update of Nextcloud.',
+ '_comment3' => 'Put any custom mappings in a new file mimetypealiases.json in the config/ folder of Nextcloud',
+ '_comment4' => 'After any change to mimetypealiases.json run:',
+ '_comment5' => './occ maintenance:mimetype:update-js',
+ '_comment6' => 'Otherwise your update won\'t propagate through the system.',
+ 'application/coreldraw' => 'image',
+ 'application/epub+zip' => 'text',
+ 'application/font-sfnt' => 'image',
+ 'application/font-woff' => 'image',
+ 'application/gpx+xml' => 'location',
+ 'application/illustrator' => 'image',
+ 'application/javascript' => 'text/code',
+ 'application/json' => 'text/code',
+ 'application/msaccess' => 'file',
+ 'application/msexcel' => 'x-office/spreadsheet',
+ 'application/msonenote' => 'x-office/document',
+ 'application/mspowerpoint' => 'x-office/presentation',
+ 'application/msword' => 'x-office/document',
+ 'application/octet-stream' => 'file',
+ 'application/postscript' => 'image',
+ 'application/rss+xml' => 'application/xml',
+ 'application/vnd.android.package-archive' => 'package/x-generic',
+ 'application/vnd.lotus-wordpro' => 'x-office/document',
+ 'application/vnd.garmin.tcx+xml' => 'location',
+ 'application/vnd.google-earth.kml+xml' => 'location',
+ 'application/vnd.google-earth.kmz' => 'location',
+ 'application/vnd.ms-excel' => 'x-office/spreadsheet',
+ 'application/vnd.ms-excel.addin.macroEnabled.12' => 'x-office/spreadsheet',
+ 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => 'x-office/spreadsheet',
+ 'application/vnd.ms-excel.sheet.macroEnabled.12' => 'x-office/spreadsheet',
+ 'application/vnd.ms-excel.template.macroEnabled.12' => 'x-office/spreadsheet',
+ 'application/vnd.ms-fontobject' => 'image',
+ 'application/vnd.ms-powerpoint' => 'x-office/presentation',
+ 'application/vnd.ms-powerpoint.addin.macroEnabled.12' => 'x-office/presentation',
+ 'application/vnd.ms-powerpoint.presentation.macroEnabled.12' => 'x-office/presentation',
+ 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => 'x-office/presentation',
+ 'application/vnd.ms-powerpoint.template.macroEnabled.12' => 'x-office/presentation',
+ 'application/vnd.ms-visio.drawing.macroEnabled.12' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.drawing' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.stencil.macroEnabled.12' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.stencil' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.template.macroEnabled.12' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.template' => 'application/vnd.visio',
+ 'application/vnd.ms-word.document.macroEnabled.12' => 'x-office/document',
+ 'application/vnd.ms-word.template.macroEnabled.12' => 'x-office/document',
+ 'application/vnd.oasis.opendocument.presentation' => 'x-office/presentation',
+ 'application/vnd.oasis.opendocument.presentation-template' => 'x-office/presentation',
+ 'application/vnd.oasis.opendocument.spreadsheet' => 'x-office/spreadsheet',
+ 'application/vnd.oasis.opendocument.spreadsheet-template' => 'x-office/spreadsheet',
+ 'application/vnd.oasis.opendocument.text' => 'x-office/document',
+ 'application/vnd.oasis.opendocument.text-master' => 'x-office/document',
+ 'application/vnd.oasis.opendocument.text-template' => 'x-office/document',
+ 'application/vnd.oasis.opendocument.text-web' => 'x-office/document',
+ 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => 'x-office/presentation',
+ 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => 'x-office/presentation',
+ 'application/vnd.openxmlformats-officedocument.presentationml.template' => 'x-office/presentation',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => 'x-office/spreadsheet',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => 'x-office/spreadsheet',
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => 'x-office/document',
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => 'x-office/document',
+ 'application/vnd.visio' => 'x-office/document',
+ 'application/vnd.wordperfect' => 'x-office/document',
+ 'application/x-7z-compressed' => 'package/x-generic',
+ 'application/x-bzip2' => 'package/x-generic',
+ 'application/x-cbr' => 'text',
+ 'application/x-compressed' => 'package/x-generic',
+ 'application/x-dcraw' => 'image',
+ 'application/x-deb' => 'package/x-generic',
+ 'application/x-fictionbook+xml' => 'text',
+ 'application/x-font' => 'image',
+ 'application/x-gimp' => 'image',
+ 'application/x-gzip' => 'package/x-generic',
+ 'application/x-iwork-keynote-sffkey' => 'x-office/presentation',
+ 'application/x-iwork-numbers-sffnumbers' => 'x-office/spreadsheet',
+ 'application/x-iwork-pages-sffpages' => 'x-office/document',
+ 'application/x-mobipocket-ebook' => 'text',
+ 'application/x-perl' => 'text/code',
+ 'application/x-photoshop' => 'image',
+ 'application/x-php' => 'text/code',
+ 'application/x-rar-compressed' => 'package/x-generic',
+ 'application/x-tar' => 'package/x-generic',
+ 'application/x-tex' => 'text',
+ 'application/xml' => 'text/html',
+ 'application/yaml' => 'text/code',
+ 'application/zip' => 'package/x-generic',
+ 'database' => 'file',
+ 'httpd/unix-directory' => 'dir',
+ 'text/css' => 'text/code',
+ 'text/csv' => 'x-office/spreadsheet',
+ 'text/html' => 'text/code',
+ 'text/x-c' => 'text/code',
+ 'text/x-c++src' => 'text/code',
+ 'text/x-h' => 'text/code',
+ 'text/x-java-source' => 'text/code',
+ 'text/x-ldif' => 'text/code',
+ 'text/x-python' => 'text/code',
+ 'text/x-shellscript' => 'text/code',
+ 'web' => 'text/code',
+ 'application/internet-shortcut' => 'link',
+ ]);
$this->mimeTypeDetector
->expects($this->once())
->method('getAllAliases')
->willReturn(
[
- '_comment' => 'Array of mimetype aliases.',
- '_comment2' => 'Any changes you make here will be overwritten on an update of Nextcloud.',
- '_comment3' => 'Put any custom mappings in a new file mimetypealiases.json in the config/ folder of Nextcloud',
- '_comment4' => 'After any change to mimetypealiases.json run:',
- '_comment5' => './occ maintenance:mimetype:update-js',
- '_comment6' => 'Otherwise your update won\'t propagate through the system.',
- 'application/coreldraw' => 'image',
- 'application/test' => 'image',
- 'application/epub+zip' => 'text',
- 'application/font-sfnt' => 'image',
- 'application/font-woff' => 'image',
- 'application/gpx+xml' => 'location',
- 'application/illustrator' => 'image',
- 'application/javascript' => 'text/code',
- 'application/json' => 'text/code',
- 'application/msaccess' => 'file',
- 'application/msexcel' => 'x-office/spreadsheet',
- 'application/msonenote' => 'x-office/document',
- 'application/mspowerpoint' => 'x-office/presentation',
- 'application/msword' => 'x-office/document',
- 'application/octet-stream' => 'file',
- 'application/postscript' => 'image',
- 'application/rss+xml' => 'application/xml',
- 'application/vnd.android.package-archive' => 'package/x-generic',
- 'application/vnd.lotus-wordpro' => 'x-office/document',
- 'application/vnd.garmin.tcx+xml' => 'location',
- 'application/vnd.google-earth.kml+xml' => 'location',
- 'application/vnd.google-earth.kmz' => 'location',
- 'application/vnd.ms-excel' => 'x-office/spreadsheet',
- 'application/vnd.ms-excel.addin.macroEnabled.12' => 'x-office/spreadsheet',
- 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => 'x-office/spreadsheet',
- 'application/vnd.ms-excel.sheet.macroEnabled.12' => 'x-office/spreadsheet',
- 'application/vnd.ms-excel.template.macroEnabled.12' => 'x-office/spreadsheet',
- 'application/vnd.ms-fontobject' => 'image',
- 'application/vnd.ms-powerpoint' => 'x-office/presentation',
- 'application/vnd.ms-powerpoint.addin.macroEnabled.12' => 'x-office/presentation',
- 'application/vnd.ms-powerpoint.presentation.macroEnabled.12' => 'x-office/presentation',
- 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => 'x-office/presentation',
- 'application/vnd.ms-powerpoint.template.macroEnabled.12' => 'x-office/presentation',
- 'application/vnd.ms-visio.drawing.macroEnabled.12' => 'application/vnd.visio',
- 'application/vnd.ms-visio.drawing' => 'application/vnd.visio',
- 'application/vnd.ms-visio.stencil.macroEnabled.12' => 'application/vnd.visio',
- 'application/vnd.ms-visio.stencil' => 'application/vnd.visio',
- 'application/vnd.ms-visio.template.macroEnabled.12' => 'application/vnd.visio',
- 'application/vnd.ms-visio.template' => 'application/vnd.visio',
- 'application/vnd.ms-word.document.macroEnabled.12' => 'x-office/document',
- 'application/vnd.ms-word.template.macroEnabled.12' => 'x-office/document',
- 'application/vnd.oasis.opendocument.presentation' => 'x-office/presentation',
- 'application/vnd.oasis.opendocument.presentation-template' => 'x-office/presentation',
- 'application/vnd.oasis.opendocument.spreadsheet' => 'x-office/spreadsheet',
- 'application/vnd.oasis.opendocument.spreadsheet-template' => 'x-office/spreadsheet',
- 'application/vnd.oasis.opendocument.text' => 'x-office/document',
- 'application/vnd.oasis.opendocument.text-master' => 'x-office/document',
- 'application/vnd.oasis.opendocument.text-template' => 'x-office/document',
- 'application/vnd.oasis.opendocument.text-web' => 'x-office/document',
- 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => 'x-office/presentation',
- 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => 'x-office/presentation',
- 'application/vnd.openxmlformats-officedocument.presentationml.template' => 'x-office/presentation',
- 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => 'x-office/spreadsheet',
- 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => 'x-office/spreadsheet',
- 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => 'x-office/document',
- 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => 'x-office/document',
- 'application/vnd.visio' => 'x-office/document',
- 'application/vnd.wordperfect' => 'x-office/document',
- 'application/x-7z-compressed' => 'package/x-generic',
- 'application/x-bzip2' => 'package/x-generic',
- 'application/x-cbr' => 'text',
- 'application/x-compressed' => 'package/x-generic',
- 'application/x-dcraw' => 'image',
- 'application/x-deb' => 'package/x-generic',
- 'application/x-fictionbook+xml' => 'text',
- 'application/x-font' => 'image',
- 'application/x-gimp' => 'image',
- 'application/x-gzip' => 'package/x-generic',
- 'application/x-iwork-keynote-sffkey' => 'x-office/presentation',
- 'application/x-iwork-numbers-sffnumbers' => 'x-office/spreadsheet',
- 'application/x-iwork-pages-sffpages' => 'x-office/document',
- 'application/x-mobipocket-ebook' => 'text',
- 'application/x-perl' => 'text/code',
- 'application/x-photoshop' => 'image',
- 'application/x-php' => 'text/code',
- 'application/x-rar-compressed' => 'package/x-generic',
- 'application/x-tar' => 'package/x-generic',
- 'application/x-tex' => 'text',
- 'application/xml' => 'text/html',
- 'application/yaml' => 'text/code',
- 'application/zip' => 'package/x-generic',
- 'database' => 'file',
- 'httpd/unix-directory' => 'dir',
- 'text/css' => 'text/code',
- 'text/csv' => 'x-office/spreadsheet',
- 'text/html' => 'text/code',
- 'text/x-c' => 'text/code',
- 'text/x-c++src' => 'text/code',
- 'text/x-h' => 'text/code',
- 'text/x-java-source' => 'text/code',
- 'text/x-ldif' => 'text/code',
- 'text/x-python' => 'text/code',
- 'text/x-shellscript' => 'text/code',
- 'web' => 'text/code',
- 'application/internet-shortcut' => 'link',
- ]);
+ '_comment' => 'Array of mimetype aliases.',
+ '_comment2' => 'Any changes you make here will be overwritten on an update of Nextcloud.',
+ '_comment3' => 'Put any custom mappings in a new file mimetypealiases.json in the config/ folder of Nextcloud',
+ '_comment4' => 'After any change to mimetypealiases.json run:',
+ '_comment5' => './occ maintenance:mimetype:update-js',
+ '_comment6' => 'Otherwise your update won\'t propagate through the system.',
+ 'application/coreldraw' => 'image',
+ 'application/test' => 'image',
+ 'application/epub+zip' => 'text',
+ 'application/font-sfnt' => 'image',
+ 'application/font-woff' => 'image',
+ 'application/gpx+xml' => 'location',
+ 'application/illustrator' => 'image',
+ 'application/javascript' => 'text/code',
+ 'application/json' => 'text/code',
+ 'application/msaccess' => 'file',
+ 'application/msexcel' => 'x-office/spreadsheet',
+ 'application/msonenote' => 'x-office/document',
+ 'application/mspowerpoint' => 'x-office/presentation',
+ 'application/msword' => 'x-office/document',
+ 'application/octet-stream' => 'file',
+ 'application/postscript' => 'image',
+ 'application/rss+xml' => 'application/xml',
+ 'application/vnd.android.package-archive' => 'package/x-generic',
+ 'application/vnd.lotus-wordpro' => 'x-office/document',
+ 'application/vnd.garmin.tcx+xml' => 'location',
+ 'application/vnd.google-earth.kml+xml' => 'location',
+ 'application/vnd.google-earth.kmz' => 'location',
+ 'application/vnd.ms-excel' => 'x-office/spreadsheet',
+ 'application/vnd.ms-excel.addin.macroEnabled.12' => 'x-office/spreadsheet',
+ 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => 'x-office/spreadsheet',
+ 'application/vnd.ms-excel.sheet.macroEnabled.12' => 'x-office/spreadsheet',
+ 'application/vnd.ms-excel.template.macroEnabled.12' => 'x-office/spreadsheet',
+ 'application/vnd.ms-fontobject' => 'image',
+ 'application/vnd.ms-powerpoint' => 'x-office/presentation',
+ 'application/vnd.ms-powerpoint.addin.macroEnabled.12' => 'x-office/presentation',
+ 'application/vnd.ms-powerpoint.presentation.macroEnabled.12' => 'x-office/presentation',
+ 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => 'x-office/presentation',
+ 'application/vnd.ms-powerpoint.template.macroEnabled.12' => 'x-office/presentation',
+ 'application/vnd.ms-visio.drawing.macroEnabled.12' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.drawing' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.stencil.macroEnabled.12' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.stencil' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.template.macroEnabled.12' => 'application/vnd.visio',
+ 'application/vnd.ms-visio.template' => 'application/vnd.visio',
+ 'application/vnd.ms-word.document.macroEnabled.12' => 'x-office/document',
+ 'application/vnd.ms-word.template.macroEnabled.12' => 'x-office/document',
+ 'application/vnd.oasis.opendocument.presentation' => 'x-office/presentation',
+ 'application/vnd.oasis.opendocument.presentation-template' => 'x-office/presentation',
+ 'application/vnd.oasis.opendocument.spreadsheet' => 'x-office/spreadsheet',
+ 'application/vnd.oasis.opendocument.spreadsheet-template' => 'x-office/spreadsheet',
+ 'application/vnd.oasis.opendocument.text' => 'x-office/document',
+ 'application/vnd.oasis.opendocument.text-master' => 'x-office/document',
+ 'application/vnd.oasis.opendocument.text-template' => 'x-office/document',
+ 'application/vnd.oasis.opendocument.text-web' => 'x-office/document',
+ 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => 'x-office/presentation',
+ 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => 'x-office/presentation',
+ 'application/vnd.openxmlformats-officedocument.presentationml.template' => 'x-office/presentation',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => 'x-office/spreadsheet',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => 'x-office/spreadsheet',
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => 'x-office/document',
+ 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => 'x-office/document',
+ 'application/vnd.visio' => 'x-office/document',
+ 'application/vnd.wordperfect' => 'x-office/document',
+ 'application/x-7z-compressed' => 'package/x-generic',
+ 'application/x-bzip2' => 'package/x-generic',
+ 'application/x-cbr' => 'text',
+ 'application/x-compressed' => 'package/x-generic',
+ 'application/x-dcraw' => 'image',
+ 'application/x-deb' => 'package/x-generic',
+ 'application/x-fictionbook+xml' => 'text',
+ 'application/x-font' => 'image',
+ 'application/x-gimp' => 'image',
+ 'application/x-gzip' => 'package/x-generic',
+ 'application/x-iwork-keynote-sffkey' => 'x-office/presentation',
+ 'application/x-iwork-numbers-sffnumbers' => 'x-office/spreadsheet',
+ 'application/x-iwork-pages-sffpages' => 'x-office/document',
+ 'application/x-mobipocket-ebook' => 'text',
+ 'application/x-perl' => 'text/code',
+ 'application/x-photoshop' => 'image',
+ 'application/x-php' => 'text/code',
+ 'application/x-rar-compressed' => 'package/x-generic',
+ 'application/x-tar' => 'package/x-generic',
+ 'application/x-tex' => 'text',
+ 'application/xml' => 'text/html',
+ 'application/yaml' => 'text/code',
+ 'application/zip' => 'package/x-generic',
+ 'database' => 'file',
+ 'httpd/unix-directory' => 'dir',
+ 'text/css' => 'text/code',
+ 'text/csv' => 'x-office/spreadsheet',
+ 'text/html' => 'text/code',
+ 'text/x-c' => 'text/code',
+ 'text/x-c++src' => 'text/code',
+ 'text/x-h' => 'text/code',
+ 'text/x-java-source' => 'text/code',
+ 'text/x-ldif' => 'text/code',
+ 'text/x-python' => 'text/code',
+ 'text/x-shellscript' => 'text/code',
+ 'web' => 'text/code',
+ 'application/internet-shortcut' => 'link',
+ ]);
$this->environmentHelper
->expects($this->any())
@@ -1101,10 +1101,10 @@ class CheckerTest extends TestCase {
->willReturn(file_get_contents(__DIR__ .'/../../data/integritycheck/root.crt'));
$expected = [
- 'EXCEPTION' => [
- 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
- 'message' => 'Signature could not get verified.',
- ]
+ 'EXCEPTION' => [
+ 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
+ 'message' => 'Signature could not get verified.',
+ ]
];
$this->assertSame($expected, $this->checker->verifyCoreSignature());
}
@@ -1148,24 +1148,24 @@ class CheckerTest extends TestCase {
->willReturn(file_get_contents(__DIR__ .'/../../data/integritycheck/root.crt'));
$expected = [
- 'INVALID_HASH' => [
- 'AnotherFile.txt' => [
- 'expected' => '1570ca9420e37629de4328f48c51da29840ddeaa03ae733da4bf1d854b8364f594aac560601270f9e1797ed4cd57c1aea87bf44cf4245295c94f2e935a2f0112',
- 'current' => '7322348ba269c6d5522efe02f424fa3a0da319a7cd9c33142a5afe32a2d9af2da3a411f086fcfc96ff4301ea566f481dba0960c2abeef3594c4d930462f6584c',
- ],
+ 'INVALID_HASH' => [
+ 'AnotherFile.txt' => [
+ 'expected' => '1570ca9420e37629de4328f48c51da29840ddeaa03ae733da4bf1d854b8364f594aac560601270f9e1797ed4cd57c1aea87bf44cf4245295c94f2e935a2f0112',
+ 'current' => '7322348ba269c6d5522efe02f424fa3a0da319a7cd9c33142a5afe32a2d9af2da3a411f086fcfc96ff4301ea566f481dba0960c2abeef3594c4d930462f6584c',
],
- 'FILE_MISSING' => [
- 'subfolder/file.txt' => [
- 'expected' => '410738545fb623c0a5c8a71f561e48ea69e3ada0981a455e920a5ae9bf17c6831ae654df324f9328ff8453de179276ae51931cca0fa71fe8ccde6c083ca0574b',
- 'current' => '',
- ],
+ ],
+ 'FILE_MISSING' => [
+ 'subfolder/file.txt' => [
+ 'expected' => '410738545fb623c0a5c8a71f561e48ea69e3ada0981a455e920a5ae9bf17c6831ae654df324f9328ff8453de179276ae51931cca0fa71fe8ccde6c083ca0574b',
+ 'current' => '',
],
- 'EXTRA_FILE' => [
- 'UnecessaryFile' => [
- 'expected' => '',
- 'current' => 'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e',
- ],
+ ],
+ 'EXTRA_FILE' => [
+ 'UnecessaryFile' => [
+ 'expected' => '',
+ 'current' => 'cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e',
],
+ ],
];
$this->assertSame($expected, $this->checker->verifyCoreSignature());
@@ -1210,10 +1210,10 @@ class CheckerTest extends TestCase {
->willReturn(file_get_contents(__DIR__ .'/../../data/integritycheck/root.crt'));
$expected = [
- 'EXCEPTION' => [
- 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
- 'message' => 'Certificate is not valid.',
- ]
+ 'EXCEPTION' => [
+ 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
+ 'message' => 'Certificate is not valid.',
+ ]
];
$this->assertSame($expected, $this->checker->verifyCoreSignature());
}
@@ -1257,10 +1257,10 @@ class CheckerTest extends TestCase {
->willReturn(file_get_contents(__DIR__ .'/../../data/integritycheck/root.crt'));
$expected = [
- 'EXCEPTION' => [
- 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
- 'message' => 'Certificate is not valid for required scope. (Requested: core, current: CN=SomeApp)',
- ]
+ 'EXCEPTION' => [
+ 'class' => 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException',
+ 'message' => 'Certificate is not valid for required scope. (Requested: core, current: CN=SomeApp)',
+ ]
];
$this->assertSame($expected, $this->checker->verifyCoreSignature());
}
diff --git a/tests/lib/LegacyHelperTest.php b/tests/lib/LegacyHelperTest.php
index f6e85ea188c..8fa339dbbab 100644
--- a/tests/lib/LegacyHelperTest.php
+++ b/tests/lib/LegacyHelperTest.php
@@ -69,11 +69,11 @@ class LegacyHelperTest extends \Test\TestCase {
$arrayStart = [
"Foo" => "bar",
"Bar" => "foo",
- ];
+ ];
$arrayResult = [
"foo" => "bar",
"bar" => "foo",
- ];
+ ];
$result = OC_Helper::mb_array_change_key_case($arrayStart);
$expected = $arrayResult;
$this->assertEquals($result, $expected);
@@ -81,11 +81,11 @@ class LegacyHelperTest extends \Test\TestCase {
$arrayStart = [
"foo" => "bar",
"bar" => "foo",
- ];
+ ];
$arrayResult = [
"FOO" => "bar",
"BAR" => "foo",
- ];
+ ];
$result = OC_Helper::mb_array_change_key_case($arrayStart, MB_CASE_UPPER);
$expected = $arrayResult;
$this->assertEquals($result, $expected);
@@ -95,7 +95,7 @@ class LegacyHelperTest extends \Test\TestCase {
$haystack = [
"Foo" => "own",
"Bar" => "Cloud",
- ];
+ ];
$result = OC_Helper::recursiveArraySearch($haystack, "own");
$expected = "Foo";
diff --git a/tests/lib/NavigationManagerTest.php b/tests/lib/NavigationManagerTest.php
index 74cb3948c5e..e2ab0e3fddc 100644
--- a/tests/lib/NavigationManagerTest.php
+++ b/tests/lib/NavigationManagerTest.php
@@ -228,9 +228,9 @@ class NavigationManagerTest extends TestCase {
$this->userSession->expects($this->any())->method('getUser')->willReturn($user);
$this->userSession->expects($this->any())->method('isLoggedIn')->willReturn(true);
$this->appManager->expects($this->once())
- ->method('getEnabledAppsForUser')
- ->with($user)
- ->willReturn(['test']);
+ ->method('getEnabledAppsForUser')
+ ->with($user)
+ ->willReturn(['test']);
$this->groupManager->expects($this->any())->method('isAdmin')->willReturn($isAdmin);
$subadmin = $this->createMock(SubAdmin::class);
$subadmin->expects($this->any())->method('isSubAdmin')->with($user)->willReturn(false);
diff --git a/tests/lib/Repair/ClearGeneratedAvatarCacheTest.php b/tests/lib/Repair/ClearGeneratedAvatarCacheTest.php
index 218a59caa3b..30df6474b80 100644
--- a/tests/lib/Repair/ClearGeneratedAvatarCacheTest.php
+++ b/tests/lib/Repair/ClearGeneratedAvatarCacheTest.php
@@ -73,9 +73,9 @@ class ClearGeneratedAvatarCacheTest extends \Test\TestCase {
*/
public function testShouldRun($from, $expected) {
$this->config->expects($this->any())
- ->method('getSystemValue')
- ->with('version', '0.0.0.0')
- ->willReturn($from);
+ ->method('getSystemValue')
+ ->with('version', '0.0.0.0')
+ ->willReturn($from);
$this->assertEquals($expected, $this->invokePrivate($this->repair, 'shouldRun'));
}
diff --git a/tests/lib/Share/ShareTest.php b/tests/lib/Share/ShareTest.php
index 80dc8694b12..d17988f4d11 100644
--- a/tests/lib/Share/ShareTest.php
+++ b/tests/lib/Share/ShareTest.php
@@ -276,44 +276,44 @@ class ShareTest extends \Test\TestCase {
[ // input
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_READ, 'item_target' => 't1'],
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_UPDATE, 'item_target' => 't1'],
- ],
+ ],
[ // expected result
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_UPDATE, 'item_target' => 't1',
'grouped' => [
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_READ, 'item_target' => 't1'],
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_UPDATE, 'item_target' => 't1'],
- ]
- ],
- ]
- ],
+ ]
+ ],
+ ]
+ ],
// two shares both point to the same source but with different targets
[
[ // input
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_READ, 'item_target' => 't1'],
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_UPDATE, 'item_target' => 't2'],
- ],
+ ],
[ // expected result
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_READ, 'item_target' => 't1'],
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_UPDATE, 'item_target' => 't2'],
- ]
- ],
+ ]
+ ],
// three shares two point to the same source
[
[ // input
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_READ, 'item_target' => 't1'],
['item_source' => 2, 'permissions' => \OCP\Constants::PERMISSION_CREATE, 'item_target' => 't2'],
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_UPDATE, 'item_target' => 't1'],
- ],
+ ],
[ // expected result
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_UPDATE, 'item_target' => 't1',
'grouped' => [
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_READ, 'item_target' => 't1'],
['item_source' => 1, 'permissions' => \OCP\Constants::PERMISSION_UPDATE, 'item_target' => 't1'],
- ]
- ],
+ ]
+ ],
['item_source' => 2, 'permissions' => \OCP\Constants::PERMISSION_CREATE, 'item_target' => 't2'],
- ]
- ],
+ ]
+ ],
];
}
}
diff --git a/tests/lib/Share20/DefaultShareProviderTest.php b/tests/lib/Share20/DefaultShareProviderTest.php
index 396f0cbad84..c3f663052ed 100644
--- a/tests/lib/Share20/DefaultShareProviderTest.php
+++ b/tests/lib/Share20/DefaultShareProviderTest.php
@@ -302,7 +302,7 @@ class DefaultShareProviderTest extends \Test\TestCase {
$this->rootFolder
->method('getUserFolder')
->willReturnMap([
- ['shareOwner', $shareOwnerFolder],
+ ['shareOwner', $shareOwnerFolder],
]);
$share = $this->provider->getShareById($id);
@@ -385,7 +385,7 @@ class DefaultShareProviderTest extends \Test\TestCase {
$this->rootFolder
->method('getUserFolder')
->willReturnMap([
- ['shareOwner', $shareOwnerFolder],
+ ['shareOwner', $shareOwnerFolder],
]);
$share = $this->provider->getShareById($id);
@@ -761,8 +761,8 @@ class DefaultShareProviderTest extends \Test\TestCase {
$this->rootFolder
->method('getUserFolder')
->willReturnMap([
- ['sharedBy', $userFolder],
- ['shareOwner', $ownerFolder],
+ ['sharedBy', $userFolder],
+ ['shareOwner', $ownerFolder],
]);
$userFolder->method('getById')
diff --git a/tests/lib/Share20/ManagerTest.php b/tests/lib/Share20/ManagerTest.php
index e46e019c6ed..f48d776eb01 100644
--- a/tests/lib/Share20/ManagerTest.php
+++ b/tests/lib/Share20/ManagerTest.php
@@ -124,8 +124,8 @@ class ManagerTest extends \Test\TestCase {
$this->l = $this->createMock(IL10N::class);
$this->l->method('t')
->willReturnCallback(function($text, $parameters = []) {
- return vsprintf($text, $parameters);
- });
+ return vsprintf($text, $parameters);
+ });
$this->factory = new DummyFactory(\OC::$server);
@@ -492,7 +492,7 @@ class ManagerTest extends \Test\TestCase {
public function testVerifyPasswordNull() {
$this->config->method('getAppValue')->willReturnMap([
- ['core', 'shareapi_enforce_links_password', 'no', 'no'],
+ ['core', 'shareapi_enforce_links_password', 'no', 'no'],
]);
$result = self::invokePrivate($this->manager, 'verifyPassword', [null]);
@@ -501,7 +501,7 @@ class ManagerTest extends \Test\TestCase {
public function testVerifyPasswordHook() {
$this->config->method('getAppValue')->willReturnMap([
- ['core', 'shareapi_enforce_links_password', 'no', 'no'],
+ ['core', 'shareapi_enforce_links_password', 'no', 'no'],
]);
$this->eventDispatcher->expects($this->once())->method('dispatch')
@@ -522,7 +522,7 @@ class ManagerTest extends \Test\TestCase {
$this->expectExceptionMessage('password not accepted');
$this->config->method('getAppValue')->willReturnMap([
- ['core', 'shareapi_enforce_links_password', 'no', 'no'],
+ ['core', 'shareapi_enforce_links_password', 'no', 'no'],
]);
$this->eventDispatcher->expects($this->once())->method('dispatch')
@@ -1096,7 +1096,7 @@ class ManagerTest extends \Test\TestCase {
}
- public function testUserCreateChecksIdenticalPathSharedViaGroup() {
+ public function testUserCreateChecksIdenticalPathSharedViaGroup() {
$this->expectException(\Exception::class);
$this->expectExceptionMessage('Path is already shared with this user');
@@ -1137,7 +1137,7 @@ class ManagerTest extends \Test\TestCase {
self::invokePrivate($this->manager, 'userCreateChecks', [$share]);
}
- public function testUserCreateChecksIdenticalPathSharedViaDeletedGroup() {
+ public function testUserCreateChecksIdenticalPathSharedViaDeletedGroup() {
$share = $this->manager->newShare();
$sharedWith = $this->createMock(IUser::class);
@@ -2410,8 +2410,8 @@ class ManagerTest extends \Test\TestCase {
->expects($this->at(1))
->method('getAppValue')
->willReturnMap([
- ['core', 'shareapi_allow_public_upload', 'yes', 'no'],
- ]);
+ ['core', 'shareapi_allow_public_upload', 'yes', 'no'],
+ ]);
$this->defaultProvider->expects($this->once())
->method('getShareByToken')
diff --git a/tests/lib/Template/CSSResourceLocatorTest.php b/tests/lib/Template/CSSResourceLocatorTest.php
index 7aa1eb177d7..8c1eb66d303 100644
--- a/tests/lib/Template/CSSResourceLocatorTest.php
+++ b/tests/lib/Template/CSSResourceLocatorTest.php
@@ -69,8 +69,8 @@ class CSSResourceLocatorTest extends \Test\TestCase {
private function cssResourceLocator() {
/** @var Factory|\PHPUnit_Framework_MockObject_MockObject $factory */
- $factory = $this->createMock(Factory::class);
- $factory->method('get')->with('css')->willReturn($this->appData);
+ $factory = $this->createMock(Factory::class);
+ $factory->method('get')->with('css')->willReturn($this->appData);
$scssCacher = new SCSSCacher(
$this->logger,
$factory,
@@ -130,10 +130,10 @@ class CSSResourceLocatorTest extends \Test\TestCase {
// Use the symlink as the app path
\OC::$APPSROOTS[] = [
- 'path' => $new_apps_path_symlink,
- 'url' => '/css-apps-test',
- 'writable' => false,
- ];
+ 'path' => $new_apps_path_symlink,
+ 'url' => '/css-apps-test',
+ 'writable' => false,
+ ];
$locator = $this->cssResourceLocator();
$locator->find(['test-css-app/test-file']);
diff --git a/tests/lib/Template/JSResourceLocatorTest.php b/tests/lib/Template/JSResourceLocatorTest.php
index 8c8fc99c961..0e6b217ec52 100644
--- a/tests/lib/Template/JSResourceLocatorTest.php
+++ b/tests/lib/Template/JSResourceLocatorTest.php
@@ -110,10 +110,10 @@ class JSResourceLocatorTest extends \Test\TestCase {
// Use the symlink as the app path
\OC::$APPSROOTS[] = [
- 'path' => $new_apps_path_symlink,
- 'url' => '/js-apps-test',
- 'writable' => false,
- ];
+ 'path' => $new_apps_path_symlink,
+ 'url' => '/js-apps-test',
+ 'writable' => false,
+ ];
$locator = $this->jsResourceLocator();
$locator->find(['test-js-app/test-file']);