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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
<?php
/**
* MvvFileFileref.php
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* @author Timo Hartge <hartge@data-quest.de>
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
* @since 4.5
*
* @property array $id alias for pk
* @property string $mvvfile_id database column
* @property string $file_language database column
* @property string $name database column
* @property string $fileref_id database column
* @property string|null $author_id database column
* @property string|null $editor_id database column
* @property int $mkdate database column
* @property int $chdate database column
* @property MvvFile $mvv_file belongs_to MvvFile
* @property FileRef $file_ref belongs_to FileRef
* @property-read mixed $filetype additional field
* @property-read mixed $filename additional field
*/
class MvvFileFileref extends ModuleManagementModel
{
/**
* @param array $config
*/
protected static function configure($config = array())
{
$config['db_table'] = 'mvv_files_filerefs';
$config['belongs_to']['mvv_file'] = array(
'class_name' => MvvFile::class,
'foreign_key' => 'mvvfile_id',
'assoc_func' => 'findCached',
);
$config['belongs_to']['file_ref'] = array(
'class_name' => FileRef::class,
'foreign_key' => 'fileref_id',
);
$config['additional_fields']['filetype']['get'] = 'getFiletype';
$config['additional_fields']['filename']['get'] = 'getFilename';
parent::configure($config);
}
/**
* Returns the filename of the document based on its fileref.
*
* @return string Name of the file.
*/
public function getFilename(): string
{
if ($this->file_ref) {
$filetype = $this->file_ref->getFileType();
return $filetype->getFilename();
}
throw new Exception("Could not load file ref for file");
}
/**
* Returns the filetype of the document based on its mimetype.
*
* @return bool|string Returns false on failure, otherwise the name of the filetype.
*/
public function getFiletype()
{
$application_category = [
'PDF' => ['pdf'],
'Powerpoint' => ['powerpoint','presentation'],
'Excel' => ['excel', 'spreadsheet', 'csv'],
'Word' => ['word', 'wordprocessingml', 'opendocument.text', 'rtf'],
'Archiv' => ['zip', 'rar', 'arj', '7z'],
];
if (!$this->file_ref) {
return '';
}
$filetype = $this->file_ref->getFileType();
if ($filetype instanceof URLFile) {
return _('Link');
} else {
$mime_type = $filetype->getMimeType();
if (!$mime_type) {
return _('sonstiges');
} else {
list($category, $type) = explode('/', $mime_type, 2);
if ($category == 'application') {
foreach ($application_category as $name => $type_name) {
if (preg_match('/' . implode('|', $type_name) . '/i', $type)) {
return $name;
}
}
} elseif ($category == 'image') {
return _('Bild');
} else {
return $category;
}
}
}
return false;
}
}
|