col.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <?php
  2. # 定义几个常用的选项
  3. $type = array
  4. (
  5. 1 => '文本内容',
  6. 2 => '文件资源',
  7. 3 => '富文本内容',
  8. );
  9. $local = array
  10. (
  11. 1 => '是',
  12. 2 => '否',
  13. );
  14. $source = array
  15. (
  16. 1 => '详情页',
  17. 2 => '列表页',
  18. );
  19. $upload = function()
  20. {
  21. $info = Dever::db('upload/upload')->select();
  22. return $info;
  23. };
  24. return array
  25. (
  26. # 表名
  27. 'name' => 'col',
  28. # 显示给用户看的名称
  29. 'lang' => '采集字段管理',
  30. 'menu' => false,
  31. # 后台菜单排序
  32. 'order' => 6,
  33. 'desc' => '字段唯一标识符:如果用逗号隔开,则前面的是dever公共函数,如maketime.date,则会调用Dever::maketime()来处理date的数据
  34. <br />
  35. <a href="'.Dever::url('spider/lib/api.test?id=' . Dever::input('search_option_pid', -1)).'" target="_blank">点此进行测试</a>:请按住ctrl打开新页面并查看源代码',
  36. # 数据结构
  37. 'struct' => array
  38. (
  39. 'id' => array
  40. (
  41. 'type' => 'int-11',
  42. 'name' => 'ID',
  43. 'default' => '',
  44. 'desc' => '',
  45. 'match' => 'is_numeric',
  46. 'search' => 'order',
  47. 'list' => true,
  48. 'order' => 'desc',
  49. ),
  50. 'name' => array
  51. (
  52. 'type' => 'varchar-100',
  53. 'name' => '字段名称',
  54. 'default' => '',
  55. 'desc' => '字段名称',
  56. 'match' => 'is_string',
  57. 'update' => 'text',
  58. 'search' => 'fulltext',
  59. 'list' => true,
  60. 'edit' => true,
  61. ),
  62. 'key' => array
  63. (
  64. 'type' => 'varchar-100',
  65. 'name' => '字段唯一标识符',
  66. 'default' => '',
  67. 'desc' => '字段唯一标识符',
  68. 'match' => 'is_string',
  69. 'update' => 'text',
  70. 'search' => 'fulltext',
  71. 'list' => true,
  72. 'edit' => true,
  73. ),
  74. 'pid' => array
  75. (
  76. 'type' => 'int-11',
  77. 'name' => '项目id',
  78. 'default' => Dever::input('search_option_pid', -1),
  79. 'desc' => '请选择项目id',
  80. 'match' => 'is_numeric',
  81. 'search' => 'order',
  82. 'update' => 'hidden',
  83. ),
  84. 'source' => array
  85. (
  86. 'type' => 'tinyint-1',
  87. 'name' => '字段来源',
  88. 'default' => '1',
  89. 'desc' => '字段来源',
  90. 'match' => 'is_numeric',
  91. 'option' => $source,
  92. 'update' => 'radio',
  93. 'list' => true,
  94. ),
  95. 'type' => array
  96. (
  97. 'type' => 'tinyint-1',
  98. 'name' => '字段类型-如果选择文件类型,将只会保存文件的网络地址',
  99. 'default' => '1',
  100. 'desc' => '字段类型',
  101. 'match' => 'is_numeric',
  102. 'option' => $type,
  103. 'update' => 'radio',
  104. 'list' => true,
  105. 'control' => 'type',
  106. ),
  107. 'local' => array
  108. (
  109. 'type' => 'tinyint-1',
  110. 'name' => '资源是否本地化-资源包括图片、视频等,本地化后将转成本地地址',
  111. 'default' => '2',
  112. 'desc' => '资源是否本地化',
  113. 'match' => 'is_numeric',
  114. 'option' => $local,
  115. 'update' => 'radio',
  116. 'control' => 'local',
  117. ),
  118. 'res_key' => array
  119. (
  120. 'type' => 'int-11',
  121. 'name' => '资源库-选择资源库,将根据配置传入到相应的资源库里',
  122. 'default' => '1',
  123. 'desc' => '资源库ID',
  124. 'match' => 'is_numeric',
  125. 'update' => 'select',
  126. 'option' => $upload,
  127. 'show' => 'local=1',
  128. ),
  129. 'collect_rule' => array
  130. (
  131. 'type' => 'varchar-500',
  132. 'name' => '采集规则-支持dom解析、JSON、正则,dom解析如$(".info .title a").html(),JSON如data.url,正则就是正则表达式,如果想直接用其他字段,直接输入其他字段的唯一标识符即可,输入第二行可以解析其他字段',
  133. 'default' => '',
  134. 'desc' => '采集规则',
  135. 'match' => 'is_string',
  136. 'update' => 'textarea',
  137. 'list' => true,
  138. 'edit' => 'textarea',
  139. ),
  140. 'collect_include' => array
  141. (
  142. 'type' => 'varchar-500',
  143. 'name' => '包含字符-如果填写该项,则只保留包含有该字符的,多个换行隔开,多个是或的关系',
  144. 'default' => '',
  145. 'desc' => '采集规则',
  146. 'match' => 'option',
  147. 'update' => 'textarea',
  148. ),
  149. 'collect_exclude' => array
  150. (
  151. 'type' => 'varchar-500',
  152. 'name' => '不包含字符-如果填写该项,则只保留不包含有该字符的,多个换行隔开,多个是且的关系',
  153. 'default' => '',
  154. 'desc' => '采集规则',
  155. 'match' => 'option',
  156. 'update' => 'textarea',
  157. ),
  158. 'collect_filter' => array
  159. (
  160. 'type' => 'varchar-500',
  161. 'name' => '过滤字符串-如果填写该项,则过滤掉符合该规则的字符,仅支持字符串和正则,输入=>可以替换成后边的字符,如不如输入则过滤为空,多个换行隔开',
  162. 'default' => '',
  163. 'desc' => '过滤字符串',
  164. 'match' => 'option',
  165. 'update' => 'textarea',
  166. ),
  167. 'collect_attr' => array
  168. (
  169. 'type' => 'varchar-500',
  170. 'name' => '过滤属性-如果填写该项,则过滤掉html中的属性,这里直接填写属性的名称,如style,多个换行隔开',
  171. 'default' => '',
  172. 'desc' => '过滤属性',
  173. 'match' => 'option',
  174. 'update' => 'textarea',
  175. ),
  176. 'collect_filter_link' => array
  177. (
  178. 'type' => 'tinyint-1',
  179. 'name' => '是否过滤链接-将过滤内容中的链接',
  180. 'default' => '2',
  181. 'desc' => '是否过滤链接',
  182. 'match' => 'is_numeric',
  183. 'option' => $local,
  184. 'update' => 'radio',
  185. 'control' => 'local',
  186. ),
  187. 'collect_url' => array
  188. (
  189. 'type' => 'varchar-500',
  190. 'name' => '采集下级链接-如果当前页面里需要采集下一页内容,这里可以设置获取下一页内容的链接规则,第二行可以输入链接中要包含的字符',
  191. 'default' => '',
  192. 'desc' => '采集下级链接',
  193. 'match' => 'option',
  194. 'update' => 'textarea',
  195. //'list' => true,
  196. 'edit' => 'textarea',
  197. ),
  198. 'state' => array
  199. (
  200. 'type' => 'tinyint-1',
  201. 'name' => '数据状态',
  202. 'default' => '1',
  203. 'desc' => '请选择状态',
  204. 'match' => 'is_numeric',
  205. ),
  206. 'cdate' => array
  207. (
  208. 'type' => 'int-11',
  209. 'name' => '录入时间',
  210. 'match' => array('is_numeric', time()),
  211. 'desc' => '',
  212. # 只有insert时才生效
  213. 'insert' => true,
  214. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  215. ),
  216. ),
  217. 'request' => array
  218. (
  219. 'getList' => array
  220. (
  221. 'where' => array
  222. (
  223. 'pid' => 'yes',
  224. 'state' => 1,
  225. ),
  226. 'type' => 'all',
  227. 'order' => array
  228. (
  229. 'id' => 'desc',
  230. ),
  231. 'col' => '*|source|key|',
  232. ),
  233. )
  234. );