Merge pull request #22238 from owncloud/add-link-to-updater
Move update notification code into appremotes/origin/users-ajaxloadgroups
commit
a39c7591d6
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @author Lukas Reschke <lukas@owncloud.com>
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
||||||
|
* @license AGPL-3.0
|
||||||
|
*
|
||||||
|
* This code is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License, version 3,
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* 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, version 3,
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
if(\OC::$server->getConfig()->getSystemValue('updatechecker', true) === true) {
|
||||||
|
$updater = new \OC\Updater(
|
||||||
|
\OC::$server->getHTTPHelper(),
|
||||||
|
\OC::$server->getConfig(),
|
||||||
|
\OC::$server->getIntegrityCodeChecker()
|
||||||
|
);
|
||||||
|
$updateChecker = new \OCA\UpdateNotification\UpdateChecker(
|
||||||
|
$updater
|
||||||
|
);
|
||||||
|
|
||||||
|
$userObject = \OC::$server->getUserSession()->getUser();
|
||||||
|
if($userObject !== null) {
|
||||||
|
if(\OC::$server->getGroupManager()->isAdmin($userObject->getUID()) && $updateChecker->getUpdateState() !== []) {
|
||||||
|
\OCP\Util::addScript('updatenotification', 'notification');
|
||||||
|
OC_Hook::connect('\OCP\Config', 'js', $updateChecker, 'getJavaScript');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<info>
|
||||||
|
<id>updatenotification</id>
|
||||||
|
<name>Update notification</name>
|
||||||
|
<description>Displays update notifications for ownCloud.</description>
|
||||||
|
<licence>AGPL</licence>
|
||||||
|
<author>Lukas Reschke</author>
|
||||||
|
<version>0.1.0</version>
|
||||||
|
<default_enable/>
|
||||||
|
<dependencies>
|
||||||
|
<owncloud min-version="9.0" max-version="9.0" />
|
||||||
|
</dependencies>
|
||||||
|
</info>
|
||||||
@ -0,0 +1,67 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @author Lukas Reschke <lukas@owncloud.com>
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
||||||
|
* @license AGPL-3.0
|
||||||
|
*
|
||||||
|
* This code is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License, version 3,
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* 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, version 3,
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace OCA\UpdateNotification;
|
||||||
|
|
||||||
|
use OC\Updater;
|
||||||
|
|
||||||
|
class UpdateChecker {
|
||||||
|
/** @var Updater */
|
||||||
|
private $updater;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Updater $updater
|
||||||
|
*/
|
||||||
|
public function __construct(Updater $updater) {
|
||||||
|
$this->updater = $updater;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getUpdateState() {
|
||||||
|
$data = $this->updater->check();
|
||||||
|
$result = [];
|
||||||
|
|
||||||
|
if(isset($data['version']) && $data['version'] !== '' && $data['version'] !== []) {
|
||||||
|
$result['updateAvailable'] = true;
|
||||||
|
$result['updateVersion'] = $data['versionstring'];
|
||||||
|
if(substr($data['web'], 0, 8) === 'https://') {
|
||||||
|
$result['updateLink'] = $data['web'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $data
|
||||||
|
*/
|
||||||
|
public function getJavaScript(array $data) {
|
||||||
|
$data['array']['oc_updateState'] = json_encode([
|
||||||
|
'updateAvailable' => true,
|
||||||
|
'updateVersion' => $this->getUpdateState()['updateVersion'],
|
||||||
|
'updateLink' => isset($this->getUpdateState()['updateLink']) ? $this->getUpdateState()['updateLink'] : '',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,86 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @author Lukas Reschke <lukas@owncloud.com>
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
||||||
|
* @license AGPL-3.0
|
||||||
|
*
|
||||||
|
* This code is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License, version 3,
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* 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, version 3,
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace OCA\UpdateNotification\Tests;
|
||||||
|
|
||||||
|
use OC\Updater;
|
||||||
|
use OCA\UpdateNotification\UpdateChecker;
|
||||||
|
use Test\TestCase;
|
||||||
|
|
||||||
|
class UpdateCheckerTest extends TestCase {
|
||||||
|
/** @var Updater */
|
||||||
|
private $updater;
|
||||||
|
/** @var UpdateChecker */
|
||||||
|
private $updateChecker;
|
||||||
|
|
||||||
|
public function setUp() {
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->updater = $this->getMockBuilder('\OC\Updater')
|
||||||
|
->disableOriginalConstructor()->getMock();
|
||||||
|
$this->updateChecker = new UpdateChecker($this->updater);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testGetUpdateStateWithUpdateAndInvalidLink() {
|
||||||
|
$this->updater
|
||||||
|
->expects($this->once())
|
||||||
|
->method('check')
|
||||||
|
->willReturn([
|
||||||
|
'version' => 123,
|
||||||
|
'versionstring' => 'ownCloud 123',
|
||||||
|
'web'=> 'javascript:alert(1)',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$expected = [
|
||||||
|
'updateAvailable' => true,
|
||||||
|
'updateVersion' => 'ownCloud 123',
|
||||||
|
];
|
||||||
|
$this->assertSame($expected, $this->updateChecker->getUpdateState());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testGetUpdateStateWithUpdateAndValidLink() {
|
||||||
|
$this->updater
|
||||||
|
->expects($this->once())
|
||||||
|
->method('check')
|
||||||
|
->willReturn([
|
||||||
|
'version' => 123,
|
||||||
|
'versionstring' => 'ownCloud 123',
|
||||||
|
'web'=> 'https://owncloud.org/myUrl',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$expected = [
|
||||||
|
'updateAvailable' => true,
|
||||||
|
'updateVersion' => 'ownCloud 123',
|
||||||
|
'updateLink' => 'https://owncloud.org/myUrl',
|
||||||
|
];
|
||||||
|
$this->assertSame($expected, $this->updateChecker->getUpdateState());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testGetUpdateStateWithoutUpdate() {
|
||||||
|
$this->updater
|
||||||
|
->expects($this->once())
|
||||||
|
->method('check')
|
||||||
|
->willReturn([]);
|
||||||
|
|
||||||
|
$expected = [];
|
||||||
|
$this->assertSame($expected, $this->updateChecker->getUpdateState());
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue