class ServiceAuditFilesManagedNotUsed in Audit Files 8
Same name and namespace in other branches
- 8.3 src/ServiceAuditFilesManagedNotUsed.php \Drupal\auditfiles\ServiceAuditFilesManagedNotUsed
- 8.2 src/ServiceAuditFilesManagedNotUsed.php \Drupal\auditfiles\ServiceAuditFilesManagedNotUsed
- 4.x src/ServiceAuditFilesManagedNotUsed.php \Drupal\auditfiles\ServiceAuditFilesManagedNotUsed
Hierarchy
- class \Drupal\auditfiles\ServiceAuditFilesManagedNotUsed
Expanded class hierarchy of ServiceAuditFilesManagedNotUsed
1 string reference to 'ServiceAuditFilesManagedNotUsed'
1 service uses ServiceAuditFilesManagedNotUsed
File
- src/
ServiceAuditFilesManagedNotUsed.php, line 11 - providing the service that used in 'managed not used' functionality.
Namespace
Drupal\auditfilesView source
class ServiceAuditFilesManagedNotUsed {
/**
* Retrieves the file IDs to operate on.
*
* @return array
* The file IDs.
*/
function _auditfiles_managed_not_used_get_file_list() {
$config = \Drupal::config('auditfiles_config.settings');
$connection = Database::getConnection();
$query = 'SELECT fid FROM {file_managed} WHERE fid NOT IN (SELECT fid FROM {file_usage})';
$maximum_records = $config
->get('auditfiles_report_options_maximum_records') ? $config
->get('auditfiles_report_options_maximum_records') : 250;
if ($maximum_records > 0) {
$query .= ' LIMIT ' . $maximum_records;
}
return $connection
->query($query)
->fetchCol();
}
/**
* Retrieves information about an individual file from the database.
*
* @param int $file_id
* The ID of the file to prepare for display.
*
* @return array
* The row for the table on the report, with the file's information formatted
* for display.
*/
function _auditfiles_managed_not_used_get_file_data($file_id, $date_format) {
$connection = Database::getConnection();
$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' => drupal_realpath($file->uri),
'filemime' => $file->filemime,
'filesize' => number_format($file->filesize),
'datetime' => \Drupal::service('date.formatter')
->format($file->created, $date_format),
'status' => ($file->status = 1) ? 'Permanent' : 'Temporary',
];
}
/**
* Returns the header to use for the display table.
*
* @return array
* The header to use.
*/
function _auditfiles_managed_not_used_get_header() {
return [
'fid' => [
'data' => t('File ID'),
],
'uid' => [
'data' => t('User ID'),
],
'filename' => [
'data' => t('Name'),
],
'uri' => [
'data' => t('URI'),
],
'path' => [
'data' => t('Path'),
],
'filemime' => [
'data' => t('MIME'),
],
'filesize' => [
'data' => t('Size'),
],
'datetime' => [
'data' => t('When added'),
],
'status' => [
'data' => t('Status'),
],
];
}
/**
* Batch process
*/
function _auditfiles_managed_not_used_batch_delete_create_batch(array $fileids) {
$batch['error_message'] = t('One or more errors were encountered processing the files.');
$batch['finished'] = '\\Drupal\\auditfiles\\AuditFilesBatchProcess::_auditfiles_managed_not_used_batch_finish_batch';
$batch['progress_message'] = t('Completed @current of @total operations.');
$batch['title'] = t('Deleting files from the file_managed table');
$operations = $file_ids = [];
foreach ($fileids as $file_id) {
if ($file_id != 0) {
$file_ids[] = $file_id;
}
}
foreach ($file_ids as $file_id) {
$operations[] = [
'\\Drupal\\auditfiles\\AuditFilesBatchProcess::_auditfiles_managed_not_used_batch_delete_process_batch',
[
$file_id,
],
];
}
$batch['operations'] = $operations;
return $batch;
}
/**
* Deletes the specified file from the file_managed table.
*
* @param int $file_id
* The ID of the file to delete from the database.
*/
function _auditfiles_managed_not_used_batch_delete_process_file($file_id) {
$connection = Database::getConnection();
$num_rows = $connection
->delete('file_managed')
->condition('fid', $file_id)
->execute();
if (empty($num_rows)) {
drupal_set_message(t('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,
]), 'warning');
}
else {
drupal_set_message(t('Sucessfully deleted File ID : %fid from the file_managed table.', [
'%fid' => $file_id,
]));
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ServiceAuditFilesManagedNotUsed:: |
function | Batch process | ||
ServiceAuditFilesManagedNotUsed:: |
function | Deletes the specified file from the file_managed table. | ||
ServiceAuditFilesManagedNotUsed:: |
function | Retrieves information about an individual file from the database. | ||
ServiceAuditFilesManagedNotUsed:: |
function | Retrieves the file IDs to operate on. | ||
ServiceAuditFilesManagedNotUsed:: |
function | Returns the header to use for the display table. |