Journal_v1.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917
  1. <?php
  2. # 电子刊基本信息接口 本类下所有接口,均生成缓存
  3. namespace Main\Src;
  4. use Dever;
  5. use Main\Lib\Core;
  6. class Journal_v1 extends Core
  7. {
  8. public function getCate()
  9. {
  10. $id = Dever::input('system', 1);
  11. $cate = array();
  12. if ($id > 0) {
  13. $cate = Dever::db('journal/cate')->one($id);
  14. $this->data['cate'] = $cate;
  15. }
  16. return $cate;
  17. }
  18. # 根据分类获取小刊列表
  19. public function getListNew()
  20. {
  21. if ($this->app) {
  22. return $this->getAppList();
  23. }
  24. $data = array();
  25. if ($data) {
  26. return $data;
  27. }
  28. $cate = $this->getCate();
  29. # 小刊列表
  30. $where = array();
  31. if (isset($cate['id'])) {
  32. $where['cate_id'] = $cate['id'];
  33. }
  34. $where['publish'] = 1;
  35. $this->data['button'] = array();
  36. # 热门电子刊
  37. $this->data['push'] = Dever::db('journal/info')->getHot($where);
  38. if ($this->data['push']) {
  39. foreach ($this->data['push'] as $k => $v) {
  40. $this->data['push'][$k] = $this->info($v);
  41. $this->data['push'][$k] = $this->getButton($this->data['push'][$k]);
  42. }
  43. }
  44. $data = Dever::db('journal/info')->getAllByPage($where);
  45. if ($data) {
  46. foreach ($data as $k => $v) {
  47. $data[$k] = $this->info($v);
  48. $data[$k] = $this->getButton($data[$k]);
  49. }
  50. $this->data['journal'] = $data;
  51. } else {
  52. $this->data['journal'] = array();
  53. }
  54. $this->data['end']['call'] = 'main/journal_v1.getList_noCache';
  55. $this->data['code'] = 1;
  56. if (checkVersion()->journal_buy == 2) {
  57. $this->data['code'] = 2;
  58. }
  59. return $this->data;
  60. }
  61. # 根据分类获取小刊列表
  62. public function getList()
  63. {
  64. if ($this->app) {
  65. return $this->getAppList();
  66. }
  67. $data = array();
  68. if ($data) {
  69. return $data;
  70. }
  71. $cate = $this->getCate();
  72. # 小刊列表
  73. $where = array();
  74. if (isset($cate['id'])) {
  75. $where['cate_id'] = $cate['id'];
  76. }
  77. $where['publish'] = 1;
  78. $this->data['button'] = array();
  79. # 热门电子刊
  80. $this->data['push'] = Dever::db('journal/info')->getHot($where);
  81. if ($this->data['push']) {
  82. foreach ($this->data['push'] as $k => $v) {
  83. $this->data['push'][$k] = $this->info($v);
  84. $this->data['push'][$k] = $this->getButton($this->data['push'][$k]);
  85. }
  86. $this->data['push'] = $this->data['push'][0];
  87. }
  88. $data = Dever::db('journal/info')->getAllByPage($where);
  89. if ($data) {
  90. foreach ($data as $k => $v) {
  91. $data[$k] = $this->info($v);
  92. $data[$k] = $this->getButton($data[$k]);
  93. }
  94. $this->data['journal'] = $data;
  95. } else {
  96. $this->data['journal'] = array();
  97. }
  98. $this->data['end']['call'] = 'main/journal_v1.getList_noCache';
  99. $this->data['code'] = 1;
  100. if (checkVersion()->journal_buy == 2) {
  101. $this->data['code'] = 2;
  102. }
  103. return $this->data;
  104. }
  105. public function getList_noCache($data)
  106. {
  107. if ($data['push'] && isset($data['push'][0])) {
  108. foreach ($data['push'] as $k => $v) {
  109. if ($v['hot'] == 1) {
  110. $num_ding = Dever::load('act/lib/num')->getCounter($v['id']);
  111. if ($num_ding && $num_ding >= $v['num_ding']) {
  112. $data['push'][$k]['num_ding'] = $num_ding;
  113. $data['push'][$k] = $this->ding($data['push'][$k]);
  114. }
  115. }
  116. }
  117. } elseif ($data['push'] && $data['push']['hot'] == 1 && isset($data['push']['id'])) {
  118. $num_ding = Dever::load('act/lib/num')->getCounter($data['push']['id']);
  119. if ($num_ding && $num_ding >= $data['push']['num_ding']) {
  120. $data['push']['num_ding'] = $num_ding;
  121. $data['push'] = $this->ding($data['push']);
  122. }
  123. }
  124. if ($data['journal']) {
  125. foreach ($data['journal'] as $k => $v) {
  126. if ($v['hot'] == 1) {
  127. $num_ding = Dever::load('act/lib/num')->getCounter($v['id']);
  128. if ($num_ding && $num_ding >= $v['num_ding']) {
  129. $data['journal'][$k]['num_ding'] = $num_ding;
  130. $data['journal'][$k] = $this->ding($data['journal'][$k]);
  131. }
  132. }
  133. }
  134. }
  135. return $data;
  136. }
  137. public function getList_noCache_old($data)
  138. {
  139. if ($data['push'] && $data['push']['hot'] == 1) {
  140. $num_ding = Dever::load('act/lib/num')->getCounter($data['push']['id']);
  141. if ($num_ding && $num_ding >= $data['push']['num_ding']) {
  142. $data['push']['num_ding'] = $num_ding;
  143. $data['push'] = $this->ding($data['push']);
  144. }
  145. }
  146. if ($data['journal']) {
  147. foreach ($data['journal'] as $k => $v) {
  148. if ($v['hot'] == 1) {
  149. $num_ding = Dever::load('act/lib/num')->getCounter($v['id']);
  150. if ($num_ding && $num_ding >= $v['num_ding']) {
  151. $data['journal'][$k]['num_ding'] = $num_ding;
  152. $data['journal'][$k] = $this->ding($data['journal'][$k]);
  153. }
  154. }
  155. }
  156. }
  157. return $data;
  158. }
  159. # 根据分类获取小刊列表 app
  160. public function getAppList()
  161. {
  162. $data = array();
  163. if ($data) {
  164. return $data;
  165. }
  166. $cate = $this->getCate();
  167. # 小刊列表
  168. $where = array();
  169. if (isset($cate['id'])) {
  170. $where['cate_id'] = $cate['id'];
  171. }
  172. $cateList = Dever::db('journal/cate')->getAll();
  173. $this->data['cateList'] = $cateList;
  174. $time = time();
  175. $day = (7 * 86400);
  176. $where['cate_id_1'] = 1;
  177. $where['time'] = $time - $day;
  178. $where['publish'] = 2;
  179. # 获取最新的小刊
  180. $this->data['push'] = Dever::db('journal/info')->getNew($where);
  181. $this->data['push'] = $this->ding($this->data['push']);
  182. $this->data['button'] = array();
  183. ////$this->data['push'] = $this->getButton($this->data['push']);
  184. ////$this->data['push'] = $this->getAppSet($this->data['push']);
  185. # 热门电子刊
  186. /*
  187. $this->data['push'] = Dever::db('journal/info')->getHot($where);
  188. if ($this->data['push']) {
  189. foreach ($this->data['push'] as $k => $v) {
  190. $this->data['push'][$k] = $this->info($v);
  191. $this->data['push'][$k] = $this->getButton($this->data['push'][$k]);
  192. }
  193. }
  194. */
  195. $data = Dever::db('journal/info')->getAllByPage($where);
  196. if ($data) {
  197. foreach ($data as $k => $v) {
  198. $data[$k] = $this->info($v);
  199. //$data[$k] = $this->getButton($data[$k]);
  200. //$data[$k] = $this->getAppSet($data[$k]);
  201. }
  202. $this->data['journal'] = $data;
  203. } else {
  204. $this->data['journal'] = array();
  205. }
  206. return $this->data;
  207. }
  208. public function ding($data)
  209. {
  210. $data = Dever::load('journal/api')->ding($data);
  211. return $data;
  212. }
  213. # 获取详细信息
  214. private function info($data, $subscribe = true)
  215. {
  216. if ($data['pdate'] > 0) {
  217. $data['pdate_time'] = date('Y-m-d H:i:s', $data['pdate']);
  218. }
  219. # 已开始
  220. $data['ytype'] = 1;
  221. if (isset($data['pdate']) && $data['pdate'] > 0) {
  222. if ($data['pdate'] >= time()) {
  223. # 未到时间
  224. $data['ytype'] = 2;
  225. }
  226. $data['ydate_time'] = date('Y-m-d H:i:s', $data['pdate']);
  227. }
  228. $data = $this->ding($data);
  229. if ($data['pic_view_bg']) {
  230. $data['pic_view_bg'] = explode(',', $data['pic_view_bg']);
  231. } else {
  232. $data['pic_view_bg'] = array();
  233. }
  234. $data['buy'] = intval($data['buy']);
  235. return $data;
  236. }
  237. # 小刊查看详情 即将废弃
  238. public function view()
  239. {
  240. $id = $this->check();
  241. $this->data['info'] = $this->info($this->data['info'], false);
  242. $this->button($this->data['info']);
  243. return $this->data;
  244. }
  245. # 按钮设置 即将废弃
  246. private function button($info)
  247. {
  248. $this->data['button'] = array();
  249. $this->setButton();
  250. $uid = $this->data['uid'];
  251. # 查看是否订阅
  252. $subscribe = 2;
  253. if ($uid) {
  254. $subscribe = Dever::load('act/lib/subscribe')->get($info['id'], $uid, 4);
  255. }
  256. $this->data['info']['subscribe'] = 2;
  257. # 查看是否有排行榜
  258. $this->data['info']['active'] = $info['top'];
  259. # 查看是否有活动
  260. /*
  261. $active = Dever::db('journal/active')->one(array('id' => $info['id']));
  262. $this->data['info']['active'] = 2;
  263. if ($active && $active['status'] == 1) {
  264. $this->data['info']['active'] = 1;
  265. }
  266. $time = time();
  267. if ($active && $time >= $active['start'] && $time < $active['end']) {
  268. $this->data['info']['active'] = 1;
  269. }
  270. */
  271. if ($this->data['info']['active'] == 1) {
  272. $this->setButton('share', 1);
  273. } else {
  274. $this->setButton('share', -1);
  275. }
  276. if ($info['buy'] == 2) {
  277. # 免费的
  278. $this->setButton('read', 1);
  279. $this->setButton('buy', -1);
  280. $this->setButton('share', -1);
  281. } elseif ($subscribe == 1) {
  282. $this->data['info']['subscribe'] = 1;
  283. # 已订阅
  284. if ($info['ytype'] == 2) {
  285. # 预售
  286. $this->setButton('read', 3);
  287. } else {
  288. # 需要购买
  289. $this->setButton('read', 1);
  290. }
  291. $this->setButton('buy', 1);
  292. if (checkVersion()->journal_buy == 2) {
  293. $this->setButton('share', -1);
  294. }
  295. } else {
  296. if ($info['ytype'] == 2) {
  297. # 预售
  298. $this->setButton('read', 3);
  299. } else {
  300. # 需要购买
  301. $this->setButton('read', 2);
  302. }
  303. $this->setButton('buy', 1);
  304. if (checkVersion()->journal_buy == 2) {
  305. $this->setButton('buy', -1);
  306. $this->setButton('share', -1);
  307. }
  308. }
  309. # 仅app有效
  310. if ($this->app) {
  311. # 分享相关
  312. if (isset($this->data['info']['share_content'])) {
  313. $source = Dever::db('source/info')->one(1);
  314. $this->data['info']['share_link'] = $source['code'];
  315. }
  316. # 会员状态
  317. $this->data['info']['vip_state'] = 1;
  318. $this->data['info']['code_state'] = 1;
  319. $version_code = Dever::input('version_code');
  320. if ($version_code) {
  321. $source_type = Dever::input('source_type');
  322. $version_where['source_type'] = $source_type;
  323. $version_where['name'] = $version_code;
  324. $version = Dever::db('main/version')->getOne($version_where);
  325. if ($version && $version['vip'] > 0) {
  326. $this->data['info']['vip_state'] = $version['vip'];
  327. $this->data['info']['code_state'] = $version['button'];
  328. if ($this->source_type == 'ios' && $this->data['info']['code_state'] == 2) {
  329. $this->setButton('read', 1);
  330. }
  331. }
  332. }
  333. # 会员随便看
  334. if ($uid > 0) {
  335. $this->data['info']['vip'] = 2;
  336. $vip = Dever::load('vip/lib/member')->get($uid, $info['cate_id']);
  337. if ($vip > 0) {
  338. $this->data['info']['subscribe'] = 1;
  339. $this->data['info']['vip'] = 1;
  340. $this->setButton('read', 1);
  341. }
  342. # 是否在外站订阅过
  343. $user = Dever::db('passport/user')->one($uid);
  344. if ($user && $user['mobile']) {
  345. $mobileWhere['mobile'] = $user['mobile'];
  346. $mobileWhere['product_id'] = $info['id'];
  347. $mobile = Dever::db('journal/mobile')->one($mobileWhere);
  348. if ($mobile) {
  349. $this->data['info']['subscribe'] = 1;
  350. $this->setButton('read', 1);
  351. }
  352. }
  353. }
  354. if ($this->source_type == 'ios' && $this->data['info']['id'] == 26) {
  355. $this->setButton('share', -1);
  356. }
  357. } else {
  358. # 小程序下的判断,ios里关闭支付
  359. $applet_type = Dever::input('applet_type');
  360. if ($applet_type == 2 && isset($this->data['config']['ios_pay']) && $this->data['config']['ios_pay'] == 1 && $info['buy'] == 1) {
  361. $this->setButton('buy', -1);
  362. //$this->setButton('share', -1);
  363. }
  364. }
  365. }
  366. private function setButton($key = false, $status = false, $name = false)
  367. {
  368. # 按钮状态,-1为不显示
  369. if (!$this->data['button']) {
  370. $this->data['button'] = array
  371. (
  372. # 第一个按钮 1为阅读、2为兑换、3为预售
  373. 'read' => array('status' => -1, 'name' => '阅读'),
  374. # 第二个按钮
  375. 'buy' => array('status' => -1, 'name' => '订阅'),
  376. # 第三个按钮
  377. 'share' => array('status' => 1, 'name' => '订阅排行榜'),
  378. );
  379. if ($key == -1) {
  380. unset($this->data['button']['buy']);
  381. }
  382. }
  383. if ($key && isset($this->data['button'][$key])) {
  384. if ($status) {
  385. $this->data['button'][$key]['status'] = $status;
  386. }
  387. if ($name) {
  388. $this->data['button'][$key]['name'] = $name;
  389. }
  390. }
  391. }
  392. # 验证小刊是否可以阅读
  393. public function subscribe()
  394. {
  395. $subscribe = 2;
  396. $id = Dever::input('id');
  397. $id = $this->check();
  398. $this->data['info'] = $this->info($this->data['info'], false);
  399. if ($this->data['info']['ytype'] == 2) {
  400. $subscribe = 3;
  401. } elseif ($this->data['uid'] > 0) {
  402. $cache = false;
  403. if ($this->data['info']['hot'] == 1) {
  404. $cache = false;
  405. }
  406. $subscribe = Dever::load('act/lib/subscribe')->get($id, $this->data['uid'], 4, $cache);
  407. }
  408. return array('subscribe' => $subscribe);
  409. }
  410. # 小刊查看详情
  411. public function getView()
  412. {
  413. $this->check();
  414. $this->data['button'] = array();
  415. $this->data['info'] = $this->getButton($this->info($this->data['info'], false));
  416. return $this->data;
  417. }
  418. # 按钮设置
  419. private function getButton($info)
  420. {
  421. //$info['subscribe'] = 2;
  422. # 查看是否有排行榜
  423. $info['active'] = $info['top'];
  424. if ($info['active'] == 1) {
  425. $this->setButton('share', 1);
  426. } else {
  427. $this->setButton('share', -1);
  428. }
  429. if ($info['buy'] == 2) {
  430. # 免费的
  431. $this->setButton('read', 1);
  432. $this->setButton('buy', -1);
  433. $this->setButton('share', -1);
  434. } else {
  435. if ($info['ytype'] == 2) {
  436. # 预售
  437. $this->setButton('read', 3);
  438. } else {
  439. # 需要购买 这里需要调用info_check接口了
  440. $this->setButton('read', 2);
  441. }
  442. $this->setButton('buy', 1);
  443. /*
  444. if (checkVersion()->journal_buy == 2) {
  445. $this->setButton('buy', -1);
  446. $this->setButton('share', -1);
  447. }
  448. */
  449. }
  450. # 小程序下的判断,ios里关闭支付
  451. $applet_type = Dever::input('applet_type');
  452. if ($applet_type == 2 && isset($this->data['config']['ios_pay']) && $this->data['config']['ios_pay'] == 1 && $info['buy'] == 1) {
  453. $this->setButton('buy', -1);
  454. //$this->setButton('share', -1);
  455. }
  456. $info['button'] = $this->data['button'];
  457. return $info;
  458. }
  459. # 小刊查看详情 app下查看,仅仅为了区分缓存
  460. public function getAppView()
  461. {
  462. $this->info();
  463. $this->data['info'] = $this->getAppSet($this->data['info']);
  464. return $this->data;
  465. }
  466. private function getAppSet($info)
  467. {
  468. # 分享相关
  469. if (isset($info['share_content'])) {
  470. $source = Dever::db('source/info')->one(1);
  471. $info['share_link'] = $source['code'];
  472. }
  473. # 会员状态
  474. $info['vip_state'] = 1;
  475. $info['code_state'] = 1;
  476. $version_code = Dever::input('version_code');
  477. if ($version_code) {
  478. $source_type = Dever::input('source_type');
  479. $version_where['source_type'] = $source_type;
  480. $version_where['name'] = $version_code;
  481. $version = Dever::db('main/version')->getOne($version_where);
  482. if ($version && $version['vip'] > 0) {
  483. $info['vip_state'] = $version['vip'];
  484. $info['code_state'] = $version['button'];
  485. if ($this->source_type == 'ios' && $info['code_state'] == 2) {
  486. $this->setButton('read', 1);
  487. }
  488. }
  489. }
  490. # 会员随便看
  491. if ($this->data['uid'] > 0) {
  492. $info['vip'] = 2;
  493. $vip = Dever::load('vip/lib/member')->get($this->data['uid'], $info['cate_id']);
  494. if ($vip > 0) {
  495. $info['subscribe'] = 1;
  496. $info['vip'] = 1;
  497. $this->setButton('read', 1);
  498. }
  499. # 是否在外站订阅过 防止缓存失效,这里先注释
  500. /*
  501. $user = Dever::db('passport/user')->one($this->data['uid']);
  502. if ($user && $user['mobile']) {
  503. $mobileWhere['mobile'] = $user['mobile'];
  504. $mobileWhere['product_id'] = $info['id'];
  505. $mobile = Dever::db('journal/mobile')->one($mobileWhere);
  506. if ($mobile) {
  507. $info['subscribe'] = 1;
  508. $this->setButton('read', 1);
  509. }
  510. }
  511. */
  512. }
  513. if ($this->source_type == 'ios' && $info['id'] == 26) {
  514. $this->setButton('share', -1);
  515. }
  516. $info['button'] = $this->data['button'];
  517. return $info;
  518. }
  519. # 购买阅读页
  520. public function buy()
  521. {
  522. if (!$this->data['uid']) {
  523. Dever::alert('错误的用户信息');
  524. }
  525. $id = $this->check();
  526. $this->data['buy_desc'] = $this->data['info']['buy_content'];
  527. # 获取购买说明
  528. $buy = Dever::db('journal/buy')->one(array('id' => $id));
  529. if ($buy && $buy['buy_content']) {
  530. $this->data['buy_desc'] = $buy['buy_content'];
  531. }
  532. $this->data['buy_applet_notice'] = '在此购买单本可直接阅读电子刊,购买多本,直接累计积分,不会生成兑换码。';
  533. if ($buy && isset($buy['buy_applet_notice']) && $buy['buy_applet_notice']) {
  534. $this->data['buy_applet_notice'] = $buy['buy_applet_notice'];
  535. }
  536. if ($this->data['info']['buy'] == 2) {
  537. $this->data['buy_list'] = array();
  538. return $this->data;
  539. }
  540. # 获取购买列表
  541. $this->data['buy_list'] = Dever::db('journal/buy_num')->getAll(array('info_id' => $id));
  542. if ($this->data['info']['cash'] <= 0) {
  543. $this->data['info']['cash'] = 100000;
  544. }
  545. if ($this->data['buy_list']) {
  546. foreach ($this->data['buy_list'] as $k => $v) {
  547. if (!$v['name']) {
  548. $this->data['buy_list'][$k]['name'] = '购买' . $v['num'] . '本';
  549. }
  550. $price = $v['num'] * $this->data['info']['cash'];
  551. if (!$v['price']) {
  552. $this->data['buy_list'][$k]['price'] = $price;
  553. }
  554. $this->data['buy_list'][$k]['cash'] = $price;
  555. }
  556. }
  557. return $this->data;
  558. }
  559. # 明星列表页
  560. public function star()
  561. {
  562. if (!$this->data['uid']) {
  563. Dever::alert('错误的用户信息');
  564. }
  565. $id = $this->check();
  566. $this->data['star'] = Dever::db('journal/star')->getAll(array('info_id' => $id));
  567. if ($this->data['star']) {
  568. foreach ($this->data['star'] as $k => $v) {
  569. $this->data['star'][$k] = Dever::load('journal/api')->starDing($v);
  570. }
  571. }
  572. return $this->data;
  573. }
  574. # 修改为本数排行榜
  575. public function top()
  576. {
  577. $id = $this->check();
  578. $config_id = 31;
  579. if ($id > $config_id || $id == 26 || $id == 30) {
  580. $this->data['top'] = Dever::load('act/lib/num')->getList($id);
  581. } else {
  582. $this->data['score'] = Dever::load('act/lib/score')->getList($id);
  583. }
  584. # 获取活动说明
  585. $this->data['active'] = Dever::db('journal/active')->one(array('id' => $id));
  586. if (!$this->data['active']) {
  587. $this->data['active'] = (object) array();
  588. return $this->data;
  589. }
  590. /*
  591. $time = time();
  592. if ($this->data['active'] && $time >= $this->data['active']['start'] && $time < $this->data['active']['end']) {
  593. $this->data['active']['status'] = 1;
  594. } else {
  595. $this->data['active']['status'] = 2;
  596. }
  597. if ($time < $this->data['active']['start']) {
  598. $this->data['active']['status'] = 3;
  599. }
  600. */
  601. return $this->data;
  602. }
  603. # 小刊阅读页
  604. public function read()
  605. {
  606. if (!$this->data['uid']) {
  607. Dever::alert('错误的用户信息');
  608. }
  609. # 验证是否可以阅读
  610. $id = $this->check();
  611. $this->data['info'] = $this->info($this->data['info'], false);
  612. # 默认不能看 为1则可以直接看了,为2则不能看,要验证权限,为了高效并发,暂时去掉验证
  613. $subscribe = 1;
  614. $add_num = false;
  615. if ($subscribe == 2) {
  616. # APP专用
  617. if ($this->app) {
  618. # 会员随便看
  619. $vip = Dever::load('vip/lib/member')->get($this->data['uid'], $this->data['info']['cate_id']);
  620. if ($vip <= 0) {
  621. # 是否在外站订阅过
  622. $user = Dever::db('passport/user')->one($this->data['uid']);
  623. if ($user && $user['mobile']) {
  624. $mobileWhere['mobile'] = $user['mobile'];
  625. $mobileWhere['product_id'] = $id;
  626. $mobile = Dever::db('journal/mobile')->one($mobileWhere);
  627. if ($mobile) {
  628. $vip = 1;
  629. }
  630. }
  631. }
  632. if ($vip > 0) {
  633. $subscribe = 1;
  634. }
  635. }
  636. if ($subscribe == 2) {
  637. $subscribe = Dever::load('act/lib/subscribe')->get($id, $this->data['uid'], 4);
  638. }
  639. if ($this->data['info']['buy'] == 1 && $subscribe == 2) {
  640. Dever::alert('未订阅');
  641. }
  642. }
  643. if ($this->data['info']['buy'] == 2 && $this->data['info']['status'] == 2) {
  644. # 免费刊,增加订阅量
  645. $add_num = true;
  646. }
  647. # 获取最新10条内容
  648. $where = array();
  649. $where['info_id'] = $id;
  650. $data = Dever::db('journal/content')->getAll($where);
  651. if ($data) {
  652. foreach ($data as $k => $v) {
  653. $data[$k] = $this->readContent($v);
  654. }
  655. $this->data['content'] = $data;
  656. } else {
  657. $this->data['content'] = array();
  658. }
  659. $this->data['end']['id'] = $id;
  660. $this->data['end']['uid'] = $this->data['uid'];
  661. $this->data['end']['add_num'] = $add_num;
  662. return $this->data;
  663. }
  664. public function readContent($info)
  665. {
  666. $name = $info['name'];
  667. $focus = $info['focus'];
  668. $author_id = $info['author_id'];
  669. $content = $info['content'];
  670. unset($info['name']);
  671. unset($info['focus']);
  672. unset($info['author_id']);
  673. unset($info['content']);
  674. if (($info['type'] == 1 || $info['type'] == 7 || $info['type'] == 8) && $info['text']) {
  675. $info['text'] = Dever::array_decode($info['text']);
  676. if ($info['text']) {
  677. foreach ($info['text'] as $k => $v) {
  678. if (isset($info['text'][$k]['bgcolor_type']) && $info['text'][$k]['bgcolor_type'] == array(2)) {
  679. $info['text'][$k]['bgcolor'] = '';
  680. }
  681. }
  682. }
  683. } else {
  684. unset($info['text']);
  685. }
  686. if ($info['type'] == 10 && $info['palaces']) {
  687. $info['palaces'] = Dever::array_decode($info['palaces']);
  688. } else {
  689. unset($info['palaces']);
  690. }
  691. if ($info['type'] == 21 && $info['talk']) {
  692. $info['talk'] = Dever::array_decode($info['talk']);
  693. foreach ($info['talk'] as $k => $v) {
  694. $info['talk'][$k]['talk_type'] = implode(',', $v['talk_type']);
  695. $info['talk'][$k]['talk_location'] = implode(',', $v['talk_location']);
  696. }
  697. } else {
  698. unset($info['talk']);
  699. }
  700. if ($info['type'] == 3) {
  701. $info['info'] = array();
  702. $info['info']['name'] = $name;
  703. $info['info']['focus'] = $focus;
  704. $info['info']['author_id'] = $author_id;
  705. $info['info']['content'] = $content;
  706. $info['info'] = Dever::load('content/lib/article')->getContent($info['info'], $this->data['uid']);
  707. } elseif ($info['type'] == 4 || $info['type'] == 5) {
  708. $info['video'] = convert($info['video'], 'mp4', 'journal/content', $info['id'], 'video');
  709. if ($info['video']) {
  710. $info = Dever::load('video/lib/vod')->avinfo($info, 'video', 'journal/content');
  711. if ($info['type'] == 5) {
  712. $info['name'] = $name;
  713. }
  714. }
  715. } elseif ($info['type'] == 6) {
  716. $info['name'] = $name;
  717. //音频先不转码
  718. //$info['music'] = convert($info['music'], 'mp3', 'journal/content', $info['id'], 'music');
  719. } elseif ($info['type'] == 11) {
  720. $info['info'] = Dever::load('content/lib/article')->get($info['article_id']);
  721. } elseif ($info['type'] == 12) {
  722. $info['info'] = Dever::load('video/lib/vod')->get($info['vod_id']);
  723. } elseif ($info['type'] == 13) {
  724. $info['info'] = Dever::load('video/lib/live')->get($info['live_id']);
  725. if ($this->data['uid'] > 0) {
  726. $info['info']['note'] = Dever::load('act/lib/note')->get($this->data['uid'], $info['info']['id'], 3);
  727. } else {
  728. $info['info']['note'] = 2;
  729. }
  730. }
  731. if (isset($info['info']['author_id']) && $info['info']['author_id']) {
  732. $info['info']['author'] = Dever::db('content/author')->one($info['info']['author_id']);
  733. }
  734. if (isset($info['pic']) && $info['pic']) {
  735. $info['pic'] = str_replace('http://', 'https://', $info['pic']);
  736. }
  737. return $info;
  738. }
  739. private function check()
  740. {
  741. $id = Dever::input('id');
  742. if (!$id) {
  743. Dever::alert('小刊已下架');
  744. }
  745. $status = false;
  746. if (strstr($id, 'preview_')) {
  747. $id = str_replace('preview_', '', $id);
  748. $status = true;
  749. }
  750. $this->data['info'] = Dever::load('act/order')->getJournal($id);
  751. if (!$this->data['info']) {
  752. Dever::alert('小刊已下架');
  753. }
  754. if ($status) {
  755. $this->data['info']['status'] = '2';
  756. }
  757. return $id;
  758. }
  759. }