role.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | role.php 角色表
  5. |--------------------------------------------------------------------------
  6. */
  7. # 定义几个常用的选项
  8. $option = array
  9. (
  10. 1 => '可用',
  11. 2 => '不可用',
  12. );
  13. # 获取头部菜单list 建议这里使用匿名函数
  14. $top = function()
  15. {
  16. $data = Dever::load('manage/top.all');
  17. $data['state'] = 1;
  18. return $data;
  19. };
  20. # 操作权限控制
  21. $oper = array
  22. (
  23. 1 => '列表',
  24. 2 => '搜索',
  25. 3 => '编辑',
  26. 4 => '新增',
  27. 5 => '删除',
  28. //6 => '其他',
  29. );
  30. # 是否只能管理自己发布的内容
  31. $self = array
  32. (
  33. 1 => '是',
  34. 2 => '否',
  35. );
  36. # 获取当前登录管理员的所属角色,除id为1外,其余的角色只能管理本角色级别之下的子角色
  37. $cur = Dever::load('manage/auth.data');
  38. //print_r($cur);die;
  39. $desc = '';
  40. if($cur && $cur['role'] > 1)
  41. {
  42. $desc = $cur['username'] . ',你好,你可以在此管理你的下属角色';
  43. # 配置当前列表页的参数
  44. Dever::$global['model']['manage/role-all'] = Dever::$global['model']['manage/role-list'] = array
  45. (
  46. 'option_role_id' => $cur['role'],
  47. );
  48. $temp = explode(',', $cur['oper']);
  49. foreach($oper as $k => $v)
  50. {
  51. if(!in_array($k, $temp))
  52. {
  53. unset($oper[$k]);
  54. }
  55. }
  56. }
  57. # 获取权限list 建议这里使用匿名函数
  58. $auth = function() use($cur)
  59. {
  60. if($cur['role'] > 1)
  61. {
  62. $auth = Dever::load('manage/auth.get', false);
  63. }
  64. else
  65. {
  66. $auth = Dever::load('manage/auth.get', true);
  67. }
  68. return $auth;
  69. };
  70. $role = function() use($cur)
  71. {
  72. $param = $array = array();
  73. if($cur['role'] > 1)
  74. {
  75. $param['option_id'] = $cur['role'];
  76. }
  77. else
  78. {
  79. $array = array(-1 => array('name' => '无'));
  80. }
  81. $data = Dever::load('manage/role-main', $param);
  82. if($data)
  83. {
  84. $array += $data;
  85. }
  86. return $array;
  87. };
  88. # 获取权限list 建议这里使用匿名函数
  89. $auth_data = function()
  90. {
  91. $auth_data = Dever::load('manage/auth.getByData');
  92. return $auth_data;
  93. };
  94. //print_r($auth);die;
  95. $config = array
  96. (
  97. # 表名
  98. 'name' => 'role',
  99. # 显示给用户看的名称
  100. 'lang' => '角色管理',
  101. 'desc' => $desc,
  102. 'order' => 90,
  103. # 表类型 值为\innodb\myisam\,默认为innodb,仅在mysql类型有效
  104. 'type' => 'innodb',
  105. # 数据结构
  106. 'struct' => array
  107. (
  108. 'id' => array
  109. (
  110. 'type' => 'int-11',
  111. 'name' => '角色ID',
  112. 'default' => '',
  113. 'desc' => '',
  114. 'match' => 'is_numeric',
  115. 'search' => 'order',
  116. 'list' => true,
  117. ),
  118. 'name' => array
  119. (
  120. 'type' => 'varchar-24',
  121. 'name' => '角色名',
  122. 'default' => '',
  123. 'desc' => '请输入角色名',
  124. 'match' => 'is_string',
  125. 'update' => 'text',
  126. 'search' => 'fulltext',
  127. 'list_name' => '角色名',//定义列表页的名称
  128. 'list' => true,
  129. 'edit' => true,
  130. 'tab' => 0,
  131. ),
  132. /*
  133. 'key' => array
  134. (
  135. 'type' => 'varchar-100',
  136. 'name' => '角色标识-如输入标识,后台可以根据角色标识来自定义某些权限',
  137. 'default' => '',
  138. 'desc' => '角色标识',
  139. 'match' => 'option',
  140. 'update' => 'text',
  141. //'search' => 'fulltext',
  142. //'list' => true,
  143. //'modal' => 'test',
  144. 'tab' => 1,
  145. ),*/
  146. 'role_id' => array
  147. (
  148. 'type' => 'int-11',
  149. 'name' => '上级角色',
  150. 'default' => '-1',
  151. 'desc' => '请选择上级角色',
  152. 'match' => 'is_numeric',
  153. 'update' => 'select',
  154. 'search' => 'order,select',
  155. 'list' => '{role_id}',
  156. 'option' => $role,
  157. 'edit' => true,
  158. 'tab' => 1,
  159. ),
  160. 'self' => array
  161. (
  162. 'type' => 'tinyint-1',
  163. 'name' => '是否只能管理自己发布的内容-请在需要此项权限的表中增加[数据查询时影响的字段]',
  164. 'default' => '2',
  165. 'desc' => '请选择是否只能管理自己发布的内容',
  166. 'match' => 'option',
  167. 'update' => 'radio',
  168. 'option' => $self,
  169. 'auth' => '"{my_role_id}"==1',
  170. 'tab' => 1,
  171. ),
  172. 'col_select' => array
  173. (
  174. 'type' => 'varchar-30',
  175. 'name' => '数据查询时影响的字段-该项影响数据查询,如果在表中增加该字段,则后台在查询数据时自动查询当前管理员的id下的数据,多个用逗号隔开,与[是否只能管理自己发布的内容]相关',
  176. 'default' => 'admin_founder',
  177. 'desc' => '数据更新时影响的字段',
  178. 'match' => 'option',
  179. 'update' => 'text',
  180. 'auth' => '"{my_role_id}"==1',
  181. 'tab' => 1,
  182. ),
  183. 'col_insert' => array
  184. (
  185. 'type' => 'varchar-30',
  186. 'name' => '数据插入时影响的字段-该项影响数据插入,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的id,多个用逗号隔开',
  187. 'default' => 'admin_founder',
  188. 'desc' => '数据插入时影响的字段',
  189. 'match' => 'option',
  190. 'update' => 'text',
  191. 'auth' => '"{my_role_id}"==1',
  192. 'tab' => 1,
  193. ),
  194. 'col_update' => array
  195. (
  196. 'type' => 'varchar-30',
  197. 'name' => '数据更新时影响的字段-该项影响数据更新,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的id,多个用逗号隔开',
  198. 'default' => 'admin_editor',
  199. 'desc' => '数据更新时影响的字段',
  200. 'match' => 'option',
  201. 'update' => 'text',
  202. 'auth' => '"{my_role_id}"==1',
  203. 'tab' => 1,
  204. ),
  205. /*
  206. //启用复制其他字段的值
  207. 'testname' => array
  208. (
  209. 'type' => 'varchar-24',
  210. 'name' => '角色名',
  211. 'default' => '',
  212. 'desc' => '请输入角色名',
  213. 'match' => 'is_string',
  214. 'update' => 'copy.name',//直接复制name的值
  215. 'search' => 'order,fulltext',
  216. 'list' => true,
  217. ),
  218. //当前的字段属于另外一个表,主要不要有type
  219. 'manage-role_test-name'=> array
  220. (
  221. 'name' => '测试名',
  222. 'default' => '',
  223. 'desc' => '请输入角色名',
  224. 'match' => 'option',
  225. 'update' => 'text',//直接复制name的值
  226. # 同步更新另外一个表的内容,两个表相关联的id,更新另一个表的字段
  227. 'sync' => array('id', 'role_id'),
  228. 'list' => true,
  229. ),
  230. */
  231. 'oper' => array
  232. (
  233. 'type' => 'varchar-24',
  234. 'name' => '通用操作权限',
  235. 'default' => array(1,2,3),
  236. 'desc' => '请选择操作权限',
  237. 'match' => 'is_string',
  238. 'update' => 'checkbox',
  239. 'option' => $oper,
  240. ),
  241. /*
  242. 'hr1' => array
  243. (
  244. 'name' => '菜单权限设置',
  245. 'class' => '',//本项必须填写
  246. 'attr' => '',
  247. ),
  248. */
  249. 'auth' => array
  250. (
  251. 'type' => 'text-255',
  252. 'name' => '功能权限',
  253. 'default' => '',
  254. 'desc' => '请选择功能权限',
  255. 'match' => 'option',
  256. 'update' => 'checkbox',
  257. //每个项对应的一个input以及父级更新的类型
  258. //'update_input' => '数量',
  259. //'update_parent' => 'radio',
  260. 'option' => $auth,
  261. ),
  262. 'top' => array
  263. (
  264. 'type' => 'text-255',
  265. 'name' => '数据权限',
  266. 'default' => '',
  267. 'desc' => '请选择数据权限',
  268. 'match' => 'option',
  269. //'update' => 'checkbox',
  270. 'option' => $top,
  271. ),
  272. 'auth_data' => array
  273. (
  274. 'type' => 'text-255',
  275. 'name' => '数据权限',
  276. 'default' => '',
  277. 'desc' => '数据权限',
  278. 'match' => 'option',
  279. //'update' => 'checkbox',
  280. //每个项对应的一个input以及父级更新的类型
  281. //'update_input' => '数量',
  282. //'update_parent' => 'radio',
  283. 'option' => $auth_data,
  284. ),
  285. ),
  286. # 更新表结构 请注意,新增字段已经无需在此增加add了,直接在struct中新增即可。如果是更新字段和删除字段,还需在此加相应配置,并且修改最新的版本号。
  287. /*
  288. 'alter' => array
  289. (
  290. 1 => array
  291. (
  292. array('add', 'top', 'top', 'text-255 头部菜单'),//新增字段
  293. array('update', 't1', 't2', 'text-255 头部菜单'),//更新字段
  294. array('delete', 't1'), //删除字段
  295. ),
  296. 'version' => 1,
  297. ),
  298. */
  299. # 默认值
  300. 'default' => array
  301. (
  302. 'col' => 'name,oper,auth,role_id,col_update,col_insert,col_select,state,cdate',
  303. 'value' => array
  304. (
  305. '"系统管理员","1,2,3,4,5","all",-1,"admin","admin","admin",1,' . time(),
  306. '"普通管理员","1,2,3,4,5","",-1,"admin","admin","admin",1,' . time(),
  307. ),
  308. ),
  309. # 索引
  310. /*
  311. 'index' => array
  312. (
  313. 1 => array
  314. (
  315. # 索引名 => 索引id 如果有后缀.unique,则为建立索引的类型,如id,state.unique
  316. 'id' => 'id,state',
  317. ),
  318. # 版本号 更改版本号会更新当前表的索引
  319. 'version' => 1,
  320. ),
  321. */
  322. # 头部菜单权限管理
  323. //'auth' => 'customer-project',
  324. # 后台管理 此处的功能全部开放
  325. 'manage' => array
  326. (
  327. # 自定义列表页面
  328. //'page_list' => 'test',
  329. # 自定义页面
  330. /*
  331. 'page' => 'test',
  332. # 后台banner
  333. 'banner' => array
  334. (
  335. 'img' => 'Dever::load("project/data.customer#img")',
  336. 'name' => 'Dever::load("project/data.customer#name")',
  337. ),
  338. */
  339. # 更新数据时,要显示的按钮,这里填写js脚本事件即可。保存当前数据可为固定参数:"save-data",复制数据为:copy-data
  340. /*
  341. 'update_button' => array
  342. (
  343. '提交保存' => 'save-data',
  344. '放弃保存' => "msg({status:1,msg:'yes'})",
  345. '复制数据' => 'copy-datas',
  346. ),
  347. */
  348. # 列表页的类型
  349. //'list_type' => 'parent',
  350. # 启动自动保存功能
  351. //'save' => true,
  352. # 启动预览功能
  353. 'preview' => true,
  354. # 开启报表下载
  355. # 涉及到报表下载,如果想使用phpexcel,请用composer安装phpexcel:require中添加 ,"phpoffice/phpexcel": "1.8.1",
  356. # 否则请使用框架自带的csv
  357. 'excel' => true,
  358. # 开启批量管理
  359. 'mul' => true,
  360. # 开启主动统计,需要人工选择选项来确定统计的项,有别于被动统计,实现中
  361. //'stat' => 'top,auth,state,oper,role_id,reorder',//值为不显示的字段,无需输入id和cdate
  362. # 列表页每个元素管理下的button,其中'update'为编辑、'delete'为删除,其他可以自定义。
  363. 'list_button' => array('update' => '编辑'),
  364. # 列表头部的button,多个直接添加字段即可
  365. 'button' => array
  366. (
  367. //'更新接口' => 'manage/api.update',
  368. ),
  369. 'tab' => array('基本权限设置', '高级设置'),
  370. ),
  371. # request 请求接口定义
  372. 'request' => array
  373. (
  374. 'getData' => array
  375. (
  376. # 匹配的正则或函数 选填项
  377. 'option' => array
  378. (
  379. 'state' => 1,
  380. ),
  381. 'type' => 'all',
  382. 'order' => array('id', 'desc'),
  383. 'col' => '*|id',
  384. ),
  385. # all 取所有数据
  386. 'alls' => array
  387. (
  388. # 匹配的正则或函数 选填项
  389. 'option' => array
  390. (
  391. 'name' => array('is_string', 'like'),
  392. 'state' => 1,
  393. ),
  394. 'type' => 'all',
  395. 'order' => array('id', 'desc'),
  396. 'col' => '*,name as value,name as label|id',//这里为了做autocomplete进行测试,必须输出value和label
  397. ),
  398. # main 取所有主栏目
  399. 'main' => array
  400. (
  401. 'where' => array
  402. (
  403. //'role_id' => -1,
  404. 'state' => 1,
  405. ),
  406. 'option' => array
  407. (
  408. 'id' => array('yes', 'in'),
  409. ),
  410. 'type' => 'all',
  411. 'order' => array('reorder` desc,`id', 'desc'),
  412. 'col' => '*|id',
  413. ),
  414. # 取所有下级栏目
  415. 'child' => array
  416. (
  417. 'where' => array
  418. (
  419. 'role_id' => array('1', '>='),
  420. 'state' => 1,
  421. ),
  422. 'type' => 'all',
  423. 'order' => array('reorder` desc,`id', 'desc'),
  424. 'col' => '*|role_id|id|',
  425. ),
  426. # 带有*号前缀的,可以直接接口访问
  427. '*get' => array
  428. (
  429. # 匹配的正则或函数 选填项
  430. 'where' => array
  431. (
  432. 'id' => array('is_string', 'in'),
  433. ),
  434. 'type' => 'all',
  435. 'order' => array('id', 'desc'),
  436. 'col' => '*',
  437. ),
  438. # get 根据role的id取多条数据
  439. 'get' => array
  440. (
  441. # 匹配的正则或函数 选填项
  442. 'where' => array
  443. (
  444. 'id' => array('is_string', 'in'),
  445. ),
  446. 'type' => 'all',
  447. 'order' => array('id', 'desc'),
  448. 'col' => '*|id',
  449. ),
  450. ),
  451. );
  452. $project = Dever::load('manage/auth-project');
  453. #Dever::debug('test');
  454. if($project)
  455. {
  456. $config['struct']['hr2'] = array
  457. (
  458. 'name' => '项目精细权限设置',
  459. 'class' => '',//本项必须填写
  460. 'attr' => '',
  461. );
  462. $project_auth = Dever::load('manage/auth.all');
  463. foreach($project as $k => $v)
  464. {
  465. $config['struct']['auth_' . $v['project']] = array
  466. (
  467. 'type' => 'text-255',
  468. 'name' => $v['project_name'] . '下的权限设置',
  469. 'default' => '',
  470. 'desc' => '请选择' . $v['project_name'] . '下的权限设置',
  471. 'match' => 'option',
  472. 'update' => 'checkbox',
  473. 'option' => $project_auth[$v['project']],
  474. );
  475. }
  476. }
  477. $config['struct']['reorder'] = array
  478. (
  479. 'type' => 'int-11',
  480. 'name' => '排序-数值越大越靠前',
  481. 'default' => '1',
  482. 'desc' => '请输入排序',
  483. 'match' => 'option',
  484. //'update' => 'text',
  485. 'search' => 'order',
  486. 'list' => true,
  487. 'order' => 'desc',
  488. 'edit' => true,
  489. );
  490. $config['struct']['state'] = array
  491. (
  492. 'type' => 'tinyint-1',
  493. 'name' => '状态',
  494. 'default' => '1',
  495. 'desc' => '请选择状态',
  496. 'match' => 'is_numeric',
  497. //'option' => $option,
  498. //'update' => 'radio',
  499. //'list' => true,
  500. /*
  501. //启用位运算,仅支持与操作,数据保存时,将从0开始加起,一般用于站点之类的保存,慎用,测试需将radio改成checkbox
  502. 'bit' => array
  503. (
  504. 1 => 1,//1为对应的值,100为保存到数据库中的值
  505. 2 => 10,
  506. //4 => 100,
  507. ),
  508. */
  509. );
  510. $config['struct']['status'] = array
  511. (
  512. 'type' => 'tinyint-1',
  513. 'name' => '状态',
  514. 'default' => '1',
  515. 'desc' => '请选择状态',
  516. 'match' => 'is_numeric',
  517. 'option' => $option,
  518. //'update' => 'radio',
  519. //'list' => true,
  520. //'edit' => true,
  521. /*
  522. //启用位运算,仅支持与操作,数据保存时,将从0开始加起,一般用于站点之类的保存,慎用,测试需将radio改成checkbox
  523. 'bit' => array
  524. (
  525. 1 => 1,//1为对应的值,100为保存到数据库中的值
  526. 2 => 10,
  527. //4 => 100,
  528. ),
  529. */
  530. );
  531. $config['struct']['cdate'] = array
  532. (
  533. 'type' => 'int-11',
  534. 'name' => '录入时间',
  535. 'match' => array('is_numeric', time()),
  536. 'desc' => '',
  537. # 只有insert时才生效
  538. 'insert' => true,
  539. # 加入搜索时间区间段
  540. 'search' => 'date',
  541. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  542. );
  543. return $config;