role.php 12 KB

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