View source
<?php
namespace Drupal\download_count\Plugin\Field\FieldFormatter;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Session\AccountProxyInterface;
use Drupal\Core\Theme\ThemeManagerInterface;
use Drupal\file\Plugin\Field\FieldFormatter\GenericFileFormatter;
use Drupal\Core\Database\Database;
use Drupal\Core\Link;
use Drupal\Core\Url;
use Drupal\Core\Template\Attribute;
use Drupal\Component\Utility\Html;
use Symfony\Component\DependencyInjection\ContainerInterface;
class FieldDownloadCount extends GenericFileFormatter {
private $currentUser;
private $themeManager;
public function __construct($plugin_id, array $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, AccountProxyInterface $current_user, ThemeManagerInterface $theme_manager) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
$this->currentUser = $current_user;
$this->themeManager = $theme_manager;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['label'], $configuration['view_mode'], $configuration['third_party_settings'], $container
->get('current_user'), $container
->get('theme.manager'));
}
public function viewElements(FieldItemListInterface $items, $langcode) {
$element = [];
$entity = $items
->getEntity();
$entity_type = $entity
->getEntityTypeId();
$access = $this->currentUser
->hasPermission('view download counts');
$download = 0;
foreach ($this
->getEntitiesToView($items, $langcode) as $delta => $file) {
$item = $file->_referringItem;
if ($access) {
$download = Database::getConnection()
->query('SELECT COUNT(fid) from {download_count} where fid = :fid AND type = :type AND id = :id', [
':fid' => $file
->id(),
':type' => $entity_type,
':id' => $entity
->id(),
])
->fetchField();
$file->download = (int) $download;
}
$link_url = file_create_url($file
->getFileUri());
$file_size = $file
->getSize();
$options = [
'attributes' => [
'type' => $file
->getMimeType() . '; length=' . $file
->getSize(),
],
];
if (empty($item->description)) {
$link_text = $file
->getFilename();
}
else {
$link_text = $item->description;
$options['attributes']['title'] = Html::escape($file
->getFilename());
}
$classes = [
'file',
'file--mime-' . strtr($file
->getMimeType(), [
'/' => '-',
'.' => '-',
]),
'file--' . file_icon_class($file
->getMimeType()),
];
$attributes = new Attribute([
'class' => $classes,
]);
$link = Link::fromTextAndUrl($link_text, Url::fromUri($link_url, $options))
->toString();
if (isset($file->download) && $file->download > 0 && $file->download !== NULL) {
$count = $this
->formatPlural($download, '1 download', '@count downloads');
}
else {
$count = $this
->t('0 downloads');
}
$theme = $this->themeManager
->getActiveTheme();
if (array_key_exists('socialbase', $theme
->getBaseThemeExtensions())) {
$basethemes = $theme
->getBaseThemeExtensions();
$path_to_socialbase = $basethemes['socialbase']
->getPath();
}
$mime_type = $file
->getMimeType();
$generic_mime_type = file_icon_class($mime_type);
if (isset($generic_mime_type)) {
switch ($generic_mime_type) {
case 'application-pdf':
$node_icon = 'pdf';
break;
case 'x-office-document':
$node_icon = 'document';
break;
case 'x-office-presentation':
$node_icon = 'presentation';
break;
case 'x-office-spreadsheet':
$node_icon = 'spreadsheet';
break;
case 'package-x-generic':
$node_icon = 'archive';
break;
case 'audio':
$node_icon = 'audio';
break;
case 'video':
$node_icon = 'video';
break;
case 'image':
$node_icon = 'image';
break;
default:
$node_icon = 'text';
}
}
$element[$delta] = [
'#theme' => !$access ? 'file_link' : 'download_count_file_field_formatter',
'#file' => $file,
'#link' => $link,
'#link_url' => $link_url,
'#link_text' => $link_text,
'#classes' => $attributes['class'],
'#count' => $count,
'#file_size' => format_size($file_size),
'#path_to_socialbase' => $path_to_socialbase,
'#node_icon' => $node_icon,
'#attached' => [
'library' => [
'classy/file',
],
],
'#cache' => [
'tags' => $file
->getCacheTags(),
],
];
if (isset($item->_attributes)) {
$element[$delta] += [
'#attributes' => [],
];
$element[$delta]['#attributes'] += $item->_attributes;
unset($item->_attributes);
}
}
return $element;
}
}