dzzoffice/admin/cloud/movetool.php
小胡 77979b6ed5
更新至V2.3.2版本,离线升级的用户需要执行升级程序 (#278)
* 优化百度编辑器,修复编辑器插入的图片不能预览问题

* 处理系统异常时登录无反应问题

* 更新至V2.3.1版本,离线升级的用户需要执行升级程序
2025-01-16 21:17:09 +08:00

67 lines
2.2 KiB
PHP

<?php
/*
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
* @link http://www.dzzoffice.com
* @author zyx(zyx@dzz.cc)
*/
if(!defined('IN_DZZ') || !defined('IN_ADMIN')) {
exit('Access Denied');
}
$navtitle=lang('dzzpan').' - '.lang('migration_tool').' - '.lang('cloud_set');
if(submitcheck('movesubmit')){
$_GET=dhtmlspecialchars($_GET);
$gets = array(
'mod'=>'cloud',
'op'=>'movetool_run',
'oremoteid'=>intval($_GET['oremoteid']),
'remoteid' =>intval($_GET['remoteid']),
'exts'=>trim($_GET['router']['exts']),
'sizelt'=>$_GET['router']['size']['lt'],
'sizegt'=>$_GET['router']['size']['gt'],
);
$runurl = BASESCRIPT."?".url_implode($gets);
if(!$sourcedata=C::t('local_storage')->fetch_by_remoteid($gets['oremoteid'])){
showmessage('storage_location_exist', dreferer());
}
$sourcedata['fusesize']=formatsize($sourcedata['usesize']);
if ($sourcedata['totalsize'])
$sourcedata['ftotalsize'] = formatsize($sourcedata['totalsize']);
else
$sourcedata['ftotalsize'] = lang('unlimited');
if(!$targetdata=C::t('local_storage')->fetch_by_remoteid($gets['remoteid'])){
showmessage('target_storage_location_exist', dreferer());
}
$targetdata['fusesize']=formatsize($targetdata['usesize']);
if ($targetdata['totalsize'])
$targetdata['ftotalsize'] = formatsize($targetdata['totalsize']);
else
$targetdata['ftotalsize'] = lang('unlimited');
//获取需要迁移的数据量
$movesize=C::t('attachment')->getAttachByFilter($gets,1);
$fmovesize=formatsize($movesize);
if(!$first=C::t('attachment')->getAttachByFilter($gets)){
showmessage('movetool_move_data', dreferer());
}
$first['fsize']=formatsize($first['filesize']);
include template('movetool_run');
}else{
$spaces=array();
foreach(C::t('local_storage')->fetch_all_orderby_disp() as $key=>$value){
if($arr=C::t('local_storage')->update_sizecount_by_remoteid($value['remoteid'])){
$value['fusesize']=formatsize($arr['usesize']);
if ($arr['totalsize'])
$value['ftotalsize'] = formatsize($arr['totalsize']);
else
$value['ftotalsize'] = lang('unlimited');
}
$spaces[$value['remoteid']]=$value;
}
$spaces_json=json_encode($spaces);
include template('movetool');
}
?>