summaryrefslogtreecommitdiff
path: root/app/php/components/SafeFileUpload.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-04-06 13:54:40 +0200
committeremkael <emkael@tlen.pl>2016-04-06 13:54:40 +0200
commitf3e0c5b654734d812d062cc5ed4b927913319e00 (patch)
treeb2d1e5e3403a4df107c1719ca1e5649701b49007 /app/php/components/SafeFileUpload.php
parentdfe234a7aaaacedcc94716f955b44a1b50c4a057 (diff)
* Safe*FileUpload components moved back to components namespace
Diffstat (limited to 'app/php/components/SafeFileUpload.php')
-rw-r--r--app/php/components/SafeFileUpload.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/app/php/components/SafeFileUpload.php b/app/php/components/SafeFileUpload.php
new file mode 100644
index 0000000..98e120a
--- /dev/null
+++ b/app/php/components/SafeFileUpload.php
@@ -0,0 +1,34 @@
+<?php
+
+class SafeFileUpload extends TFileUpload {
+
+ use MimeTypeCheckForFileUpload;
+
+}
+
+trait MimeTypeCheckForFileUpload {
+
+ protected $_isSecure = TRUE;
+
+ public function getIsSecure() {
+ return $this->_isSecure;
+ }
+
+ public function setIsSecure($bool) {
+ $this->_isSecure = $bool;
+ }
+
+ public function getFileType() {
+ $type = parent::getFileType();
+ if ($this->getIsSecure()) {
+ $fileInfo = new finfo(FILEINFO_MIME_TYPE);
+ return $fileInfo->file($this->getLocalName());
+ }
+ else {
+ return $type;
+ }
+ }
+
+}
+
+?>