Bez popisu
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 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. $filename = $one['title'];
  77. $file = $artData['down'];
  78. //$filename = basename($file);
  79. //echo $file;
  80. if(!empty($file)){
  81. header("Content-type:application/octet-stream");
  82. header("Content-Disposition:attachment;filename = ".$filename);
  83. header("Accept-ranges:bytes");
  84. header("Accept-length:".filesize($file));
  85. readfile($file);
  86. //记录下载次数
  87. Db::name('users_down')->where(['id'=>$id])->setInc('num');
  88. }else{
  89. respose(['code'=>0, 'msg'=>'文件下载地址不存在!', 'data'=>[]]);
  90. }
  91. }
  92. }