2014-03-20 01:55:48 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud - Load an uploaded image from system.
|
|
|
|
*
|
|
|
|
* @author Thomas Tanghus
|
|
|
|
* @copyright 2014 Thomas Tanghus (thomas@tanghus.net)
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Contacts\Utils\TemporaryPhoto;
|
|
|
|
|
|
|
|
use OCA\Contacts\Contact as ContactObject,
|
2014-03-24 21:24:45 +01:00
|
|
|
OCA\Contacts\Utils\TemporaryPhoto as BaseTemporaryPhoto,
|
2014-03-20 16:00:22 +01:00
|
|
|
OCP\IRequest,
|
2014-03-20 16:58:06 +01:00
|
|
|
OCP\AppFramework\Http,
|
2014-04-07 22:29:15 +02:00
|
|
|
OCP\Image,
|
|
|
|
OCP\ICache;
|
2014-03-20 01:55:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class loads an image from the virtual file system.
|
|
|
|
*/
|
2014-03-24 21:24:45 +01:00
|
|
|
class Uploaded extends BaseTemporaryPhoto {
|
2014-03-20 01:55:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The request to read the data from
|
|
|
|
*
|
|
|
|
* @var \OCP\IRequest
|
|
|
|
*/
|
2014-04-08 11:08:02 +02:00
|
|
|
protected $request;
|
2014-03-20 01:55:48 +01:00
|
|
|
|
2014-04-07 22:29:15 +02:00
|
|
|
public function __construct(ICache $cache, IRequest $request) {
|
2014-03-20 01:55:48 +01:00
|
|
|
\OCP\Util::writeLog('contacts', __METHOD__, \OCP\Util::DEBUG);
|
2014-03-20 16:00:22 +01:00
|
|
|
if (!$request instanceOf IRequest) {
|
2014-03-20 01:55:48 +01:00
|
|
|
throw new \Exception(
|
|
|
|
__METHOD__ . ' Second argument must be an instance of \\OCP\\IRequest'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-04-07 22:29:15 +02:00
|
|
|
parent::__construct($cache);
|
2014-03-20 01:55:48 +01:00
|
|
|
$this->request = $request;
|
|
|
|
$this->processImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the image.
|
|
|
|
*/
|
|
|
|
protected function processImage() {
|
2014-03-20 16:00:22 +01:00
|
|
|
// If image has already been read return
|
2014-03-20 16:58:06 +01:00
|
|
|
if ($this->image instanceOf Image) {
|
2014-03-20 16:00:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-03-20 16:58:06 +01:00
|
|
|
$this->image = new Image();
|
2014-03-20 01:55:48 +01:00
|
|
|
\OCP\Util::writeLog('contacts', __METHOD__ . ', Content-Type: ' . $this->request->getHeader('Content-Type'), \OCP\Util::DEBUG);
|
|
|
|
\OCP\Util::writeLog('contacts', __METHOD__ . ', Content-Length: ' . $this->request->getHeader('Content-Length'), \OCP\Util::DEBUG);
|
|
|
|
|
2014-03-20 16:00:22 +01:00
|
|
|
if (substr($this->request->getHeader('Content-Type'), 0, 6) !== 'image/') {
|
|
|
|
throw new \Exception(
|
|
|
|
'Only images can be used as contact photo',
|
|
|
|
Http::STATUS_UNSUPPORTED_MEDIA_TYPE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$maxSize = \OCP\Util::maxUploadFilesize('/');
|
|
|
|
if ($this->request->getHeader('Content-Length') > $maxSize) {
|
|
|
|
throw new \Exception(
|
|
|
|
sprintf(
|
|
|
|
'The size of the file exceeds the maximum allowed %s',
|
|
|
|
\OCP\Util::humanFileSize($maxSize)
|
|
|
|
),
|
|
|
|
Http::STATUS_REQUEST_ENTITY_TOO_LARGE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-03-20 01:55:48 +01:00
|
|
|
$this->image->loadFromFileHandle($this->request->put);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|