live.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. <?php
  2. $page = 15;
  3. $audit = Dever::config('base')->audit;
  4. $status = Dever::config('base')->status;
  5. $function = Dever::config('base')->function;
  6. unset($function[3]);
  7. $share = function()
  8. {
  9. $array = array();
  10. $info = Dever::db('poster/template')->state();
  11. if($info)
  12. {
  13. $array += $info;
  14. }
  15. return $array;
  16. };
  17. $author = function()
  18. {
  19. $array = array();
  20. $info = Dever::db('content/author')->state();
  21. if($info)
  22. {
  23. $array += $info;
  24. }
  25. return $array;
  26. };
  27. $cate = function()
  28. {
  29. $array = array();
  30. $info = Dever::db('content/cate')->state();
  31. if($info)
  32. {
  33. $array += $info;
  34. }
  35. return $array;
  36. };
  37. $stream = function()
  38. {
  39. $array = array
  40. (
  41. -1 => '选择直播流',
  42. );
  43. $info = Dever::db('live/stream')->state();
  44. if($info)
  45. {
  46. $array += $info;
  47. }
  48. return $array;
  49. };
  50. $share = array
  51. (
  52. 1 => '显示',
  53. 2 => '不显示',
  54. );
  55. $col = 'id,name,pic_cover,pic_cover_169,pdate,num_add_user+num_user as num_user,num_add_view+num_view as num_view,num_up+num_add_up as num_up,num_comment,share_yes,share_title,share_pic,share_content,function,content,url_m3u8,url_mp4, url_m3u8 as url,cate_id,stream_id,sdate,edate,author_id,video_info,stream_link';
  56. return array
  57. (
  58. # 表名
  59. 'name' => 'live',
  60. # 显示给用户看的名称
  61. 'lang' => '直播视频管理',
  62. 'order' => 99,
  63. 'end' => array
  64. (
  65. 'insert' => 'tag/lib/core.data?source_table=video/live',
  66. 'update' => 'tag/lib/core.data?source_table=video/live',
  67. ),
  68. # 同步更新另外一个或多个表的数据
  69. 'syncone' => array
  70. (
  71. 'audit/data' => array
  72. (
  73. # 更新另外一个表的字段 => 本表的字段
  74. 'where' => array('data_id' => 'id', 'type' => 3),
  75. # 要更新的数据
  76. 'update' => array('data_id' => 'id', 'type' => 3, 'pdate' => 'pdate', 'reorder' => 'reorder', 'name' => 'name', 'audit' => 'audit', 'status' => 'status', 'cate_id' => 'cate_id', 'state' => 'state'),
  77. )
  78. ),
  79. # 数据结构
  80. 'struct' => array
  81. (
  82. 'id' => array
  83. (
  84. 'type' => 'int-11',
  85. 'name' => 'ID',
  86. 'default' => '',
  87. 'desc' => '',
  88. 'match' => 'is_numeric',
  89. 'list' => true,
  90. ),
  91. 'name' => array
  92. (
  93. 'type' => 'varchar-80',
  94. 'name' => '标题',
  95. 'default' => '',
  96. 'desc' => '标题',
  97. 'match' => 'is_string',
  98. 'update' => 'text',
  99. 'search' => 'fulltext',
  100. 'list' => true,
  101. ),
  102. 'cate_id' => array
  103. (
  104. 'type' => 'int-11',
  105. 'name' => '所属栏目',
  106. 'default' => '1',
  107. 'desc' => '所属栏目',
  108. 'match' => 'is_numeric',
  109. 'update' => 'select',
  110. 'option' => $cate,
  111. 'search' => 'select',
  112. ),
  113. 'author_id' => array
  114. (
  115. 'type' => 'int-11',
  116. 'name' => '作者',
  117. 'default' => '1',
  118. 'desc' => '作者',
  119. 'match' => 'is_numeric',
  120. 'update' => 'select',
  121. //'option' => $author,
  122. 'search' => 'select',
  123. 'update_search' => 'content/lib/author.search',
  124. ),
  125. 'tag' => array
  126. (
  127. 'type' => 'text-255',
  128. 'name' => '标签',
  129. 'default' => '',
  130. 'desc' => '标签',
  131. 'match' => 'is_numeric',
  132. 'update' => 'selects',
  133. //'search' => 'fulltext',
  134. 'update_search' => 'tag/lib/core.search',
  135. ),
  136. 'pic_cover' => array
  137. (
  138. 'type' => 'varchar-150',
  139. 'name' => '4:3封面图-图片尺寸750*564px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  140. 'default' => '',
  141. 'desc' => '封面图',
  142. 'match' => 'is_string',
  143. 'update' => 'image',
  144. 'key' => '1',
  145. 'place' => '150',
  146. //直接上传到云端
  147. //'upload' => 'qiniu',
  148. //上传大数据
  149. //'large' => true,
  150. ),
  151. 'pic_cover_169' => array
  152. (
  153. 'type' => 'varchar-150',
  154. 'name' => '16:9封面图-图片尺寸750*422px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  155. 'default' => '',
  156. 'desc' => '封面图',
  157. 'match' => 'is_string',
  158. 'update' => 'image',
  159. 'key' => '1',
  160. 'place' => '150',
  161. //直接上传到云端
  162. //'upload' => 'qiniu',
  163. //上传大数据
  164. //'large' => true,
  165. ),
  166. 'stream_id' => array
  167. (
  168. 'type' => 'int-11',
  169. 'name' => '直播流选择',
  170. 'default' => '',
  171. 'desc' => '直播流选择',
  172. 'match' => 'is_numeric',
  173. 'update' => 'select',
  174. 'option' => $stream,
  175. //'list' => true,
  176. 'control' => 'stream_id',
  177. ),
  178. 'stream_link' => array
  179. (
  180. 'type' => 'varchar-800',
  181. 'name' => '直播地址-输入直播地址后,直播流选择将失效',
  182. 'default' => '',
  183. 'desc' => '直播地址',
  184. 'match' => 'option',
  185. 'update' => 'textarea',
  186. 'show' => 'stream_id=-1'
  187. ),
  188. 'sdate' => array
  189. (
  190. 'type' => 'int-11',
  191. 'name' => '开始时间',
  192. 'match' => 'is_numeric',
  193. 'default' => '',
  194. 'desc' => '',
  195. 'update' => 'date',
  196. 'callback' => 'maketime',
  197. 'list' => 'date("Y-m-d H:i:s", {sdate})',
  198. ),
  199. 'edate' => array
  200. (
  201. 'type' => 'int-11',
  202. 'name' => '结束时间-选择结束时间,能够得到当前时间段完整的直播回放地址',
  203. 'match' => 'is_numeric',
  204. 'default' => '',
  205. 'desc' => '',
  206. 'update' => 'date',
  207. 'callback' => 'maketime',
  208. //'list' => 'date("Y-m-d H:i:s", {edate})',
  209. ),
  210. 'url_m3u8' => array
  211. (
  212. 'type' => 'varchar-800',
  213. 'name' => '直播回放地址',
  214. 'default' => '',
  215. 'desc' => '直播回放地址',
  216. 'match' => 'option',
  217. 'update' => 'textarea',
  218. //'list' => true,
  219. ),
  220. 'url_mp4' => array
  221. (
  222. 'type' => 'varchar-800',
  223. 'name' => '直播回放地址',
  224. 'default' => '',
  225. 'desc' => '直播回放地址',
  226. 'match' => 'option',
  227. //'update' => 'text',
  228. //'list' => true,
  229. ),
  230. 'video_info' => array
  231. (
  232. 'type' => 'text-255',
  233. 'name' => '视频信息',
  234. 'default' => '',
  235. 'desc' => '视频信息',
  236. 'match' => 'is_string',
  237. ),
  238. 'num_add_user' => array
  239. (
  240. 'type' => 'int-11',
  241. 'name' => '手动增加在线人数',
  242. 'default' => '0',
  243. 'desc' => '手动增加在线人数',
  244. 'match' => 'option',
  245. 'update' => 'text',
  246. ),
  247. 'num_user' => array
  248. (
  249. 'type' => 'int-11',
  250. 'name' => '在线人数',
  251. 'default' => '0',
  252. 'desc' => '在线人数',
  253. 'match' => 'option',
  254. 'search' => 'order',
  255. ),
  256. 'num_add_view' => array
  257. (
  258. 'type' => 'int-11',
  259. 'name' => '浏览量基数',
  260. 'default' => '0',
  261. 'desc' => '浏览量基数',
  262. 'match' => 'option',
  263. 'update' => 'text',
  264. ),
  265. 'num_view' => array
  266. (
  267. 'type' => 'int-11',
  268. 'name' => '浏览量pv',
  269. 'default' => '0',
  270. 'desc' => '请填写浏览量pv',
  271. 'match' => 'option',
  272. 'search' => 'order',
  273. //'list' => '{num_view}+{num_add_view}',
  274. ),
  275. 'num_add_up' => array
  276. (
  277. 'type' => 'int-11',
  278. 'name' => '喜欢基数',
  279. 'default' => '0',
  280. 'desc' => '喜欢基数',
  281. 'match' => 'option',
  282. //'update' => 'text',
  283. ),
  284. 'num_up' => array
  285. (
  286. 'type' => 'int-11',
  287. 'name' => '喜欢数',
  288. 'default' => '0',
  289. 'desc' => '请填写喜欢数',
  290. 'match' => 'option',
  291. //'search' => 'order',
  292. 'list' => '"在线人数:{num_user}+{num_add_user}<br />喜欢数:{num_up}<br />浏览量:{num_view}+{num_add_view}<br />评论数:{num_comment}<br />"',
  293. 'list_name' => '统计数字',
  294. ),
  295. 'num_comment' => array
  296. (
  297. 'type' => 'int-11',
  298. 'name' => '评论数',
  299. 'default' => '0',
  300. 'desc' => '请填写评论数',
  301. 'search' => 'order',
  302. 'match' => 'option',
  303. //'list' => true,
  304. ),
  305. 'state' => array
  306. (
  307. 'type' => 'tinyint-1',
  308. 'name' => '状态',
  309. 'default' => '1',
  310. 'desc' => '请选择状态',
  311. 'match' => 'is_numeric',
  312. ),
  313. 'admin_founder' => array
  314. (
  315. 'type' => 'int-11',
  316. 'name' => '创建人',
  317. 'default' => '1',
  318. 'desc' => '创建人',
  319. 'match' => 'is_numeric',
  320. ),
  321. 'admin_editor' => array
  322. (
  323. 'type' => 'int-11',
  324. 'name' => '操作人',
  325. 'default' => '1',
  326. 'desc' => '操作人',
  327. 'match' => 'is_numeric',
  328. ),
  329. 'pdate' => array
  330. (
  331. 'type' => 'int-11',
  332. 'name' => '发布时间',
  333. 'match' => array('is_numeric', time()),
  334. 'default' => '',
  335. 'desc' => '',
  336. 'update' => 'date',
  337. 'callback' => 'maketime',
  338. 'insert' => true,
  339. //'list' => 'date("Y-m-d H:i:s", {pdate})',
  340. 'auth' => '"{pdate}" > 0',
  341. ),
  342. 'share' => array
  343. (
  344. 'type' => 'text-255',
  345. 'name' => '分享海报-选择海报库中的海报',
  346. 'default' => '',
  347. 'desc' => '分享海报',
  348. 'match' => 'option',
  349. //'update' => 'checkbox',
  350. 'option' => $share,
  351. ),
  352. 'reorder' => array
  353. (
  354. 'type' => 'int-11',
  355. 'name' => '排序(数值越大越靠前)',
  356. 'default' => '1',
  357. 'desc' => '请输入排序',
  358. 'match' => 'option',
  359. //'update' => 'text',
  360. 'search' => 'order',
  361. //'list' => true,
  362. 'order' => 'desc',
  363. //'edit' => true,
  364. ),
  365. 'udate' => array
  366. (
  367. 'type' => 'int-11',
  368. 'name' => '更新时间',
  369. 'match' => array('is_numeric', time()),
  370. 'desc' => '',
  371. ),
  372. 'function' => array
  373. (
  374. 'type' => 'varchar-100',
  375. 'name' => '功能选择',
  376. 'default' => '1,2,3',
  377. 'desc' => '功能选择',
  378. 'match' => 'option',
  379. 'update' => 'checkbox',
  380. 'option' => $function,
  381. ),
  382. 'share_yes' => array
  383. (
  384. 'type' => 'int-11',
  385. 'name' => '是否显示分享按钮',
  386. 'default' => '1',
  387. 'desc' => '是否显示分享按钮',
  388. 'match' => 'option',
  389. 'update' => 'radio',
  390. 'option' => $share,
  391. 'control' => 'share_yes',
  392. ),
  393. 'share_title' => array
  394. (
  395. 'type' => 'varchar-100',
  396. 'name' => '分享标题',
  397. 'default' => '',
  398. 'desc' => '分享标题',
  399. 'match' => 'option',
  400. 'update' => 'text',
  401. 'show' => 'share_yes=1',
  402. ),
  403. 'share_pic' => array
  404. (
  405. 'type' => 'varchar-150',
  406. 'name' => '分享图片-图片尺寸570*570px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  407. 'default' => '',
  408. 'desc' => '分享图片',
  409. 'match' => 'is_string',
  410. 'update' => 'image',
  411. 'key' => '1',
  412. 'place' => '150',
  413. 'show' => 'share_yes=1',
  414. //'upload' => 'qiniu',
  415. //'large' => true,
  416. ),
  417. 'share_content' => array
  418. (
  419. 'type' => 'varchar-200',
  420. 'name' => '分享内容',
  421. 'default' => '',
  422. 'desc' => '分享内容',
  423. 'match' => 'option',
  424. 'update' => 'textarea',
  425. 'show' => 'share_yes=1',
  426. ),
  427. 'content' => array
  428. (
  429. 'type' => 'text-255',
  430. 'name' => '内容',
  431. 'default' => '',
  432. 'desc' => '请输入内容',
  433. 'match' => 'is_string',
  434. 'update' => 'editor',
  435. 'key' => 1,
  436. ),
  437. 'audit' => array
  438. (
  439. 'type' => 'int-11',
  440. 'name' => '审核状态',
  441. 'default' => '1',
  442. 'desc' => '审核',
  443. 'match' => 'is_numeric',
  444. //'update' => 'select',
  445. 'option' => $audit,
  446. 'search' => 'select',
  447. 'list' => true,
  448. 'edit' => true,
  449. ),
  450. 'status' => array
  451. (
  452. 'type' => 'int-11',
  453. 'name' => '发布状态',
  454. 'default' => '1',
  455. 'desc' => '发布状态',
  456. 'match' => 'is_numeric',
  457. //'update' => 'select',
  458. 'option' => $status,
  459. 'search' => 'select',
  460. 'list' => true,
  461. 'edit' => true,
  462. ),
  463. 'cdate' => array
  464. (
  465. 'type' => 'int-11',
  466. 'name' => '录入时间',
  467. 'match' => array('is_numeric', time()),
  468. 'desc' => '',
  469. # 只有insert时才生效
  470. 'insert' => true,
  471. ),
  472. ),
  473. # 索引
  474. 'index' => array
  475. (
  476. 'version' => 1,
  477. 1 => array
  478. (
  479. 'i1' => 'uid,cate_id',
  480. )
  481. ),
  482. # 管理功能
  483. 'manage' => array
  484. (
  485. //'insert' => false,
  486. # 列表
  487. 'list_button' => array
  488. (
  489. 'edit' => array('预览', str_replace('https://api.', 'http://www.', Dever::url('main/preview.get?type=3'))),
  490. ),
  491. ),
  492. # request 请求接口定义
  493. 'request' => array
  494. (
  495. 'search' => array
  496. (
  497. # 匹配的正则或函数 选填项
  498. 'option' => array
  499. (
  500. 'ids' => array('yes-id', 'in'),
  501. 'cate_id' => 'yes',
  502. 'name' => array('yes', 'like'),
  503. 'id' => 'yes',
  504. 'state' => 1,
  505. ),
  506. 'type' => 'all',
  507. 'order' => array('reorder' => 'desc', 'pdate' => 'desc'),
  508. 'limit' => '0,1000',
  509. 'col' => 'name as name, id, id as value, "" as selected, "" as disabled|id',
  510. ),
  511. 'getAll' => array
  512. (
  513. # 匹配的正则或函数 选填项
  514. 'option' => array
  515. (
  516. 'cate_id' => 'yes',
  517. 'cate_ids' => array('yes-cate_id', 'in'),
  518. 'id' => 'yes',
  519. 'state' => 1,
  520. ),
  521. 'type' => 'all',
  522. 'order' => array('pdate' => 'desc'),
  523. 'page' => array($page, 'list'),
  524. 'col' => $col,
  525. ),
  526. 'getRelation' => array
  527. (
  528. # 匹配的正则或函数 选填项
  529. 'option' => array
  530. (
  531. 'cate_id' => 'yes',
  532. 'cate_ids' => array('yes-cate_id', 'in'),
  533. 'noid' => array('yes-id', '!='),
  534. 'audit' => 2,
  535. 'status' => 2,
  536. 'state' => 1,
  537. ),
  538. 'type' => 'all',
  539. 'order' => array('reorder' => 'desc','pdate' => 'desc'),
  540. 'limit' => '0,4',
  541. 'col' => $col,
  542. ),
  543. 'getOne' => array
  544. (
  545. # 匹配的正则或函数 选填项
  546. 'where' => array
  547. (
  548. 'id' => 'yes',
  549. ),
  550. 'type' => 'one',
  551. 'col' => $col,
  552. ),
  553. # 更新浏览量
  554. 'addView' => array
  555. (
  556. 'type' => 'update',
  557. 'where' => array
  558. (
  559. 'id' => 'yes',
  560. ),
  561. 'set' => array
  562. (
  563. 'num_view' => array('1', '+='),
  564. ),
  565. ),
  566. ),
  567. );