live.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. <?php
  2. $page = 15;
  3. $share = function()
  4. {
  5. $array = array();
  6. $info = Dever::db('poster/template')->state();
  7. if($info)
  8. {
  9. $array += $info;
  10. }
  11. return $array;
  12. };
  13. return array
  14. (
  15. # 表名
  16. 'name' => 'live',
  17. # 显示给用户看的名称
  18. 'lang' => '直播视频管理',
  19. 'order' => 99,
  20. # 数据结构
  21. 'struct' => array
  22. (
  23. 'id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => 'ID',
  27. 'default' => '',
  28. 'desc' => '',
  29. 'match' => 'is_numeric',
  30. ),
  31. 'name' => array
  32. (
  33. 'type' => 'varchar-80',
  34. 'name' => '标题',
  35. 'default' => '',
  36. 'desc' => '标题',
  37. 'match' => 'is_string',
  38. 'update' => 'text',
  39. 'list' => true,
  40. ),
  41. 'pic_cover' => array
  42. (
  43. 'type' => 'varchar-150',
  44. 'name' => '封面图-4:3比例的图片',
  45. 'default' => '',
  46. 'desc' => '封面图',
  47. 'match' => 'option',
  48. 'update' => 'image',
  49. 'key' => '1',
  50. 'place' => '150',
  51. ),
  52. 'link' => array
  53. (
  54. 'type' => 'varchar-800',
  55. 'name' => '直播推流地址',
  56. 'default' => '',
  57. 'desc' => '直播推流地址',
  58. 'match' => 'is_string',
  59. 'update' => 'text',
  60. 'list' => true,
  61. ),
  62. 'num_add_user' => array
  63. (
  64. 'type' => 'int-11',
  65. 'name' => '手动增加在线人数',
  66. 'default' => '0',
  67. 'desc' => '手动增加在线人数',
  68. 'match' => 'option',
  69. 'update' => 'text',
  70. ),
  71. 'num_user' => array
  72. (
  73. 'type' => 'int-11',
  74. 'name' => '在线人数',
  75. 'default' => '0',
  76. 'desc' => '在线人数',
  77. 'match' => 'option',
  78. 'search' => 'order',
  79. ),
  80. 'num_add_view' => array
  81. (
  82. 'type' => 'int-11',
  83. 'name' => '手动增加浏览量pv数',
  84. 'default' => '0',
  85. 'desc' => '请填写手动增加浏览量pv',
  86. 'match' => 'option',
  87. 'update' => 'text',
  88. ),
  89. 'num_view' => array
  90. (
  91. 'type' => 'int-11',
  92. 'name' => '浏览量pv',
  93. 'default' => '0',
  94. 'desc' => '请填写浏览量pv',
  95. 'match' => 'option',
  96. 'search' => 'order',
  97. //'list' => '{num_view}+{num_add_view}',
  98. ),
  99. 'num_up' => array
  100. (
  101. 'type' => 'int-11',
  102. 'name' => '喜欢数',
  103. 'default' => '0',
  104. 'desc' => '请填写喜欢数',
  105. 'match' => 'option',
  106. //'search' => 'order',
  107. 'list' => '"在线人数:{num_user}+{num_add_user}<br />喜欢数:{num_up}<br />浏览量:{num_view}+{num_add_view}<br />评论数:{num_comment}<br />"',
  108. 'list_name' => '统计数字',
  109. ),
  110. 'num_comment' => array
  111. (
  112. 'type' => 'int-11',
  113. 'name' => '评论数',
  114. 'default' => '0',
  115. 'desc' => '请填写评论数',
  116. 'search' => 'order',
  117. 'match' => 'option',
  118. //'list' => true,
  119. ),
  120. 'content' => array
  121. (
  122. 'type' => 'text-255',
  123. 'name' => '内容介绍',
  124. 'default' => '',
  125. 'desc' => '请输入内容',
  126. 'match' => 'is_string',
  127. 'update' => 'editor',
  128. 'key' => 1,
  129. 'media' => 5,
  130. ),
  131. 'state' => array
  132. (
  133. 'type' => 'tinyint-1',
  134. 'name' => '状态',
  135. 'default' => '1',
  136. 'desc' => '请选择状态',
  137. 'match' => 'is_numeric',
  138. ),
  139. 'admin_founder' => array
  140. (
  141. 'type' => 'int-11',
  142. 'name' => '创建人',
  143. 'default' => '1',
  144. 'desc' => '创建人',
  145. 'match' => 'is_numeric',
  146. ),
  147. 'admin_editor' => array
  148. (
  149. 'type' => 'int-11',
  150. 'name' => '操作人',
  151. 'default' => '1',
  152. 'desc' => '操作人',
  153. 'match' => 'is_numeric',
  154. ),
  155. 'sdate' => array
  156. (
  157. 'type' => 'int-11',
  158. 'name' => '开始时间',
  159. 'match' => 'is_numeric',
  160. 'desc' => '',
  161. 'update' => 'date',
  162. 'callback' => 'maketime',
  163. 'list' => 'date("Y-m-d H:i:s", {sdate})',
  164. ),
  165. 'pdate' => array
  166. (
  167. 'type' => 'int-11',
  168. 'name' => '发布时间',
  169. 'match' => 'is_numeric',
  170. 'desc' => '',
  171. 'update' => 'date',
  172. 'callback' => 'maketime',
  173. 'list' => 'date("Y-m-d H:i:s", {pdate})',
  174. ),
  175. 'share' => array
  176. (
  177. 'type' => 'text-255',
  178. 'name' => '分享海报-选择海报库中的海报',
  179. 'default' => '',
  180. 'desc' => '分享海报',
  181. 'match' => 'option',
  182. 'update' => 'checkbox',
  183. 'option' => $share,
  184. ),
  185. 'udate' => array
  186. (
  187. 'type' => 'int-11',
  188. 'name' => '更新时间',
  189. 'match' => array('is_numeric', time()),
  190. 'desc' => '',
  191. ),
  192. 'cdate' => array
  193. (
  194. 'type' => 'int-11',
  195. 'name' => '录入时间',
  196. 'match' => array('is_numeric', time()),
  197. 'desc' => '',
  198. # 只有insert时才生效
  199. 'insert' => true,
  200. ),
  201. ),
  202. # 索引
  203. 'index' => array
  204. (
  205. 'version' => 1,
  206. 1 => array
  207. (
  208. 'i1' => 'uid,cate_id',
  209. )
  210. ),
  211. # 管理功能
  212. 'manage' => array
  213. (
  214. //'insert' => false,
  215. # 列表
  216. /*
  217. 'list_button' => array
  218. (
  219. 'list' => array('评论列表', '"comment&search_option_data_id={id}&oper_parent=article"'),
  220. ),
  221. */
  222. ),
  223. # request 请求接口定义
  224. 'request' => array
  225. (
  226. 'getAll' => array
  227. (
  228. # 匹配的正则或函数 选填项
  229. 'option' => array
  230. (
  231. 'cate_id' => 'yes',
  232. 'cate_ids' => array('yes-cate_id', 'in'),
  233. 'id' => 'yes',
  234. ),
  235. 'type' => 'all',
  236. 'order' => array('id' => 'desc'),
  237. 'page' => array($page, 'list'),
  238. 'col' => '*',
  239. ),
  240. # 获取默认主题,按照置顶和时间排序的
  241. 'default' => array
  242. (
  243. # 匹配的正则或函数 选填项
  244. 'option' => array
  245. (
  246. 'cate_id' => 'yes',
  247. 'uid' => 'yes',
  248. ),
  249. 'type' => 'all',
  250. 'order' => array('id' => 'desc'),
  251. 'page' => array($page, 'list'),
  252. 'col' => '*',
  253. ),
  254. # 获取最新主题
  255. 'new' => array
  256. (
  257. # 匹配的正则或函数 选填项
  258. 'option' => array
  259. (
  260. 'name' => array('yes', 'like'),
  261. 'cate_id' => 'yes',
  262. 'uid' => 'yes',
  263. ),
  264. 'type' => 'all',
  265. 'order' => array('id', 'desc'),
  266. 'page' => array($page, 'list'),
  267. 'col' => '*',
  268. ),
  269. # 获取热门主题
  270. 'hot' => array
  271. (
  272. # 匹配的正则或函数 选填项
  273. 'option' => array
  274. (
  275. 'cate_id' => 'yes',
  276. 'uid' => 'yes',
  277. ),
  278. 'type' => 'all',
  279. 'order' => array('num_view`+`num_add_view' => 'desc', 'id' => 'desc'),
  280. 'page' => array($page, 'list'),
  281. 'col' => '*',
  282. ),
  283. # 获取冷门主题
  284. 'cold' => array
  285. (
  286. # 匹配的正则或函数 选填项
  287. 'option' => array
  288. (
  289. 'cate_id' => 'yes',
  290. 'uid' => 'yes',
  291. ),
  292. 'type' => 'all',
  293. 'order' => array('num_view`+`num_add_view' => 'asc', 'id' => 'desc'),
  294. 'page' => array($page, 'list'),
  295. 'col' => '*',
  296. ),
  297. # 更新浏览量
  298. 'addView' => array
  299. (
  300. 'type' => 'update',
  301. 'where' => array
  302. (
  303. 'id' => 'yes',
  304. ),
  305. 'set' => array
  306. (
  307. 'num_view' => array('1', '+='),
  308. ),
  309. ),
  310. # 更新回复数
  311. 'addComment' => array
  312. (
  313. 'type' => 'update',
  314. 'where' => array
  315. (
  316. 'id' => 'yes',
  317. ),
  318. 'set' => array
  319. (
  320. 'num_comment' => array('1', '+='),
  321. ),
  322. ),
  323. # 更新点赞数
  324. 'addUp' => array
  325. (
  326. 'type' => 'update',
  327. 'where' => array
  328. (
  329. 'id' => 'yes',
  330. ),
  331. 'set' => array
  332. (
  333. 'num_up' => array('1', '+='),
  334. ),
  335. ),
  336. # 更新点赞数
  337. 'desUp' => array
  338. (
  339. 'type' => 'update',
  340. 'where' => array
  341. (
  342. 'id' => 'yes',
  343. ),
  344. 'set' => array
  345. (
  346. 'num_up' => array('1', '-='),
  347. ),
  348. ),
  349. ),
  350. );