Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-filter/src/File/Encrypt.php')
-rw-r--r--vendor/zendframework/zend-filter/src/File/Encrypt.php107
1 files changed, 0 insertions, 107 deletions
diff --git a/vendor/zendframework/zend-filter/src/File/Encrypt.php b/vendor/zendframework/zend-filter/src/File/Encrypt.php
deleted file mode 100644
index 5638291..0000000
--- a/vendor/zendframework/zend-filter/src/File/Encrypt.php
+++ /dev/null
@@ -1,107 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\Filter\File;
-
-use Zend\Filter;
-use Zend\Filter\Exception;
-
-/**
- * Encrypts a given file and stores the encrypted file content
- */
-class Encrypt extends Filter\Encrypt
-{
- /**
- * New filename to set
- *
- * @var string
- */
- protected $filename;
-
- /**
- * Returns the new filename where the content will be stored
- *
- * @return string
- */
- public function getFilename()
- {
- return $this->filename;
- }
-
- /**
- * Sets the new filename where the content will be stored
- *
- * @param string $filename (Optional) New filename to set
- * @return self
- */
- public function setFilename($filename = null)
- {
- $this->filename = $filename;
- return $this;
- }
-
- /**
- * Defined by Zend\Filter\Filter
- *
- * Encrypts the file $value with the defined settings
- *
- * @param string|array $value Full path of file to change or $_FILES data array
- * @return string|array The filename which has been set, or false when there were errors
- * @throws Exception\InvalidArgumentException
- * @throws Exception\RuntimeException
- */
- public function filter($value)
- {
- if (!is_scalar($value) && !is_array($value)) {
- return $value;
- }
-
- // An uploaded file? Retrieve the 'tmp_name'
- $isFileUpload = false;
- if (is_array($value)) {
- if (!isset($value['tmp_name'])) {
- return $value;
- }
-
- $isFileUpload = true;
- $uploadData = $value;
- $value = $value['tmp_name'];
- }
-
- if (!file_exists($value)) {
- throw new Exception\InvalidArgumentException("File '$value' not found");
- }
-
- if (!isset($this->filename)) {
- $this->filename = $value;
- }
-
- if (file_exists($this->filename) and !is_writable($this->filename)) {
- throw new Exception\RuntimeException("File '{$this->filename}' is not writable");
- }
-
- $content = file_get_contents($value);
- if (!$content) {
- throw new Exception\RuntimeException("Problem while reading file '$value'");
- }
-
- $encrypted = parent::filter($content);
- $result = file_put_contents($this->filename, $encrypted);
-
- if (!$result) {
- throw new Exception\RuntimeException("Problem while writing file '{$this->filename}'");
- }
-
- if ($isFileUpload) {
- $uploadData['tmp_name'] = $this->filename;
- return $uploadData;
- }
- return $this->filename;
- }
-}