vod.php 7.3 KB

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