user.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. <?php
  2. # 定义几个常用的选项
  3. $option = array
  4. (
  5. 1 => '正常',
  6. 2 => '冻结',
  7. );
  8. /*
  9. $level = function()
  10. {
  11. return Dever::db('passport/level')->state();
  12. };
  13. */
  14. $system = function()
  15. {
  16. $array = array();
  17. $info = Dever::db('passport/system')->state();
  18. if($info)
  19. {
  20. $array += $info;
  21. }
  22. return $array;
  23. };
  24. $sex = array
  25. (
  26. 1 => '男',
  27. 2 => '女',
  28. 3 => '未知',
  29. );
  30. $weixin = array
  31. (
  32. 1 => '已关注',
  33. 2 => '未关注',
  34. );
  35. $temp = array
  36. (
  37. 1 => '临时用户',
  38. 2 => '正式用户',
  39. );
  40. $bind = array
  41. (
  42. 1 => '已绑定',
  43. 2 => '未绑定',
  44. );
  45. $source_type = array (
  46. 'ios' => 'ios',
  47. 'android' => 'android',
  48. 'h5' => 'h5',
  49. 'applet' => '小程序',
  50. 'pc' => '网站',
  51. 'service' => '公众号',
  52. );
  53. $email = Dever::rule('email');
  54. $email = 'option';
  55. $mobile = Dever::rule('mobile');
  56. $mobile = 'option';
  57. return array
  58. (
  59. 'email' => $email,
  60. 'mobile' => $mobile,
  61. # 表名
  62. 'name' => 'user',
  63. # 显示给用户看的名称
  64. 'lang' => '用户管理',
  65. 'order' => 10,
  66. # 数据结构
  67. 'struct' => array
  68. (
  69. 'id' => array
  70. (
  71. 'type' => 'int-11',
  72. 'name' => '用户ID',
  73. 'default' => '',
  74. 'desc' => '',
  75. 'match' => 'is_numeric',
  76. 'search' => 'order,fulltext',
  77. 'list' => true,
  78. ),
  79. 'username' => array
  80. (
  81. 'type' => 'varchar-50',
  82. 'name' => '用户名',
  83. 'default' => '',
  84. 'desc' => '请输入用户名',
  85. 'match' => 'is_string',
  86. 'update' => 'text',
  87. 'search' => 'fulltext',
  88. 'list' => true,
  89. ),
  90. 'truename' => array
  91. (
  92. 'type' => 'varchar-50',
  93. 'name' => '姓名',
  94. 'default' => '',
  95. 'desc' => '请输入姓名',
  96. 'match' => 'option',
  97. 'update' => 'text',
  98. 'search' => 'fulltext',
  99. 'list' => '"{truename}" ? "{truename}" : "点此编辑"',
  100. 'edit' => true,
  101. ),
  102. 'mobile' => array
  103. (
  104. 'type' => 'varchar-32',
  105. 'name' => '手机号',
  106. 'default' => '',
  107. 'desc' => '请输入用户手机号',
  108. 'match' => $mobile,
  109. 'update' => 'text',
  110. 'search' => 'fulltext,exist',
  111. 'exist' => array
  112. (
  113. 'yes' => '有值',
  114. //'no' => '没有值',
  115. ),
  116. 'list' => true,
  117. ),
  118. 'system_id' => array
  119. (
  120. 'type' => 'int-11',
  121. 'name' => '所属项目',
  122. 'default' => '1',
  123. 'desc' => '所属项目',
  124. 'match' => 'is_numeric',
  125. 'option' => $system,
  126. //'update' => 'select',
  127. //'list' => true,
  128. ),
  129. 'source_type' => array
  130. (
  131. 'type' => 'varchar-100',
  132. 'name' => '用户来源',
  133. 'default' => '',
  134. 'desc' => '请选择用户来源',
  135. 'match' => 'is_string',
  136. 'update' => 'select',
  137. 'option' => $source_type,
  138. 'search' => 'select',
  139. 'list' => true,
  140. ),
  141. 'email' => array
  142. (
  143. 'type' => 'varchar-150',
  144. 'name' => '邮箱',
  145. 'default' => '',
  146. 'desc' => '请输入邮箱',
  147. 'match' => $email,
  148. 'update' => 'text',
  149. //'search' => 'fulltext',
  150. //'list' => true,
  151. ),
  152. 'password' => array
  153. (
  154. 'type' => 'varchar-50',
  155. 'name' => '密码',
  156. 'default' => '',
  157. 'desc' => '请输入密码',
  158. 'match' => 'option',
  159. 'update' => 'password',
  160. 'callback' => 'sha1',
  161. ),
  162. //search_exist_avatar=yes
  163. 'avatar' => array
  164. (
  165. 'type' => 'varchar-150',
  166. 'name' => '头像',
  167. 'default' => '',
  168. 'desc' => '请选择头像',
  169. 'match' => 'option',
  170. 'update' => 'image',
  171. 'key' => '1',
  172. 'place' => '150',
  173. 'list' => '"{avatar}" ? "<img src=\'{avatar}\' width=\'150\'>": ""',
  174. ),
  175. 'country' => array
  176. (
  177. 'type' => 'varchar-100',
  178. 'name' => '国家',
  179. 'default' => '',
  180. 'desc' => '国家',
  181. 'match' => 'option',
  182. 'update' => 'text',
  183. ),
  184. 'province' => array
  185. (
  186. 'type' => 'varchar-100',
  187. 'name' => '省份',
  188. 'default' => '',
  189. 'desc' => '省份',
  190. 'match' => 'option',
  191. 'update' => 'text',
  192. ),
  193. 'city' => array
  194. (
  195. 'type' => 'varchar-100',
  196. 'name' => '城市',
  197. 'default' => '',
  198. 'desc' => '城市',
  199. 'match' => 'option',
  200. 'update' => 'text',
  201. ),
  202. 'area' => array
  203. (
  204. 'type' => 'varchar-800',
  205. 'name' => '地区',
  206. 'default' => '',
  207. 'desc' => '地区',
  208. 'match' => 'option',
  209. 'update' => 'text',
  210. 'list' => true,
  211. ),
  212. 'info' => array
  213. (
  214. 'type' => 'varchar-255',
  215. 'name' => '介绍-选填,如果想清空该介绍,请输入null。',
  216. 'default' => '',
  217. 'desc' => '请输入介绍',
  218. 'match' => 'option',
  219. 'update' => 'editor',
  220. ),
  221. 'score' => array
  222. (
  223. 'type' => 'varchar-50',
  224. 'name' => '积分',
  225. 'default' => '',
  226. 'desc' => '请输入积分',
  227. 'match' => 'option',
  228. //'update' => 'text',
  229. //'list' => true,
  230. ),
  231. 'sex' => array
  232. (
  233. 'type' => 'tinyint-1',
  234. 'name' => '用户性别',
  235. 'default' => '3',
  236. 'desc' => '用户性别',
  237. 'match' => 'is_numeric',
  238. 'option' => $sex,
  239. 'update' => 'radio',
  240. //'list' => true,
  241. ),
  242. 'level' => array
  243. (
  244. 'type' => 'int-11',
  245. 'name' => '用户等级',
  246. 'default' => '1',
  247. 'desc' => '请选择用户等级',
  248. 'match' => 'is_numeric',
  249. //'option' => $level,
  250. //'update' => 'select',
  251. //'list' => true,
  252. ),
  253. 'temp' => array
  254. (
  255. 'type' => 'tinyint-1',
  256. 'name' => '是否临时用户',
  257. 'default' => '1',
  258. 'desc' => '是否临时用户',
  259. 'match' => 'is_numeric',
  260. 'search' => 'select',
  261. 'option' => $temp,
  262. //'update' => 'select',
  263. 'list' => true,
  264. ),
  265. 'login_date' => array
  266. (
  267. 'type' => 'int-11',
  268. 'name' => '最近登录',
  269. 'match' => array('is_numeric', time()),
  270. 'desc' => '',
  271. 'default' => '0',
  272. //'list' => 'date("Y-m-d H:i:s", {login_date})',
  273. ),
  274. 'bind' => array
  275. (
  276. 'type' => 'tinyint-1',
  277. 'name' => '是否绑定手机',
  278. 'default' => '2',
  279. 'desc' => '请选择是否绑定手机',
  280. 'match' => 'is_numeric',
  281. //'option' => $bind,
  282. //'update' => 'radio',
  283. ),
  284. 'state' => array
  285. (
  286. 'type' => 'tinyint-1',
  287. 'name' => '状态',
  288. 'default' => '1',
  289. 'desc' => '请选择状态',
  290. 'match' => 'is_numeric',
  291. 'option' => $option,
  292. 'update' => 'radio',
  293. ),
  294. 'cdate' => array
  295. (
  296. 'type' => 'int-11',
  297. 'name' => '注册时间',
  298. 'match' => array('is_numeric', time()),
  299. 'desc' => '',
  300. # 只有insert时才生效
  301. 'insert' => true,
  302. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  303. ),
  304. ),
  305. 'manage' => array
  306. (
  307. 'excel' => true,
  308. # 列表
  309. 'list_button' => Dever::config('base', 'project')->passport_list_button,
  310. ),
  311. # 更新表结构
  312. /*
  313. 'alter' => array
  314. (
  315. 1 => array
  316. (
  317. array('add', 'bind', 'bind', 'tinyint-1 2 是否绑定手机'),
  318. ),
  319. 'version' => 1,
  320. ),
  321. */
  322. # request 请求接口定义
  323. 'request' => array
  324. (
  325. # 此处定义是为跳出auth
  326. 'login' => array
  327. (
  328. 'option' => array
  329. (
  330. 'username' => 'yes',
  331. 'mobile' => 'yes',
  332. 'email' => 'yes',
  333. 'password' => 'yes',
  334. ),
  335. 'type' => 'one',
  336. ),
  337. # 验证手机号是否被使用
  338. 'checkMobile' => array
  339. (
  340. # 匹配的正则或函数 选填项
  341. 'where' => array
  342. (
  343. 'mobile' => 'yes',
  344. 'id' => array('yes', '!='),
  345. ),
  346. 'type' => 'one',
  347. ),
  348. # 此处定义是为跳出auth
  349. 'updates' => array
  350. (
  351. 'set' => array
  352. (
  353. 'state' => 'yes',
  354. ),
  355. 'where' => array
  356. (
  357. 'id' => array('yes', 'in'),
  358. ),
  359. 'type' => 'update',
  360. ),
  361. ),
  362. );