live.php 13 KB

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