Browse Source
Check for app updates when there is a new major version available
Check for app updates when there is a new major version available
Signed-off-by: Joas Schilling <coding@schilljs.com>pull/8579/head
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
6 changed files with 253 additions and 16 deletions
-
16apps/updatenotification/appinfo/routes.php
-
1apps/updatenotification/composer/composer/autoload_classmap.php
-
1apps/updatenotification/composer/composer/autoload_static.php
-
24apps/updatenotification/css/admin.css
-
93apps/updatenotification/js-src/components/root.vue
-
134apps/updatenotification/lib/Controller/APIController.php
@ -1,4 +1,22 @@ |
|||
#updatenotification p, |
|||
#oca_updatenotification_section p { |
|||
margin: 25px 0; |
|||
#updatenotification { |
|||
margin-top: -25px; |
|||
} |
|||
|
|||
#updatenotification div.update, |
|||
#updatenotification ul, |
|||
#updatenotification p:not(.inlineblock) { |
|||
margin-bottom: 25px; |
|||
} |
|||
|
|||
|
|||
#updatenotification h2.inlineblock { |
|||
margin-top: 25px; |
|||
} |
|||
|
|||
#updatenotification h3 { |
|||
cursor: pointer; |
|||
} |
|||
|
|||
#updatenotification h3:first-of-type { |
|||
margin-top: 0; |
|||
} |
|||
@ -0,0 +1,134 @@ |
|||
<?php |
|||
declare(strict_types=1); |
|||
/** |
|||
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
* |
|||
*/ |
|||
|
|||
namespace OCA\UpdateNotification\Controller; |
|||
|
|||
use OC\App\AppStore\Fetcher\AppFetcher; |
|||
use OCP\App\AppPathNotFoundException; |
|||
use OCP\App\IAppManager; |
|||
use OCP\AppFramework\Http; |
|||
use OCP\AppFramework\Http\DataResponse; |
|||
use OCP\AppFramework\OCSController; |
|||
use OCP\IConfig; |
|||
use OCP\IRequest; |
|||
|
|||
class APIController extends OCSController { |
|||
|
|||
/** @var IConfig */ |
|||
protected $config; |
|||
|
|||
/** @var IAppManager */ |
|||
protected $appManager; |
|||
|
|||
/** @var AppFetcher */ |
|||
protected $appFetcher; |
|||
|
|||
/** |
|||
* @param string $appName |
|||
* @param IRequest $request |
|||
* @param IConfig $config |
|||
* @param IAppManager $appManager |
|||
* @param AppFetcher $appFetcher |
|||
*/ |
|||
public function __construct($appName, |
|||
IRequest $request, |
|||
IConfig $config, |
|||
IAppManager $appManager, |
|||
AppFetcher $appFetcher) { |
|||
parent::__construct($appName, $request); |
|||
|
|||
$this->config = $config; |
|||
$this->appManager = $appManager; |
|||
$this->appFetcher = $appFetcher; |
|||
} |
|||
|
|||
/** |
|||
* @param string $newVersion |
|||
* @return DataResponse |
|||
*/ |
|||
public function getAppList(string $newVersion): DataResponse { |
|||
if (!$this->config->getSystemValue('appstoreenabled', true)) { |
|||
return new DataResponse([ |
|||
'appstore_disabled' => true, |
|||
], Http::STATUS_NOT_FOUND); |
|||
} |
|||
|
|||
// Get list of installed custom apps
|
|||
$installedApps = $this->appManager->getInstalledApps(); |
|||
$installedApps = array_filter($installedApps, function($app) { |
|||
try { |
|||
$this->appManager->getAppPath($app); |
|||
} catch (AppPathNotFoundException $e) { |
|||
return false; |
|||
} |
|||
return !$this->appManager->isShipped($app); |
|||
}); |
|||
|
|||
if (empty($installedApps)) { |
|||
return new DataResponse([ |
|||
'missing' => [], |
|||
'available' => [], |
|||
]); |
|||
} |
|||
|
|||
$this->appFetcher->setVersion($newVersion, 'future-apps.json'); |
|||
|
|||
// Apps available on the app store for that version
|
|||
$availableApps = array_map(function(array $app) { |
|||
return $app['id']; |
|||
}, $this->appFetcher->get()); |
|||
|
|||
if (empty($availableApps)) { |
|||
return new DataResponse([ |
|||
'appstore_disabled' => false, |
|||
'already_on_latest' => false, |
|||
], Http::STATUS_NOT_FOUND); |
|||
} |
|||
|
|||
$missing = array_diff($installedApps, $availableApps); |
|||
$missing = array_map([$this, 'getAppDetails'], $missing); |
|||
sort($missing); |
|||
|
|||
$available = array_intersect($installedApps, $availableApps); |
|||
$available = array_map([$this, 'getAppDetails'], $available); |
|||
sort($available); |
|||
|
|||
return new DataResponse([ |
|||
'missing' => $missing, |
|||
'available' => $available, |
|||
]); |
|||
} |
|||
|
|||
/** |
|||
* Get translated app name |
|||
* |
|||
* @param string $appId |
|||
* @return string[] |
|||
*/ |
|||
protected function getAppDetails($appId): array { |
|||
$app = $this->appManager->getAppInfo($appId); |
|||
return [ |
|||
'appId' => $appId, |
|||
'appName' => $app['name'] ?? $appId, |
|||
]; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue