role.php 13 KB

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