DataDictionary.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. namespace catchAdmin\system\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\base\CatchController;
  5. use catcher\CatchResponse;
  6. use catcher\exceptions\FailedException;
  7. use catcher\library\BackUpDatabase;
  8. use think\Collection;
  9. use think\facade\Db;
  10. use think\Paginator;
  11. class DataDictionary extends CatchController
  12. {
  13. /**
  14. *
  15. * @time 2019年12月13日
  16. * @param Request $request
  17. * @return \think\response\Json
  18. */
  19. public function tables(Request $request): \think\response\Json
  20. {
  21. $tables = Db::query('show table status');
  22. // 重组数据
  23. foreach ($tables as &$table) {
  24. $table = array_change_key_case($table);
  25. $table['index_length'] = $table['index_length'] > 1024 ? intval($table['index_length']/1024) .'MB' : $table['index_length'].'KB';
  26. $table['data_length'] = $table['data_length'] > 1024 ? intval($table['data_length']/1024) .'MB' : $table['data_length'].'KB';
  27. $table['create_time'] = date('Y-m-d', strtotime($table['create_time']));
  28. }
  29. // 搜素
  30. $tables = new Collection($tables);
  31. // 名称搜索
  32. if ($name = $request->get('tablename', null)) {
  33. $tables = $tables->where('name', 'like', $name)->values();
  34. }
  35. // 引擎搜索
  36. if ($engine = $request->get('engine', null)) {
  37. $tables = $tables->where('engine', $engine)->values();
  38. }
  39. $page = $request->get('page', 1) ? : 1;
  40. $limit = $request->get('limit', 10);
  41. return CatchResponse::paginate(Paginator::make(array_slice($tables->toArray(), ($page - 1) * $limit, $limit), $limit, $page, $tables->count(), false, []));
  42. }
  43. /**
  44. *
  45. * @time 2019年12月13日
  46. * @param $table
  47. * @return \think\response\Json
  48. * @throws \Exception
  49. */
  50. public function view($table): \think\response\Json
  51. {
  52. return CatchResponse::success(array_values(Db::getFields($table)));
  53. }
  54. /**
  55. *
  56. * @time 2019年12月13日
  57. * @return \think\response\Json
  58. */
  59. public function optimize(): \think\response\Json
  60. {
  61. $tables = \request()->post('data');
  62. foreach ($tables as $table) {
  63. Db::query(sprintf('optimize table %s', $table));
  64. }
  65. return CatchResponse::success([], '优化成功');
  66. }
  67. /**
  68. *
  69. * @time 2019年12月13日
  70. * @throws FailedException
  71. * @return \think\response\Json
  72. */
  73. public function backup(BackUpDatabase $backUpDatabase): \think\response\Json
  74. {
  75. try {
  76. $backUpDatabase->done(trim(implode(',', \request()->post('data')), ','));
  77. }catch (\Exception $e) {
  78. throw new FailedException($e->getMessage());
  79. }
  80. return CatchResponse::success([], '备份成功');
  81. }
  82. }