dzzoffice/admin/cloud/movetool.php
小胡 4bc8ee6f49
修复部分情况下无法正常更新用户状态信息问题 (#290)
* 更新内容:
1.條复网盘应用移动端部分情况下目录权限不正确问题
2.修复一些已知问题
3. 优化btn按钮交互效果
4.升级1avui至v2.9.23版本

* 修复一些已知问题
2025-02-26 17:14:24 +08:00

68 lines
2.3 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');
exit();
}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');
}
?>