Sin descripción
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.

View.php 54KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294
  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\home\controller;
  14. use think\Db;
  15. use think\Config;
  16. class View extends Base
  17. {
  18. // 模型标识
  19. public $nid = '';
  20. // 模型ID
  21. public $channel = '';
  22. // 模型名称
  23. public $modelName = '';
  24. public function _initialize()
  25. {
  26. parent::_initialize();
  27. }
  28. /**
  29. * 内容页
  30. */
  31. public function index($aid = '',$tid = '')
  32. {
  33. $seo_pseudo = config('ey_config.seo_pseudo');
  34. /*URL上参数的校验*/
  35. if (3 == $seo_pseudo)
  36. {
  37. if (stristr($this->request->url(), '&c=View&a=index&')) {
  38. to_index("404");
  39. }
  40. }
  41. else if (1 == $seo_pseudo || (2 == $seo_pseudo && isMobile()))
  42. {
  43. $seo_dynamic_format = config('ey_config.seo_dynamic_format');
  44. if (1 == $seo_pseudo && 2 == $seo_dynamic_format && stristr($this->request->url(), '&c=View&a=index&')) {
  45. to_index("404");
  46. }
  47. }
  48. /*--end*/
  49. /*
  50. * 非法动态url 直接301到首页
  51. */
  52. if(stristr($this->request->url(), '&c=View&a=index&')) {
  53. to_index("404");
  54. }
  55. $map = [];
  56. //id序列号转换
  57. $catid = request()->get('tid',0);
  58. $catid = (int)$catid;
  59. /*var_dump($catid);
  60. var_dump($aid); die;*/
  61. $type = 0;
  62. //论文期刊
  63. if($catid === 116 || $catid === 127){
  64. $type = 4;
  65. $aid = \think\Db::table('ey_seo_number')
  66. ->where('type',$type)
  67. ->where('tid','=',$catid)
  68. ->where('topid',0)
  69. ->where('parentid',0)
  70. ->where('number',$aid)
  71. ->where('area_id',0)
  72. ->value('aid');
  73. if(empty($aid)){
  74. to_index("404");
  75. }
  76. $this->assign('aid',$aid);
  77. }else if($catid === 120 || $catid === 118 || $catid === 122 || $catid === 11100000 || $catid === 133 || $catid === 132 || $catid === 131 || $catid === 306){
  78. //文章类
  79. $type = 2;
  80. $aid = \think\Db::table('ey_seo_number')
  81. ->where('type',$type)
  82. ->where('tid','=',$catid)
  83. ->where('topid',0)
  84. ->where('parentid',0)
  85. ->where('number',$aid)
  86. ->where('area_id',0)
  87. ->value('aid');
  88. if(empty($aid)){
  89. to_index("404");
  90. }
  91. $this->assign('aid',$aid);
  92. }else if($catid === 1231 || $catid === 1233 || $catid === 1234){
  93. $type = 2;
  94. $aid = \think\Db::table('ey_seo_number')
  95. ->where('type',$type)
  96. ->where('tid','=',$catid)
  97. ->where('topid',0)
  98. ->where('parentid',0)
  99. ->where('number',$aid)
  100. ->where('area_id',0)
  101. ->value('aid');
  102. if(empty($aid)){
  103. to_index("404");
  104. }
  105. $this->assign('aid',$aid);
  106. }else{
  107. //其他
  108. }
  109. //var_dump($aid);die;
  110. if($catid === 1232){
  111. $typeid = 1232;
  112. $url = 'zc';
  113. $route_param = request()->route();
  114. //var_dump($route_param);die;
  115. if((int)$route_param['areaname'] > 0){
  116. //是详情
  117. $route_param['aid'] = (int)$route_param['areaname'];
  118. $area_id = 0;
  119. }else{
  120. if(isset($route_param['areaname']) && !empty($route_param['areaname'])){
  121. $area_id = Db::name('citysite')->where('domain','=',$route_param['areaname'])->value('id');
  122. }else{
  123. $area_id = 0;
  124. }
  125. }
  126. //开始查询序列号转换
  127. $type = 2;
  128. $aid = \think\Db::table('ey_seo_number')
  129. ->where('type',$type)
  130. ->where('tid','=',$typeid)
  131. ->where('topid',0)
  132. ->where('parentid',0)
  133. ->where('number',$route_param['aid'])
  134. ->where('area_id',$area_id)
  135. ->value('aid');
  136. if(empty($aid)){
  137. to_index("404");
  138. }
  139. $this->assign('aid',$aid);
  140. }
  141. /*
  142. * 路由加入tid后 $catid 不为 0
  143. */
  144. if($catid === 0 || $catid === 117 || $catid === 125 || $catid === 825 || $catid === 826 || $catid === 115 || $catid === 111){
  145. /*
  146. * 政策资讯 评审攻略 职称材料
  147. */
  148. //分析url
  149. $url = request()->url();
  150. $url_ar = explode('/',$url);
  151. //array(2) { [0]=> string(0) "" [1]=> string(10) "gonglve1-4" }
  152. //var_dump($url_ar); die;
  153. if($catid === 117){
  154. if(isset($url_ar[2])){
  155. //二级城市
  156. $url_ar2 = explode('1-',$url_ar[2]);
  157. $url_ar = ['',$url_ar[1],$url_ar2[0]];
  158. }else{
  159. $url_ar = explode('1-',$url_ar[1]);
  160. $url_ar = ['',$url_ar[0]];
  161. }
  162. //var_dump($url_ar); die;
  163. }
  164. if($url_ar[1] === 'zlwd'){
  165. $url = $url_ar[1];
  166. $typeid = 126;
  167. }else if($url_ar[1] === 'zcwj'){
  168. //
  169. $url = $url_ar[1];
  170. $typeid = 825;
  171. }else if($url_ar[1] === 'ckwj'){
  172. //
  173. $url = $url_ar[1];
  174. $typeid = 826;
  175. }else{
  176. //https://guangdong.zc10000.com/jieyang/zhengce/cms4
  177. //市
  178. if(isset($url_ar[2]) && $url_ar[2] === 'zhengce'){
  179. $typeid = 115;
  180. $url = $url_ar[2];
  181. }else if(isset($url_ar[2]) && $url_ar[2] === 'gonglve'){
  182. $typeid = 117;
  183. $url = $url_ar[2];
  184. }
  185. $pos = strpos($url_ar[2], 'wthz');
  186. if ($pos !== false) {
  187. //常见问题
  188. $typeid = 111;
  189. $url = 'wthz';
  190. }
  191. //https://guangdong.zc10000.com/zhengce/cms53
  192. //省
  193. if(isset($url_ar[1]) && $url_ar[1] === 'zhengce'){
  194. $typeid = 115;
  195. $url = $url_ar[1];
  196. }else if(isset($url_ar[1]) && $url_ar[1] === 'gonglve'){
  197. $typeid = 117;
  198. $url = $url_ar[1];
  199. }
  200. $pos = strpos($url_ar[1], 'wthz');
  201. if ($pos !== false) {
  202. //常见问题
  203. $typeid = 111;
  204. $url = 'wthz';
  205. }
  206. //var_dump($url_ar);
  207. //var_dump($url);die;
  208. }
  209. //开始文档处理
  210. if($url === 'zlwd' || $url === 'zcwj' || $url === 'ckwj'){
  211. $route_param = request()->route();
  212. $number = (int)$route_param['aid'];
  213. //var_dump($number);
  214. $domain = request()->domain();
  215. //var_dump($domain);
  216. //https://guangdong.zc10000.com
  217. $domain = explode('//',$domain);
  218. $domain = explode('.',$domain[1]);
  219. $domain = $domain[0];
  220. //var_dump($domain);die;
  221. if($domain == 'www'){
  222. $area_id = 0;
  223. }else{
  224. //查询区域id
  225. $area_id = Db::name('citysite')->where('domain','=',$domain)->value('id');
  226. //var_dump($area_id);
  227. }
  228. //开始查询序列号转换
  229. $type = 5;
  230. $aid = \think\Db::table('ey_seo_number')
  231. ->where('type',$type)
  232. ->where('tid','=',$typeid)
  233. ->where('topid',0)
  234. ->where('parentid',0)
  235. ->where('number',$number)
  236. ->where('area_id',$area_id)
  237. ->value('aid');
  238. if(empty($aid)){
  239. to_index("404");
  240. }
  241. $this->assign('aid',$aid);
  242. //var_dump($aid);
  243. }else if($url === 'zhengce' || $url === 'gonglve' || $url === 'wthz'){
  244. //评审攻略和政策资讯 加常见问题
  245. $route_param = request()->route();
  246. $number = (int)$route_param['aid'];
  247. //var_dump($number);die;
  248. $domain = request()->domain();
  249. //var_dump($domain);
  250. //https://guangdong.zc10000.com
  251. $domain = explode('//',$domain);
  252. $domain = explode('.',$domain[1]);
  253. $domain = $domain[0];
  254. //var_dump($domain); die;
  255. if($domain !== 'zc' && $domain !== 'www'){
  256. //查询区域id
  257. $area_id = Db::name('citysite')->where('domain','=',$domain)->value('id');
  258. //var_dump($area_id);
  259. }else{
  260. $area_id = 0;
  261. }
  262. if($url_ar[1] !== 'zhengce' && $url_ar[1] !== 'gonglve' && strpos($url_ar[1], 'wthz') === false){
  263. //查找城市id
  264. $city_url = $url_ar[1];
  265. $city_id = Db::name('citysite')->where('domain','=',$city_url)->value('id');
  266. //var_dump($city_url);
  267. //die;
  268. }else{
  269. $city_id = 0;
  270. }
  271. //开始查询序列号转换
  272. $type = 2;
  273. $aid = \think\Db::table('ey_seo_number')
  274. ->where('type',$type)
  275. ->where('tid','=',$typeid)
  276. ->where('topid',0)
  277. ->where('parentid',0)
  278. ->where('number',$number)
  279. ->where('area_id',$area_id)
  280. ->where('city_id',$city_id)
  281. ->value('aid');
  282. if(empty($aid)){
  283. to_index("404");
  284. }
  285. $this->assign('aid',$aid);
  286. //var_dump($aid);
  287. }else{
  288. }
  289. //exit();
  290. }
  291. //var_dump($aid);die;
  292. if (!is_numeric($aid) || strval(intval($aid)) !== strval($aid)) {
  293. if (!preg_match("/^[\x{4e00}-\x{9fa5}\w\-]+$/u", $aid)) {
  294. to_index("404");
  295. }
  296. $map = array('a.htmlfilename' => $aid);
  297. if (config('lang_switch_on') && !empty($this->home_lang)) {
  298. $map['a.lang'] = $this->home_lang;
  299. }
  300. } else {
  301. $map = array('a.aid' => intval($aid));
  302. }
  303. //var_dump($map);die;
  304. $map['a.is_del'] = 0; // 回收站功能
  305. // 多城市站点
  306. $field = 'a.aid, a.typeid, a.channel, a.users_price, a.users_free, a.province_id, a.city_id, a.area_id, b.nid, b.ctl_name, c.level_id, c.level_name, c.level_value';
  307. $archivesInfo = Db::name('archives')->field($field)
  308. ->alias('a')
  309. ->join('__CHANNELTYPE__ b', 'a.channel = b.id', 'LEFT')
  310. ->join('__USERS_LEVEL__ c', 'a.arc_level_id = c.level_id', 'LEFT')
  311. ->where($map)
  312. ->find();
  313. if (empty($archivesInfo) || !in_array($archivesInfo['channel'], config('global.allow_release_channel'))) {
  314. to_index("404");
  315. }
  316. //var_dump($archivesInfo);die;
  317. /*校验多城市站点*/
  318. if (config('city_switch_on')) {
  319. $site = get_home_site();
  320. if (empty($site)) {
  321. if (!empty($archivesInfo['province_id']) || !empty($archivesInfo['city_id']) || !empty($archivesInfo['area_id'])) { // 非全国文档
  322. to_index("404");
  323. }
  324. } else if (!empty($site)) {
  325. if (empty($archivesInfo['province_id']) && empty($archivesInfo['city_id']) && empty($archivesInfo['area_id'])) { // 全国文档
  326. to_index("404");
  327. }
  328. $siteInfo = Db::name('citysite')->where(['domain'=>$site])->find();
  329. if (!empty($siteInfo)) {
  330. if (!empty($archivesInfo['area_id'])) {
  331. if ($archivesInfo['area_id'] != $siteInfo['id']) {
  332. to_index("404");
  333. }
  334. } else if (!empty($archivesInfo['city_id'])) {
  335. if ($archivesInfo['city_id'] != $siteInfo['id']) {
  336. to_index("404");
  337. }
  338. } else if (!empty($archivesInfo['province_id'])) {
  339. if ($archivesInfo['province_id'] != $siteInfo['id']) {
  340. to_index("404");
  341. }
  342. }
  343. }
  344. }
  345. }
  346. $aid = $archivesInfo['aid'];
  347. $this->nid = $archivesInfo['nid'];
  348. $this->channel = $archivesInfo['channel'];
  349. $this->modelName = $archivesInfo['ctl_name'];
  350. //var_dump($archivesInfo);die;
  351. //var_dump($this->modelName);die;
  352. $result = model($this->modelName)->getInfo($aid);
  353. //var_dump($this->modelName);die;
  354. // 若是管理员则不受限制
  355. // if (session('?admin_id')) {
  356. // if ($result['arcrank'] == -1 && $result['users_id'] != session('users_id')) {
  357. // $this->success('待审核稿件,你没有权限阅读!');
  358. // }
  359. // }
  360. // 外部链接跳转
  361. if ($result['is_jump'] == 1) {
  362. header('Location: ' . $result['jumplinks']);
  363. exit;
  364. }
  365. /*--end*/
  366. $tid = $result['typeid'];
  367. $arctypeInfo = model('Arctype')->getInfo($tid);
  368. /*自定义字段的数据格式处理*/
  369. $arctypeInfo = $this->fieldLogic->getTableFieldList($arctypeInfo, config('global.arctype_channel_id'));
  370. /*--end*/
  371. if (!empty($arctypeInfo)) {
  372. /*URL上参数的校验*/
  373. if (3 == $seo_pseudo) {
  374. $dirname = input('param.dirname/s');
  375. $dirname2 = '';
  376. $seo_rewrite_format = config('ey_config.seo_rewrite_format');
  377. if (1 == $seo_rewrite_format) {
  378. $toptypeRow = model('Arctype')->getAllPid($tid);
  379. $toptypeinfo = current($toptypeRow);
  380. $dirname2 = $toptypeinfo['dirname'];
  381. } else if (2 == $seo_rewrite_format) {
  382. $dirname2 = $arctypeInfo['dirname'];
  383. } else if (3 == $seo_rewrite_format) {
  384. $dirname2 = $arctypeInfo['dirname'];
  385. }else if (4 == $seo_rewrite_format) {
  386. $dirname2 = $arctypeInfo['dirname'];
  387. }
  388. if ($dirname != $dirname2) {
  389. to_index("404");
  390. }
  391. }
  392. /*--end*/
  393. // 是否有子栏目,用于标记【全部】选中状态
  394. $arctypeInfo['has_children'] = model('Arctype')->hasChildren($tid);
  395. // 文档模板文件,不指定文档模板,默认以栏目设置的为主
  396. empty($result['tempview']) && $result['tempview'] = $arctypeInfo['tempview'];
  397. /*给没有type前缀的字段新增一个带前缀的字段,并赋予相同的值*/
  398. foreach ($arctypeInfo as $key => $val) {
  399. if (!preg_match('/^type/i', $key)) {
  400. $key_new = 'type' . $key;
  401. !array_key_exists($key_new, $arctypeInfo) && $arctypeInfo[$key_new] = $val;
  402. }
  403. }
  404. /*--end*/
  405. } else {
  406. to_index("404");
  407. }
  408. $result = array_merge($arctypeInfo, $result);
  409. // 文档链接
  410. $result['arcurl'] = $result['pageurl'] = $result['pageurl_m'] = '';
  411. if ($result['is_jump'] != 1) {
  412. $result['arcurl'] = arcurl('home/'.$this->modelName.'/view', $result, true, true);
  413. $result['pageurl'] = $result['arcurl'];
  414. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl'], $result['typeid'], $result['aid']); // 获取当前页面对应的移动端URL
  415. }
  416. /*--end*/
  417. // 移动端域名
  418. $result['mobile_domain'] = '';
  419. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  420. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  421. }
  422. /*
  423. * 屏蔽调系统自动生成的
  424. */
  425. //$result['seo_title'] = set_arcseotitle($result['title'], $result['seo_title'], $result['typename'], $result['typeid'], $this->eyou['site']);
  426. //var_dump($result['seo_title']);
  427. $result['seo_description'] = checkStrHtml($result['seo_description']);
  428. $result['tags'] = !empty($result['tags']['tag_arr']) ? $result['tags']['tag_arr'] : '';
  429. $result['litpic'] = handle_subdir_pic($result['litpic']); // 支持子目录
  430. $result = view_logic($aid, $this->channel, $result, true); // 模型对应逻辑
  431. $result = $this->fieldLogic->getChannelFieldList($result, $this->channel); // 自定义字段的数据格式处理
  432. //移动端详情
  433. if (isMobile() && !empty($result['content_ey_m'])){
  434. $result['content'] = $result['content_ey_m'];
  435. }
  436. if (!empty($result['users_id'])){
  437. $users_where['a.users_id'] = $result['users_id'];
  438. }elseif (!empty($result['admin_id'])){
  439. $users_where['a.admin_id'] = $result['admin_id'];
  440. }else {
  441. $users_where['a.admin_id'] = ['>',0];
  442. }
  443. $users = Db::name('users')->alias('a')->field('a.username,a.nickname,a.head_pic,b.level_name,b.level_value')->where($users_where)->join('users_level b','a.level = b.level_id','left')->find();
  444. if (!empty($users)) {
  445. $users['head_pic'] = get_default_pic($users['head_pic']);
  446. empty($users['nickname']) && $users['nickname'] = $users['username'];
  447. }
  448. $eyou = array(
  449. 'type' => $arctypeInfo,
  450. 'field' => $result,
  451. 'users' => $users,
  452. );
  453. $this->eyou = array_merge($this->eyou, $eyou);
  454. $this->assign('eyou', $this->eyou);
  455. /*模板文件*/
  456. $viewfile = !empty($result['tempview'])
  457. ? str_replace('.' . $this->view_suffix, '', $result['tempview'])
  458. : 'view_' . $this->nid;
  459. /*--end*/
  460. if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名
  461. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$this->home_site;
  462. $viewfilepath2 = TEMPLATE_PATH.$this->theme_style_path.DS.'city'.DS.$this->home_site;
  463. if (!empty($this->eyou['global']['site_template'])) {
  464. if (file_exists($viewfilepath2)) {
  465. $viewfile = "city/{$this->home_site}/{$viewfile}";
  466. } else if (file_exists($viewfilepath)) {
  467. $viewfile = "{$this->home_site}/{$viewfile}";
  468. }
  469. }
  470. } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名
  471. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $viewfile . "_{$this->home_lang}." . $this->view_suffix;
  472. if (file_exists($viewfilepath)) {
  473. $viewfile .= "_{$this->home_lang}";
  474. }
  475. }
  476. $users_id = (int)session('users_id');
  477. $emptyhtml = $this->check_arcrank($this->eyou['field'],$users_id);
  478. //var_dump($this->eyou['field']);die;
  479. // if ($this->eyou['field']['arcrank'] > 0 || $this->eyou['field']['typearcrank'] > 0) { // 若需要会员权限则执行
  480. // if (empty($users_id)) {
  481. // $url = url('user/Users/login');
  482. // if (stristr($url, '?')) {
  483. // $url = $url."&referurl=".urlencode($this->eyou['field']['arcurl']);
  484. // } else {
  485. // $url = $url."?referurl=".urlencode($this->eyou['field']['arcurl']);
  486. // }
  487. // $this->redirect($url);
  488. // }
  489. // $msg = action('api/Ajax/get_arcrank', ['aid' => $aid, 'vars' => 1]);
  490. // if (true !== $msg) {
  491. // $this->error($msg);
  492. // }
  493. // } else if ($this->eyou['field']['arcrank'] <= -1) {
  494. // /*待审核稿件,是否有权限查阅的处理,登录的管理员可查阅*/
  495. // $admin_id = input('param.admin_id/d');
  496. // if ( (session('?admin_id') && !empty($admin_id)) || ($this->eyou['field']['users_id'] > 0 && $this->eyou['field']['users_id'] == $users_id) ) {
  497. //
  498. // }
  499. // else if (empty($users_id) && empty($admin_id)) {
  500. // to_index("404");
  501. // }
  502. // else {
  503. // $emptyhtml = <<<EOF
  504. //<!DOCTYPE html>
  505. //<html>
  506. // <head>
  507. // <title>{$this->eyou['field']['seo_title']}</title>
  508. // <meta name="description" content="{$this->eyou['field']['seo_description']}" />
  509. // <meta name="keywords" content="{$this->eyou['field']['seo_keywords']}" />
  510. // </head>
  511. // <body>
  512. // </body>
  513. //</html>
  514. //EOF;
  515. // }
  516. // /*end*/
  517. // }
  518. if (!empty($emptyhtml)) {
  519. /*尝试写入静态缓存*/
  520. // write_html_cache($emptyhtml, $result);
  521. /*--end*/
  522. return $this->fetch("./public/html/empty_view.htm");
  523. // return $this->display($emptyhtml);
  524. } else {
  525. return $this->fetch(":{$viewfile}");
  526. }
  527. }
  528. /*
  529. * 判断阅读权限
  530. */
  531. private function check_arcrank($eyou_field,$users_id){
  532. $emptyhtml = "";
  533. $eyou_field['page_limit'] = empty($eyou_field['page_limit']) ? [] : explode(',', $eyou_field['page_limit']);
  534. if ($eyou_field['arcrank'] > 0 || ($eyou_field['typearcrank'] > 0 && in_array(2,$eyou_field['page_limit'])) ) { // 若需要会员权限则执行
  535. if (empty($users_id)) {
  536. $url = url('user/Users/login');
  537. if (stristr($url, '?')) {
  538. $url = $url."&referurl=".urlencode($eyou_field['arcurl']);
  539. } else {
  540. $url = $url."?referurl=".urlencode($eyou_field['arcurl']);
  541. }
  542. $this->redirect($url);
  543. }
  544. $msg = action('api/Ajax/get_arcrank', ['aid' => $eyou_field['aid'], 'vars' => 1]);
  545. if (true !== $msg) {
  546. $this->error($msg);
  547. }
  548. } else if ($eyou_field['arcrank'] <= -1) {
  549. /*待审核稿件,是否有权限查阅的处理,登录的管理员可查阅*/
  550. $admin_id = input('param.admin_id/d');
  551. if ( (session('?admin_id') && !empty($admin_id)) || ($eyou_field['users_id'] > 0 && $eyou_field['users_id'] == $users_id) ) {
  552. }
  553. else if (empty($users_id) && empty($admin_id)) {
  554. to_index("404");
  555. }
  556. else {
  557. $emptyhtml = <<<EOF
  558. <!DOCTYPE html>
  559. <html>
  560. <head>
  561. <title>{$eyou_field['seo_title']}</title>
  562. <meta name="description" content="{$eyou_field['seo_description']}" />
  563. <meta name="keywords" content="{$eyou_field['seo_keywords']}" />
  564. </head>
  565. <body>
  566. </body>
  567. </html>
  568. EOF;
  569. }
  570. /*end*/
  571. }
  572. return $emptyhtml;
  573. }
  574. /**
  575. * 下载文件
  576. */
  577. public function downfile()
  578. {
  579. $file_id = input('param.id/d', 0);
  580. $uhash = input('param.uhash/s', '');
  581. if (empty($file_id) || empty($uhash)) {
  582. $this->error('下载地址出错!');
  583. exit;
  584. }
  585. clearstatcache();
  586. // 查询信息
  587. $map = array(
  588. 'a.file_id' => $file_id,
  589. 'a.uhash' => $uhash,
  590. );
  591. $result = Db::name('download_file')
  592. ->alias('a')
  593. ->field('a.*,b.arc_level_id,b.restric_type,b.users_price,b.no_vip_pay')
  594. ->join('__ARCHIVES__ b', 'a.aid = b.aid', 'LEFT')
  595. ->where($map)
  596. ->find();
  597. $file_url_gbk = iconv("utf-8", "gb2312//IGNORE", $result['file_url']);
  598. $file_url_gbk = preg_replace('#^(/[/\w\-]+)?(/public/upload/soft/|/uploads/soft/)#i', '$2', $file_url_gbk);
  599. if (empty($result) || (!is_http_url($result['file_url']) && !file_exists('.' . $file_url_gbk))) {
  600. $this->error('下载文件不存在!');
  601. exit;
  602. }
  603. //安装下载模型付费插件 走新逻辑 大黄
  604. $channelData = Db::name('channeltype')->where(['nid'=>'download','status'=>1])->value('data');
  605. if (!empty($channelData)) $channelData = json_decode($channelData,true);
  606. if (!empty($channelData['is_download_pay'])){
  607. if ($result['restric_type'] > 0) {
  608. $UsersData = session('users');
  609. if (empty($UsersData['users_id'])) {
  610. $this->error('请登录后下载!', null, ['is_login' => 0, 'url' => url('user/Users/login')]);
  611. exit;
  612. }
  613. }
  614. if ($result['restric_type'] == 1) {// 付费
  615. $order = Db::name('download_order')->where(['users_id' => $UsersData['users_id'], 'order_status' => 1, 'product_id' => $result['aid']])->find();
  616. if (empty($order)) {
  617. $msg = '文件购买后可下载,请先购买!';
  618. $this->error($msg, null, ['url' => url('user/Download/buy'), 'need_buy' => 1, 'aid' => $result['aid']]);
  619. exit;
  620. }
  621. } elseif ($result['restric_type'] == 2) {//会员专享
  622. // 查询会员信息
  623. $users = Db::name('users')
  624. ->alias('a')
  625. ->field('a.users_id,b.level_value,b.level_name')
  626. ->join('__USERS_LEVEL__ b', 'a.level = b.level_id', 'LEFT')
  627. ->where(['a.users_id' => $UsersData['users_id']])
  628. ->find();
  629. // 查询下载所需等级值
  630. $file_level = Db::name('archives')
  631. ->alias('a')
  632. ->field('b.level_value,b.level_name')
  633. ->join('__USERS_LEVEL__ b', 'a.arc_level_id = b.level_id', 'LEFT')
  634. ->where(['a.aid' => $result['aid']])
  635. ->find();
  636. if ($users['level_value'] < $file_level['level_value']) {//未达到会员级别
  637. if ($result['no_vip_pay'] == 1){ //会员专享 开启 非会员付费下载
  638. $order = Db::name('download_order')->where(['users_id' => $UsersData['users_id'], 'order_status' => 1, 'product_id' => $result['aid']])->find();
  639. if (empty($order)) {
  640. $msg = '文件为【' . $file_level['level_name'] . '】免费下载,您当前为【' . $users['level_name'] . '】,可付费购买!';
  641. $this->error($msg, null, ['url' => url('user/Download/buy'), 'need_buy' => 1, 'aid' => $result['aid']]);
  642. exit;
  643. }
  644. }else{
  645. $msg = '文件为【' . $file_level['level_name'] . '】可下载,您当前为【' . $users['level_name'] . '】,请先升级!';
  646. $this->error($msg, null, ['url' => url('user/Level/level_centre')]);
  647. exit;
  648. }
  649. }
  650. } elseif ($result['restric_type'] == 3) {//会员付费
  651. // 查询会员信息
  652. $users = Db::name('users')
  653. ->alias('a')
  654. ->field('a.users_id,b.level_value,b.level_name')
  655. ->join('__USERS_LEVEL__ b', 'a.level = b.level_id', 'LEFT')
  656. ->where(['a.users_id' => $UsersData['users_id']])
  657. ->find();
  658. // 查询下载所需等级值
  659. $file_level = Db::name('archives')
  660. ->alias('a')
  661. ->field('b.level_value,b.level_name')
  662. ->join('__USERS_LEVEL__ b', 'a.arc_level_id = b.level_id', 'LEFT')
  663. ->where(['a.aid' => $result['aid']])
  664. ->find();
  665. if ($users['level_value'] < $file_level['level_value']) {
  666. $msg = '文件为【' . $file_level['level_name'] . '】购买可下载,您当前为【' . $users['level_name'] . '】,请先升级后购买!';
  667. $this->error($msg, null, ['url' => url('user/Level/level_centre')]);
  668. exit;
  669. }
  670. $order = Db::name('download_order')->where(['users_id' => $UsersData['users_id'], 'order_status' => 1, 'product_id' => $result['aid']])->find();
  671. if (empty($order)) {
  672. $msg = '文件为【' . $file_level['level_name'] . '】购买可下载,您当前为【' . $users['level_name'] . '】,请先购买!';
  673. $this->error($msg, null, ['url' => url('user/Level/level_centre'), 'need_buy' => 1, 'aid' => $result['aid']]);
  674. exit;
  675. }
  676. }
  677. }else{
  678. // 判断会员信息
  679. if (0 < intval($result['arc_level_id'])) {
  680. //走下载模型会员限制下载旧版逻辑
  681. $UsersData = session('users');
  682. if (empty($UsersData['users_id'])) {
  683. $this->error('请登录后下载!', null, ['is_login' => 0, 'url' => url('user/Users/login')]);
  684. exit;
  685. } else {
  686. /*判断会员是否可下载该文件--2019-06-21 陈风任添加*/
  687. // 查询会员信息
  688. $users = Db::name('users')
  689. ->alias('a')
  690. ->field('a.users_id,b.level_value,b.level_name')
  691. ->join('__USERS_LEVEL__ b', 'a.level = b.level_id', 'LEFT')
  692. ->where(['a.users_id' => $UsersData['users_id']])
  693. ->find();
  694. // 查询下载所需等级值
  695. $file_level = Db::name('archives')
  696. ->alias('a')
  697. ->field('b.level_value,b.level_name')
  698. ->join('__USERS_LEVEL__ b', 'a.arc_level_id = b.level_id', 'LEFT')
  699. ->where(['a.aid' => $result['aid']])
  700. ->find();
  701. if ($users['level_value'] < $file_level['level_value']) {
  702. $msg = '文件为【' . $file_level['level_name'] . '】可下载,您当前为【' . $users['level_name'] . '】,请先升级!';
  703. $this->error($msg, null, ['url' => url('user/Level/level_centre')]);
  704. exit;
  705. }
  706. /*--end*/
  707. }
  708. }
  709. }
  710. // 下载次数限制
  711. !empty($result['arc_level_id']) && $this->down_num_access($result['aid']);
  712. // 外部下载链接
  713. if (is_http_url($result['file_url']) || !empty($result['is_remote'])) {
  714. if ($result['uhash'] != md5($result['file_url'])) {
  715. $this->error('下载地址出错!');
  716. }
  717. // 记录下载次数(限制会员级别下载的文件才记录下载次数)
  718. // if (0 < intval($result['arc_level_id'])) {
  719. // $this->download_log($result['file_id'], $result['aid']);
  720. // }
  721. //20220816修改为不限级别都更新次数
  722. $this->download_log($result['file_id'], $result['aid']);
  723. $result['file_url'] = htmlspecialchars_decode($result['file_url']);
  724. $result['file_url'] = handle_subdir_pic($result['file_url'], 'soft');
  725. if (IS_AJAX) {
  726. $this->success('正在跳转中……', $result['file_url'], $result);
  727. } else {
  728. $this->redirect($result['file_url']);
  729. exit;
  730. }
  731. }
  732. // 本站链接
  733. else
  734. {
  735. if (md5_file('.' . $file_url_gbk) != $result['md5file']) {
  736. $this->error('下载文件包已损坏!');
  737. }
  738. // 记录下载次数(限制会员级别下载的文件才记录下载次数)
  739. // if (0 < intval($result['arc_level_id'])) {
  740. // $this->download_log($result['file_id'], $result['aid']);
  741. // }
  742. // 记录下载次数
  743. $this->download_log($result['file_id'], $result['aid']);
  744. $uhash_mch = mchStrCode($uhash);
  745. $url = $this->root_dir . "/index.php?m=home&c=View&a=download_file&file_id={$file_id}&uhash={$uhash_mch}";
  746. cookie($file_id.$uhash_mch, 1);
  747. if (IS_AJAX) {
  748. $this->success('开始下载中……', $url);
  749. } else {
  750. $url = $this->request->domain() . $url;
  751. $this->redirect($url);
  752. exit;
  753. }
  754. }
  755. }
  756. /**
  757. * 本地附件下载
  758. */
  759. public function download_file()
  760. {
  761. $file_id = input('param.file_id/d');
  762. $uhash_mch = input('param.uhash/s', '');
  763. $uhash = mchStrCode($uhash_mch, 'DECODE');
  764. $map = array(
  765. 'file_id' => $file_id,
  766. );
  767. $result = Db::name('download_file')->field('aid,file_url,file_mime,file_name,uhash')->where($map)->find();
  768. if (!empty($result['uhash']) && $uhash != $result['uhash']) {
  769. $this->error('下载地址出错!');
  770. }
  771. $value = cookie($file_id.$uhash_mch);
  772. if (empty($value)) {
  773. $result = Db::name('archives')
  774. ->field("b.*, a.*")
  775. ->alias('a')
  776. ->join('__ARCTYPE__ b', 'b.id = a.typeid', 'LEFT')
  777. ->where(['a.aid'=>$result['aid']])
  778. ->find();
  779. $arcurl = arcurl('home/Download/view', $result);
  780. $this->error('下载地址已失效,请在下载详情页进行下载!', $arcurl);
  781. } else {
  782. if (isMobile()) {
  783. $first = cookie($file_id.$uhash_mch.'first');
  784. if (!empty($first)) {
  785. cookie($file_id.$uhash_mch, null);
  786. cookie($file_id.$uhash_mch.'first', null);
  787. } else {
  788. cookie($file_id.$uhash_mch.'first', 1);
  789. }
  790. } else {
  791. cookie($file_id.$uhash_mch, null);
  792. }
  793. }
  794. download_file($result['file_url'], $result['file_mime'], $result['file_name']);
  795. exit;
  796. }
  797. /**
  798. * 会员每天下载次数的限制
  799. */
  800. private function down_num_access($aid)
  801. {
  802. /*是否安装启用下载次数限制插件*/
  803. if (is_dir('./weapp/Downloads/')) {
  804. $DownloadsRow = model('Weapp')->getWeappList('Downloads');
  805. if (1 == $DownloadsRow['status']) {
  806. $users = session('users');
  807. if (file_exists('./weapp/Downloads/logic/DownloadsLogic.php')) {
  808. $downLogic = new \weapp\Downloads\logic\DownloadsLogic;
  809. $downLogic->down_num_access($aid, $users);
  810. } else {
  811. if (empty($users['users_id'])) {
  812. $this->error('请登录后下载!', null, ['is_login' => 0, 'url' => url('user/Users/login')]);
  813. }
  814. $level_info = Db::name('users_level')->field('level_name,down_count')->where(['level_id' => $users['level']])->find();
  815. if (empty($level_info)) {
  816. $this->error('当前会员等级不存在!');
  817. }
  818. $begin_mtime = strtotime(date('Y-m-d 00:00:00'));
  819. $end_mtime = strtotime(date('Y-m-d 23:59:59'));
  820. $aids = Db::name('download_order')->where([
  821. 'users_id' => $users['users_id'],
  822. 'order_status' => 1,
  823. ])->column('product_id');
  824. empty($aids) && $aids = [];
  825. $aids[] = $aid;
  826. $aid_arr = Db::name('download_log')->where([
  827. 'users_id' => $users['users_id'],
  828. 'add_time' => ['between', [$begin_mtime, $end_mtime]],
  829. 'aid' => ['NOTIN', $aids],
  830. ])->column('aid');
  831. //安装下载模型付费插件
  832. $channelData = Db::name('channeltype')->where(['nid'=>'download','status'=>1])->value('data');
  833. if (!empty($channelData)) $channelData = json_decode($channelData,true);
  834. $downNum = 0;
  835. $row = Db::name('archives')->field('*')->where(['aid'=>['IN',$aid_arr]])->select();
  836. foreach ($row as $key => $val) {
  837. if (!empty($channelData['is_download_pay'])){
  838. if ($val['restric_type'] > 0 && $val['arc_level_id'] > 0) {
  839. $downNum++;
  840. }
  841. }else{
  842. if ($val['arc_level_id'] > 0) {
  843. $downNum++;
  844. }
  845. }
  846. }
  847. if (intval($level_info['down_count']) <= $downNum) {
  848. $msg = "{$level_info['level_name']}每天最多下载{$level_info['down_count']}个!";
  849. $this->error($msg);
  850. }
  851. }
  852. }
  853. }
  854. /*end*/
  855. return true;
  856. }
  857. /**
  858. * 记录下载次数(重复下载不做记录,游客可重复记录)
  859. */
  860. private function download_log($file_id = 0, $aid = 0)
  861. {
  862. try {
  863. $users_id = session('users_id');
  864. $users_id = intval($users_id);
  865. $counts = Db::name('download_log')->where([
  866. 'file_id' => $file_id,
  867. 'aid' => $aid,
  868. 'users_id' => $users_id,
  869. ])->count();
  870. if (empty($users_id) || empty($counts)) {
  871. $saveData = [
  872. 'users_id' => $users_id,
  873. 'aid' => $aid,
  874. 'file_id' => $file_id,
  875. 'ip' => clientIP(),
  876. 'add_time' => getTime(),
  877. ];
  878. $r = Db::name('download_log')->insertGetId($saveData);
  879. if ($r !== false) {
  880. Db::name('download_file')->where(['file_id' => $file_id])->setInc('downcount');
  881. Db::name('archives')->where(['aid' => $aid])->setInc('downcount');
  882. }
  883. }
  884. } catch (\Exception $e) {}
  885. }
  886. /**
  887. * 获取播放视频路径(仅限于早期第一套和第二套使用)
  888. */
  889. public function pay_video_url()
  890. {
  891. $file_id = input('param.id/d', 0);
  892. $uhash = input('param.uhash/s', '');
  893. if (empty($file_id) || empty($uhash)) $this->error('视频播放链接出错!');
  894. // 查询信息
  895. $map = array(
  896. 'a.file_id' => $file_id,
  897. 'a.uhash' => $uhash
  898. );
  899. $result = Db::name('media_file')
  900. ->alias('a')
  901. ->field('a.*, b.arc_level_id, b.users_price, b.users_free, b.no_vip_pay')
  902. ->join('__ARCHIVES__ b', 'a.aid = b.aid', 'LEFT')
  903. ->where($map)
  904. ->find();
  905. $result['txy_video_id'] = '';
  906. if (!empty($result['file_url'])) {
  907. $FileUrl = explode('txy_video_', $result['file_url']);
  908. if (empty($FileUrl[0]) && !empty($FileUrl[1])) {
  909. // 腾讯云视频ID
  910. $result['txy_video_id'] = $FileUrl[1];
  911. } else if (!empty($FileUrl[0]) && empty($FileUrl[1])) {
  912. // 原本的逻辑
  913. if (preg_match('#^(/[\w]+)?(/uploads/media/)#i', $result['file_url'])) {
  914. $file_url = preg_replace('#^(/[\w]+)?(/uploads/media/)#i', '$2', $result['file_url']);
  915. } else {
  916. $file_url = preg_replace('#^(' . $this->root_dir . ')?(/)#i', '$2', $result['file_url']);
  917. }
  918. if (empty($result) || (!is_http_url($result['file_url']) && !file_exists('.' . $file_url))) {
  919. $this->error('视频文件不存在!');
  920. }
  921. } else {
  922. $this->error('视频文件不存在!');
  923. }
  924. }
  925. $UsersData = GetUsersLatestData();
  926. $UsersID = !empty($UsersData['users_id']) ? intval($UsersData['users_id']) : 0;
  927. $upVip = "window.location.href = '" . url('user/Level/level_centre') . "'";
  928. $data['onclick'] = "if (document.htm.getElementById('ey_login_id_v665117')) {\$('#ey_login_id_v665117').trigger('click');}else{window.location.href = '" . url('user/Users/login') . "';}";
  929. $data['button'] = '点击登录!';
  930. $data['users_id'] = $UsersID;
  931. $result['arc_level_value'] = 0;
  932. $arc_level_id = !empty($result['arc_level_id']) ? intval($result['arc_level_id']) : 0;
  933. if (!empty($arc_level_id)) {
  934. // 未登录则提示
  935. if (empty($UsersID)) {
  936. // 如果阅读权限是注册会员以上则执行
  937. if (1 < intval($arc_level_id)) {
  938. // $level_name = Db::name('users_level')->where(['level_id'=>$arc_level_id])->value('level_name');
  939. // $data['button'] = '未付费,需要【' . $level_name . '】付费才能播放';
  940. // $data['onclick'] = "window.location.href = '" . url('user/Level/level_centre', ['aid'=>$result['aid']]) . "'";
  941. $this->error('查询成功!', null, $data);
  942. } else {
  943. $this->error('请先登录!', url('user/Users/login'), $data);
  944. }
  945. }
  946. $result['arc_level_value'] = Db::name('users_level')->where(['level_id'=>$arc_level_id])->value('level_value');
  947. }
  948. if (empty($result['gratis'])) {
  949. /*是否需要付费*/
  950. if (0 < $result['users_price'] && empty($result['users_free'])) {
  951. $where = [
  952. 'users_id' => $UsersID,
  953. 'product_id' => $result['aid'],
  954. 'order_status' => 1
  955. ];
  956. // 存在数据则已付费
  957. $Paid = (int)Db::name('media_order')->where($where)->count();
  958. // 未付费则执行
  959. if (empty($Paid)) {
  960. if (0 < $arc_level_id && $UsersData['level_value'] < $result['arc_level_value']) {
  961. $data['onclick'] = $upVip;
  962. $data['button'] = '<i class="button button-big bg-yellow text-center radius-rounded text-middle">升级会员</i>';
  963. $level_name = Db::name('users_level')->where(['level_id'=>$arc_level_id])->value('level_name');
  964. $this->error('未付费,需要【' . $level_name . '】付费才能播放', '', $data);
  965. } else {
  966. $data['onclick'] = 'MediaOrderBuy_v878548();';
  967. $data['button'] = '<i class="button button-big bg-yellow text-center radius-rounded text-middle">立即购买</i>';
  968. $this->error('未付费,视频需要付费才能播放', '', $data);
  969. }
  970. }
  971. }
  972. //会员
  973. if (0 < $arc_level_id && $UsersData['level_value'] < $result['arc_level_value']) {
  974. if (empty($result['no_vip_pay'])) {
  975. $where = [
  976. 'level_id' => ['IN', [$arc_level_id, $UsersData['level']]],
  977. 'lang' => $this->home_lang
  978. ];
  979. $arcLevel = model('UsersLevel')->getList('level_id,level_value,level_name', $where, 'level_id');
  980. $data['onclick'] = $upVip;
  981. $data['button'] = '<i class="button button-big bg-yellow text-center radius-rounded text-middle">立即升级</i>';
  982. $this->error('您是' . $arcLevel[$UsersData['level']]['level_name'] . ',请升级至【' . $arcLevel[$arc_level_id]['level_name'] . '】观看视频', '', $data);
  983. } else {
  984. $where = [
  985. 'users_id' => $UsersID,
  986. 'product_id' => $result['aid'],
  987. 'order_status' => 1
  988. ];
  989. // 存在数据则已付费
  990. $Paid = Db::name('media_order')->where($where)->count();
  991. // 未付费则执行
  992. if (empty($Paid)) {
  993. $where = [
  994. 'level_id' => ['IN', [$arc_level_id, $UsersData['level']]],
  995. 'lang' => $this->home_lang
  996. ];
  997. $arcLevel = model('UsersLevel')->getList('level_id,level_value,level_name', $where, 'level_id');
  998. $data['onclick'] = 'MediaOrderBuy_v878548();';
  999. $data['button'] = '<i class="button button-big bg-yellow text-center radius-rounded text-middle">立即购买</i>';
  1000. $this->error('请升级至【' . $arcLevel[$arc_level_id]['level_name'] . '】或 单独购买 观看视频', '', $data);
  1001. }
  1002. }
  1003. }
  1004. }
  1005. // 腾讯云点播视频
  1006. if (!empty($result['txy_video_id'])) {
  1007. $this->video_log($result['file_id'], $result['aid']);
  1008. if (IS_AJAX) {
  1009. $time = 'eyoucms-video-id-' . getTime();
  1010. $txy_video_id = $result['txy_video_id'];
  1011. $txy_video_html = <<<EOF
  1012. <video id="{$time}" preload="auto" width="600" height="400" playsinline webkit-playsinline x5-playsinline></video>
  1013. <script type="text/javascript">
  1014. var txy_video_id = '{$txy_video_id}';
  1015. var app_id = $('#appID').val();
  1016. TxyVideo();
  1017. function TxyVideo() {
  1018. var player = TCPlayer('{$time}', { fileID: txy_video_id, appID: app_id});
  1019. }
  1020. </script>
  1021. EOF;
  1022. $this->success('准备播放中……', null, ['txy_video_html'=>$txy_video_html]);
  1023. } else {
  1024. $this->error('腾讯云点播视频不支持跳转播放');
  1025. }
  1026. }
  1027. // 外部视频链接
  1028. else if (is_http_url($result['file_url'])) {
  1029. // 记录播放次数
  1030. $this->video_log($result['file_id'], $result['aid']);
  1031. if (IS_AJAX) {
  1032. $this->success('准备播放中……', $result['file_url']);
  1033. } else {
  1034. $this->redirect($result['file_url']);
  1035. }
  1036. }
  1037. // 本站链接
  1038. else
  1039. {
  1040. if (md5_file('.' . $file_url) != $result['md5file']) $this->error('视频文件已损坏!');
  1041. // 记录播放次数
  1042. $this->video_log($result['file_id'], $result['aid']);
  1043. $url = $this->request->domain() . $this->root_dir . $file_url;
  1044. if (IS_AJAX) {
  1045. $this->success('准备播放中……', $url);
  1046. } else {
  1047. $this->redirect($url);
  1048. }
  1049. }
  1050. }
  1051. /**
  1052. * 记录播放次数(重复播放不做记录,游客可重复记录)
  1053. */
  1054. private function video_log($file_id = 0, $aid = 0)
  1055. {
  1056. try {
  1057. $users_id = session('users_id');
  1058. $users_id = intval($users_id);
  1059. $counts = Db::name('media_log')->where([
  1060. 'file_id' => $file_id,
  1061. 'aid' => $aid,
  1062. 'users_id' => $users_id,
  1063. ])->count();
  1064. if (empty($users_id) || empty($counts)) {
  1065. $saveData = [
  1066. 'users_id' => $users_id,
  1067. 'aid' => $aid,
  1068. 'file_id' => $file_id,
  1069. 'ip' => clientIP(),
  1070. 'add_time' => getTime(),
  1071. ];
  1072. $r = Db::name('media_log')->insertGetId($saveData);
  1073. if ($r !== false) {
  1074. Db::name('media_file')->where(['file_id' => $file_id])->setInc('playcount');
  1075. Db::name('archives')->where(['aid' => $aid])->setInc('downcount');
  1076. }
  1077. }
  1078. } catch (\Exception $e) {}
  1079. }
  1080. /**
  1081. * 内容播放页【易而优视频模板专用】
  1082. */
  1083. public function play($aid = '', $fid = '')
  1084. {
  1085. $aid = intval($aid);
  1086. $fid = intval($fid);
  1087. $res = Db::name('archives')
  1088. ->alias('a')
  1089. ->field('a.*,b.*,c.typename,c.dirname')
  1090. ->join('media_content b', 'a.aid=b.aid')
  1091. ->join('arctype c', 'a.typeid=c.id')
  1092. ->where('a.aid', $aid)
  1093. ->find();
  1094. if(!empty($res['courseware'])){
  1095. $res['courseware'] = get_default_pic($res['courseware'],true);
  1096. }
  1097. // 播放权限验证
  1098. $redata = $this->check_auth($aid, $fid, $res, 1);
  1099. if (!isset($redata['status']) || $redata['status'] != 2) {
  1100. $url = null;
  1101. if (!empty($redata['url'])) {
  1102. $url = $redata['url'];
  1103. }
  1104. $this->error($redata['msg'], $url);
  1105. }
  1106. Db::name('media_file')->where(['file_id' => $fid])->setInc('playcount');
  1107. $res['seo_title'] = set_arcseotitle($res['title'], $res['seo_title'], $res['typename'], $res['typeid']);
  1108. $res['seo_description'] = @msubstr(checkStrHtml($res['seo_description']), 0, config('global.arc_seo_description_length'), false);
  1109. $res = $this->fieldLogic->getChannelFieldList($res, 5); // 自定义字段的数据格式处理
  1110. $eyou['field'] = $res;
  1111. $eyou['field']['fid'] = $fid;
  1112. $this->eyou = array_merge($this->eyou, $eyou);
  1113. $this->assign('eyou', $this->eyou);
  1114. return $this->fetch(":view_media_play");
  1115. }
  1116. /**
  1117. * 播放权限验证【易而优视频模板专用】
  1118. */
  1119. public function check_auth($aid = '', $fid = '', $res = [], $_ajax = 0)
  1120. {
  1121. if (IS_AJAX || $_ajax == 1){
  1122. $is_mobile = isMobile() ? 1 : 0;
  1123. if (empty($res)) {
  1124. $res = Db::name('archives')
  1125. ->alias('a')
  1126. ->join('media_content b', 'a.aid=b.aid')
  1127. ->where('a.aid', $aid)
  1128. ->field('a.title,b.courseware,a.arc_level_id,a.users_price,a.users_free')
  1129. ->find();
  1130. }
  1131. $res['arc_level_value'] = 0;
  1132. if (0 < $res['arc_level_id']) {
  1133. $res['arc_level_value'] = Db::name('users_level')->where(['level_id'=>$res['arc_level_id']])->value('level_value');
  1134. }
  1135. if ((0 < $res['users_price'] && empty($res['users_free'])) || 0 < $res['arc_level_id']) {
  1136. $UsersData = GetUsersLatestData();
  1137. $UsersID = !empty($UsersData['users_id']) ? intval($UsersData['users_id']) : 0;
  1138. $arc_level_id = !empty($res['arc_level_id']) ? intval($res['arc_level_id']) : 0;
  1139. if (!empty($arc_level_id)) {
  1140. if (empty($UsersID)) return ['status'=>1,'msg'=>'请先登录','url'=>url('user/Users/login','', true, false, 1, 1),'is_mobile'=>$is_mobile];
  1141. }
  1142. $gratis = Db::name('media_file')->where(['file_id' => $fid])->value('gratis');
  1143. if ($gratis == 0) {
  1144. /*是否需要付费*/
  1145. if (0 < $res['users_price'] && empty($res['users_free'])) {
  1146. $Paid = 0; // 未付费
  1147. if (!empty($UsersID)) {
  1148. $where = [
  1149. 'users_id' => $UsersID,
  1150. 'product_id' => $aid,
  1151. 'order_status' => 1
  1152. ];
  1153. // 存在数据则已付费
  1154. $Paid = Db::name('media_order')->where($where)->count();
  1155. }
  1156. // 未付费则执行
  1157. if (empty($Paid)) {
  1158. if (0 < $arc_level_id && $UsersData['level_value'] < $res['arc_level_value']) {
  1159. $where = [
  1160. 'level_id' => $arc_level_id,
  1161. 'lang' => $this->home_lang
  1162. ];
  1163. $arcLevel = DB::name('users_level')->where($where)->Field('level_value,level_name')->find();
  1164. return ['status'=>0,'msg'=>'尊敬的用户,该视频需要【' . $arcLevel['level_name'] . '】付费后才可观看全部内容!','price'=>$res['users_price'],'is_mobile'=>$is_mobile];
  1165. } else {
  1166. return ['status'=>0,'msg'=>'尊敬的用户,该视频需要付费后才可观看全部内容!','price'=>$res['users_price'],'is_mobile'=>$is_mobile];
  1167. }
  1168. }
  1169. }
  1170. // 会员
  1171. if (0 < $arc_level_id && $UsersData['level_value'] < $res['arc_level_value']) {
  1172. $where = [
  1173. 'level_id' => $arc_level_id,
  1174. 'lang' => $this->home_lang
  1175. ];
  1176. $arcLevel = Db::name('users_level')->where($where)->Field('level_value,level_name')->find();
  1177. return ['status'=>0,'url'=>url('user/Level/level_centre','', true, false, 1, 1),'msg'=>'尊敬的用户,该视频需要【' . $arcLevel['level_name'] . '】才可观看!','is_mobile'=>$is_mobile];
  1178. }
  1179. }
  1180. }
  1181. return ['status'=>2,'msg'=>'success!','is_mobile'=>$is_mobile];
  1182. }
  1183. }
  1184. }