co_add.php
6.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
/**
* 采集规则添加
*
* @version $Id: co_add.php 1 14:31 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");
CheckPurview('co_AddNote');
if(empty($step)) $step = "";
if(empty($exrule)) $exrule = "";
//选择操作频道类型,载入表单
/*----------------------
function Init(){ }
----------------------*/
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();
}
//保存索引规则
/*----------------------
function Save_List(){ }
----------------------*/
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();
}
}
//保存文章规则
/*----------------------
function Save_Art(){ }
----------------------*/
else if($step==5)
{
/*
[previewurl] => ''
*/
$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' ");
//echo $dsql->GetError();
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();
}