download.php
8.19 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
<?php
/**
*
* 下载
*
* @version $Id: download.php 1 15:38 2010年7月8日Z tianya $
* @package DedeCMS.Site
* @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
* @license http://help.dedecms.com/usersguide/license.html
* @link http://www.dedecms.com
*/
require_once(dirname(__FILE__)."/../include/common.inc.php");
require_once(DEDEINC."/channelunit.class.php");
if(!isset($open)) $open = 0;
//读取链接列表
if($open==0)
{
$aid = (isset($aid) && is_numeric($aid)) ? $aid : 0;
if($aid==0) exit(' Request Error! ');
$arcRow = GetOneArchive($aid);
if($arcRow['aid']=='')
{
ShowMsg('无法获取未知文档的信息!','-1');
exit();
}
extract($arcRow, EXTR_SKIP);
$cu = new ChannelUnit($arcRow['channel'],$aid);
if(!is_array($cu->ChannelFields))
{
ShowMsg('获取文档信息失败!','-1');
exit();
}
$vname = '';
foreach($cu->ChannelFields as $k=>$v)
{
if($v['type']=='softlinks'){ $vname=$k; break; }
}
$row = $dsql->GetOne("SELECT $vname FROM `".$cu->ChannelInfos['addtable']."` WHERE aid='$aid'");
include_once(DEDEINC.'/taglib/channel/softlinks.lib.php');
$ctag = '';
$downlinks = ch_softlinks($row[$vname], $ctag, $cu, '', TRUE);
require_once(DEDETEMPLATE.'/plus/download_links_templet.htm');
exit();
}
/*------------------------
//提供软件给用户下载(旧模式)
function getSoft_old()
------------------------*/
else if($open==1)
{
//更新下载次数
$id = isset($id) && is_numeric($id) ? $id : 0;
$link = base64_decode(urldecode($link));
$hash = md5($link);
$rs = $dsql->ExecuteNoneQuery2("UPDATE `#@__downloads` SET downloads = downloads + 1 WHERE hash='$hash' ");
if($rs <= 0)
{
$query = " INSERT INTO `#@__downloads`(`hash`,`id`,`downloads`) VALUES('$hash','$id',1); ";
$dsql->ExecNoneQuery($query);
}
header("location:$link");
exit();
}
/*------------------------
//提供软件给用户下载(新模式)
function getSoft_new()
------------------------*/
else if($open==2)
{
$id = intval($id);
//获得附加表信息
$row = $dsql->GetOne("SELECT ch.addtable,arc.mid FROM `#@__arctiny` arc LEFT JOIN `#@__channeltype` ch ON ch.id=arc.channel WHERE arc.id='$id' ");
if(empty($row['addtable']))
{
ShowMsg('找不到所需要的软件资源!', 'javascript:;');
exit();
}
$mid = $row['mid'];
//读取连接列表、下载权限信息
$row = $dsql->GetOne("SELECT softlinks,daccess,needmoney FROM `{$row['addtable']}` WHERE aid='$id' ");
if(empty($row['softlinks']))
{
ShowMsg('找不到所需要的软件资源!', 'javascript:;');
exit();
}
$softconfig = $dsql->GetOne("SELECT * FROM `#@__softconfig` ");
$needRank = $softconfig['dfrank'];
$needMoney = $softconfig['dfywboy'];
if($softconfig['argrange']==0)
{
$needRank = $row['daccess'];
$needMoney = $row['needmoney'];
}
//分析连接列表
require_once(DEDEINC.'/dedetag.class.php');
$softUrl = '';
$islocal = 0;
$dtp = new DedeTagParse();
$dtp->LoadSource($row['softlinks']);
if( !is_array($dtp->CTags) )
{
$dtp->Clear();
ShowMsg('找不到所需要的软件资源!', 'javascript:;');
exit();
}
foreach($dtp->CTags as $ctag)
{
if($ctag->GetName()=='link')
{
$link = trim($ctag->GetInnerText());
$islocal = $ctag->GetAtt('islocal');
//分析本地链接
if(!isset($firstLink) && $islocal==1) $firstLink = $link;
if($islocal==1 && $softconfig['islocal'] != 1) continue;
//支持http,迅雷下载,ftp,flashget
if(!preg_match("#^http:\/\/|^thunder:\/\/|^ftp:\/\/|^flashget:\/\/#i", $link))
{
$link = $cfg_mainsite.$link;
}
$dbhash = substr(md5($link), 0, 24);
if($uhash==$dbhash) $softUrl = $link;
}
}
$dtp->Clear();
if($softUrl=='' && $softconfig['ismoresite']==1
&& $softconfig['moresitedo']==1 && trim($softconfig['sites'])!='' && isset($firstLink))
{
$firstLink = preg_replace("#http:\/\/([^\/]*)\/#i", '/', $firstLink);
$softconfig['sites'] = preg_replace("#[\r\n]{1,}#", "\n", $softconfig['sites']);
$sites = explode("\n", trim($softconfig['sites']));
foreach($sites as $site)
{
if(trim($site)=='') continue;
list($link, $serverName) = explode('|', $site);
$link = trim( preg_replace("#\/$#", "", $link) ).$firstLink;
$dbhash = substr(md5($link), 0, 24);
if($uhash == $dbhash) $softUrl = $link;
}
}
if( $softUrl == '' )
{
ShowMsg('找不到所需要的软件资源!', 'javascript:;');
exit();
}
//-------------------------
// 读取文档信息,判断权限
//-------------------------
$arcRow = GetOneArchive($id);
if($arcRow['aid']=='')
{
ShowMsg('无法获取未知文档的信息!','-1');
exit();
}
extract($arcRow, EXTR_SKIP);
//处理需要下载权限的软件
if($needRank>0 || $needMoney>0)
{
require_once(DEDEINC.'/memberlogin.class.php');
$cfg_ml = new MemberLogin();
$arclink = $arcurl;
$arctitle = $title;
$arcLinktitle = "<a href=\"{$arcurl}\"><u>".$arctitle."</u></a>";
$pubdate = GetDateTimeMk($pubdate);
//会员级别不足
if(($needRank>1 && $cfg_ml->M_Rank < $needRank && $mid != $cfg_ml->M_ID))
{
$dsql->Execute('me' , "SELECT * FROM `#@__arcrank` ");
while($row = $dsql->GetObject('me'))
{
$memberTypes[$row->rank] = $row->membername;
}
$memberTypes[0] = "游客";
$msgtitle = "你没有权限下载软件:{$arctitle}!";
$moremsg = "这个软件需要 <font color='red'>".$memberTypes[$needRank]."</font> 才能下载,你目前是:<font color='red'>".$memberTypes[$cfg_ml->M_Rank]."</font> !";
include_once(DEDETEMPLATE.'/plus/view_msg.htm');
exit();
}
//以下为正常情况,自动扣点数
//如果文章需要金币,检查用户是否浏览过本文档
if($needMoney > 0 && $mid != $cfg_ml->M_ID)
{
$sql = "SELECT aid,money FROM `#@__member_operation` WHERE buyid='ARCHIVE".$id."' AND mid='".$cfg_ml->M_ID."'";
$row = $dsql->GetOne($sql);
//未购买过此文章
if( !is_array($row) )
{
//没有足够的金币
if( $needMoney > $cfg_ml->M_Money || $cfg_ml->M_Money=='')
{
$msgtitle = "你没有权限下载软件:{$arctitle}!";
$moremsg = "这个软件需要 <font color='red'>".$needMoney." 金币</font> 才能下载,你目前拥有金币:<font color='red'>".$cfg_ml->M_Money." 个</font> !";
include_once(DEDETEMPLATE.'/plus/view_msg.htm');
exit(0);
}
//有足够金币,记录用户信息
$inquery = "INSERT INTO `#@__member_operation`(mid,oldinfo,money,mtime,buyid,product,pname,sta)
VALUES ('".$cfg_ml->M_ID."','$arctitle','$needMoney','".time()."', 'ARCHIVE".$id."', 'archive','下载软件', 2); ";
//记录定单
if( !$dsql->ExecuteNoneQuery($inquery) )
{
ShowMsg('记录定单失败, 请返回', '-1');
exit(0);
}
//扣除金币
$dsql->ExecuteNoneQuery("UPDATE `#@__member` SET money = money - $needMoney WHERE mid='".$cfg_ml->M_ID."'");
}
}
}
//更新下载次数
$hash = md5($softUrl);
$rs = $dsql->ExecuteNoneQuery2("UPDATE `#@__downloads` SET downloads = downloads+1 WHERE hash='$hash' ");
if($rs <= 0)
{
$query = " INSERT INTO `#@__downloads`(`hash`, `id`, `downloads`) VALUES('$hash', '$id', 1); ";
$dsql->ExecNoneQuery($query);
}
header("location:{$softUrl}");
exit();
}//opentype=2