11 define(
"TITLE_SIZE_DASHBOARD", _(
"Folder and upload dashboard"));
26 $this->Name =
"size_dashboard";
27 $this->Title = TITLE_SIZE_DASHBOARD;
28 $this->MenuList =
"Admin::Dashboards::Folder/Upload Proportions";
29 $this->Dependency = array();
31 parent::__construct();
32 $this->
dbManager = $GLOBALS[
'container']->get(
'db.manager');
33 $this->uploadDao = $GLOBALS[
'container']->get(
'dao.upload');
43 $sql =
'INNER JOIN upload ON upload.pfile_fk=pfile.pfile_pk '.
44 'INNER JOIN foldercontents ON upload.upload_pk=foldercontents.child_id '.
45 'INNER JOIN upload_clearing ON upload.upload_pk=upload_clearing.upload_fk '.
46 'WHERE parent_fk=$1;';
47 $statementName = __METHOD__.
"GetFolderSize";
48 $folderSizesql =
'SELECT SUM(pfile_size) FROM pfile '.$sql;
49 $row = $this->
dbManager->getSingleRow($folderSizesql,array($folderId),$statementName);
52 $statementName = __METHOD__.
"GetEachUploadSize";
53 $dispSql =
"SELECT upload_pk, upload_filename, pfile_size, " .
54 "to_char(upload_ts, 'YYYY-MM-DD HH24:MI:SS') AS upload_ts, status_fk FROM pfile " . $sql;
55 $results = $this->
dbManager->getRows($dispSql, [$folderId], $statementName);
57 foreach ($results as $result) {
58 $clearingDuration = $this->uploadDao->getClearingDuration($result[
"upload_pk"]);
59 $var .=
"<tr><td align='left'>" . $result[
'upload_pk'] .
60 "</td><td align='left'>" . $result[
'upload_filename'] .
61 "</td><td align='left' data-order='{$result['pfile_size']}'>" .
63 "</td><td align='left' data-order='{$clearingDuration[1]}'>$clearingDuration[0]</td>
64 <td align='left'>{$result['upload_ts']}</td><td align='left'>" . $this->
ConvertStatusToString($result[
'status_fk']) .
67 return [$var, $folderSize];
78 "SELECT upload_pk, upload_filename, pfile_size, to_char(upload_ts, 'YYYY-MM-DD HH24:MI:SS') AS upload_ts " .
80 "INNER JOIN upload ON upload.pfile_fk=pfile.pfile_pk " .
81 "INNER JOIN foldercontents ON upload.upload_pk=foldercontents.child_id " .
82 "INNER JOIN upload_clearing ON upload.upload_pk=upload_clearing.upload_fk ".
85 __METHOD__.
"ExportData"
89 foreach ($results as $row) {
90 $clearingDuration = $this->uploadDao->getClearingDuration($row[
"upload_pk"]);
92 'uploadid' => $row[
'upload_pk'],
93 'name' => $row[
'upload_filename'],
94 'size' => $row[
'pfile_size'],
95 'duration' => $clearingDuration[1],
96 'date' => $row[
'upload_ts'],
117 $statusString =
'Open';
119 $statusString =
'In progress';
120 }
else if ($status == 3) {
121 $statusString =
'Closed';
122 }
else if ($status == 4) {
123 $statusString =
'Rejected';
126 return $statusString;
135 header(
'Content-Type: text/csv');
136 header(
'Content-Disposition: attachment; filename="folder_export.csv"');
138 $output = fopen(
'php://output',
'w');
139 fputcsv($output, [
'Upload id',
'Upload name',
'Size (bytes)',
'Clearing duration (seconds)',
'Upload date',
'Upload status']);
141 foreach ($data as $row) {
161 header(
'Content-Type: application/json');
162 header(
'Content-Disposition: attachment; filename="folder_export.json"');
163 echo json_encode($data, JSON_PRETTY_PRINT);
173 if (!empty($exportFormat) && in_array($exportFormat, [
'csv',
'json'])) {
179 if (empty($folderId)) {
185 $formVars[
"onchangeURI"] =
Traceback_uri() .
"?mod=" . $this->Name .
"&selectfolderid=";
187 $formVars[
"tableVars"] = $tableVars;
188 $formVars[
"wholeFolderSize"] = $wholeFolderSize;
189 $formVars[
"currentFolderId"] = $folderId;
191 return $this->
renderString(
"admin-folder-size-form.html.twig", $formVars);
This is the Plugin class. All plugins should:
renderString($templateName, $vars=null)
getFolderAndUploadSize($folderId)
Given a folder's ID function will get size of the folder and uploads under it.
__construct()
base constructor. Most plugins will just use this
Output()
Generate the text for this plugin.
outputJSON($data)
Outputs data in JSON format.
ConvertStatusToString($status)
convert numaric status into string.
generateExportData($folderId, $format)
Generate export data in CSV or JSON format for a given folder ID.
outputCSV($data)
Outputs data in CSV format.
FolderListOption($ParentFolder, $Depth, $IncludeTop=1, $SelectId=-1, $linkParent=false, $OldParent=0)
Create the folder tree, using OPTION tags.
FolderGetTop()
DEPRECATED! Find the top-of-tree folder_pk for the current user.
Traceback_uri()
Get the URI without query to this location.
GetParm($parameterName, $parameterType)
This function will retrieve the variables and check data types.
HumanSize( $bytes)
Translate a byte number to a proper type, xxx bytes to xxx B/KB/MB/GB/TB/PB.
#define PLUGIN_DB_WRITE
Plugin requires write permission on DB.
fo_dbManager * dbManager
fo_dbManager object