getUserID();
$isremote = (empty($isremote) ? 0 : $isremote);
$serviterm = empty($serviterm)? "" : $serviterm;
//检测获取所有栏目id,普通更新或一键更新时更新所有栏目
if ($gotype == '' || $gotype == 'mkallct') {
if ($upnext == 1 || $typeid == 0) {
if ($typeid > 0) {
$tidss = GetSonIds($typeid, 0);
$idArray = explode(',', $tidss);
} else {
foreach ($cfg_Cs as $k => $v) $idArray[] = $k;
}
} else {
$idArray = array();
$idArray[] = $typeid;
}
}
//一键更新带缓存的情况
else if ($gotype == 'mkall') {
$uppage = 1;
$mkcachefile = DEDEDATA."/mkall_cache_{$adminID}.php";
$idArray = array();
if (file_exists($mkcachefile)) require_once($mkcachefile);
}
if (!$idArray) {
ShowMsg("暂无栏目,请添加栏目", "javascript:;");
exit;
}
//当前更新栏目id
$totalpage = count($idArray);
if (isset($idArray[$pageno])) {
$tid = $idArray[$pageno];
} else {
if ($gotype == '') {
ShowMsg("完成所有栏目更新", "javascript:;");
exit();
} else if ($gotype == 'mkall' || $gotype == 'mkallct') {
ShowMsg("完成所有栏目更新,数据已优化", "makehtml_m_all.php?action=make&step=10");
exit();
}
}
if ($pageno == 0 && $mkpage == 1) //清空缓存
{
$dsql->ExecuteNoneQuery("DELETE FROM `#@__arccache`");
}
$reurl = '';
//更新数组所记录栏目
if (!empty($tid)) {
if (!isset($cfg_Cs[$tid])) {
ShowMsg('没有该栏目数据,缓存文件没有更新,请检查是否有写入权限', 'javascript:;');
exit();
}
if ($cfg_Cs[$tid][1] > 0) {
require_once(DEDEINC."/archive/listview.m.class.php");
$lv = new ListViewMobile($tid);
$position = MfTypedir($lv->Fields['typedir']);
} else {
require_once(DEDEINC."/archive/sglistview.class.php");
$lv = new SgListView($tid);
}
//这里统一统计
$lv->CountRecord();
if ($lv->TypeLink->TypeInfos['ispart'] == 0 && $lv->TypeLink->TypeInfos['isdefault'] != -1) $ntotalpage = $lv->TotalPage;
else $ntotalpage = 1;
if ($cfg_remote_site=='Y' && $isremote=="1") {
if ($serviterm!="") {
list($servurl, $servuser, $servpwd) = explode(',',$serviterm);
$config = array('hostname' => $servurl, 'username' => $servuser, 'password' => $servpwd,'debug' => 'TRUE');
} else {
$config=array();
}
if (!$ftp->connect($config)) exit('Error:None FTP Connection!');
}
//如果栏目的文档太多,分多批次更新
if ($ntotalpage <= $maxpagesize || $lv->TypeLink->TypeInfos['ispart'] != 0 || $lv->TypeLink->TypeInfos['isdefault'] == -1) {
$reurl = $lv->MakeHtml('', '', $isremote);
$finishType = TRUE;
} else {
$reurl = $lv->MakeHtml($mkpage, $maxpagesize, $isremote);
$finishType = FALSE;
$mkpage = $mkpage + $maxpagesize;
if ($mkpage >= ($ntotalpage + 1)) $finishType = TRUE;
}
}
$nextpage = $pageno + 1;
if ($nextpage >= $totalpage && $finishType) {
if ($gotype == '') {
if (empty($reurl)) {
$reurl = '../m/list.php?tid='.$tid;
}
ShowMsg("完成所有栏目更新,浏览栏目", "javascript:;");
exit();
} else if ($gotype == 'mkall' || $gotype == 'mkallct') {
ShowMsg("完成所有栏目更新,数据已优化", "makehtml_m_all.php?action=make&step=10");
exit();
}
} else {
$typename = isset($cfg_Cs[$tid][3])? base64_decode($cfg_Cs[$tid][3]) : "";
if ($finishType) {
$gourl = "makehtml_list_action.php?gotype={$gotype}&uppage=$uppage&maxpagesize=$maxpagesize&typeid=$typeid&pageno=$nextpage";
ShowMsg("更新栏目(id:".$tid."){$typename},继续更新栏目", $gourl, 0, 100);
exit();
} else {
$gourl = "makehtml_list_action.php?gotype={$gotype}&uppage=$uppage&mkpage=$mkpage&maxpagesize=$maxpagesize&typeid=$typeid&pageno=$pageno";
ShowMsg("更新栏目(id:".$tid."){$typename},继续更新栏目", $gourl, 0, 100);
exit();
}
}
?>