From: Nik Okuntseff Date: Thu, 28 Mar 2019 15:06:19 +0000 (+0000) Subject: More work in progress on attachment delete. X-Git-Tag: timetracker_1.19-1~145 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=cf018545bf61420782271261bdea7d2c3dd235a0;p=timetracker.git More work in progress on attachment delete. --- diff --git a/WEB-INF/lib/ttFileHelper.class.php b/WEB-INF/lib/ttFileHelper.class.php index 80c9fd31..d44fa566 100644 --- a/WEB-INF/lib/ttFileHelper.class.php +++ b/WEB-INF/lib/ttFileHelper.class.php @@ -151,7 +151,7 @@ class ttFileHelper { curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); - // Execute a post rewuest. + // Execute a post request. $result = curl_exec($ch); // Close connection. @@ -160,7 +160,10 @@ class ttFileHelper { // Delete uploaded file. unlink($_FILES['newfile']['tmp_name']); - if (!$result) return false; + if (!$result) { + $this->errors->add($i18n->get('error.file_storage')); + return false; + } $result_array = json_decode($result, true); $file_id = (int) $result_array['file_id']; @@ -191,6 +194,74 @@ class ttFileHelper { return (!is_a($affected, 'PEAR_Error')); } + // deleteFile - deletes a file from remote storage and its details from local database. + function deleteFile($fields) { + global $i18n; + global $user; + $mdb2 = getConnection(); + + $group_id = $user->getGroup(); + $org_id = $user->org_id; + + $curl_fields = array('site_id' => urlencode($this->site_id), + 'site_key' => urlencode($this->site_key), + 'org_id' => urlencode($org_id), + 'org_key' => urlencode($this->getOrgKey()), + 'group_id' => urlencode($group_id), + 'group_key' => urlencode($this->getGroupKey()), + 'user_id' => urlencode($fields['user_id']), // May be null. + 'user_key' => urlencode($fields['user_key']), // May be null. + 'file_id' => urlencode($fields['remote_id']), + 'file_key' => urlencode($fields['file_key']) + ); + + // url-ify the data for the POST. + foreach($curl_fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; } + $fields_string = rtrim($fields_string, '&'); + + // Open connection. + $ch = curl_init(); + + // Set the url, number of POST vars, POST data. + curl_setopt($ch, CURLOPT_URL, $this->putfile_uri); + curl_setopt($ch, CURLOPT_POST, count($fields)); + curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + + // Execute a post request. + $result = curl_exec($ch); + + // Close connection. + curl_close($ch); + + if (!$result) { + $this->errors->add($i18n->get('error.file_storage')); + return false; + } + + $result_array = json_decode($result, true); + // $status = (int) $result_array['status']; + $error = $result_array['error']; + + if ($error) { + // Add an error from file storage facility if we have it. + $this->errors->add($error); + return false; + } + + // Delete file reference from database. + $file_id = $file['id']; + $sql = "delete from tt_files". + " where id = $file_id and org_id = $org_id and group_id = $group_id"; + $affected = $mdb2->exec($sql); + if (is_a($affected, 'PEAR_Error')) { + $err->add($i18n->get('error.db')); + return false; + } + + return true; + } + // getOrgKey obtains organization key from the database. private function getOrgKey() { global $user; diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index 38aeb35c..2df7cbf3 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.18.61.4891 | Copyright © Anuko | +  Anuko Time Tracker 1.18.61.4892 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/file_delete.php b/file_delete.php index 50b3e0e9..d98259d6 100644 --- a/file_delete.php +++ b/file_delete.php @@ -60,16 +60,18 @@ $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_file_id)); $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->get('label.delete'))); $form->addInput(array('type'=>'submit','name'=>'btn_cancel','value'=>$i18n->get('button.cancel'))); -// TODO: design redirects properly... if ($request->isPost()) { if ($request->getParameter('btn_delete')) { - if (ttProjectHelper::delete($cl_project_id)) { - header('Location: projects.php'); + $fileHelper = new ttFileHelper($err); + $deleted = $fileHelper->deleteFile($file); + if ($deleted && $file['entity_type'] == 'project') { + header('Location: project_files.php?id='.$file['entity_id']); exit(); - } else - $err->add($i18n->get('error.db')); + } } elseif ($request->getParameter('btn_cancel')) { - header('Location: projects.php'); + if ($file['entity_type'] == 'project') { + header('Location: project_files.php?id='.$file['entity_id']); + } exit(); } } // isPost