admin.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | admin.php 管理员表
  5. |--------------------------------------------------------------------------
  6. */
  7. # 定义几个常用的选项
  8. $status = array
  9. (
  10. 1 => '普通',
  11. 2 => '封禁',
  12. );
  13. $cur = Dever::load('manage/auth.data', false);
  14. $desc = '';
  15. if($cur['role'] > 1)
  16. {
  17. $desc = $cur['username'] . ',你好,你可以在此管理你的下属账号';
  18. $child = array_keys(Dever::db('manage/role')->all());
  19. $admin = Dever::db('manage/admin_role')->list(array
  20. (
  21. 'col' => 'admin_id|admin_id',
  22. 'option' => array
  23. (
  24. 'role_id' => array('yes', 'in'),
  25. ),
  26. 'option_role_id' => implode(',', $child),
  27. ));
  28. # 配置当前列表页的参数 只能查看自己下属的管理员
  29. Dever::$global['model']['manage/admin-list'] = array
  30. (
  31. 'option' => array
  32. (
  33. 'id' => array('yes', 'in'),
  34. ),
  35. 'option_id' => $admin ? array_keys($admin) : -1,
  36. );
  37. }
  38. $role = function()
  39. {
  40. return Dever::load('manage/role-all');
  41. };
  42. $group = function()
  43. {
  44. return Dever::load('manage/group-all');
  45. };
  46. $config = function()
  47. {
  48. return Dever::load('manage/config-all');
  49. };
  50. # 获取头部菜单list 建议这里使用匿名函数
  51. $top = function()
  52. {
  53. $data = Dever::load('manage/top.all');
  54. $data['state'] = 1;
  55. return $data;
  56. };
  57. return array
  58. (
  59. # 表名
  60. 'name' => 'admin',
  61. # 显示给用户看的名称
  62. 'lang' => '管理账户设置',
  63. 'desc' => $desc,
  64. # 这个表不使用cache功能
  65. //'cache' => false,
  66. /*
  67. # 用到哪个后台菜单上,对应项目的key
  68. 'menu' => 'project_niuyou_main',
  69. # 后台菜单排序
  70. 'order' => 10,
  71. # 显示到后台快捷发布中,值为排序
  72. 'fast' => 1,
  73. */
  74. 'order' => 9,
  75. # 检测email必须唯一
  76. 'check' => 'email',
  77. # 同步更新另外一个或多个表的数据
  78. 'sync' => array
  79. (
  80. 'manage/admin_role' => array
  81. (
  82. # 更新另外一个表的字段 => 本表的字段
  83. 'where' => array('admin_id', 'id'),
  84. # 要更新的数据
  85. 'update' => array('role_id' => 'role'),
  86. # 同步更新的类型,delete为先删再插入,update为直接更新
  87. 'type' => 'delete',
  88. )
  89. ),
  90. /*该方法用check替代
  91. 'start' => array
  92. (
  93. 'update' => 'manage/auth.check',
  94. 'insert' => 'manage/auth.check',
  95. ),
  96. */
  97. 'end' => array
  98. (
  99. 'update' => 'manage/auth.update',
  100. ),
  101. # 数据结构
  102. 'struct' => array
  103. (
  104. 'id' => array
  105. (
  106. 'type' => 'int-11',
  107. 'name' => '管理员ID',
  108. 'default' => '',
  109. 'desc' => '',
  110. 'match' => 'is_numeric',
  111. 'search' => 'order',
  112. 'list' => true,
  113. ),
  114. 'username' => array
  115. (
  116. 'type' => 'varchar-24',
  117. 'name' => '管理员名',
  118. 'default' => '',
  119. 'desc' => '请输入管理员名',
  120. 'match' => 'is_string',
  121. 'update' => 'text',
  122. # 自动完成功能,第一个参数是请求的地址,请自行实现,第二个参数是要使用的字段,共有id和value两个选择,id会特殊处理,value则直接把当前值写入,第三个参数是直接替换当前的值
  123. //'autocomplete' => array('auth.role?json=1', 'value', 'manage/role-check#name'),
  124. //'autocomplete' => array('auth.role?json=1'),
  125. 'search' => 'order,fulltext',
  126. 'list' => true,
  127. # 绑定js脚本,更新时使用,第一个参数是执行的方式,第二个参数执行的方法,第三个参数是传值。
  128. //'bind' => array('onblur', 'loading', array('url' => Dever::url("auth.blur"))),
  129. ),
  130. 'email' => array
  131. (
  132. 'type' => 'varchar-150',
  133. 'name' => '邮箱-可用于登录,请准确填写,不允许重复',
  134. 'default' => '',
  135. 'desc' => '请输入邮箱',
  136. 'match' => Dever::rule('email'),
  137. 'update' => 'text',
  138. /*
  139. * 列表页搜索选项,这里的search的值为
  140. * fulltext:全文检索,模糊匹配
  141. * text:精确匹配
  142. * exp:大小判断,仅能选择一项
  143. * select:选择器,需要option项
  144. * group:组选择器,需要option项
  145. * exist:是否存在,需要exist项,基本配置为
  146. $source_id = array
  147. (
  148. 'yes' => '有值',
  149. 'no' => '没有值',
  150. 'no|2832' => '没有值或者有值为2832',
  151. 'yes|2832' => '有值或者有值为2829',
  152. '2832' => '查找',
  153. );
  154. * 如果search的值为数组,则认为是接口,需要从接口获取数据后再进行查找
  155. * 如'search' => array
  156. (
  157. 'api' => 'passport/user-all',//接口地址,最好是获取多条数据的地址
  158. 'col' => 'name',//要查询的字段
  159. 'result' => 'id',//返回的字段
  160. ),
  161. * 就是将本字段email当做passport/user-one的name字段来查找id
  162. */
  163. 'search' => 'fulltext',
  164. 'list' => true,
  165. # 在手机版或者小屏幕下,列表页的表格是否展示,1为展示,2、3、4、5、6均为在一定宽度下展示,详细参考:https://github.com/nadangergeo/RWD-Table-Patterns
  166. 'level' => 1,
  167. ),
  168. 'mobile' => array
  169. (
  170. 'type' => 'varchar-32',
  171. 'name' => '联系电话',
  172. 'default' => '',
  173. 'desc' => '请输入用户联系电话',
  174. 'match' => 'option',
  175. 'update' => 'text',
  176. 'search' => 'fulltext',
  177. 'list' => true,
  178. 'level' => 1,
  179. # 显示在table中
  180. //'list_table'=> '111',
  181. ),
  182. 'password' => array
  183. (
  184. 'type' => 'varchar-64',
  185. 'name' => '管理员密码',
  186. 'default' => '',
  187. 'desc' => '请输入管理员密码',
  188. 'match' => 'option',
  189. 'update' => 'password',
  190. 'callback' => 'hash.sha256',
  191. ),
  192. 'config' => array
  193. (
  194. 'type' => 'int-11',
  195. 'name' => '后台配置',
  196. 'default' => '1',
  197. 'desc' => '请选择后台配置',
  198. 'match' => 'is_numeric',
  199. 'option' => $config,
  200. 'update' => 'select',
  201. 'list' => true,
  202. ),
  203. 'role' => array
  204. (
  205. 'type' => 'varchar-100',
  206. 'name' => '角色',
  207. 'default' => '1',
  208. 'desc' => '请选择角色',
  209. 'match' => 'is_string',
  210. 'option' => $role,
  211. 'update' => 'checkbox',
  212. //'list' => true,
  213. ),
  214. 'group' => array
  215. (
  216. 'type' => 'int-11',
  217. 'name' => '分组',
  218. 'default' => '1',
  219. 'desc' => '请选择分组',
  220. 'match' => 'is_numeric',
  221. 'option' => $group,
  222. 'update' => 'select',
  223. //'list' => true,
  224. ),
  225. 'top' => array
  226. (
  227. 'type' => 'text-255',
  228. 'name' => '头部菜单-这里的头部菜单如果设置,则会覆盖角色中的头部菜单',
  229. 'default' => '',
  230. 'desc' => '请选择头部菜单',
  231. 'match' => 'option',
  232. 'update' => 'checkbox',
  233. 'option' => $top,
  234. ),
  235. 'state' => array
  236. (
  237. 'type' => 'tinyint-1',
  238. 'name' => '数据状态',
  239. 'default' => '1',
  240. 'desc' => '请选择状态',
  241. 'match' => 'is_numeric',
  242. //'option' => $option,
  243. //'update' => 'radio',
  244. //'list' => true,
  245. //'extend' => true,//扩展功能,该字段为虚拟字段,只在数据库中建立extend字段来保存 后续实现
  246. ),
  247. /*
  248. 提供冲突检测机制(乐观锁),保证高并发下的数据安全
  249. 这是模仿自 php 的 Memcached 扩展 后续实现
  250. 'token' => array
  251. (
  252. 'type' => 'int-11',
  253. 'name' => 'token',
  254. 'default' => '1',
  255. 'desc' => 'token',
  256. 'match' => 'is_numeric',
  257. ),
  258. */
  259. 'status' => array
  260. (
  261. 'type' => 'tinyint-1',
  262. 'name' => '状态',
  263. 'default' => '1',
  264. 'desc' => '请选择状态',
  265. 'match' => 'is_numeric',
  266. 'option' => $status,
  267. 'update' => 'radio',
  268. 'list' => true,
  269. 'edit' => true,
  270. ),
  271. 'cdate' => array
  272. (
  273. 'type' => 'int-11',
  274. 'name' => '录入时间',
  275. 'match' => array('is_numeric', DEVER_TIME),
  276. 'desc' => '',
  277. # 只有insert时才生效
  278. 'insert' => true,
  279. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  280. ),
  281. ),
  282. 'manage' => array
  283. (
  284. 'delete' => false,
  285. // 载入自定义资源
  286. 'res' => array
  287. (
  288. 'js' => 'demo',
  289. 'css' => 'demo',
  290. ),
  291. ),
  292. # 更新表结构
  293. 'alter' => array
  294. (
  295. 2 => array
  296. (
  297. //array('update', 'role', 'role', 'varchar-100 1 角色'),
  298. //array('add', 'config', 'config', 'int-11 1 配置'),
  299. ),
  300. 'version' => 2,
  301. ),
  302. # 默认值
  303. /*
  304. 'default' => array
  305. (
  306. 'col' => 'username,email,password,role,state,cdate',
  307. 'value' => array
  308. (
  309. //'"DMC","DMC@dever.cc","'. md5('admin_' . date('Y_m_d_H')) . '",1, 1,' . time(),
  310. '"admin","DMC@dever.cc","'. hash('sha256', 'admin_123') . '",1, 1,' . DEVER_TIME,
  311. ),
  312. ),
  313. */
  314. # 索引
  315. 'index' => array
  316. (
  317. # 索引名 => 索引id
  318. //'id' => 'id,state',
  319. ),
  320. # request 请求接口定义
  321. 'request' => array
  322. (
  323. # one 根据用户名和密码取一条数据
  324. 'user' => array
  325. (
  326. # 匹配的正则或函数 必填项
  327. 'where' => array
  328. (
  329. //'username' => '/^([A-Za-z0-9])/',
  330. //'username' => 'yes',
  331. 'email' => 'yes',
  332. 'status' => 1,
  333. 'state' => 1,
  334. //'password' => 'is_string',
  335. ),
  336. 'type' => 'one',
  337. # 为这个接口独立设置缓存
  338. 'cache' => true,
  339. ),
  340. # 更新密码
  341. 'password' => array
  342. (
  343. 'type' => 'update',
  344. 'where' => array
  345. (
  346. 'id' => 'yes',
  347. ),
  348. 'set' => array
  349. (
  350. 'password' => 'yes',
  351. ),
  352. ),
  353. ),
  354. );