soft_edit.php
8.4 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<?php
/**
* 软件编辑
*
* @version $Id: soft_edit.php 2 14:16 2010-11-11 tianya $
* @package DedeCMS.Member
* @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");
CheckRank(0, 0);
require_once(DEDEINC."/dedetag.class.php");
require_once(DEDEINC."/customfields.func.php");
require_once(DEDEMEMBER."/inc/inc_catalog_options.php");
require_once(DEDEMEMBER."/inc/inc_archives_functions.php");
$channelid = isset($channelid) && is_numeric($channelid) ? $channelid : 3;
$aid = isset($aid) && is_numeric($aid) ? $aid : 0;
$menutype = 'content';
/*-------------
function _ShowForm(){ }
--------------*/
if(empty($dopost))
{
//读取归档信息
$arcQuery = "SELECT
#@__channeltype.typename as channelname,
#@__arcrank.membername as rankname,
#@__channeltype.arcsta,
#@__archives.*
FROM #@__archives
LEFT JOIN #@__channeltype ON #@__channeltype.id=#@__archives.channel
LEFT JOIN #@__arcrank ON #@__arcrank.rank=#@__archives.arcrank
WHERE #@__archives.id='$aid'";
$dsql->SetQuery($arcQuery);
$row = $dsql->GetOne($arcQuery);
if(!is_array($row))
{
ShowMsg("读取档案基本信息出错!","-1");
exit();
}
else if($row['arcrank']>=0)
{
$dtime = time();
$maxtime = $cfg_mb_editday * 24 *3600;
if($dtime - $row['senddate'] > $maxtime)
{
ShowMsg("这篇文档已经锁定,你不能再修改它!","-1");
exit();
}
}
$query = "SELECT * FROM `#@__channeltype` WHERE id='".$row['channel']."'";
$cInfos = $dsql->GetOne($query);
if(!is_array($cInfos))
{
ShowMsg("读取频道配置信息出错!","javascript:;");
exit();
}
$addtable = $cInfos['addtable'];
$addQuery = "SELECT * FROM `$addtable` WHERE aid='$aid'";
$addRow = $dsql->GetOne($addQuery);
$newRowStart = 1;
$nForm = '';
if(isset($addRow['softlinks']) && $addRow['softlinks']!='')
{
$dtp = new DedeTagParse();
$dtp->LoadSource($addRow['softlinks']);
if(is_array($dtp->CTags))
{
foreach($dtp->CTags as $ctag)
{
if($ctag->GetName()=='link')
{
$nForm .= "软件地址".$newRowStart.":<input class='text' type='text' name='softurl".$newRowStart."' value='".trim($ctag->GetInnerText())."' />
服务器名称:<input class='text' type='text' name='servermsg".$newRowStart."' value='".$ctag->GetAtt("text")."' />
<br />";
$newRowStart++;
}
}
}
$dtp->Clear();
}
$channelid = $row['channel'];
$tags = GetTags($aid);
include(DEDEMEMBER."/templets/soft_edit.htm");
exit();
}
/*------------------------------
function _SaveArticle(){ }
------------------------------*/
else if($dopost=='save')
{
$description = '';
include(DEDEMEMBER.'/inc/archives_check_edit.php');
//分析处理附加表数据
$inadd_f = '';
if(!empty($dede_addonfields))
{
$addonfields = explode(';', $dede_addonfields);
if(is_array($addonfields))
{
foreach($addonfields as $v)
{
if($v=='')
{
continue;
}
$vs = explode(',',$v);
if(!isset(${$vs[0]}))
{
${$vs[0]} = '';
}
${$vs[0]} = GetFieldValueA(${$vs[0]},$vs[1],$aid);
$inadd_f .= ','.$vs[0]." ='".${$vs[0]}."' ";
}
}
}
$body = AnalyseHtmlBody($body, $description);
$body = HtmlReplace($body, -1);
//处理图片文档的自定义属性
if($litpic!='') $flag = 'p';
//分析处理附加表数据
$inadd_f = '';
$inadd_v = '';
if(!empty($dede_addonfields))
{
$addonfields = explode(';',$dede_addonfields);
$inadd_f = '';
$inadd_v = '';
if(is_array($addonfields))
{
foreach($addonfields as $v)
{
if($v=='')
{
continue;
}
$vs = explode(',', $v);
//HTML文本特殊处理
if($vs[1]=='htmltext'||$vs[1]=='textdata')
{
${$vs[0]} = AnalyseHtmlBody(${$vs[0]},$description,$litpic,$keywords,$vs[1]);
}
else
{
if(!isset(${$vs[0]}))
{
${$vs[0]} = '';
}
${$vs[0]} = GetFieldValueA(${$vs[0]},$vs[1],$arcID);
}
$inadd_f .= ",`{$vs[0]}` = '".${$vs[0]}."'";
}
}
if (empty($dede_fieldshash) || $dede_fieldshash != md5($dede_addonfields.$cfg_cookie_encode))
{
showMsg('数据校验不对,程序返回', '-1');
exit();
}
// 这里对前台提交的附加数据进行一次校验
$fontiterm = PrintAutoFieldsAdd($cInfos['fieldset'],'autofield', FALSE);
if ($fontiterm != $inadd_f)
{
ShowMsg("提交表单同系统配置不相符,请重新提交!", "-1");
exit();
}
}
//更改主档案表
$upQuery = "UPDATE `#@__archives` set
ismake='$ismake',
arcrank='$arcrank',
typeid='$typeid',
title='$title',
litpic='$litpic',
description='$description',
keywords='$keywords',
flag='$flag'
WHERE id='$aid' AND mid='$mid'; ";
if(!$dsql->ExecuteNoneQuery($upQuery))
{
ShowMsg("更新数据库archives表时出错,请检查!", "-1");
exit();
}
//软件链接列表
$urls = '';
for($i=1; $i<=9; $i++)
{
if(!empty(${'softurl'.$i}))
{
$servermsg = str_replace("'",'',stripslashes(${'servermsg'.$i}));
$softurl = stripslashes(${'softurl'.$i});
$softurl = str_replace(array("{dede:","{/dede:","}"), "#", $softurl);
if($servermsg=='')
{
$servermsg = '下载地址'.$i;
}
if($softurl!='' && $softurl!='http://')
{
$urls .= "{dede:link text='$servermsg'} $softurl {/dede:link}\r\n";
}
}
}
$urls = addslashes($urls);
//更新附加表
$needmoney = @intval($needmoney);
if($needmoney > 100) $needmoney = 100;
$cts = $dsql->GetOne("Select addtable From `#@__channeltype` where id='$channelid' ");
$addtable = trim($cts['addtable']);
if($addtable!='')
{
$inQuery = "update `$addtable`
set typeid ='$typeid',
filetype ='$filetype',
language ='$language',
softtype ='$softtype',
accredit ='$accredit',
os ='$os',
softrank ='$softrank',
officialUrl ='$officialUrl',
officialDemo ='$officialDemo',
softsize ='$softsize',
softlinks ='$urls',
userip='$userip',
needmoney='$needmoney',
introduce='$body'{$inadd_f}
where aid='$aid'; ";
if(!$dsql->ExecuteNoneQuery($inQuery))
{
ShowMsg("更新数据库附加表 addonsoft 时出错,请检查原因!","-1");
exit();
}
}
UpIndexKey($aid,$arcrank,$typeid,$sortrank,$tags);
$artUrl = MakeArt($aid,TRUE);
if($artUrl=='')
{
$artUrl = $cfg_phpurl."/view.php?aid=$aid";
}
//返回成功信息
$msg = " 请选择你的后续操作:
<a href='soft_add.php?cid=$typeid'><u>发布新软件</u></a>
<a href='soft_edit.php?channelid=$channelid&aid=".$aid."'><u>查看更改</u></a>
<a href='$artUrl' target='_blank'><u>查看软件</u></a>
<a href='content_list.php?channelid=$channelid'><u>管理软件</u></a>
";
$wintitle = "成功更改软件!";
$wecome_info = "软件管理::更改软件";
$win = new OxWindow();
$win->AddTitle("成功更改软件:");
$win->AddMsgItem($msg);
$winform = $win->GetWindow("hand"," ",FALSE);
$win->Display();
}