admin.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  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为先查询是否存在,存在直接更新,不存在则插入, only为仅更新
  87. 'type' => 'delete',
  88. )
  89. ),
  90. # 同步更新另外一个或多个表的一条关联数据
  91. /*
  92. 'syncone' => array
  93. (
  94. 'manage/admin_role' => array
  95. (
  96. # 更新另外一个表的字段 => 本表的字段
  97. 'where' => array('admin_id' => 'id'),
  98. # 要更新的数据
  99. 'update' => array('role_id' => 'role'),
  100. )
  101. ),
  102. */
  103. /*该方法用check替代
  104. 'start' => array
  105. (
  106. 'update' => 'manage/auth.check',
  107. 'insert' => 'manage/auth.check',
  108. ),
  109. */
  110. 'end' => array
  111. (
  112. 'update' => 'manage/auth.update',
  113. ),
  114. # 数据结构
  115. 'struct' => array
  116. (
  117. 'id' => array
  118. (
  119. 'type' => 'int-11',
  120. 'name' => '管理员ID',
  121. 'default' => '',
  122. 'desc' => '',
  123. 'match' => 'is_numeric',
  124. 'search' => 'order',
  125. 'list' => true,
  126. ),
  127. 'username' => array
  128. (
  129. 'type' => 'varchar-24',
  130. 'name' => '管理员名',
  131. 'default' => '',
  132. 'desc' => '请输入管理员名',
  133. 'match' => 'is_string',
  134. 'update' => 'text',
  135. # 自动完成功能,第一个参数是请求的地址,请自行实现,第二个参数是要使用的字段,共有id和value两个选择,id会特殊处理,value则直接把当前值写入,第三个参数是直接替换当前的值,第四个参数是当前表里的字段名,一般为分类的id
  136. //'autocomplete' => array('auth.role?json=1', 'value', 'manage/role-check#name', 'cate_id'),
  137. //'autocomplete' => array('auth.role?json=1'),
  138. 'search' => 'order,fulltext',
  139. 'list' => true,
  140. # 绑定js脚本,更新时使用,第一个参数是执行的方式,第二个参数执行的方法,第三个参数是传值。
  141. //'bind' => array('onblur', 'loading', array('url' => Dever::url("auth.blur"))),
  142. ),
  143. #多级联动
  144. //'update' => 'linkage',//多级联动 option参数:请求地址(返回参数为level_num当前联动级数,level_id当前选择的id),参考area组件:dever package area
  145. //'option' => Dever::url('api.get', 'area'),
  146. 'email' => array
  147. (
  148. 'type' => 'varchar-150',
  149. 'name' => '邮箱-可用于登录,请准确填写,不允许重复',
  150. 'default' => '',
  151. 'desc' => '请输入邮箱',
  152. 'match' => Dever::rule('email'),
  153. 'update' => 'text',
  154. /*
  155. * 列表页搜索选项,这里的search或者update的值为
  156. * fulltext:全文检索,模糊匹配
  157. * text:精确匹配
  158. * exp:大小判断,仅能选择一项
  159. * select:选择器,需要option项
  160. * group:组选择器,需要option项
  161. * linkage:多级联动选择器,需要option项,值为联动数据接口地址,参考area组件 'option' => Dever::url('api.get', 'area'), 'list' => 'Dever::load("area/api.string", "{area}")',
  162. * exist:是否存在,需要exist项,基本配置为
  163. $source_id = array
  164. (
  165. 'yes' => '有值',
  166. 'no' => '没有值',
  167. 'no|2832' => '没有值或者有值为2832',
  168. 'yes|2832' => '有值并且过滤值为2829',
  169. '2832' => '查找',
  170. );
  171. * 如果search的值为数组,则认为是接口,需要从接口获取数据后再进行查找
  172. * 如'search' => array
  173. (
  174. 'api' => 'passport/user-all',//接口地址,最好是获取多条数据的地址
  175. 'col' => 'name',//要查询的字段
  176. 'result' => 'id',//返回的字段
  177. 'search' => 'uid',//本表的字段,默认为当前的字段
  178. ),
  179. * 就是将本字段email当做passport/user-one的name字段来查找id
  180. */
  181. 'search' => 'fulltext',
  182. 'list' => true,
  183. # 在手机版或者小屏幕下,列表页的表格是否展示,1为展示,2、3、4、5、6均为在一定宽度下展示,详细参考:https://github.com/nadangergeo/RWD-Table-Patterns
  184. 'level' => 1,
  185. //直接上传到云端
  186. //'upload' => 'qiniu',
  187. //上传大数据
  188. //'large' => true,
  189. ),
  190. # 比较特殊的一些设置,不断添加中:
  191. /*
  192. 'cate' => array
  193. (
  194. 'type' => 'varchar-300',
  195. 'name' => '标签分类',
  196. 'default' => '1',
  197. 'desc' => '标签分类',
  198. 'match' => 'is_string',
  199. 'update' => 'select',
  200. 'option' => $cate,
  201. 'search' => 'fulltext',
  202. //'list' => true,
  203. 'control' => 'cate',
  204. ),
  205. # 标签,根据分类变化的标签
  206. 'tag' => array
  207. (
  208. 'type' => 'varchar-300',
  209. 'name' => '标签',
  210. 'default' => '',
  211. 'desc' => '标签',
  212. 'match' => 'is_string',
  213. 'update' => 'checkbox',
  214. # 新增接口 暂未实现
  215. 'adding' => 'tag/manage.getByCate?cate=',
  216. # 开启这个,需要将update更换为text类型,输入文字即可选择标签
  217. //'autocomplete' => array('tag/manage.getByName', 'id', 'tag/info-one#name'),
  218. 'search' => 'fulltext',
  219. //'list' => true,
  220. # 与上边的cate联动(ajax)
  221. 'show' => 'cate=tag/manage.getByCate?cate=',
  222. ),
  223. # 加载地图
  224. 'map' => array
  225. (
  226. 'type' => 'varchar-300',
  227. 'name' => '地理位置',
  228. 'default' => '',
  229. 'desc' => '地理位置',
  230. 'match' => 'is_string',
  231. # 如果是map,必须在config的base.php中设置map信息
  232. //'update' => 'map',
  233. 'search' => 'fulltext',
  234. //'list' => true,
  235. //自定义编辑器右侧按钮
  236. 'editor' => array
  237. (
  238. 'name' => '选择插入模块',
  239. 'button' => array
  240. (
  241. array
  242. (
  243. # 名称
  244. 'name' => '图片',
  245. # 资源库id
  246. 'key' => 1,
  247. # 类型
  248. 'type' => 'image',
  249. ),
  250. array
  251. (
  252. 'name' => '音频',
  253. 'key' => 2,
  254. 'type' => 'media',
  255. ),
  256. array
  257. (
  258. 'name' => '视频',
  259. 'key' => 'video/lib/core.vod',
  260. ),
  261. array
  262. (
  263. 'name' => '直播',
  264. 'key' => 'video/lib/core.live',
  265. ),
  266. ),
  267. ),
  268. ),
  269. # 三级地区联动
  270. 'area' => array
  271. (
  272. 'type' => 'varchar-100',
  273. 'name' => '地区',
  274. 'default' => '',
  275. 'desc' => '地区',
  276. 'match' => 'is_string',
  277. 'search' => 'linkage',
  278. 'update' => 'linkage',//多级联动 option参数:请求地址(参数为level_num当前联动级数,level_id当前选择的id)
  279. 'option' => Dever::url('api.get', 'area'),
  280. 'list' => 'Dever::load("area/api.string", "{area}")',
  281. ),
  282. # 无限级联动
  283. 'category' => array
  284. (
  285. 'type' => 'varchar-500',
  286. 'name' => '分类',
  287. 'default' => '',
  288. 'desc' => '分类',
  289. 'match' => 'is_string',
  290. 'search' => 'linkage',
  291. //'update' => 'linkage',
  292. 'option' => Dever::url('api.get', 'category'),
  293. 'list' => 'Dever::load("category/api.string", "{category}")',
  294. ),
  295. # 属性管理
  296. 'attr' => array
  297. (
  298. 'type' => 'varchar-800',
  299. 'name' => '属性设置',
  300. 'default' => '',
  301. 'desc' => '属性设置',
  302. 'match' => 'option',
  303. 'update' => 'checkbox',
  304. 'option' => $attr,
  305. 'update_input' => '',
  306. 'update_input_default' => '',
  307. 'update_parent' => 'checkbox',
  308. ),
  309. # 属性管理 需要用这个来设置值
  310. 'attr_input' => array
  311. (
  312. 'type' => 'text-255',
  313. 'name' => '属性值设置',
  314. 'default' => '',
  315. 'desc' => '属性值设置',
  316. 'match' => 'option',
  317. ),
  318. */
  319. 'mobile' => array
  320. (
  321. 'type' => 'varchar-32',
  322. 'name' => '手机号',
  323. 'default' => '',
  324. 'desc' => '请输入手机号',
  325. 'match' => Dever::rule('mobile'),
  326. 'update' => 'text',
  327. 'search' => 'fulltext',
  328. 'list' => true,
  329. 'level' => 1,
  330. # 显示在table中
  331. //'list_table'=> '111',
  332. ),
  333. 'password' => array
  334. (
  335. 'type' => 'varchar-64',
  336. 'name' => '管理员密码',
  337. 'default' => '',
  338. 'desc' => '请输入管理员密码',
  339. 'match' => 'option',
  340. 'update' => 'password',
  341. 'callback' => 'hash.sha256',
  342. ),
  343. 'config' => array
  344. (
  345. 'type' => 'int-11',
  346. 'name' => '后台配置',
  347. 'default' => '1',
  348. 'desc' => '请选择后台配置',
  349. 'match' => 'is_numeric',
  350. 'option' => $config,
  351. 'update' => 'select',
  352. 'list' => true,
  353. ),
  354. 'role' => array
  355. (
  356. 'type' => 'varchar-100',
  357. 'name' => '角色',
  358. 'default' => '1',
  359. 'desc' => '请选择角色',
  360. 'match' => 'is_string',
  361. 'option' => $role,
  362. 'update' => 'checkbox',
  363. //'list' => true,
  364. ),
  365. 'group' => array
  366. (
  367. 'type' => 'int-11',
  368. 'name' => '分组',
  369. 'default' => '1',
  370. 'desc' => '请选择分组',
  371. 'match' => 'is_numeric',
  372. 'option' => $group,
  373. 'update' => 'select',
  374. //'list' => true,
  375. ),
  376. 'top' => array
  377. (
  378. 'type' => 'text-255',
  379. 'name' => '头部菜单-这里的头部菜单如果设置,则会覆盖角色中的头部菜单',
  380. 'default' => '',
  381. 'desc' => '请选择头部菜单',
  382. 'match' => 'option',
  383. 'update' => 'checkbox',
  384. 'option' => $top,
  385. ),
  386. 'state' => array
  387. (
  388. 'type' => 'tinyint-1',
  389. 'name' => '数据状态',
  390. 'default' => '1',
  391. 'desc' => '请选择状态',
  392. 'match' => 'is_numeric',
  393. //'option' => $option,
  394. //'update' => 'radio',
  395. //'list' => true,
  396. //'extend' => true,//扩展功能,该字段为虚拟字段,只在数据库中建立extend字段来保存 后续实现
  397. ),
  398. /*
  399. 提供冲突检测机制(乐观锁),保证高并发下的数据安全
  400. 这是模仿自 php 的 Memcached 扩展 后续实现
  401. 'token' => array
  402. (
  403. 'type' => 'int-11',
  404. 'name' => 'token',
  405. 'default' => '1',
  406. 'desc' => 'token',
  407. 'match' => 'is_numeric',
  408. ),
  409. */
  410. 'status' => array
  411. (
  412. 'type' => 'tinyint-1',
  413. 'name' => '状态',
  414. 'default' => '1',
  415. 'desc' => '请选择状态',
  416. 'match' => 'is_numeric',
  417. 'option' => $status,
  418. 'update' => 'radio',
  419. 'list' => true,
  420. 'edit' => true,
  421. ),
  422. 'cdate' => array
  423. (
  424. 'type' => 'int-11',
  425. 'name' => '录入时间',
  426. 'match' => array('is_numeric', DEVER_TIME),
  427. 'desc' => '',
  428. # 只有insert时才生效
  429. 'insert' => true,
  430. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  431. ),
  432. ),
  433. 'manage' => array
  434. (
  435. 'delete' => false,
  436. // 载入自定义资源
  437. 'res' => array
  438. (
  439. 'js' => 'demo',
  440. 'css' => 'demo',
  441. ),
  442. # 快捷更新
  443. /*
  444. 'list_button' => array
  445. (
  446. 'edit' => array('审核', 'name'),
  447. ),
  448. */
  449. /*
  450. 'insert' => false,
  451. 'edit' => false,
  452. //'delete' => false,
  453. # 自定义快捷新增和编辑
  454. 'button' => array
  455. (
  456. '新增' => array('fast', 'name,reorder'),
  457. ),
  458. # 快捷更新
  459. 'list_button' => array
  460. (
  461. 'edit' => array('编辑', 'name,reorder'),
  462. ),
  463. */
  464. ),
  465. # 更新表结构
  466. 'alter' => array
  467. (
  468. 2 => array
  469. (
  470. //array('update', 'role', 'role', 'varchar-100 1 角色'),
  471. //array('add', 'config', 'config', 'int-11 1 配置'),
  472. ),
  473. 'version' => 2,
  474. ),
  475. # 默认值
  476. /*
  477. 'default' => array
  478. (
  479. 'col' => 'username,email,password,role,state,cdate',
  480. 'value' => array
  481. (
  482. //'"DMC","DMC@dever.cc","'. md5('admin_' . date('Y_m_d_H')) . '",1, 1,' . time(),
  483. '"admin","DMC@dever.cc","'. hash('sha256', 'admin_123') . '",1, 1,' . DEVER_TIME,
  484. ),
  485. ),
  486. */
  487. # 索引
  488. 'index' => array
  489. (
  490. # 索引名 => 索引id
  491. //'id' => 'id,state',
  492. ),
  493. # request 请求接口定义
  494. 'request' => array
  495. (
  496. # one 根据用户名和密码取一条数据
  497. 'user' => array
  498. (
  499. # 匹配的正则或函数 必填项
  500. 'where' => array
  501. (
  502. //'username' => '/^([A-Za-z0-9])/',
  503. //'username' => 'yes',
  504. 'email' => 'yes',
  505. 'status' => 1,
  506. 'state' => 1,
  507. //'password' => 'is_string',
  508. ),
  509. 'type' => 'one',
  510. # 为这个接口独立设置缓存
  511. 'cache' => true,
  512. ),
  513. # one 根据用户名和密码取一条数据
  514. 'email' => array
  515. (
  516. # 匹配的正则或函数 必填项
  517. 'where' => array
  518. (
  519. //'username' => '/^([A-Za-z0-9])/',
  520. //'username' => 'yes',
  521. 'email' => 'yes',
  522. 'status' => 1,
  523. 'state' => 1,
  524. //'password' => 'is_string',
  525. ),
  526. 'type' => 'one',
  527. # 为这个接口独立设置缓存
  528. 'cache' => true,
  529. ),
  530. # one 根据用户名和密码取一条数据
  531. 'mobile' => array
  532. (
  533. # 匹配的正则或函数 必填项
  534. 'where' => array
  535. (
  536. //'username' => '/^([A-Za-z0-9])/',
  537. //'username' => 'yes',
  538. 'mobile' => 'yes',
  539. 'status' => 1,
  540. 'state' => 1,
  541. //'password' => 'is_string',
  542. ),
  543. 'type' => 'one',
  544. # 为这个接口独立设置缓存
  545. 'cache' => true,
  546. ),
  547. # 更新密码
  548. 'password' => array
  549. (
  550. 'type' => 'update',
  551. 'where' => array
  552. (
  553. 'id' => 'yes',
  554. ),
  555. 'set' => array
  556. (
  557. 'password' => 'yes',
  558. ),
  559. ),
  560. ),
  561. );