Change updater URL

This commit is contained in:
Joas Schilling 2016-09-08 12:20:29 +02:00
parent a44c1c748c
commit 280a452055
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
3 changed files with 14 additions and 14 deletions

View File

@ -519,7 +519,7 @@ $CONFIG = array(
/** /**
* URL that Nextcloud should use to look for updates * URL that Nextcloud should use to look for updates
*/ */
'updater.server.url' => 'https://updates.nextcloud.org/server/', 'updater.server.url' => 'https://updates.nextcloud.com/update-server/',
/** /**
* Is Nextcloud connected to the Internet or running in a closed network? * Is Nextcloud connected to the Internet or running in a closed network?

View File

@ -59,7 +59,7 @@ class VersionCheck {
return json_decode($this->config->getAppValue('core', 'lastupdateResult'), true); return json_decode($this->config->getAppValue('core', 'lastupdateResult'), true);
} }
$updaterUrl = $this->config->getSystemValue('updater.server.url', 'https://updates.nextcloud.com/server/'); $updaterUrl = $this->config->getSystemValue('updater.server.url', 'https://updates.nextcloud.com/update-server/');
$this->config->setAppValue('core', 'lastupdatedat', time()); $this->config->setAppValue('core', 'lastupdatedat', time());

View File

@ -91,8 +91,8 @@ class VersionCheckTest extends \Test\TestCase {
$this->config $this->config
->expects($this->at(1)) ->expects($this->at(1))
->method('getSystemValue') ->method('getSystemValue')
->with('updater.server.url', 'https://updates.nextcloud.com/server/') ->with('updater.server.url', 'https://updates.nextcloud.com/update-server/')
->willReturn('https://updates.nextcloud.com/server/'); ->willReturnArgument(1);
$this->config $this->config
->expects($this->at(2)) ->expects($this->at(2))
->method('setAppValue') ->method('setAppValue')
@ -122,7 +122,7 @@ class VersionCheckTest extends \Test\TestCase {
$this->updater $this->updater
->expects($this->once()) ->expects($this->once())
->method('getUrlContent') ->method('getUrlContent')
->with($this->buildUpdateUrl('https://updates.nextcloud.com/server/')) ->with($this->buildUpdateUrl('https://updates.nextcloud.com/update-server/'))
->will($this->returnValue($updateXml)); ->will($this->returnValue($updateXml));
$this->assertSame($expectedResult, $this->updater->check()); $this->assertSame($expectedResult, $this->updater->check());
@ -137,8 +137,8 @@ class VersionCheckTest extends \Test\TestCase {
$this->config $this->config
->expects($this->at(1)) ->expects($this->at(1))
->method('getSystemValue') ->method('getSystemValue')
->with('updater.server.url', 'https://updates.nextcloud.com/server/') ->with('updater.server.url', 'https://updates.nextcloud.com/update-server/')
->willReturn('https://updates.nextcloud.com/server/'); ->willReturnArgument(1);
$this->config $this->config
->expects($this->at(2)) ->expects($this->at(2))
->method('setAppValue') ->method('setAppValue')
@ -162,7 +162,7 @@ class VersionCheckTest extends \Test\TestCase {
$this->updater $this->updater
->expects($this->once()) ->expects($this->once())
->method('getUrlContent') ->method('getUrlContent')
->with($this->buildUpdateUrl('https://updates.nextcloud.com/server/')) ->with($this->buildUpdateUrl('https://updates.nextcloud.com/update-server/'))
->will($this->returnValue($updateXml)); ->will($this->returnValue($updateXml));
$this->assertSame([], $this->updater->check()); $this->assertSame([], $this->updater->check());
@ -184,8 +184,8 @@ class VersionCheckTest extends \Test\TestCase {
$this->config $this->config
->expects($this->at(1)) ->expects($this->at(1))
->method('getSystemValue') ->method('getSystemValue')
->with('updater.server.url', 'https://updates.nextcloud.com/server/') ->with('updater.server.url', 'https://updates.nextcloud.com/update-server/')
->willReturn('https://updates.nextcloud.com/server/'); ->willReturnArgument(1);
$this->config $this->config
->expects($this->at(2)) ->expects($this->at(2))
->method('setAppValue') ->method('setAppValue')
@ -211,7 +211,7 @@ class VersionCheckTest extends \Test\TestCase {
$this->updater $this->updater
->expects($this->once()) ->expects($this->once())
->method('getUrlContent') ->method('getUrlContent')
->with($this->buildUpdateUrl('https://updates.nextcloud.com/server/')) ->with($this->buildUpdateUrl('https://updates.nextcloud.com/update-server/'))
->will($this->returnValue($updateXml)); ->will($this->returnValue($updateXml));
$this->assertSame($expectedResult, $this->updater->check()); $this->assertSame($expectedResult, $this->updater->check());
@ -228,8 +228,8 @@ class VersionCheckTest extends \Test\TestCase {
$this->config $this->config
->expects($this->at(1)) ->expects($this->at(1))
->method('getSystemValue') ->method('getSystemValue')
->with('updater.server.url', 'https://updates.nextcloud.com/server/') ->with('updater.server.url', 'https://updates.nextcloud.com/update-server/')
->willReturn('https://updates.nextcloud.com/server/'); ->willReturnArgument(1);
$this->config $this->config
->expects($this->at(2)) ->expects($this->at(2))
->method('setAppValue') ->method('setAppValue')
@ -253,7 +253,7 @@ class VersionCheckTest extends \Test\TestCase {
$this->updater $this->updater
->expects($this->once()) ->expects($this->once())
->method('getUrlContent') ->method('getUrlContent')
->with($this->buildUpdateUrl('https://updates.nextcloud.com/server/')) ->with($this->buildUpdateUrl('https://updates.nextcloud.com/update-server/'))
->will($this->returnValue($updateXml)); ->will($this->returnValue($updateXml));
$this->assertSame($expectedResult, $this->updater->check()); $this->assertSame($expectedResult, $this->updater->check());