Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
58f473d7
Commit
58f473d7
authored
11 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
split upgrade logic from ajax file
parent
c8ad3df1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/ajax/update.php
+28
-107
28 additions, 107 deletions
core/ajax/update.php
lib/legacy/updater.php
+14
-0
14 additions, 0 deletions
lib/legacy/updater.php
lib/updater.php
+118
-39
118 additions, 39 deletions
lib/updater.php
with
160 additions
and
146 deletions
core/ajax/update.php
+
28
−
107
View file @
58f473d7
...
...
@@ -4,113 +4,34 @@ $RUNTIME_NOAPPS = true;
require_once
'../../lib/base.php'
;
if
(
OC
::
checkUpgrade
(
false
))
{
\OC_DB
::
enableCaching
(
false
);
OC_Config
::
setValue
(
'maintenance'
,
true
);
$installedVersion
=
OC_Config
::
getValue
(
'version'
,
'0.0.0'
);
$currentVersion
=
implode
(
'.'
,
OC_Util
::
getVersion
());
OC_Log
::
write
(
'core'
,
'starting upgrade from '
.
$installedVersion
.
' to '
.
$currentVersion
,
OC_Log
::
WARN
);
$updateEventSource
=
new
OC_EventSource
();
$watcher
=
new
UpdateWatcher
(
$updateEventSource
);
OC_Hook
::
connect
(
'update'
,
'success'
,
$watcher
,
'success'
);
OC_Hook
::
connect
(
'update'
,
'error'
,
$watcher
,
'error'
);
OC_Hook
::
connect
(
'update'
,
'failure'
,
$watcher
,
'failure'
);
$watcher
->
success
(
'Turned on maintenance mode'
);
try
{
$result
=
OC_DB
::
updateDbFromStructure
(
OC
::
$SERVERROOT
.
'/db_structure.xml'
);
$watcher
->
success
(
'Updated database'
);
// do a file cache upgrade for users with files
// this can take loooooooooooooooooooooooong
__doFileCacheUpgrade
(
$watcher
);
}
catch
(
Exception
$exception
)
{
$watcher
->
failure
(
$exception
->
getMessage
());
}
OC_Config
::
setValue
(
'version'
,
implode
(
'.'
,
OC_Util
::
getVersion
()));
OC_App
::
checkAppsRequirements
();
// load all apps to also upgrade enabled apps
OC_App
::
loadApps
();
OC_Config
::
setValue
(
'maintenance'
,
false
);
$watcher
->
success
(
'Turned off maintenance mode'
);
$watcher
->
done
();
}
/**
* The FileCache Upgrade routine
*
* @param UpdateWatcher $watcher
*/
function
__doFileCacheUpgrade
(
$watcher
)
{
try
{
$query
=
\OC_DB
::
prepare
(
'
SELECT DISTINCT `user`
FROM `*PREFIX*fscache`
'
);
$result
=
$query
->
execute
();
}
catch
(
\Exception
$e
)
{
return
;
}
$users
=
$result
->
fetchAll
();
if
(
count
(
$users
)
==
0
)
{
return
;
}
$step
=
100
/
count
(
$users
);
$percentCompleted
=
0
;
$lastPercentCompletedOutput
=
0
;
$startInfoShown
=
false
;
foreach
(
$users
as
$userRow
)
{
$user
=
$userRow
[
'user'
];
\OC\Files\Filesystem
::
initMountPoints
(
$user
);
\OC\Files\Cache\Upgrade
::
doSilentUpgrade
(
$user
);
if
(
!
$startInfoShown
)
{
//We show it only now, because otherwise Info about upgraded apps
//will appear between this and progress info
$watcher
->
success
(
'Updating filecache, this may take really long...'
);
$startInfoShown
=
true
;
}
$percentCompleted
+=
$step
;
$out
=
floor
(
$percentCompleted
);
if
(
$out
!=
$lastPercentCompletedOutput
)
{
$watcher
->
success
(
'... '
.
$out
.
'% done ...'
);
$lastPercentCompletedOutput
=
$out
;
}
}
$watcher
->
success
(
'Updated filecache'
);
}
class
UpdateWatcher
{
/**
* @var \OC_EventSource $eventSource;
*/
private
$eventSource
;
public
function
__construct
(
$eventSource
)
{
$this
->
eventSource
=
$eventSource
;
}
public
function
success
(
$message
)
{
OC_Util
::
obEnd
();
$this
->
eventSource
->
send
(
'success'
,
$message
);
ob_start
();
}
public
function
error
(
$message
)
{
OC_Util
::
obEnd
();
$this
->
eventSource
->
send
(
'error'
,
$message
);
ob_start
();
}
public
function
failure
(
$message
)
{
OC_Util
::
obEnd
();
$this
->
eventSource
->
send
(
'failure'
,
$message
);
$this
->
eventSource
->
close
();
$eventSource
=
new
OC_EventSource
();
$updater
=
new
\OC\Updater
(
\OC_Log
::
$object
);
$updater
->
listen
(
'\OC\Updater'
,
'maintenanceStart'
,
function
()
use
(
$eventSource
)
{
$eventSource
->
send
(
'success'
,
'Turned on maintenance mode'
);
});
$updater
->
listen
(
'\OC\Updater'
,
'maintenanceEnd'
,
function
()
use
(
$eventSource
)
{
$eventSource
->
send
(
'success'
,
'Turned off maintenance mode'
);
});
$updater
->
listen
(
'\OC\Updater'
,
'dbUpgrade'
,
function
()
use
(
$eventSource
)
{
$eventSource
->
send
(
'success'
,
'Updated database'
);
});
$updater
->
listen
(
'\OC\Updater'
,
'filecacheStart'
,
function
()
use
(
$eventSource
)
{
$eventSource
->
send
(
'success'
,
'Updating filecache, this may take really long...'
);
});
$updater
->
listen
(
'\OC\Updater'
,
'filecacheDone'
,
function
()
use
(
$eventSource
)
{
$eventSource
->
send
(
'success'
,
'Updated filecache'
);
});
$updater
->
listen
(
'\OC\Updater'
,
'filecacheProgress'
,
function
(
$out
)
use
(
$eventSource
)
{
$eventSource
->
send
(
'success'
,
'... '
.
$out
.
'% done ...'
);
});
$updater
->
listen
(
'\OC\Updater'
,
'failure'
,
function
(
$message
)
use
(
$eventSource
)
{
$eventSource
->
send
(
'failure'
,
$message
);
$eventSource
->
close
();
OC_Config
::
setValue
(
'maintenance'
,
false
);
die
();
}
});
public
function
done
()
{
OC_Util
::
obEnd
();
$this
->
eventSource
->
send
(
'done'
,
''
);
$this
->
eventSource
->
close
();
}
$updater
->
upgrade
();
}
\ No newline at end of file
$eventSource
->
send
(
'done'
,
''
);
$eventSource
->
close
();
}
This diff is collapsed.
Click to expand it.
lib/legacy/updater.php
0 → 100644
+
14
−
0
View file @
58f473d7
<?php
/**
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
class
OC_Updater
{
public
static
function
check
()
{
$updater
=
new
\OC\Updater
();
return
$updater
->
check
();
}
}
This diff is collapsed.
Click to expand it.
lib/updater.php
+
118
−
39
View file @
58f473d7
<?php
/**
* ownCloud
*
* @author Frank Karlitschek
* @copyright 2012 Frank Karlitschek frank@owncloud.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace
OC
;
use
OC\Hooks\BasicEmitter
;
/**
* Class that handels autoupdating of ownCloud
*
* Hooks provided in scope \OC\Updater
* - maintenanceStart()
* - maintenanceEnd()
* - dbUpgrade()
* - filecacheStart()
* - filecacheProgress(int $percentage)
* - filecacheDone()
* - failure(string $message)
*/
class
OC_Updater
{
class
Updater
extends
BasicEmitter
{
/**
* @var \OC\Log $log
*/
private
$log
;
/**
* @param \OC\Log $log
*/
public
function
__construct
(
$log
=
null
)
{
$this
->
log
=
$log
;
}
/**
* Check if a new version is available
* @return array | bool
*/
public
static
function
check
()
{
public
function
check
()
{
// Look up the cache - it is invalidated all 30 minutes
if
((
OC_Appconfig
::
getValue
(
'core'
,
'lastupdatedat'
)
+
1800
)
>
time
())
{
return
json_decode
(
OC_Appconfig
::
getValue
(
'core'
,
'lastupdateResult'
),
true
);
if
((
\
OC_Appconfig
::
getValue
(
'core'
,
'lastupdatedat'
)
+
1800
)
>
time
())
{
return
json_decode
(
\
OC_Appconfig
::
getValue
(
'core'
,
'lastupdateResult'
),
true
);
}
OC_Appconfig
::
setValue
(
'core'
,
'lastupdatedat'
,
time
());
\
OC_Appconfig
::
setValue
(
'core'
,
'lastupdatedat'
,
time
());
if
(
OC_Appconfig
::
getValue
(
'core'
,
'installedat'
,
''
)
==
''
)
{
OC_Appconfig
::
setValue
(
'core'
,
'installedat'
,
microtime
(
true
));
if
(
\
OC_Appconfig
::
getValue
(
'core'
,
'installedat'
,
''
)
==
''
)
{
\
OC_Appconfig
::
setValue
(
'core'
,
'installedat'
,
microtime
(
true
));
}
$updaterurl
=
'http://apps.owncloud.com/updater.php'
;
$version
=
OC_Util
::
getVersion
();
$version
[
'installed'
]
=
OC_Appconfig
::
getValue
(
'core'
,
'installedat'
);
$version
[
'updated'
]
=
OC_Appconfig
::
getValue
(
'core'
,
'lastupdatedat'
);
$version
[
'updatechannel'
]
=
'stable'
;
$version
[
'edition'
]
=
OC_Util
::
getEditionString
();
$versionstring
=
implode
(
'x'
,
$version
);
$updaterurl
=
'http://apps.owncloud.com/updater.php'
;
$version
=
\
OC_Util
::
getVersion
();
$version
[
'installed'
]
=
\
OC_Appconfig
::
getValue
(
'core'
,
'installedat'
);
$version
[
'updated'
]
=
\
OC_Appconfig
::
getValue
(
'core'
,
'lastupdatedat'
);
$version
[
'updatechannel'
]
=
'stable'
;
$version
[
'edition'
]
=
\
OC_Util
::
getEditionString
();
$versionstring
=
implode
(
'x'
,
$version
);
//fetch xml data from updater
$url
=
$updaterurl
.
'?version='
.
$versionstring
;
$url
=
$updaterurl
.
'?version='
.
$versionstring
;
// set a sensible timeout of 10 sec to stay responsive even if the update server is down.
$ctx
=
stream_context_create
(
...
...
@@ -60,21 +71,89 @@ class OC_Updater{
)
)
);
$xml
=
@
file_get_contents
(
$url
,
0
,
$ctx
);
if
(
$xml
==
false
)
{
$xml
=
@
file_get_contents
(
$url
,
0
,
$ctx
);
if
(
$xml
==
false
)
{
return
array
();
}
$data
=
@
simplexml_load_string
(
$xml
);
$data
=
@
simplexml_load_string
(
$xml
);
$tmp
=
array
();
$tmp
=
array
();
$tmp
[
'version'
]
=
$data
->
version
;
$tmp
[
'versionstring'
]
=
$data
->
versionstring
;
$tmp
[
'url'
]
=
$data
->
url
;
$tmp
[
'web'
]
=
$data
->
web
;
// Cache the result
OC_Appconfig
::
setValue
(
'core'
,
'lastupdateResult'
,
json_encode
(
$data
));
\
OC_Appconfig
::
setValue
(
'core'
,
'lastupdateResult'
,
json_encode
(
$data
));
return
$tmp
;
}
}
\ No newline at end of file
/**
* runs the update actions in maintenance mode, does not upgrade the source files
*/
public
function
upgrade
()
{
\OC_DB
::
enableCaching
(
false
);
\OC_Config
::
setValue
(
'maintenance'
,
true
);
$installedVersion
=
\OC_Config
::
getValue
(
'version'
,
'0.0.0'
);
$currentVersion
=
implode
(
'.'
,
\OC_Util
::
getVersion
());
if
(
$this
->
log
)
{
$this
->
log
->
debug
(
'starting upgrade from '
.
$installedVersion
.
' to '
.
$currentVersion
,
array
(
'app'
=>
'core'
));
}
$this
->
emit
(
'\OC\Updater'
,
'maintenanceStart'
);
try
{
\OC_DB
::
updateDbFromStructure
(
\OC
::
$SERVERROOT
.
'/db_structure.xml'
);
$this
->
emit
(
'\OC\Updater'
,
'dbUpgrade'
);
// do a file cache upgrade for users with files
// this can take loooooooooooooooooooooooong
$this
->
upgradeFileCache
();
}
catch
(
\Exception
$exception
)
{
$this
->
emit
(
'\OC\Updater'
,
'failure'
,
array
(
$exception
->
getMessage
()));
}
\OC_Config
::
setValue
(
'version'
,
implode
(
'.'
,
\OC_Util
::
getVersion
()));
\OC_App
::
checkAppsRequirements
();
// load all apps to also upgrade enabled apps
\OC_App
::
loadApps
();
\OC_Config
::
setValue
(
'maintenance'
,
false
);
$this
->
emit
(
'\OC\Updater'
,
'maintenanceEnd'
);
}
private
function
upgradeFileCache
()
{
try
{
$query
=
\OC_DB
::
prepare
(
'
SELECT DISTINCT `user`
FROM `*PREFIX*fscache`
'
);
$result
=
$query
->
execute
();
}
catch
(
\Exception
$e
)
{
return
;
}
$users
=
$result
->
fetchAll
();
if
(
count
(
$users
)
==
0
)
{
return
;
}
$step
=
100
/
count
(
$users
);
$percentCompleted
=
0
;
$lastPercentCompletedOutput
=
0
;
$startInfoShown
=
false
;
foreach
(
$users
as
$userRow
)
{
$user
=
$userRow
[
'user'
];
\OC\Files\Filesystem
::
initMountPoints
(
$user
);
\OC\Files\Cache\Upgrade
::
doSilentUpgrade
(
$user
);
if
(
!
$startInfoShown
)
{
//We show it only now, because otherwise Info about upgraded apps
//will appear between this and progress info
$this
->
emit
(
'\OC\Updater'
,
'filecacheStart'
);
$startInfoShown
=
true
;
}
$percentCompleted
+=
$step
;
$out
=
floor
(
$percentCompleted
);
if
(
$out
!=
$lastPercentCompletedOutput
)
{
$this
->
emit
(
'\OC\Updater'
,
'filecacheProgress'
,
array
(
$out
));
$lastPercentCompletedOutput
=
$out
;
}
}
$this
->
emit
(
'\OC\Updater'
,
'filecacheDone'
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment