설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Diyajax.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller;
  14. use think\Db;
  15. class Diyajax extends Base
  16. {
  17. /*
  18. * 初始化操作
  19. */
  20. public function _initialize() {
  21. parent::_initialize();
  22. }
  23. /**
  24. * 检验会员登录
  25. */
  26. public function check_userinfo()
  27. {
  28. if (IS_AJAX) {
  29. \think\Session::pause(); // 暂停session,防止session阻塞机制
  30. $ajaxLogic = new \app\api\logic\AjaxLogic;
  31. $result = $ajaxLogic->check_userinfo();
  32. if (!empty($result['data']['ey_is_login'])) {
  33. $assignData = [
  34. 'users' => $result['users'],
  35. ];
  36. $this->assign($assignData);
  37. $filename = './template/'.THEME_STYLE_PATH.'/'.'system/users_info.htm';
  38. if (file_exists($filename)) {
  39. $html = $this->fetch($filename); // 渲染模板标签语法
  40. } else {
  41. $html = '缺少模板文件:'.ltrim($filename, '.');
  42. }
  43. $result['data']['html'] = $html;
  44. }
  45. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$result['data']]);
  46. }
  47. to_index("404");
  48. }
  49. /*
  50. * 下载文件
  51. * https://www.zc10000.com/api/diyajax/downfile
  52. */
  53. public function downFile(){
  54. $id = request()->get('id',0);
  55. //var_dump((int)$id);
  56. //非法
  57. if((int)$id === 0){
  58. respose(['code'=>0, 'msg'=>'请求失败!', 'data'=>[]]);
  59. }
  60. //查找记录
  61. $one = Db::name('users_down')->where(['id'=>$id])->find();
  62. if((int)$one['num'] >= 3){
  63. respose(['code'=>0, 'msg'=>'该链接请求下载次数不能超过3次,链接已失效!', 'data'=>[]]);
  64. }
  65. if((int)$one['expire_time'] < time()){
  66. //已过期
  67. respose(['code'=>0, 'msg'=>'下载链接已失效!', 'data'=>[]]);
  68. }
  69. //查找下载地址
  70. $artData = Db::name('zczygz_content')->where('aid', $one['aid'])
  71. ->find();
  72. if(empty($artData) || empty($artData['down'])){
  73. respose(['code'=>0, 'msg'=>'文档不存在!', 'data'=>[]]);
  74. }
  75. //php
  76. $ext = explode('.',$artData['down']);
  77. $ext = end($ext);
  78. $filename = $one['title'].'.'.$ext;
  79. $file = $artData['down'].'?attname='.$filename;
  80. //$filename = basename($file);
  81. //echo $file;
  82. //记录下载次数
  83. Db::name('users_down')->where(['id'=>$id])->setInc('num');
  84. header('location:'.$file);
  85. //$this->downFileCurl($file,$filename);
  86. }
  87. public function downFileCurl($url, $file_name)
  88. {
  89. header('Content-Description: File Transfer');
  90. header('Content-Type: application/vnd.android.package-archive');
  91. header('Content-Disposition: attachment; filename=' . $file_name);
  92. header('Content-Transfer-Encoding: binary');
  93. header('Expires: 0');
  94. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  95. header('Pragma: public');
  96. $ch = curl_init();
  97. curl_setopt($ch, CURLOPT_URL, $url);
  98. curl_setopt($ch, CURLOPT_HEADER, 0);
  99. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  100. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
  101. curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $buffer) {
  102. echo $buffer;
  103. return strlen($buffer);
  104. });
  105. curl_exec($ch);
  106. curl_close($ch);
  107. }
  108. }