download.php 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <?php
  2. /**
  3. *
  4. * 下载
  5. *
  6. * @version $Id: download.php 1 15:38 2010年7月8日Z tianya $
  7. * @package DedeCMS.Site
  8. * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
  9. * @license http://help.dedecms.com/usersguide/license.html
  10. * @link http://www.dedecms.com
  11. */
  12. require_once(dirname(__FILE__)."/../include/common.inc.php");
  13. require_once(DEDEINC."/channelunit.class.php");
  14. if(!isset($open)) $open = 0;
  15. //读取链接列表
  16. if($open==0)
  17. {
  18. $aid = (isset($aid) && is_numeric($aid)) ? $aid : 0;
  19. if($aid==0) exit(' Request Error! ');
  20. $arcRow = GetOneArchive($aid);
  21. if($arcRow['aid']=='')
  22. {
  23. ShowMsg('无法获取未知文档的信息!','-1');
  24. exit();
  25. }
  26. extract($arcRow, EXTR_SKIP);
  27. $cu = new ChannelUnit($arcRow['channel'],$aid);
  28. if(!is_array($cu->ChannelFields))
  29. {
  30. ShowMsg('获取文档信息失败!','-1');
  31. exit();
  32. }
  33. $vname = '';
  34. foreach($cu->ChannelFields as $k=>$v)
  35. {
  36. if($v['type']=='softlinks'){ $vname=$k; break; }
  37. }
  38. $row = $dsql->GetOne("SELECT $vname FROM `".$cu->ChannelInfos['addtable']."` WHERE aid='$aid'");
  39. include_once(DEDEINC.'/taglib/channel/softlinks.lib.php');
  40. $ctag = '';
  41. $downlinks = ch_softlinks($row[$vname], $ctag, $cu, '', TRUE);
  42. require_once(DEDETEMPLATE.'/plus/download_links_templet.htm');
  43. exit();
  44. }
  45. /*------------------------
  46. //提供软件给用户下载(旧模式)
  47. function getSoft_old()
  48. ------------------------*/
  49. else if($open==1)
  50. {
  51. //更新下载次数
  52. $id = isset($id) && is_numeric($id) ? $id : 0;
  53. $link = base64_decode(urldecode($link));
  54. if ( !$link )
  55. {
  56. ShowMsg('无效地址','javascript:;');
  57. exit;
  58. }
  59. $hash = md5($link);
  60. $rs = $dsql->ExecuteNoneQuery2("UPDATE `#@__downloads` SET downloads = downloads + 1 WHERE hash='$hash' ");
  61. if($rs <= 0)
  62. {
  63. $query = " INSERT INTO `#@__downloads`(`hash`,`id`,`downloads`) VALUES('$hash','$id',1); ";
  64. $dsql->ExecNoneQuery($query);
  65. }
  66. $row = $dsql->GetOne("SELECT * FROM `#@__softconfig` ");
  67. $sites = explode("\n", $row['sites']);
  68. $allowed = array();
  69. foreach($sites as $site)
  70. {
  71. $site = explode('|', $site);
  72. $domain = parse_url(trim($site[0]));
  73. $allowed[] = $domain['host'];
  74. }
  75. if ( !in_array($linkinfo['host'], $allowed) )
  76. {
  77. ShowMsg('非下载地址,禁止访问','javascript:;');
  78. exit;
  79. }
  80. header("location:$link");
  81. exit();
  82. }
  83. /*------------------------
  84. //提供软件给用户下载(新模式)
  85. function getSoft_new()
  86. ------------------------*/
  87. else if($open==2)
  88. {
  89. $id = intval($id);
  90. //获得附加表信息
  91. $row = $dsql->GetOne("SELECT ch.addtable,arc.mid FROM `#@__arctiny` arc LEFT JOIN `#@__channeltype` ch ON ch.id=arc.channel WHERE arc.id='$id' ");
  92. if(empty($row['addtable']))
  93. {
  94. ShowMsg('找不到所需要的软件资源!', 'javascript:;');
  95. exit();
  96. }
  97. $mid = $row['mid'];
  98. //读取连接列表、下载权限信息
  99. $row = $dsql->GetOne("SELECT softlinks,daccess,needmoney FROM `{$row['addtable']}` WHERE aid='$id' ");
  100. if(empty($row['softlinks']))
  101. {
  102. ShowMsg('找不到所需要的软件资源!', 'javascript:;');
  103. exit();
  104. }
  105. $softconfig = $dsql->GetOne("SELECT * FROM `#@__softconfig` ");
  106. $needRank = $softconfig['dfrank'];
  107. $needMoney = $softconfig['dfywboy'];
  108. if($softconfig['argrange']==0)
  109. {
  110. $needRank = $row['daccess'];
  111. $needMoney = $row['needmoney'];
  112. }
  113. //分析连接列表
  114. require_once(DEDEINC.'/dedetag.class.php');
  115. $softUrl = '';
  116. $islocal = 0;
  117. $dtp = new DedeTagParse();
  118. $dtp->LoadSource($row['softlinks']);
  119. if( !is_array($dtp->CTags) )
  120. {
  121. $dtp->Clear();
  122. ShowMsg('找不到所需要的软件资源!', 'javascript:;');
  123. exit();
  124. }
  125. foreach($dtp->CTags as $ctag)
  126. {
  127. if($ctag->GetName()=='link')
  128. {
  129. $link = trim($ctag->GetInnerText());
  130. $islocal = $ctag->GetAtt('islocal');
  131. //分析本地链接
  132. if(!isset($firstLink) && $islocal==1) $firstLink = $link;
  133. if($islocal==1 && $softconfig['islocal'] != 1) continue;
  134. //支持http,迅雷下载,ftp,flashget
  135. if(!preg_match("#^http:\/\/|^thunder:\/\/|^ftp:\/\/|^flashget:\/\/#i", $link))
  136. {
  137. $link = $cfg_mainsite.$link;
  138. }
  139. $dbhash = substr(md5($link), 0, 24);
  140. if($uhash==$dbhash) $softUrl = $link;
  141. }
  142. }
  143. $dtp->Clear();
  144. if($softUrl=='' && $softconfig['ismoresite']==1
  145. && $softconfig['moresitedo']==1 && trim($softconfig['sites'])!='' && isset($firstLink))
  146. {
  147. $firstLink = preg_replace("#http:\/\/([^\/]*)\/#i", '/', $firstLink);
  148. $softconfig['sites'] = preg_replace("#[\r\n]{1,}#", "\n", $softconfig['sites']);
  149. $sites = explode("\n", trim($softconfig['sites']));
  150. foreach($sites as $site)
  151. {
  152. if(trim($site)=='') continue;
  153. list($link, $serverName) = explode('|', $site);
  154. $link = trim( preg_replace("#\/$#", "", $link) ).$firstLink;
  155. $dbhash = substr(md5($link), 0, 24);
  156. if($uhash == $dbhash) $softUrl = $link;
  157. }
  158. }
  159. if( $softUrl == '' )
  160. {
  161. ShowMsg('找不到所需要的软件资源!', 'javascript:;');
  162. exit();
  163. }
  164. //-------------------------
  165. // 读取文档信息,判断权限
  166. //-------------------------
  167. $arcRow = GetOneArchive($id);
  168. if($arcRow['aid']=='')
  169. {
  170. ShowMsg('无法获取未知文档的信息!','-1');
  171. exit();
  172. }
  173. extract($arcRow, EXTR_SKIP);
  174. //处理需要下载权限的软件
  175. if($needRank>0 || $needMoney>0)
  176. {
  177. require_once(DEDEINC.'/memberlogin.class.php');
  178. $cfg_ml = new MemberLogin();
  179. $arclink = $arcurl;
  180. $arctitle = $title;
  181. $arcLinktitle = "<a href=\"{$arcurl}\"><u>".$arctitle."</u></a>";
  182. $pubdate = GetDateTimeMk($pubdate);
  183. //会员级别不足
  184. if(($needRank>1 && $cfg_ml->M_Rank < $needRank && $mid != $cfg_ml->M_ID))
  185. {
  186. $dsql->Execute('me' , "SELECT * FROM `#@__arcrank` ");
  187. while($row = $dsql->GetObject('me'))
  188. {
  189. $memberTypes[$row->rank] = $row->membername;
  190. }
  191. $memberTypes[0] = "游客";
  192. $msgtitle = "你没有权限下载软件:{$arctitle}!";
  193. $moremsg = "这个软件需要 <font color='red'>".$memberTypes[$needRank]."</font> 才能下载,你目前是:<font color='red'>".$memberTypes[$cfg_ml->M_Rank]."</font> !";
  194. include_once(DEDETEMPLATE.'/plus/view_msg.htm');
  195. exit();
  196. }
  197. //以下为正常情况,自动扣点数
  198. //如果文章需要金币,检查用户是否浏览过本文档
  199. if($needMoney > 0 && $mid != $cfg_ml->M_ID)
  200. {
  201. $sql = "SELECT aid,money FROM `#@__member_operation` WHERE buyid='ARCHIVE".$id."' AND mid='".$cfg_ml->M_ID."'";
  202. $row = $dsql->GetOne($sql);
  203. //未购买过此文章
  204. if( !is_array($row) )
  205. {
  206. //没有足够的金币
  207. if( $needMoney > $cfg_ml->M_Money || $cfg_ml->M_Money=='')
  208. {
  209. $msgtitle = "你没有权限下载软件:{$arctitle}!";
  210. $moremsg = "这个软件需要 <font color='red'>".$needMoney." 金币</font> 才能下载,你目前拥有金币:<font color='red'>".$cfg_ml->M_Money." 个</font> !";
  211. include_once(DEDETEMPLATE.'/plus/view_msg.htm');
  212. exit(0);
  213. }
  214. //有足够金币,记录用户信息
  215. $inquery = "INSERT INTO `#@__member_operation`(mid,oldinfo,money,mtime,buyid,product,pname,sta)
  216. VALUES ('".$cfg_ml->M_ID."','$arctitle','$needMoney','".time()."', 'ARCHIVE".$id."', 'archive','下载软件', 2); ";
  217. //记录定单
  218. if( !$dsql->ExecuteNoneQuery($inquery) )
  219. {
  220. ShowMsg('记录定单失败, 请返回', '-1');
  221. exit(0);
  222. }
  223. //扣除金币
  224. $dsql->ExecuteNoneQuery("UPDATE `#@__member` SET money = money - $needMoney WHERE mid='".$cfg_ml->M_ID."'");
  225. }
  226. }
  227. }
  228. //更新下载次数
  229. $hash = md5($softUrl);
  230. $rs = $dsql->ExecuteNoneQuery2("UPDATE `#@__downloads` SET downloads = downloads+1 WHERE hash='$hash' ");
  231. if($rs <= 0)
  232. {
  233. $query = " INSERT INTO `#@__downloads`(`hash`, `id`, `downloads`) VALUES('$hash', '$id', 1); ";
  234. $dsql->ExecNoneQuery($query);
  235. }
  236. header("location:{$softUrl}");
  237. exit();
  238. }//opentype=2