123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace crmeb\services;
- use think\facade\Db;
- class MysqlBackupService
- {
- /**
- * 文件指针
- * @var resource
- */
- private $fp;
- /**
- * 备份文件信息 part - 卷号,name - 文件名
- * @var array
- */
- private $file;
- /**
- * 当前打开文件大小
- * @var integer
- */
- private $size = 0;
- /**
- * 数据库配置
- * @var integer
- */
- private $dbconfig = array();
- /**
- * 备份配置
- * @var integer
- */
- private $config = array(
- 'path' => './Data/',
- //数据库备份路径
- 'part' => 20971520,
- //数据库备份卷大小
- 'compress' => 0,
- //数据库备份文件是否启用压缩 0不压缩 1 压缩
- 'level' => 9,
- );
- /**
- * 数据库备份构造方法
- *
- * @param array $file 备份或还原的文件信息
- * @param array $config 备份配置信息
- */
- public function __construct($config = [])
- {
- $this->config['path'] = app()->getRootPath() . 'backup/';
- $this->config = array_merge($this->config, $config);
- //初始化文件名
- $this->setFile();
- //初始化数据库连接参数
- $this->setDbConn();
- //检查文件是否可写
- if (!$this->checkPath($this->config['path'])) {
- throw new \Exception("The current directory is not writable");
- }
- }
- /**
- * 设置脚本运行超时时间
- * 0表示不限制,支持连贯操作
- */
- public function setTimeout($time = null)
- {
- if (!is_null($time)) {
- set_time_limit($time) || ini_set("max_execution_time", $time);
- }
- return $this;
- }
- /**
- * 设置数据库连接必备参数
- *
- * @param array $dbconfig 数据库连接配置信息
- * @return $this
- */
- public function setDbConn($dbconfig = [])
- {
- if (empty($dbconfig)) {
- $this->dbconfig = config('database.connections.' . config('database.default'));
- //$this->dbconfig = Config::get('database');
- } else {
- $this->dbconfig = $dbconfig;
- }
- return $this;
- }
- /**
- * 设置备份文件名
- *
- * @param null $file
- * @return $this
- */
- public function setFile($file = null)
- {
- if (is_null($file)) {
- $this->file = ['name' => date('Ymd-His'), 'part' => 1];
- } else {
- if (!array_key_exists("name", $file) && !array_key_exists("part", $file)) {
- $this->file = $file['1'];
- } else {
- $this->file = $file;
- }
- }
- return $this;
- }
- //数据类连接
- public static function connect()
- {
- return Db::connect();
- }
- /**
- * 数据库表列表
- *
- * @param null $table
- * @param int $type
- * @return array
- * @throws \think\db\exception\BindParamException
- * @throws \think\exception\PDOException
- */
- public function dataList(?string $table = null, int $type = 1)
- {
- $key = 'mysql_backup_' . $table . '_' . $type;
- $data = CacheService::get($key);
- if (!$data) {
- $db = self::connect();
- if (is_null($table)) {
- $list = $db->query("SHOW TABLE STATUS");
- } else {
- if ($type) {
- $list = $db->query("SHOW FULL COLUMNS FROM {$table}");
- } else {
- $list = $db->query("show columns from {$table}");
- }
- }
- $data = array_map('array_change_key_case', $list);
- CacheService::set($key, $data, 7200);
- }
- return $data;
- }
- /**
- * 数据库备份文件列表
- *
- * @return array
- */
- public function fileList()
- {
- $list = [];
- if (!is_dir($this->config['path'])) {
- mkdir($this->config['path'], 0755, true);
- return $list;
- }
- $path = realpath($this->config['path']);
- $flag = \FilesystemIterator::KEY_AS_FILENAME;
- $glob = new \FilesystemIterator($path, $flag);
- foreach ($glob as $name => $file) {
- if (preg_match('/^\\d{8,8}-\\d{6,6}-\\d+\\.sql(?:\\.gz)?$/', $name)) {
- $info['filename'] = $name;
- $name = sscanf($name, '%4s%2s%2s-%2s%2s%2s-%d');
- $date = $name[0] . '-' . $name[1] . '-' . $name[2];
- $time = $name[3] . ':' . $name[4] . ':' . $name[5];
- $part = $name[6];
- if (isset($list[$date . $time])) {
- $info = $list[$date . $time];
- $info['part'] = max($info['part'], $part);
- $info['size'] = $info['size'] + $file->getSize();
- } else {
- $info['part'] = $part;
- $info['size'] = $file->getSize();
- }
- $extension = strtoupper(pathinfo($file->getFilename(), PATHINFO_EXTENSION));
- $info['compress'] = $extension === 'SQL' ? '-' : $extension;
- $info['time'] = strtotime($date . $time);
- $list[$date . $time] = $info;
- }
- }
- return $list;
- }
- /**
- * @param string $type
- * @param int $time
- * @return array|false|string
- * @throws \Exception
- */
- public function getFile($type = '', $time = 0)
- {
- //
- if (!is_numeric($time)) {
- throw new \Exception("{$time} Illegal data type");
- }
- switch ($type) {
- case 'time':
- $name = date('Ymd-His', $time) . '-*.sql*';
- $path = realpath($this->config['path']) . DIRECTORY_SEPARATOR . $name;
- return glob($path);
- break;
- case 'timeverif':
- $name = date('Ymd-His', $time) . '-*.sql*';
- $path = realpath($this->config['path']) . DIRECTORY_SEPARATOR . $name;
- $files = glob($path);
- $list = array();
- foreach ($files as $name) {
- $basename = basename($name);
- $match = sscanf($basename, '%4s%2s%2s-%2s%2s%2s-%d');
- $gz = preg_match('/^\\d{8,8}-\\d{6,6}-\\d+\\.sql.gz$/', $basename);
- $list[$match[6]] = array($match[6], $name, $gz);
- }
- $last = end($list);
- if (count($list) === $last[0]) {
- return $list;
- } else {
- throw new \Exception("File {$files['0']} may be damaged, please check again");
- }
- break;
- case 'pathname':
- return "{$this->config['path']}{$this->file['name']}-{$this->file['part']}.sql";
- break;
- case 'filename':
- return "{$this->file['name']}-{$this->file['part']}.sql";
- break;
- case 'filepath':
- return $this->config['path'];
- break;
- default:
- $arr = array('pathname' => "{$this->config['path']}{$this->file['name']}-{$this->file['part']}.sql", 'filename' => "{$this->file['name']}-{$this->file['part']}.sql", 'filepath' => $this->config['path'], 'file' => $this->file);
- return $arr;
- }
- }
- /**
- * 删除备份文件
- * @param $time
- * @return mixed
- * @throws \Exception
- */
- public function delFile($time)
- {
- if ($time) {
- $file = $this->getFile('time', $time);
- array_map("unlink", $this->getFile('time', $time));
- if (count($this->getFile('time', $time))) {
- throw new \Exception("File {$time} deleted failed");
- } else {
- return $time;
- }
- } else {
- throw new \Exception("{$time} Time parameter is incorrect");
- }
- }
- /**
- * 下载备份
- *
- * @param $time
- * @param int $part
- * @throws \Exception
- */
- public function downloadFile($time, int $part = 0, bool $isFile = false)
- {
- $file = $this->getFile('time', $time);
- $fileName = $file[$part];
- if (file_exists($fileName)) {
- if ($isFile) {
- $key = password_hash(time() . $fileName, PASSWORD_DEFAULT);
- CacheService::set($key, ['path' => $fileName, 'fileName' => substr(strstr($fileName, 'backup'), 7)], 300);
- return $key;
- }
- ob_end_clean();
- header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
- header('Content-Description: File Transfer');
- header('Access-Control-Allow-Origin: ' . request()->domain());
- header('Content-Type: application/octet-stream');
- header('Content-Length: ' . filesize($fileName));
- header('Content-Disposition: attachment; filename=' . basename($fileName));
- return readfile($fileName);
- } else {
- throw new \Exception("{$time} File is abnormal");
- }
- }
- public function import($start)
- {
- //还原数据
- $db = self::connect();
- if ($this->config['compress']) {
- $gz = gzopen($this->file[1], 'r');
- $size = 0;
- } else {
- $size = filesize($this->file[1]);
- $gz = fopen($this->file[1], 'r');
- }
- $sql = '';
- if ($start) {
- $this->config['compress'] ? gzseek($gz, $start) : fseek($gz, $start);
- }
- for ($i = 0; $i < 1000; $i++) {
- $sql .= $this->config['compress'] ? gzgets($gz) : fgets($gz);
- if (preg_match('/.*;$/', trim($sql))) {
- if (false !== $db->execute($sql)) {
- $start += strlen($sql);
- } else {
- return false;
- }
- $sql = '';
- } elseif ($this->config['compress'] ? gzeof($gz) : feof($gz)) {
- return 0;
- }
- }
- return array($start, $size);
- }
- /**
- * 写入初始数据
- *
- * @return boolean true - 写入成功,false - 写入失败
- */
- public function Backup_Init()
- {
- $sql = "-- -----------------------------\n";
- $sql .= "-- Think MySQL Data Transfer \n";
- $sql .= "-- \n";
- $sql .= "-- Host : " . $this->dbconfig['hostname'] . "\n";
- $sql .= "-- Port : " . $this->dbconfig['hostport'] . "\n";
- $sql .= "-- Database : " . $this->dbconfig['database'] . "\n";
- $sql .= "-- \n";
- $sql .= "-- Part : #{$this->file['part']}\n";
- $sql .= "-- Date : " . date("Y-m-d H:i:s") . "\n";
- $sql .= "-- -----------------------------\n\n";
- $sql .= "SET FOREIGN_KEY_CHECKS = 0;\n\n";
- return $this->write($sql);
- }
- /**
- * 备份表结构
- *
- * @param string $table
- * @param int $start
- * @return bool|int
- * @throws \think\db\exception\BindParamException
- * @throws \think\exception\PDOException
- */
- public function backup(string $table, int $start, $sql = '')
- {
- $db = self::connect();
- // 备份表结构
- if (0 == $start) {
- $result = $db->query("SHOW CREATE TABLE `{$table}`");
- $sql .= "\n";
- $sql .= "-- -----------------------------\n";
- $sql .= "-- Table structure for `{$table}`\n";
- $sql .= "-- -----------------------------\n";
- $sql .= "DROP TABLE IF EXISTS `{$table}`;\n";
- $sql .= trim($result[0]['Create Table']) . ";\n\n";
- }
- //数据总数
- $result = $db->query("SELECT COUNT(*) AS count FROM `{$table}`");
- $count = $result['0']['count'];
- //备份表数据
- if ($count) {
- //写入数据注释
- if (0 == $start) {
- $sql .= "-- -----------------------------\n";
- $sql .= "-- Records of `{$table}`\n";
- $sql .= "-- -----------------------------\n";
- }
- //备份数据记录
- $result = $db->query("SELECT * FROM `{$table}` LIMIT :MIN, 1000", ['MIN' => intval($start)]);
- foreach ($result as $row) {
- $row = array_map('addslashes', $row);
- $sql .= "INSERT INTO `{$table}` VALUES ('" . str_replace(array("\r", "\n"), array('\\r', '\\n'), implode("', '", $row)) . "');\n";
- }
- if (false === $this->write($sql)) {
- return false;
- }
- //还有更多数据
- if ($count > $start + 1000) {
- //return array($start + 1000, $count);
- return $this->backup($table, $start + 1000);
- }
- }
- //备份下一表
- return 0;
- }
- /**
- * 优化表
- *
- * @param array|string $tables
- * @throws \think\db\exception\BindParamException
- * @throws \think\exception\PDOException
- */
- public function optimize($tables)
- {
- if ($tables) {
- $db = self::connect();
- if (is_array($tables)) {
- $tables = implode('`,`', $tables);
- $list = $db->query("OPTIMIZE TABLE `{$tables}`");
- } else {
- $list = $db->query("OPTIMIZE TABLE {$tables}");
- }
- if (!$list) {
- throw new \Exception("data sheet'{$tables}'Repair mistakes please try again!");
- }
- return $list;
- } else {
- throw new \Exception("Please specify the table to be repaired!");
- }
- }
- /**
- * 修复表
- *
- * @param string|null $tables
- * @return array
- * @throws \think\db\exception\BindParamException
- * @throws \think\exception\PDOException
- */
- public function repair(?string $tables = null)
- {
- if ($tables) {
- $db = self::connect();
- if (is_array($tables)) {
- $tables = implode('`,`', $tables);
- $list = $db->query("REPAIR TABLE `{$tables}`");
- } else {
- $list = $db->query("REPAIR TABLE {$tables}");
- }
- if ($list) {
- return $list;
- } else {
- throw new \Exception("data sheet'{$tables}'Repair mistakes please try again!");
- }
- } else {
- throw new \Exception("Please specify the table to be repaired!");
- }
- }
- /**
- * 写入SQL语句
- *
- * @param string $sql 要写入的SQL语句
- * @return boolean true - 写入成功,false - 写入失败!
- */
- private function write(string $sql)
- {
- $size = strlen($sql);
- //由于压缩原因,无法计算出压缩后的长度,这里假设压缩率为50%,
- //一般情况压缩率都会高于50%;
- $size = $this->config['compress'] ? $size / 2 : $size;
- $this->open($size);
- return $this->config['compress'] ? @gzwrite($this->fp, $sql) : @fwrite($this->fp, $sql);
- }
- /**
- * 打开一个卷,用于写入数据
- *
- * @param integer $size 写入数据的大小
- */
- private function open(int $size)
- {
- if ($this->fp) {
- $this->size += $size;
- if ($this->size > $this->config['part']) {
- $this->config['compress'] ? @gzclose($this->fp) : @fclose($this->fp);
- $this->fp = null;
- $this->file['part']++;
- session('backup_file', $this->file);
- $this->Backup_Init();
- }
- } else {
- $backuppath = $this->config['path'];
- $filename = "{$backuppath}{$this->file['name']}-{$this->file['part']}.sql";
- if ($this->config['compress']) {
- $filename = "{$filename}.gz";
- $this->fp = @gzopen($filename, "a{$this->config['level']}");
- } else {
- $this->fp = @fopen($filename, 'a');
- }
- $this->size = filesize($filename) + $size;
- }
- }
- /**
- * 检查目录是否可写
- *
- * @param string $path
- * @return bool
- */
- protected function checkPath(string $path)
- {
- if (is_dir($path)) {
- return true;
- }
- if (mkdir($path, 0755, true)) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * 析构方法,用于关闭文件资源
- */
- public function __destruct()
- {
- $this->config['compress'] ? @gzclose($this->fp) : @fclose($this->fp);
- }
- }
|