View source
<?php
namespace Drupal\auditfiles;
use Drupal\Core\StringTranslation\TranslationInterface;
use Drupal\Core\Messenger\MessengerTrait;
use Drupal\Core\Config\ConfigFactory;
use Drupal\Core\Database\Connection;
use Drupal\Core\Datetime\DateFormatter;
use Drupal\Core\File\FileSystemInterface;
class ServiceAuditFilesNotOnServer {
use MessengerTrait;
protected $stringTranslation;
protected $configFactory;
protected $connection;
protected $dateFormatter;
protected $fileSystem;
public function __construct(TranslationInterface $translation, ConfigFactory $config_factory, Connection $connection, DateFormatter $date_formatter, FileSystemInterface $file_system) {
$this->stringTranslation = $translation;
$this->configFactory = $config_factory;
$this->connection = $connection;
$this->dateFormatter = $date_formatter;
$this->fileSystem = $file_system;
}
public function auditfilesNotOnServerGetFileList() {
$config = $this->configFactory
->get('auditfiles.settings');
$file_ids = [];
$maximum_records = $config
->get('auditfiles_report_options_maximum_records') ? $config
->get('auditfiles_report_options_maximum_records') : 250;
$connection = $this->connection;
$query = $connection
->select('file_managed', 'fm');
$query
->orderBy('changed', 'DESC');
$query
->range(0, $maximum_records);
$query
->fields('fm', [
'fid',
'uri',
]);
$results = $query
->execute()
->fetchAll();
foreach ($results as $result) {
$target = $this->fileSystem
->realpath($result->uri);
if (!file_exists($target)) {
$file_ids[] = $result->fid;
}
}
return $file_ids;
}
public function auditfilesNotOnServerGetFileData($file_id, $date_format) {
$connection = $this->connection;
$query = $connection
->select('file_managed', 'fm');
$query
->condition('fm.fid', $file_id);
$query
->fields('fm', [
'fid',
'uid',
'filename',
'uri',
'filemime',
'filesize',
'created',
'status',
]);
$results = $query
->execute()
->fetchAll();
$file = $results[0];
return [
'fid' => $file->fid,
'uid' => $file->uid,
'filename' => $file->filename,
'uri' => $file->uri,
'path' => $this->fileSystem
->realpath($file->uri),
'filemime' => $file->filemime,
'filesize' => number_format($file->filesize),
'datetime' => $this->dateFormatter
->format($file->created, $date_format),
'status' => ($file->status = 1) ? 'Permanent' : 'Temporary',
];
}
public function auditfilesNotOnServerGetHeader() {
return [
'fid' => [
'data' => $this->stringTranslation
->translate('File ID'),
],
'uid' => [
'data' => $this->stringTranslation
->translate('User ID'),
],
'filename' => [
'data' => $this->stringTranslation
->translate('Name'),
],
'uri' => [
'data' => $this->stringTranslation
->translate('URI'),
],
'path' => [
'data' => $this->stringTranslation
->translate('Path'),
],
'filemime' => [
'data' => $this->stringTranslation
->translate('MIME'),
],
'filesize' => [
'data' => $this->stringTranslation
->translate('Size'),
],
'datetime' => [
'data' => $this->stringTranslation
->translate('When added'),
],
'status' => [
'data' => $this->stringTranslation
->translate('Status'),
],
];
}
public function auditfilesNotOnServerBatchDeleteCreateBatch(array $fileids) {
$batch['error_message'] = $this->stringTranslation
->translate('One or more errors were encountered processing the files.');
$batch['finished'] = '\\Drupal\\auditfiles\\Batch\\AuditFilesBatchProcess::finishBatch';
$batch['progress_message'] = $this->stringTranslation
->translate('Completed @current of @total operations.');
$batch['title'] = $this->stringTranslation
->translate('Deleting files from the database');
$operations = [];
foreach ($fileids as $file_id) {
if ($file_id != 0) {
$operations[] = [
'\\Drupal\\auditfiles\\Batch\\AuditFilesNotOnServerBatchProcess::auditfilesNotOnServerBatchDeleteProcessBatch',
[
$file_id,
],
];
}
}
$batch['operations'] = $operations;
return $batch;
}
public function auditfilesNotOnServerBatchDeleteProcessFile($file_id) {
$connection = $this->connection;
$num_rows = $connection
->delete('file_managed')
->condition('fid', $file_id)
->execute();
if (empty($num_rows)) {
$this
->messenger()
->addWarning($this->stringTranslation
->translate('There was a problem deleting the record with file ID %fid from the file_managed table. Check the logs for more information.', [
'%fid' => $file_id,
]));
}
else {
$this
->messenger()
->addStatus($this->stringTranslation
->translate('Sucessfully deleted File ID : %fid from the file_managed table.', [
'%fid' => $file_id,
]));
}
}
}