Subversion.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\company\command;
  15. use think\console\Command;
  16. use think\console\Input;
  17. use think\console\Output;
  18. use think\Db;
  19. /**
  20. * SVN 版本指令
  21. * Class Subversion
  22. * @package app\company\command
  23. */
  24. class Subversion extends Command
  25. {
  26. /**
  27. * 账号授权文件位置
  28. * @var string
  29. */
  30. protected $authzFile = 'php://output';
  31. /**
  32. * 账号管理文件位置
  33. * @var string
  34. */
  35. protected $passwdFile = 'php://output';
  36. /**
  37. * 配置指令配置
  38. */
  39. protected function configure()
  40. {
  41. $this->setName('xsubversion:config')->setDescription('从数据库的配置同步到SVN配置文件');
  42. }
  43. /**
  44. * @param Input $input
  45. * @param Output $output
  46. * @return int|void|null
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @throws \think\exception\DbException
  50. */
  51. protected function execute(Input $input, Output $output)
  52. {
  53. $paths = ['/' => [0]];
  54. $where = ['status' => '1', 'is_deleted' => '0'];
  55. // 取得可用的用户账号
  56. $users = Db::name('CompanyUser')->field('svn_username,svn_password,svn_authorize')->where($where)->select();
  57. $authids = array_unique(explode(',', join(',', array_column($users, 'svn_authorize'))));
  58. // 取得可用的权限配置
  59. $userAuths = Db::name('CompanyUserAuth')->field('id,path')->where($where)->whereIn('id', $authids)->order('sort desc,id desc')->select();
  60. foreach ($userAuths as $item) foreach (explode("\n", preg_replace('/\s+/i', "\n", trim($item['path']))) as $path) {
  61. $paths[$path][] = $item['id'];
  62. }
  63. $this->writeAuth($users, $paths);
  64. }
  65. /**
  66. * 写入 SVN 配置文件
  67. * @param array $users
  68. * @param array $paths
  69. */
  70. protected function writeAuth($users, $paths)
  71. {
  72. $output = [];
  73. // Passwd 用户账号处理
  74. foreach ($users as $user) $output[] = "{$user['svn_username']}={$user['svn_password']}";
  75. file_put_contents($this->passwdFile, join(PHP_EOL, $output));
  76. // Authz 授权配置处理
  77. $groups = ['_0' => []];
  78. foreach ($users as $user) {
  79. $ids = array_unique(explode(',', $user['svn_authorize']));
  80. foreach ($ids as $id) $groups["_{$id}"][] = $user['svn_username'];
  81. }
  82. $output = [];
  83. $output[] = '[groups]';
  84. foreach ($groups as $key => $group) $output[] = "group{$key}=" . join(',', $group);
  85. $output[] = '';
  86. foreach ($paths as $path => $ids) {
  87. $output[] = "[{$path}]";
  88. $output[] = "* =";
  89. $output[] = '@group_0 = rw';
  90. foreach ($ids as $id) if ($id > 0) $output[] = "@group_{$id} = rw";
  91. $output[] = '';
  92. }
  93. file_put_contents($this->authzFile, join(PHP_EOL, $output));
  94. }
  95. }