mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 03:09:58 +03:00
68 lines
No EOL
1.5 KiB
PHP
68 lines
No EOL
1.5 KiB
PHP
<?php
|
|
// +-----------------------------------------------------------------------+
|
|
// | This file is part of Piwigo. |
|
|
// | |
|
|
// | For copyright and license information, please view the COPYING.txt |
|
|
// | file that was distributed with this source code. |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
if (!defined('PHPWG_ROOT_PATH'))
|
|
{
|
|
die('Hacking attempt!');
|
|
}
|
|
|
|
$upgrade_description = 'derivatives: new organization of "upload" and "galleries" directories';
|
|
|
|
$query = '
|
|
SELECT
|
|
id,
|
|
path,
|
|
tn_ext,
|
|
has_high,
|
|
high_filesize,
|
|
high_width,
|
|
high_height
|
|
FROM '.IMAGES_TABLE.'
|
|
;';
|
|
$result = pwg_query($query);
|
|
$starttime = get_moment();
|
|
|
|
$updates = array();
|
|
|
|
while ($row = pwg_db_fetch_assoc($result))
|
|
{
|
|
if ('true' == $row['has_high'])
|
|
{
|
|
$high_path = dirname($row['path']).'/pwg_high/'.basename($row['path']);
|
|
rename($high_path, $row['path']);
|
|
|
|
array_push(
|
|
$updates,
|
|
array(
|
|
'id' => $row['id'],
|
|
'width' => $row['high_width'],
|
|
'height' => $row['high_height'],
|
|
'filesize' => $row['high_filesize'],
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
if (count($updates) > 0)
|
|
{
|
|
mass_updates(
|
|
IMAGES_TABLE,
|
|
array(
|
|
'primary' => array('id'),
|
|
'update' => array('width', 'height', 'filesize'),
|
|
),
|
|
$updates
|
|
);
|
|
}
|
|
|
|
echo
|
|
"\n"
|
|
. $upgrade_description.sprintf(' (execution in %.3fs)', (get_moment() - $starttime))
|
|
."\n"
|
|
;
|
|
?>
|