1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/17361] Add method to track multiple files in a single query

PHPBB-17361
This commit is contained in:
Ruben Calvo
2025-01-18 23:08:52 +01:00
parent b33f17e7ce
commit 90bd9d006e
2 changed files with 76 additions and 36 deletions

View File

@@ -58,14 +58,33 @@ class file_tracker
*/
public function track_file(string $storage, string $path, int $size): void
{
$sql_ary = [
$file = [
'file_path' => $path,
'storage' => $storage,
'filesize' => $size,
];
$sql = 'INSERT INTO ' . $this->storage_table . $this->db->sql_build_array('INSERT', $sql_ary);
$this->db->sql_query($sql);
$this->track_files($storage, [$file]);
}
/**
* Track files in database
*
* @param string $storage Storage name
* @param array $files Array of files to track
*/
public function track_files(string $storage, array $files): void
{
$sql_ary = [];
foreach ($files as $file)
{
$sql_ary[] = [
'storage' => $storage,
'file_path' => $file['file_path'],
'filesize' => $file['filesize'],
];
}
$this->db->sql_multi_insert($this->storage_table, $sql_ary);
$this->cache->destroy('_storage_' . $storage . '_totalsize');
$this->cache->destroy('_storage_' . $storage . '_numfiles');