mirror of
https://github.com/vrana/adminer.git
synced 2025-12-23 00:40:29 +01:00
40 lines
1008 B
PHP
40 lines
1008 B
PHP
<?php
|
|
|
|
/** Log all queries to SQL file
|
|
* @link https://www.adminer.org/plugins/#use
|
|
* @author Jakub Vrana, https://www.vrana.cz/
|
|
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
|
|
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
|
|
*/
|
|
class AdminerSqlLog {
|
|
protected $filename;
|
|
|
|
/**
|
|
* @param string $filename defaults to "$database.sql"
|
|
*/
|
|
function __construct(string $filename = "") {
|
|
$this->filename = $filename;
|
|
}
|
|
|
|
function messageQuery($query, $time, $failed = false) {
|
|
$this->log($query);
|
|
}
|
|
|
|
function sqlCommandQuery($query) {
|
|
$this->log($query);
|
|
}
|
|
|
|
private function log($query) {
|
|
if ($this->filename == "") {
|
|
$adminer = Adminer\adminer();
|
|
$this->filename = $adminer->database() . ".sql"; // no database goes to ".sql" to avoid collisions
|
|
}
|
|
$fp = fopen($this->filename, "a");
|
|
flock($fp, LOCK_EX);
|
|
fwrite($fp, $query);
|
|
fwrite($fp, "\n\n");
|
|
flock($fp, LOCK_UN);
|
|
fclose($fp);
|
|
}
|
|
}
|