1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<?php
/**
* @file
* Pathauto integration for files.
*
* @ingroup pathauto
*/
/**
* Implements hook_path_alias_types().
*/
function file_entity_path_alias_types() {
$objects['file/'] = t('Files');
return $objects;
}
/**
* Implements hook_pathauto().
*/
function file_entity_pathauto($op) {
switch ($op) {
case 'settings':
$settings = array();
$settings['module'] = 'file';
$settings['token_type'] = 'file';
$settings['groupheader'] = t('File paths');
$settings['patterndescr'] = t('Default path pattern (applies to all file types with blank patterns below)');
$settings['patterndefault'] = 'files/[file:name]';
$settings['batch_update_callback'] = 'file_entity_pathauto_bulk_update_batch_process';
$settings['batch_file'] = drupal_get_path('module', 'file_entity') . '/file_entity.pathauto.inc';
foreach (file_type_get_enabled_types() as $file_type => $type) {
$settings['patternitems'][$file_type] = t('Pattern for all @file_type paths.', array('@file_type' => $type->label));
}
return (object) $settings;
default:
break;
}
}
/**
* Batch processing callback; Generate aliases for files.
*/
function file_entity_pathauto_bulk_update_batch_process(&$context) {
if (!isset($context['sandbox']['current'])) {
$context['sandbox']['count'] = 0;
$context['sandbox']['current'] = 0;
}
$query = db_select('file_managed', 'fm');
$query->leftJoin('url_alias', 'ua', "CONCAT('file/', fm.fid) = ua.source");
$query->addField('fm', 'fid');
$query->isNull('ua.source');
$query->condition('fm.fid', $context['sandbox']['current'], '>');
$query->orderBy('fm.fid');
$query->addTag('pathauto_bulk_update');
$query->addMetaData('entity', 'file');
// Get the total amount of items to process.
if (!isset($context['sandbox']['total'])) {
$context['sandbox']['total'] = $query->countQuery()->execute()->fetchField();
// If there are no files to update, the stop immediately.
if (!$context['sandbox']['total']) {
$context['finished'] = 1;
return;
}
}
$query->range(0, 25);
$fids = $query->execute()->fetchCol();
pathauto_file_update_alias_multiple($fids, 'bulkupdate');
$context['sandbox']['count'] += count($fids);
$context['sandbox']['current'] = max($fids);
$context['message'] = t('Updated alias for file @fid.', array('@fid' => end($fids)));
if ($context['sandbox']['count'] != $context['sandbox']['total']) {
$context['finished'] = $context['sandbox']['count'] / $context['sandbox']['total'];
}
}
|