|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?php
-
-
- require_once(dirname(__FILE__) . "/config.php");
- CheckPurview('co_AddNote');
- if (empty($step)) $step = "";
- if (empty($exrule)) $exrule = "";
-
-
-
- if (empty($step)) {
- require_once(DEDEADMIN . "/templets/co_add_step0.htm");
- exit();
- } else if ($step == 1) {
- require_once(DEDEADMIN . "/templets/co_add_step1.htm");
- exit();
- }
-
- else if ($step == 2) {
-
- if ($dopost == 'test') {
- include(DEDEINC . "/dedecollection.class.php");
- $usemore = (!isset($usemore) ? 0 : 1);
- $listconfig = "{dede:noteinfo notename=\\\"$notename\\\" channelid=\\\"$channelid\\\" macthtype=\\\"$macthtype\\\"
- refurl=\\\"$refurl\\\" sourcelang=\\\"$sourcelang\\\" cosort=\\\"$cosort\\\" isref=\\\"$isref\\\" exptime=\\\"$exptime\\\" usemore=\\\"$usemore\\\" /}
-
- {dede:listrule sourcetype=\\\"$sourcetype\\\" rssurl=\\\"$rssurl\\\" regxurl=\\\"$regxurl\\\"
- startid=\\\"$startid\\\" endid=\\\"$endid\\\" addv=\\\"$addv\\\" urlrule=\\\"$urlrule\\\"
- musthas=\\\"$musthas\\\" nothas=\\\"$nothas\\\" listpic=\\\"$listpic\\\" usemore=\\\"$usemore\\\"}
- {dede:addurls}$addurls{/dede:addurls}
- {dede:batchrule}$batchrule{/dede:batchrule}
- {dede:regxrule}$regxrule{/dede:regxrule}
- {dede:areastart}$areastart{/dede:areastart}
- {dede:areaend}$areaend{/dede:areaend}
- {/dede:listrule}\r\n";
- $tmplistconfig = stripslashes($listconfig);
- $notename = stripslashes($notename);
- if ($sourcetype == 'rss' && $refurl = '') {
- $refurl = $rssurl;
- }
- $refurl = stripslashes($refurl);
- $errmsg = '';
- $freq = empty($freq) ? "" : $freq;
- $extypeid = empty($freq) ? "" : $extypeid;
-
-
- if ($sourcetype == 'rss') {
- $links = GetRssLinks(stripslashes($rssurl));
- $demopage = $rssurl;
- } else {
- $links = array();
- $lists = GetUrlFromListRule($regxurl, stripslashes($addurls), $startid, $endid, $addv, $usemore, stripslashes($batchrule));
- if (isset($lists[0][0])) {
- $demopage = $lists[0][0];
- $dc = new DedeCollection();
- $dc->LoadListConfig($tmplistconfig);
- $listurl = '';
- $links = $dc->Testlists($listurl);
- $errmsg = $dc->errString;
- } else {
- $demopage = '没有匹配到适合的列表页!';
- }
- }
- require_once(DEDEADMIN . "/templets/co_add_step1_test.htm");
- exit();
- }
-
-
- else {
- $row = $dsql->GetOne("SELECT nid,channelid FROM `#@__co_note` WHERE isok=0 AND notename LIKE '$notename' ");
- if (!is_array($row)) {
- $uptime = time();
- $listconfig = urldecode($listconfig);
- $inquery = " INSERT INTO `#@__co_note`(`channelid`,`notename`,`sourcelang`,`uptime`,`cotime`,`pnum`,`isok`,`usemore`,`listconfig`,`itemconfig`)
- VALUES ('$channelid','$notename','$sourcelang','$uptime','0','0','0','$usemore','$listconfig',''); ";
- $rs = $dsql->ExecuteNoneQuery($inquery);
- if (!$rs) {
- ShowMsg("保存信息时出现错误!" . $dsql->GetError(), "-1");
- exit();
- }
- $nid = $dsql->GetLastID();
- } else {
- $channelid = $row['channelid'];
- $uptime = time();
- if (empty($freq)) $freq = 1;
- if (empty($extypeid)) $extypeid = 0;
- if (empty($islisten)) $islisten = 0;
- $usemore = (!isset($usemore) ? 0 : 1);
-
- $query = " UPDATE `#@__co_note` SET
- `channelid`='$channelid',
- `notename`='$notename',
- `sourcelang`='$sourcelang',
- `uptime`='$uptime',
- `isok`='1',
- `usemore`='$usemore',
- `listconfig`='$listconfig' WHERE nid='$nid'; ";
- $dsql->ExecuteNoneQuery($query);
- $nid = $row['nid'];
- }
- if (!isset($previewurl)) $previewurl = '';
- require_once(DEDEINC . '/dedetag.class.php');
- require_once(DEDEADMIN . "/templets/co_add_step2.htm");
- exit();
- }
- }
-
-
- else if ($step == 5) {
-
-
- $itemconfig = "{dede:sppage sptype=\\'$sptype\\' sptype=\\'$sptype\\' srul=\\'$srul\\' erul=\\'$erul\\'}$sppage{/dede:sppage}\r\n";
- $itemconfig .= "{dede:previewurl}$previewurl{/dede:previewurl}\r\n";
- $itemconfig .= "{dede:keywordtrim}$keywordtrim{/dede:keywordtrim}\r\n";
- $itemconfig .= "{dede:descriptiontrim}$descriptiontrim{/dede:descriptiontrim}\r\n";
- $fs = explode(',', 'value,match,isunit,isdown,trim,function');
- foreach ($fields as $field) {
- foreach ($fs as $f) {
- $GLOBALS[$f . '_' . $field] = (!isset($GLOBALS[$f . '_' . $field]) ? '' : $GLOBALS[$f . '_' . $field]);
- }
- $matchstr = $GLOBALS["match_" . $field];
- $trimstr = $GLOBALS["trim_" . $field];
- $trimstr = trim(str_replace(' ', '#n#', $trimstr));
- $matchstr = trim(str_replace(' ', '#n#', $matchstr));
- if ($trimstr != '' && !preg_match("#{dede:trim#i", $trimstr)) {
- $trimstr = " {dede:trim}$trimstr{/dede:trim}\r\n";
- }
- $itemconfig .= "{dede:item field=\\'" . $field . "\\' value=\\'" . $GLOBALS["value_" . $field] . "\\' isunit=\\'" . $GLOBALS["isunit_" . $field] . "\\' isdown=\\'" . $GLOBALS["isdown_" . $field] . "\\'}
- {dede:match}" . $matchstr . "{/dede:match}
- $trimstr
- {dede:function}" . $GLOBALS["function_" . $field] . "{/dede:function}
- {/dede:item}\r\n";
- }
- $dsql->ExecuteNoneQuery("UPDATE `#@__co_note` SET itemconfig='$itemconfig' WHERE nid='$nid' ");
-
- require_once(DEDEINC . '/dedecollection.class.php');
- require_once(DEDEADMIN . "/templets/co_add_step2_test.htm");
- exit();
- } else if ($step == 6) {
- $dsql->ExecuteNoneQuery("UPDATE `#@__co_note` SET isok='1' WHERE nid='$nid' ");
- ShowMsg("成功设置一个规则!", "co_main.php");
- exit();
- } else if ($step == 7) {
- $dsql->ExecuteNoneQuery("UPDATE `#@__co_note` SET isok='1' WHERE nid='$nid' ");
- ShowMsg("成功设置一个规则,现在转向采集页面!", "co_gather_start.php?nid=$nid");
- exit();
- }
|