12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016 |
- <?php
- /**
- * 文档处理
- *
- * @version $Id: archives_do.php 1 8:26 2010年7月12日Z tianya $
- * @package DedeCMS.Administrator
- * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
- * @license http://help.dedecms.com/usersguide/license.html
- * @link http://www.dedecms.com
- */
- require_once(dirname(__FILE__).'/config.php');
- require_once(DEDEADMIN.'/inc/inc_batchup.php');
- require_once(DEDEADMIN.'/inc/inc_archives_functions.php');
- require_once(DEDEINC.'/typelink.class.php');
- require_once(DEDEINC.'/arc.archives.class.php');
- $ENV_GOBACK_URL = (empty($_COOKIE['ENV_GOBACK_URL']) ? 'content_list.php' : $_COOKIE['ENV_GOBACK_URL']);
- if(empty($dopost))
- {
- ShowMsg('对不起,你没指定运行参数!','-1');
- exit();
- }
- $aid = isset($aid) ? preg_replace("#[^0-9]#", '', $aid) : '';
- /*--------------------------
- //编辑文档
- function editArchives(){ }
- ---------------------------*/
- if($dopost=='editArchives')
- {
- $query = "SELECT arc.id,arc.typeid,ch.maintable,ch.editcon
- FROM `#@__arctiny` arc
- LEFT JOIN `#@__arctype` tp ON tp.id=arc.typeid
- LEFT JOIN `#@__channeltype` ch ON ch.id=arc.channel
- WHERE arc.id='$aid' ";
- $row = $dsql->GetOne($query);
- $gurl = $row['editcon'];
- if($gurl=='') $gurl='article_edit.php';
- header("location:{$gurl}?aid=$aid");
- exit();
- }
- /*--------------------------
- //浏览文档
- function viewArchives(){ }
- ---------------------------*/
- else if($dopost=="viewArchives")
- {
- $aid = preg_replace("#[^0-9]#", '', $aid);
- //获取主表信息
- $query = "SELECT arc.*,ch.maintable,ch.addtable,ch.issystem,ch.editcon,
- tp.typedir,tp.typename,tp.corank,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.sitepath,tp.siteurl
- FROM `#@__arctiny` arc
- LEFT JOIN `#@__arctype` tp ON tp.id=arc.typeid
- LEFT JOIN `#@__channeltype` ch ON ch.id=tp.channeltype
- WHERE arc.id='$aid' ";
- $trow = $dsql->GetOne($query);
- $trow['maintable'] = ( trim($trow['maintable'])=='' ? '#@__archives' : trim($trow['maintable']) );
- if($trow['issystem'] != -1)
- {
- $arcQuery = "SELECT arc.*,tp.typedir,tp.typename,tp.corank,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.sitepath,tp.siteurl
- FROM `{$trow['maintable']}` arc LEFT JOIN `#@__arctype` tp on arc.typeid=tp.id
- LEFT JOIN `#@__channeltype` ch on ch.id=arc.channel WHERE arc.id='$aid' ";
- $arcRow = $dsql->GetOne($arcQuery);
- PutCookie('DedeUserID',$arcRow['mid'],1800);
- PutCookie('DedeLoginTime',time(),1800);
- if($arcRow['ismake']==-1 || $arcRow['corank']!=0 || $arcRow['arcrank']!=0 || ($arcRow['typeid']==0 && $arcRow['channel']!=-1) || $arcRow['money']>0)
- {
- echo "<script language='javascript'>location.href='{$cfg_phpurl}/view.php?aid={$aid}';</script>";
- exit();
- }
- }
- else
- {
- $arcRow['id'] = $aid;
- $arcRow['typeid'] = $trow['typeid'];
- $arcRow['senddate'] = $trow['senddate'];
- $arcRow['title'] = '';
- $arcRow['ismake'] = 1;
- $arcRow['arcrank'] = $trow['corank'];
- $arcRow['namerule'] = $trow['namerule'];
- $arcRow['typedir'] = $trow['typedir'];
- $arcRow['money'] = 0;
- $arcRow['filename'] = '';
- $arcRow['moresite'] = $trow['moresite'];
- $arcRow['siteurl'] = $trow['siteurl'];
- $arcRow['sitepath'] = $trow['sitepath'];
- }
- $arcurl = GetFileUrl($arcRow['id'],$arcRow['typeid'],$arcRow['senddate'],$arcRow['title'],$arcRow['ismake'],$arcRow['arcrank'],
- $arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename'],$arcRow['moresite'],$arcRow['siteurl'],$arcRow['sitepath']);
- $arcfile = GetFileUrl($arcRow['id'],$arcRow['typeid'],$arcRow['senddate'],$arcRow['title'],
- $arcRow['ismake'],$arcRow['arcrank'],$arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename']);
- if(preg_match("#^http:#", $arcfile))
- {
- $arcfile = preg_replace("#^http:\/\/([^\/]*)\/#i", '/', $arcfile);
- }
- $truefile = GetTruePath().$arcfile;
- if(!file_exists($truefile))
- {
- MakeArt($aid,TRUE);
- }
- echo "<script language='javascript'>location.href='$arcurl"."?".time()."';</script>";
- exit();
- }
- /*--------------------------
- //异步上传缩略图
- function uploadLitpic(){ }
- ---------------------------*/
- else if($dopost=="uploadLitpic")
- {
- $upfile = AdminUpload('litpic', 'imagelit', 0, false );
- if($upfile=='-1')
- {
- $msg = "<script language='javascript'>
- parent.document.getElementById('uploadwait').style.display = 'none';
- alert('你没指定要上传的文件或文件大小超过限制!');
- </script>";
- }
- else if($upfile=='-2')
- {
- $msg = "<script language='javascript'>
- parent.document.getElementById('uploadwait').style.display = 'none';
- alert('上传文件失败,请检查原因!');
- </script>";
- }
- else if($upfile=='0')
- {
- $msg = "<script language='javascript'>
- parent.document.getElementById('uploadwait').style.display = 'none';
- alert('文件类型不正确!');
- </script>";
- }
- else
- {
- if(!empty($cfg_uplitpic_cut) && $cfg_uplitpic_cut=='N')
- {
- $msg = "<script language='javascript'>
- parent.document.getElementById('uploadwait').style.display = 'none';
- parent.document.getElementById('picname').value = '{$upfile}';
- if(parent.document.getElementById('divpicview'))
- {
- parent.document.getElementById('divpicview').style.width = '150px';
- parent.document.getElementById('divpicview').innerHTML = \"<img src='{$upfile}?n' width='150' />\";
- }
- </script>";
- }
- else
- {
- $msg = "<script language='javascript'>
- parent.document.getElementById('uploadwait').style.display = 'none';
- window.open('imagecut.php?f=picname&isupload=yes&file={$upfile}', 'popUpImagesWin', 'scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=150, top=50');
- </script>";
- }
- }
- echo $msg;
- exit();
- }
- /*--------------------------
- //推荐文档
- function commendArchives(){ }
- ---------------------------*/
- else if($dopost=="commendArchives")
- {
- CheckPurview('a_Commend,sys_ArcBatch');
- if( !empty($aid) && empty($qstr) )
- {
- $qstr = $aid;
- }
- if($qstr=='')
- {
- ShowMsg("参数无效!",$ENV_GOBACK_URL);
- exit();
- }
- $arcids = preg_replace("#[^0-9,]#", '', preg_replace("#`#", ',', $qstr));
- $query = "SELECT arc.id,arc.typeid,ch.issystem,ch.maintable,ch.addtable FROM `#@__arctiny` arc
- LEFT JOIN `#@__arctype` tp on tp.id=arc.typeid
- LEFT JOIN `#@__channeltype` ch on ch.id=tp.channeltype
- WHERE arc.id in($arcids) ";
- $dsql->SetQuery($query);
- $dsql->Execute();
- while($row = $dsql->GetArray())
- {
- $aid = $row['id'];
- if($row['issystem']!=-1)
- {
- $maintable = ( trim($row['maintable'])=='' ? '#@__archives' : trim($row['maintable']) );
- $arr = $dsql->GetOne("SELECT flag FROM `{$maintable}` WHERE id='$aid' ");
- $flag = ($arr['flag']=='' ? 'c' : $arr['flag'].',c');
- $dsql->ExecuteNoneQuery(" UPDATE `{$maintable}` SET `flag`='$flag' WHERE id='{$aid}' ");
- }
- else
- {
- $maintable = trim($row['addtable']);
- $arr = $dsql->GetOne("SELECT flag From `{$maintable}` where aid='$aid' ");
- $flag = ($arr['flag']=='' ? 'c' : $arr['flag'].',c');
- $dsql->ExecuteNoneQuery(" UPDATE `{$maintable}` SET `flag`='$flag' WHERE aid='{$aid}' ");
- }
- }
- ShowMsg("成功把所选的文档设为推荐!",$ENV_GOBACK_URL);
- exit();
- }
- /*--------------------------
- //生成HTML
- function makeArchives();
- ---------------------------*/
- else if($dopost=="makeArchives")
- {
- CheckPurview('sys_MakeHtml,sys_ArcBatch');
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
-
- if($qstr=='')
- {
- ShowMsg('参数无效!',$ENV_GOBACK_URL);
- exit();
- }
- require_once(DEDEADMIN.'/inc/inc_archives_functions.php');
- $qstrs = explode('`',$qstr);
- $i = 0;
- foreach($qstrs as $aid)
- {
- $i++;
- $pageurl = MakeArt($aid,false);
- }
- ShowMsg("成功更新指定 $i 个文件...",$ENV_GOBACK_URL);
- exit();
- }
- /*--------------------------
- //审核文档
- function checkArchives() { }
- ---------------------------*/
- else if($dopost=="checkArchives")
- {
- CheckPurview('a_Check,a_AccCheck,sys_ArcBatch');
- require_once(DEDEADMIN."/inc/inc_archives_functions.php");
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
- if($qstr=='')
- {
- ShowMsg("参数无效!",$ENV_GOBACK_URL);
- exit();
- }
- $arcids = preg_replace("#[^0-9,]#", '', preg_replace("#`#", ',', $qstr));
- $query = "SELECT arc.id,arc.typeid,ch.issystem,ch.maintable,ch.addtable FROM `#@__arctiny` arc
- LEFT JOIN `#@__arctype` tp ON tp.id=arc.typeid
- LEFT JOIN `#@__channeltype` ch ON ch.id=tp.channeltype
- WHERE arc.id in($arcids) ";
- $dsql->SetQuery($query);
- $dsql->Execute('ckall');
- while($row = $dsql->GetArray('ckall'))
- {
- $aid = $row['id'];
- $maintable = ( trim($row['maintable'])=='' ? '#@__archives' : trim($row['maintable']) );
- $dsql->ExecuteNoneQuery("UPDATE `#@__arctiny` SET arcrank='0' WHERE id='$aid' ");
- if($row['issystem']==-1)
- {
- $dsql->ExecuteNoneQuery("UPDATE `".trim($row['addtable'])."` SET arcrank='0' WHERE aid='$aid' ");
- }
- else
- {
- $dsql->ExecuteNoneQuery("UPDATE `$maintable` SET arcrank='0', dutyadmin='".$cuserLogin->getUserID()."' WHERE id='$aid' ");
- }
- $dsql->ExecuteNoneQuery("UPDATE `#@__taglist` SET arcrank='0' WHERE aid='$aid' ");
- $pageurl = MakeArt($aid,false);
- }
- ShowMsg("成功审核指定的文档!",$ENV_GOBACK_URL);
- exit();
- }
- /*--------------------------
- //删除文档
- function delArchives(){ }
- ---------------------------*/
- else if($dopost=="delArchives")
- {
- CheckPurview('a_Del,a_AccDel,a_MyDel,sys_ArcBatch');
- require_once(DEDEINC."/oxwindow.class.php");
- if(empty($fmdo)) $fmdo = '';
- if($fmdo=='yes')
- {
- if( !empty($aid) && empty($qstr) )
- {
- $qstr = $aid;
- }
- if($qstr=='')
- {
- ShowMsg("参数无效!",$ENV_GOBACK_URL);
- exit();
- }
- $qstrs = explode("`",$qstr);
- $okaids = Array();
- foreach($qstrs as $aid)
- {
- if(!isset($okaids[$aid]))
- {
- DelArc($aid);
- }
- else
- {
- $okaids[$aid] = 1;
- }
- }
- ShowMsg("成功删除指定的文档!",$ENV_GOBACK_URL);
- exit();
- }
- else
- {
- $wintitle = "文档管理-删除文档";
- $wecome_info = "<a href='".$ENV_GOBACK_URL."'>文档管理</a>::删除文档";
- $win = new OxWindow();
- $win->Init("archives_do.php","js/blank.js","POST");
- $win->AddHidden("fmdo","yes");
- $win->AddHidden("dopost",$dopost);
- $win->AddHidden("qstr",$qstr);
- $win->AddHidden("aid",$aid);
- $win->AddTitle("你确实要删除“ $qstr 和 $aid ”这些文档?");
- $winform = $win->GetWindow("ok");
- $win->Display();
- }
- }
- /*-----------------------------
- function moveArchives(){ }
- ------------------------------*/
- else if($dopost=='moveArchives')
- {
- CheckPurview('sys_ArcBatch');
- if(empty($totype))
- {
- require_once(DEDEINC.'/typelink.class.php');
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
-
- AjaxHead();
- $channelid = empty($channelid) ? 0 : $channelid;
- $tl = new TypeLink($aid);
- $typeOptions = $tl->GetOptionArray(0, $admin_catalogs, $channelid);
- $typeOptions = "<select name='totype' style='width:90%'>
- <option value='0'>请选择移动到的位置...</option>\r\n
- $typeOptions
- </select>";
-
- //输出AJAX可移动窗体
- $divname = 'moveArchives';
- echo "<div class='title' onmousemove=\"DropMoveHand('{$divname}', 225);\" onmousedown=\"DropStartHand();\" onmouseup=\"DropStopHand();\">\r\n";
- echo " <div class='titLeft'>移动文档</div>\r\n";
- echo " <div class='titRight'><img src='images/ico-close.gif' style='cursor:pointer;' onclick='HideObj(\"{$divname}\");ChangeFullDiv(\"hide\");' alt='关闭' title='关闭' /></div>\r\n";
- echo "</div>\r\n";
- echo "<form name='quickeditform' action='archives_do.php' method='post'>\r\n";
- echo "<input type='hidden' name='dopost' value='{$dopost}' />\r\n";
- echo "<input type='hidden' name='qstr' value='{$qstr}' />\r\n";
- echo "<table width='100%' style='margin-top:6px;z-index:9000;'>\r\n";
- ?>
- <tr height='28'>
- <td width="80" class='bline'> 目标栏目:</td>
- <td class='bline'>
- <?php echo $typeOptions; ?>
- </td>
- </tr>
- <tr height='32'>
- <td width="80" class='bline'> 文档ID:</td>
- <td class='bline'>
- <input type='text' name='tmpids' value="<?php echo $qstr; ?>" style='width:310px;overflow:hidden;' />
- <br />
- 移动到的目标栏目必须和选定的文档频道类型一致,否则程序会自动勿略不符合的文档。
- </td>
- </tr>
- <tr height='32'>
- <td colspan='2' align='center' style='padding-top:12px'>
- <input name="imageField" type="image" src="images/button_ok.gif" width="60" height="22" class="np" border="0" style="cursor:pointer" />
-
- <img src="images/button_back.gif" width="60" height="22" border="0" onclick='HideObj("<?php echo $divname; ?>");ChangeFullDiv("hide");' style="cursor:pointer" />
- </td>
- </td>
- </tr>
- </table>
- </form>
- <?php
- //AJAX窗体结束
- }
- else
- {
- $totype = preg_replace("#[^0-9]#", '', $totype);
- $typeInfos = $dsql->GetOne("SELECT tp.channeltype,tp.ispart,tp.channeltype,ch.maintable,ch.addtable,ch.issystem FROM `#@__arctype` tp LEFT JOIN `#@__channeltype` ch on ch.id=tp.channeltype WHERE tp.id='$totype' ");
- $idtype = "id";
- if(!is_array($typeInfos))
- {
- ShowMsg('参数错误!','-1');
- exit();
- }
- if($typeInfos['ispart']!=0)
- {
- ShowMsg('文档保存的栏目必须为最终列表栏目!','-1');
- exit();
- }
- if(empty($typeInfos['addtable']))
- {
- $typeInfos['maintable'] = '#@__archives';
- }
- //增加单表模型判断
- if($typeInfos['issystem'] == -1)
- {
- $typeInfos['maintable'] = $typeInfos['addtable'];
- $idtype = "aid";
- }
- $arcids = preg_replace("#[^0-9,]#", '', preg_replace("#`#", ',', $qstr));
- $arc = '';
- $j = 0;
- $okids = array();
- $dsql->SetQuery("SELECT {$idtype},typeid FROM `{$typeInfos['maintable']}` WHERE {$idtype} in($arcids) AND channel='{$typeInfos['channeltype']}' ");
- $dsql->Execute();
- while($row = $dsql->GetArray())
- {
- if($row['typeid']!=$totype)
- {
- $dsql->ExecuteNoneQuery("UPDATE `#@__arctiny` SET typeid='$totype' WHERE id='{$row[$idtype]}' ");
- $dsql->ExecuteNoneQuery("UPDATE `{$typeInfos['maintable']}` SET typeid='$totype' WHERE id='{$row[$idtype]}' ");
- $dsql->ExecuteNoneQuery("UPDATE `{$typeInfos['addtable']}` SET typeid='$totype' WHERE aid='{$row[$idtype]}' ");
- $okids[] = $row[$idtype];
- $j++;
- }
- }
- //更新HTML
- foreach($okids as $aid)
- {
- $arc = new Archives($aid);
- $arc->MakeHtml();
- }
- ShowMsg("成功移动 $j 个文档!", $ENV_GOBACK_URL);
- exit();
- }
- }
- /*-----------------------------
- //还原文档
- function RbReturnArchives(){ }
- ------------------------------*/
- else if($dopost=='return')
- {
- CheckPurview('a_Del,a_AccDel,a_MyDel,sys_ArcBatch');
- require_once(DEDEINC."/oxwindow.class.php");
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
- if($qstr=='')
- {
- ShowMsg("参数无效!","recycling.php");
- exit();
- }
- $qstrs = explode("`", $qstr);
- foreach($qstrs as $aid)
- {
- $dsql->ExecuteNoneQuery("UPDATE `#@__archives` SET arcrank='-1',ismake='0' WHERE id='$aid'");
- $dsql->ExecuteNoneQuery("UPDATE `#@__arctiny` SET `arcrank` = '-1' WHERE id = '$aid'; ");
- }
- ShowMsg("成功还原指定的文档!","recycling.php");
- exit();
- }
- /*-----------------------------
- //清空文档
- function RbClearArchives(){ }
- ------------------------------*/
- else if($dopost=='clear')
- {
- CheckPurview('a_Del,a_AccDel,a_MyDel,sys_ArcBatch');
- require_once(DEDEINC."/oxwindow.class.php");
- if(empty($fmdo)) $fmdo = '';
- $recycle = empty($recycle)? "" : $recycle;
- if($fmdo=='yes')
- {
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
- if($qstr=='')
- {
- ShowMsg("参数无效!","recycling.php");
- exit();
- }
- $qstrs = explode(",", $qstr);
- $okaids = Array();
- foreach($qstrs as $qstr)
- {
- if(!isset($okaids[$qstr]))
- {
- DelArc($qstr, "OK", FALSE, $recycle);
- $okaids[$qstr] = $qstr;
- }
- else
- {
- $okaids[$qstr] = 1;
- }
- }
- ShowMsg("成功删除指定的文档!","recycling.php");
- exit();
- }
- else
- {
- $dsql->SetQuery("SELECT id FROM `#@__archives` WHERE `arcrank` = '-2'");
- $dsql->Execute();
- $qstr = '';
- while($row = $dsql->GetArray())
- {
- $qstr .= $row['id'].",";
- $aid = $row['id'];
- }
- $num = $dsql->GetTotalRow();
- if(empty($num))
- {
- ShowMsg("对不起,未发现相关文档!","recycling.php");
- exit();
- }
- $wintitle = "文档管理-清空所有文档";
- $wecome_info = "<a href='recycling.php'>文档回收站</a>::清空所有文档";
- $win = new OxWindow();
- $win->Init("archives_do.php","js/blank.js","POST");
- $win->AddHidden("fmdo","yes");
- $win->AddHidden("dopost",$dopost);
- $win->AddHidden("qstr",$qstr);
- $win->AddHidden("aid",$aid);
- $win->AddHidden("recycle",$recycle);
- $win->AddTitle("本次操作将清空回收站<font color='#FF0000'>所有共 $num 篇文档</font><br>你确实要永久删除“ $qstr ”这些文档?");
- $winform = $win->GetWindow("ok");
- $win->Display();
- }
- }
- /*-----------------------------
- //清除文档
- function RbDelArchives(){ }
- ------------------------------*/
- else if($dopost=='del')
- {
- CheckPurview('a_Del,a_AccDel,a_MyDel,sys_ArcBatch');
- require_once(DEDEINC."/oxwindow.class.php");
- if(empty($fmdo)) $fmdo = '';
- $recycle = empty($recycle)? "" : $recycle;
- if($fmdo=='yes')
- {
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
- if($qstr=='')
- {
- ShowMsg("参数无效!","recycling.php");
- exit();
- }
- $qstrs = explode("`", $qstr);
- $okaids = Array();
- foreach($qstrs as $aid)
- {
- if(!isset($okaids[$aid]))
- {
- DelArc($aid,"OK","",$recycle);
- }
- else
- {
- $okaids[$aid] = 1;
- }
- }
- ShowMsg("成功删除指定的文档!","recycling.php");
- exit();
- }
- else
- {
- $wintitle = "文档管理-删除文档";
- $wecome_info = "<a href='recycling.php'>文档管理</a>::删除文档";
- $win = new OxWindow();
- $win->Init("archives_do.php","js/blank.js","POST");
- $win->AddHidden("fmdo","yes");
- $win->AddHidden("dopost",$dopost);
- $win->AddHidden("qstr",$qstr);
- $win->AddHidden("aid",$aid);
- $win->AddHidden("recycle",$recycle);
- $win->AddTitle("你确实要永久删除“ $qstr 和 $aid ”这些文档?");
- $winform = $win->GetWindow("ok");
- $win->Display();
- }
- }
- /*-----------------------------
- //快速编辑
- function quickEdit(){ }
- ------------------------------*/
- else if($dopost=='quickEdit')
- {
- require_once(DEDEADMIN."/inc/inc_catalog_options.php");
- AjaxHead();
- $query = "SELECT ch.typename as channelname,ch.addtable,ar.membername as rankname,arc.*
- FROM `#@__archives` arc
- LEFT JOIN `#@__channeltype` ch ON ch.id=arc.channel
- LEFT JOIN `#@__arcrank` ar ON ar.rank=arc.arcrank WHERE arc.id='$aid' ";
- $arcRow = $dsql->GetOne($query);
- $divname = 'quickEdit';
- echo "<div class='title' onmousemove=\"DropMoveHand('{$divname}', 225);\" onmousedown=\"DropStartHand();\" onmouseup=\"DropStopHand();\">\r\n";
- echo " <div class='titLeft'>快速属性编辑</div>\r\n";
- echo " <div class='titRight'><img src='images/ico-close.gif' style='cursor:pointer;' onclick='HideObj(\"{$divname}\");ChangeFullDiv(\"hide\");' alt='关闭' title='关闭' /></div>\r\n";
- echo "</div>\r\n";
- echo "<form name='quickeditform' action='archives_do.php?dopost=quickEditSave&aid={$aid}' method='post'>\r\n";
- echo "<input type='hidden' name='addtable' value='{$arcRow['addtable']}' />\r\n";
- echo "<input type='hidden' name='oldtypeid' value='{$arcRow['typeid']}' />\r\n";
- echo "<table width='100%' style='margin-top:6px;z-index:9000;'>\r\n";
- ?>
- <tr height='32'>
- <td width="80" class='bline'> 所属栏目:</td>
- <td class='bline'>
- <?php
- $typeOptions = GetOptionList($arcRow['typeid'],$cuserLogin->getUserChannel(), $arcRow['channel']);
- echo "<select name='typeid' style='width:70%'>\r\n";
- if($arcRow["typeid"]=="0") echo "<option value='0' selected>请选择栏目...</option>\r\n";
- echo $typeOptions;
- echo "</select>";
- ?>
- </td>
- </tr>
- <tr height='28'>
- <td width="80" class='bline'> 属 性:</td>
- <td class='bline'>
- <input type='hidden' name='oldflag' value='<?php echo $arcRow['flag']; ?>' />
- <?php
- $dsql->SetQuery("SELECT * FROM `#@__arcatt` ORDER BY sortid ASC");
- $dsql->Execute();
- while($trow = $dsql->GetObject())
- {
- if($trow->att=='j' || $trow->att=='p') continue;
- if(preg_match("#".$trow->att."#", $arcRow['flag']))
- echo "<input class='np' type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' checked='checked' />{$trow->attname}.{$trow->att}";
- else
- echo "<input class='np' type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' />{$trow->attname}.{$trow->att}";
- }
- ?>
- </td>
- </tr>
- <tr height='32'>
- <td width="80" class='bline'> 标 题:</td>
- <td class='bline'>
- <input name="title" type="text" id="title" value="<?php echo $arcRow['title']; ?>" style="width:90%" />
- </td>
- </tr>
- <tr height='32'>
- <td width="80" class='bline'> 简略标题:</td>
- <td class='bline'>
- <input name="shorttitle" type="text" id="shorttitle" value="<?php echo $arcRow['shorttitle']; ?>" style="width:60%" />
- </td>
- </tr>
- <tr height='32'>
- <td width="80" class='bline'> 阅读权限:</td>
- <td class='bline'>
- <select name="arcrank" id="arcrank" style="width:120px">
- <option value='<?php echo $arcRow["arcrank"]?>'>
- <?php echo $arcRow["rankname"]?> </option>
- <?php
- $urank = $cuserLogin->getUserRank();
- $dsql->SetQuery("SELECT * FROM `#@__arcrank` WHERE adminrank<='$urank'");
- $dsql->Execute();
- while($row = $dsql->GetObject()){
- echo " <option value='".$row->rank."'>".$row->membername."</option>\r\n";
- }
- ?>
- </select>
- 需要金币:<input name="money" type="text" id="money" value="<?php echo $arcRow["money"]; ?>" style="width:80px" />
- </td>
- </tr>
- <tr height='32'>
- <td width="80" class='bline'> 关键字:</td>
- <td class='bline'>
- <input name="keywords" type="text" id="keywords" value="<?php echo $arcRow['keywords']; ?>" style="width:70%" />
- </td>
- </tr>
- <tr height='32'>
- <td colspan='2' align='center' style='padding-top:12px'>
- <input name="imageField" type="image" src="images/button_ok.gif" width="60" height="22" class="np" border="0" style="cursor:pointer" />
-
- <img src="images/button_back.gif" width="60" height="22" border="0" onclick='HideObj("<?php echo $divname; ?>");ChangeFullDiv("hide");' style="cursor:pointer" />
- </td>
- </td>
- </tr>
- </table>
- </form>
- <?php
- //AJAX窗体结束
- }
- /*-----------------------------
- //保存快速编辑的内容
- function quickEditSave(){ }
- ------------------------------*/
- else if($dopost=='quickEditSave')
- {
- require_once(DEDEADMIN.'/inc/inc_archives_functions.php');
- //权限检测
- if(!TestPurview('a_Edit'))
- {
- if(TestPurview('a_AccEdit'))
- {
- CheckCatalog($typeid, "对不起,你没有操作栏目 {$typeid} 的文档权限!");
- }
- else
- {
- CheckArcAdmin($aid, $cuserLogin->getUserID());
- }
- }
- $title = dede_htmlspecialchars(cn_substrR($title, $cfg_title_maxlen));
- $shorttitle = cn_substrR($shorttitle, 36);
- $keywords = trim(cn_substrR($keywords, 60));
- if(!TestPurview('a_Check,a_AccCheck,a_MyCheck')) $arcrank = -1;
- $adminid = $cuserLogin->getUserID();
-
- //属性处理
- $flag = isset($flags) ? join(',', $flags) : '';
- if(!empty($flag))
- {
- if(preg_match("#p#", $oldflag)) $flag .= ',p';
- if(preg_match("#j#", $oldflag)) $flag .= ',j';
- }
- /*
- else
- {
- $flag = $oldflag;
- }
- */
-
- $query = "UPDATE `#@__archives` SET
- typeid = '$typeid',
- flag = '$flag',
- arcrank = '$arcrank',
- money = '$money',
- title = '$title',
- shorttitle = '$shorttitle',
- keywords = '$keywords',
- dutyadmin = '$adminid'
- WHERE id = '$aid'; ";
- //更新主表
- $dsql->ExecuteNoneQuery($query);
- //更新微表
- $dsql->ExecuteNoneQuery(" UPDATE `#@__arctiny` SET typeid='$typeid',arcrank='$arcrank' WHERE id='$aid' ");
- //更新附加表
- if($typeid != $oldtypeid)
- {
- $addtable = trim($addtable);
- if(empty($addtable)) $addtable = '#@__addonarticle';
- else $addtable = preg_replace("#[^a-z0-9__#@-]#i", "", $addtable);
- $dsql->ExecuteNoneQuery(" UPDATE `$addtable` SET typeid='$typeid' WHERE aid='$aid' ");
- }
- //更新HTML
- $artUrl = MakeArt($aid, TRUE, TRUE);
- $backurl = !empty($_COOKIE['ENV_GOBACK_URL']) ? $_COOKIE['ENV_GOBACK_URL'] : '-1';
- ShowMsg('成功更新一篇文档的基本信息!', $backurl);
- exit();
- }
- /*--------------------------
- 分析并自动获取文档关键词
- function makekw(){ }
- --------------------------*/
- else if($dopost=="makekw")
- {
- include_once(DEDEINC.'/splitword.class.php');
- CheckPurview('a_Commend,sys_ArcBatch');
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
- if($qstr=='')
- {
- ShowMsg("参数无效!", $ENV_GOBACK_URL);
- exit();
- }
- $sp = new SplitWord($cfg_soft_lang, $cfg_soft_lang);
- $arcids = preg_replace("#[^0-9,]#", '', preg_replace("#`#", ',', $qstr));
- $query = "SELECT arc.*, addt.* From `#@__archives` arc LEFT JOIN `#@__addonarticle` addt ON addt.aid=arc.id WHERE arc.id in($arcids) AND arc.channel=1 ";
- $dsql->SetQuery($query);
- $dsql->Execute();
- while($row = $dsql->GetArray())
- {
- //跳过已经有关键字的内容
- if(trim($row['keywords']) !='' ) continue;
-
- $aid = $row['id'];
- $keywords = '';
- $title = $row['title'];
- $description = $row['description'];
- $body = cn_substr($row['body'], 5000);
- $sp->SetSource($title, $cfg_soft_lang, $cfg_soft_lang);
- $sp->StartAnalysis();
- $titleindexs = preg_replace("/#p#|#e#/",'',$sp->GetFinallyIndex());
- $sp->SetSource(Html2Text($body), $cfg_soft_lang, $cfg_soft_lang);
- $sp->StartAnalysis();
- $allindexs = preg_replace("/#p#|#e#/",'',$sp->GetFinallyIndex());
-
- if(is_array($allindexs) && is_array($titleindexs))
- {
- foreach($titleindexs as $k => $v)
- {
- if(strlen($keywords.$k)>=60)
- {
- break;
- }
- else
- {
- if(strlen($k) <= 2) continue;
- $keywords .= $k.',';
- }
- }
- foreach($allindexs as $k => $v)
- {
- if(strlen($keywords.$k)>=60)
- {
- break;
- }
- else if(!in_array($k,$titleindexs))
- {
- if(strlen($k) <= 2) continue;
- $keywords .= $k.',';
- }
- }
- }
- $description = str_replace(' ', ' ', trim($description));
- $description = str_replace('[', ' ', $description);
- $description = str_replace(']', ' ', $description);
- $description = preg_replace("#[ \r\n\t]{1,}#is", ' ', $description);
- $description = str_replace('关键字', '', $description);
- $description = str_replace('关键词', '', $description);
- $description = addslashes($description);
- $dsql->ExecuteNoneQuery(" UPDATE `#@__archives` SET `keywords`='$keywords',`description`='$description' WHERE id='{$aid}' ");
- }
- $sp = null;
- ShowMsg("成功分析指定文档的关键词!", $ENV_GOBACK_URL);
- exit();
- }
- /*--------------------------
- //批量增加属性
- function attsAdd(){ }
- ---------------------------*/
- else if($dopost=='attsAdd')
- {
- CheckPurview('a_Commend,sys_ArcBatch');
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
- if($qstr=='')
- {
- ShowMsg("参数无效!",$ENV_GOBACK_URL);
- exit();
- }
- if(empty($flagname))
- {
- ShowMsg("必须指定要添加的属性!",$ENV_GOBACK_URL);
- exit();
- }
- $arcids = preg_replace("#[^0-9,]#", '', preg_replace("#`#", ',', $qstr));
- $query = "SELECT arc.id,arc.typeid,ch.issystem,ch.maintable,ch.addtable FROM `#@__arctiny` arc
- LEFT JOIN `#@__arctype` tp ON tp.id=arc.typeid
- LEFT JOIN `#@__channeltype` ch ON ch.id=tp.channeltype
- WHERE arc.id in($arcids) ";
- $dsql->SetQuery($query);
- $dsql->Execute();
- while($row = $dsql->GetArray())
- {
- $aid = $row['id'];
- if($row['issystem'] != -1)
- {
- $maintable = ( trim($row['maintable'])=='' ? '#@__archives' : trim($row['maintable']) );
- $arr = $dsql->GetOne("SELECT flag FROM `{$maintable}` WHERE id='$aid' ");
- $flag = ($arr['flag']=='' ? $flagname : $arr['flag'].','.$flagname);
- $dsql->ExecuteNoneQuery(" UPDATE `{$maintable}` SET `flag`='$flag' WHERE id='{$aid}' ");
- }
- else
- {
- $maintable = trim($row['addtable']);
- $arr = $dsql->GetOne("SELECT flag FROM `{$maintable}` WHERE aid='$aid' ");
- $flag = ($arr['flag']=='' ? $flagname : $arr['flag'].','.$flagname);
- $dsql->ExecuteNoneQuery(" UPDATE `{$maintable}` SET `flag`='$flag' WHERE aid='{$aid}' ");
- }
- }
- ShowMsg("成功对选中文档增加指定的属性!",$ENV_GOBACK_URL);
- exit();
- }
- /*--------------------------
- //批量删除属性
- function attsDel(){ }
- ---------------------------*/
- else if($dopost=='attsDel')
- {
- CheckPurview('a_Commend,sys_ArcBatch');
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
- if($qstr=='')
- {
- ShowMsg("参数无效!", $ENV_GOBACK_URL);
- exit();
- }
- if(empty($flagname))
- {
- ShowMsg("必须指定要删除的属性!", $ENV_GOBACK_URL);
- exit();
- }
- $arcids = preg_replace("#[^0-9,]#", '', preg_replace("#`#", ',', $qstr));
- $query = "SELECT arc.id,arc.typeid,ch.issystem,ch.maintable,ch.addtable FROM `#@__arctiny` arc
- LEFT JOIN `#@__arctype` tp ON tp.id=arc.typeid
- LEFT JOIN `#@__channeltype` ch ON ch.id=tp.channeltype
- WHERE arc.id in($arcids) ";
- $dsql->SetQuery($query);
- $dsql->Execute();
- while($row = $dsql->GetArray())
- {
- $aid = $row['id'];
- if($row['issystem'] != -1)
- {
- $idname = 'id';
- $maintable = ( trim($row['maintable'])=='' ? '#@__archives' : trim($row['maintable']) );
- $arr = $dsql->GetOne("SELECT flag FROM `{$maintable}` WHERE id='$aid' ");
- }
- else
- {
- $idname = 'aid';
- $maintable = trim($row['addtable']);
- $arr = $dsql->GetOne("SELECT flag FROM `{$maintable}` WHERE aid='$aid' ");
- }
- $flag = $arr['flag'];
- if(trim($flag)=='' || !preg_match("#".$flagname."#", $flag) )
- {
- continue;
- }
- else
- {
- $flags = explode(',', $flag);
- $okflags = array();
- foreach($flags as $f)
- {
- if($f != $flagname) $okflags[] = $f;
- }
- }
- $flag = trim(join(',', $okflags));
- $dsql->ExecuteNoneQuery(" UPDATE `{$maintable}` SET `flag`='$flag' WHERE {$idname}='{$aid}' ");
- }
- ShowMsg("成功对选中文档删除指定的属性!", $ENV_GOBACK_URL);
- exit();
- }
- /*--------------------------
- //获得批量属性处理的AJAX窗体
- function attsDlg(){ }
- ---------------------------*/
- else if($dopost=='attsDlg')
- {
- if( !empty($aid) && empty($qstr) ) $qstr = $aid;
- $dojobname = ($dojob=='attsDel' ? '批量删除属性' : '批量增加属性');
- AjaxHead();
- //输出AJAX可移动窗体
- $divname = 'attsDlg';
- echo "<div class='title' onmousemove=\"DropMoveHand('{$divname}', 225);\" onmousedown=\"DropStartHand();\" onmouseup=\"DropStopHand();\">\r\n";
- echo " <div class='titLeft'>{$dojobname}</div>\r\n";
- echo " <div class='titRight'><img src='images/ico-close.gif' style='cursor:pointer;' onclick='HideObj(\"{$divname}\");ChangeFullDiv(\"hide\");' alt='关闭' title='关闭' /></div>\r\n";
- echo "</div>\r\n";
- echo "<form name='quickeditform' action='archives_do.php' method='post'>\r\n";
- echo "<input type='hidden' name='dopost' value='{$dojob}' />\r\n";
- echo "<input type='hidden' name='qstr' value='{$qstr}' />\r\n";
- echo "<table width='100%' style='margin-top:6px;z-index:9000;'>\r\n";
- ?>
- <tr height='28'>
- <td width="80" class='bline'> 属 性:</td>
- <td class='bline'>
- <input type='hidden' name='oldflag' value='<?php echo $arcRow['flag']; ?>' />
- <?php
- $dsql->SetQuery("SELECT * FROM `#@__arcatt` ORDER BY sortid ASC");
- $dsql->Execute();
- while($trow = $dsql->GetObject())
- {
- if($trow->att=='j' || $trow->att=='p') continue;
- echo "<input class='np' type='radio' name='flagname' id='flags{$trow->att}' value='{$trow->att}' />{$trow->attname}.{$trow->att}";
- }
- ?>
- </td>
- </tr>
- <tr height='32'>
- <td width="80" class='bline'> 文档ID:</td>
- <td class='bline'>
- <input type='text' name='tmpids' value="<?php echo $qstr; ?>" style='width:310px;overflow:hidden;' />
- </td>
- </tr>
- <tr height='32'>
- <td colspan='2' align='center' style='padding-top:12px'>
- <input name="imageField" type="image" src="images/button_ok.gif" width="60" height="22" class="np" border="0" style="cursor:pointer" />
-
- <img src="images/button_back.gif" width="60" height="22" border="0" onclick='HideObj("<?php echo $divname; ?>");ChangeFullDiv("hide");' style="cursor:pointer" />
- </td>
- </td>
- </tr>
- </table>
- </form>
- <?php
- //AJAX窗体结束
- }
- /*------------------------
- function getCatMap() { }
- -------------------------*/
- else if($dopost=='getCatMap')
- {
- require_once(DEDEINC.'/typeunit.class.selector.php');
- AjaxHead();
- //输出AJAX可移动窗体
- $divname = 'getCatMap';
- echo "<div class='title' style='cursor:default;'>\r\n";
- echo " <div class='titLeft'>栏目快速选择器</div>\r\n";
- echo " <div class='titRight'><img src='images/ico-close.gif' style='cursor:pointer;' onclick='HideObj(\"{$divname}\");ChangeFullDiv(\"hide\");' alt='关闭' title='关闭' /></div>\r\n";
- echo "</div>\r\n";
- $tus = new TypeUnitSelector();
- ?>
- <form name='quicksel' action='javascript:;' method='get'>
- <div class='quicksel'>
- <?php $tus->ListAllType($channelid); ?>
- </div>
- <div align='center' class='quickselfoot'>
- <img src="images/button_ok.gif" onclick="getSelCat('<?php echo $targetid; ?>');" width="60" height="22" class="np" border="0" style="cursor:pointer" />
-
- <img src="images/button_back.gif" onclick='HideObj("<?php echo $divname; ?>");ChangeFullDiv("hide");' width="60" height="22" border="0" style="cursor:pointer" />
- </div>
- </form>
- <?php
- //AJAX窗体结束
- }
- ?>
|