2013-07-26 14:20:11 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-07-26 14:20:11 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-04-28 17:57:23 +03:00
|
|
|
namespace OC;
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2016-01-22 13:34:49 +03:00
|
|
|
use OC\User\User;
|
2015-12-16 22:26:00 +03:00
|
|
|
use OCP\Files\NotFoundException;
|
2016-03-11 15:44:35 +03:00
|
|
|
use OCP\Files\NotPermittedException;
|
2016-09-07 17:09:22 +03:00
|
|
|
use OCP\Files\SimpleFS\ISimpleFile;
|
2016-08-24 13:03:22 +03:00
|
|
|
use OCP\Files\SimpleFS\ISimpleFolder;
|
2016-01-22 13:34:49 +03:00
|
|
|
use OCP\IAvatar;
|
2016-08-29 15:55:23 +03:00
|
|
|
use OCP\IConfig;
|
2016-01-22 13:34:49 +03:00
|
|
|
use OCP\IImage;
|
2015-12-02 00:08:42 +03:00
|
|
|
use OCP\IL10N;
|
2015-04-28 17:57:23 +03:00
|
|
|
use OC_Image;
|
2016-03-11 15:44:35 +03:00
|
|
|
use OCP\ILogger;
|
2015-03-03 14:52:27 +03:00
|
|
|
|
2015-02-26 13:37:37 +03:00
|
|
|
/**
|
|
|
|
* This class gets and sets users avatars.
|
|
|
|
*/
|
|
|
|
|
2016-01-22 13:34:49 +03:00
|
|
|
class Avatar implements IAvatar {
|
2016-08-24 13:03:22 +03:00
|
|
|
/** @var ISimpleFolder */
|
2015-12-02 00:08:42 +03:00
|
|
|
private $folder;
|
|
|
|
/** @var IL10N */
|
|
|
|
private $l;
|
2016-01-22 13:34:49 +03:00
|
|
|
/** @var User */
|
|
|
|
private $user;
|
2016-03-11 15:44:35 +03:00
|
|
|
/** @var ILogger */
|
|
|
|
private $logger;
|
2016-08-29 15:55:23 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
2013-09-09 18:57:46 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* constructor
|
2015-12-02 00:08:42 +03:00
|
|
|
*
|
2016-08-24 13:03:22 +03:00
|
|
|
* @param ISimpleFolder $folder The folder where the avatars are
|
2015-12-02 00:08:42 +03:00
|
|
|
* @param IL10N $l
|
2016-01-22 13:34:49 +03:00
|
|
|
* @param User $user
|
2016-03-11 15:44:35 +03:00
|
|
|
* @param ILogger $logger
|
2016-08-29 15:55:23 +03:00
|
|
|
* @param IConfig $config
|
2015-04-28 17:57:23 +03:00
|
|
|
*/
|
2016-08-24 13:03:22 +03:00
|
|
|
public function __construct(ISimpleFolder $folder,
|
2016-08-29 15:55:23 +03:00
|
|
|
IL10N $l,
|
|
|
|
$user,
|
|
|
|
ILogger $logger,
|
|
|
|
IConfig $config) {
|
2015-12-02 00:08:42 +03:00
|
|
|
$this->folder = $folder;
|
|
|
|
$this->l = $l;
|
2016-01-22 13:34:49 +03:00
|
|
|
$this->user = $user;
|
2016-03-11 15:44:35 +03:00
|
|
|
$this->logger = $logger;
|
2016-08-29 15:55:23 +03:00
|
|
|
$this->config = $config;
|
2013-09-09 18:57:46 +04:00
|
|
|
}
|
|
|
|
|
2013-07-26 14:20:11 +04:00
|
|
|
/**
|
2016-01-25 15:24:56 +03:00
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2013-09-09 18:57:46 +04:00
|
|
|
public function get ($size = 64) {
|
2015-12-16 22:26:00 +03:00
|
|
|
try {
|
|
|
|
$file = $this->getFile($size);
|
|
|
|
} catch (NotFoundException $e) {
|
2013-08-19 14:38:39 +04:00
|
|
|
return false;
|
2013-08-24 02:35:32 +04:00
|
|
|
}
|
2013-08-19 14:15:48 +04:00
|
|
|
|
2013-09-01 23:17:48 +04:00
|
|
|
$avatar = new OC_Image();
|
2015-12-16 22:26:00 +03:00
|
|
|
$avatar->loadFromData($file->getContent());
|
2013-08-19 14:38:39 +04:00
|
|
|
return $avatar;
|
|
|
|
}
|
2013-07-26 14:20:11 +04:00
|
|
|
|
2015-02-03 16:54:06 +03:00
|
|
|
/**
|
|
|
|
* Check if an avatar exists for the user
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function exists() {
|
2016-09-07 17:09:22 +03:00
|
|
|
|
|
|
|
return $this->folder->fileExists('avatar.jpg') || $this->folder->fileExists('avatar.png');
|
2015-02-03 16:54:06 +03:00
|
|
|
}
|
|
|
|
|
2013-07-26 14:20:11 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* sets the users avatar
|
2016-01-22 13:34:49 +03:00
|
|
|
* @param IImage|resource|string $data An image object, imagedata or path to set a new avatar
|
2015-03-03 14:52:27 +03:00
|
|
|
* @throws \Exception if the provided file is not a jpg or png image
|
|
|
|
* @throws \Exception if the provided image is not valid
|
2016-01-22 13:34:49 +03:00
|
|
|
* @throws NotSquareException if the image is not square
|
2013-08-30 11:00:37 +04:00
|
|
|
* @return void
|
2013-07-26 14:20:11 +04:00
|
|
|
*/
|
2013-09-09 18:57:46 +04:00
|
|
|
public function set ($data) {
|
2015-06-15 18:54:48 +03:00
|
|
|
|
2016-01-22 13:34:49 +03:00
|
|
|
if($data instanceOf IImage) {
|
2013-11-23 02:57:23 +04:00
|
|
|
$img = $data;
|
|
|
|
$data = $img->data();
|
|
|
|
} else {
|
|
|
|
$img = new OC_Image($data);
|
|
|
|
}
|
2013-08-19 14:38:39 +04:00
|
|
|
$type = substr($img->mimeType(), -3);
|
2013-11-22 15:34:37 +04:00
|
|
|
if ($type === 'peg') {
|
|
|
|
$type = 'jpg';
|
|
|
|
}
|
2013-08-19 14:38:39 +04:00
|
|
|
if ($type !== 'jpg' && $type !== 'png') {
|
2015-12-02 00:08:42 +03:00
|
|
|
throw new \Exception($this->l->t("Unknown filetype"));
|
2013-08-19 14:38:39 +04:00
|
|
|
}
|
2013-07-29 13:34:38 +04:00
|
|
|
|
2013-08-24 02:35:32 +04:00
|
|
|
if (!$img->valid()) {
|
2015-12-02 00:08:42 +03:00
|
|
|
throw new \Exception($this->l->t("Invalid image"));
|
2013-08-24 02:35:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!($img->height() === $img->width())) {
|
2016-09-29 14:51:07 +03:00
|
|
|
throw new NotSquareException($this->l->t("Avatar image is not square"));
|
2013-07-29 13:34:38 +04:00
|
|
|
}
|
2013-08-19 14:38:39 +04:00
|
|
|
|
2015-12-02 00:08:42 +03:00
|
|
|
$this->remove();
|
|
|
|
$this->folder->newFile('avatar.'.$type)->putContent($data);
|
2016-02-09 19:44:49 +03:00
|
|
|
$this->user->triggerChange('avatar');
|
2013-07-29 13:34:38 +04:00
|
|
|
}
|
|
|
|
|
2013-07-26 14:20:11 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* remove the users avatar
|
2013-08-19 14:38:39 +04:00
|
|
|
* @return void
|
2013-07-29 13:34:38 +04:00
|
|
|
*/
|
2013-09-09 18:57:46 +04:00
|
|
|
public function remove () {
|
2016-01-07 22:51:18 +03:00
|
|
|
$regex = '/^avatar\.([0-9]+\.)?(jpg|png)$/';
|
2016-03-29 19:52:17 +03:00
|
|
|
$avatars = $this->folder->getDirectoryListing();
|
2016-01-07 22:51:18 +03:00
|
|
|
|
2016-08-29 15:55:23 +03:00
|
|
|
$this->config->setUserValue($this->user->getUID(), 'avatar', 'version',
|
|
|
|
(int)$this->config->getUserValue($this->user->getUID(), 'avatar', 'version', 0) + 1);
|
|
|
|
|
2016-01-07 22:51:18 +03:00
|
|
|
foreach ($avatars as $avatar) {
|
|
|
|
if (preg_match($regex, $avatar->getName())) {
|
|
|
|
$avatar->delete();
|
|
|
|
}
|
|
|
|
}
|
2016-02-09 19:44:49 +03:00
|
|
|
$this->user->triggerChange('avatar');
|
2013-07-26 14:20:11 +04:00
|
|
|
}
|
2015-12-16 22:26:00 +03:00
|
|
|
|
|
|
|
/**
|
2016-01-25 15:24:56 +03:00
|
|
|
* @inheritdoc
|
2015-12-16 22:26:00 +03:00
|
|
|
*/
|
|
|
|
public function getFile($size) {
|
2016-01-22 13:34:49 +03:00
|
|
|
$ext = $this->getExtension();
|
2015-12-16 22:26:00 +03:00
|
|
|
|
2016-01-25 15:24:56 +03:00
|
|
|
if ($size === -1) {
|
|
|
|
$path = 'avatar.' . $ext;
|
|
|
|
} else {
|
|
|
|
$path = 'avatar.' . $size . '.' . $ext;
|
|
|
|
}
|
2015-12-16 22:26:00 +03:00
|
|
|
|
|
|
|
try {
|
2016-09-07 17:09:22 +03:00
|
|
|
$file = $this->folder->getFile($path);
|
2015-12-16 22:26:00 +03:00
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
if ($size <= 0) {
|
|
|
|
throw new NotFoundException;
|
|
|
|
}
|
|
|
|
|
|
|
|
$avatar = new OC_Image();
|
2016-09-07 17:09:22 +03:00
|
|
|
/** @var ISimpleFile $file */
|
|
|
|
$file = $this->folder->getFile('avatar.' . $ext);
|
2015-12-16 22:26:00 +03:00
|
|
|
$avatar->loadFromData($file->getContent());
|
2016-01-25 15:24:56 +03:00
|
|
|
if ($size !== -1) {
|
|
|
|
$avatar->resize($size);
|
|
|
|
}
|
2016-03-11 15:44:35 +03:00
|
|
|
try {
|
|
|
|
$file = $this->folder->newFile($path);
|
|
|
|
$file->putContent($avatar->data());
|
|
|
|
} catch (NotPermittedException $e) {
|
|
|
|
$this->logger->error('Failed to save avatar for ' . $this->user->getUID());
|
|
|
|
}
|
2015-12-16 22:26:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return $file;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-22 13:34:49 +03:00
|
|
|
* Get the extension of the avatar. If there is no avatar throw Exception
|
2015-12-16 22:26:00 +03:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
2016-01-22 13:34:49 +03:00
|
|
|
private function getExtension() {
|
2016-09-07 17:09:22 +03:00
|
|
|
if ($this->folder->fileExists('avatar.jpg')) {
|
2015-12-16 22:26:00 +03:00
|
|
|
return 'jpg';
|
2016-09-07 17:09:22 +03:00
|
|
|
} elseif ($this->folder->fileExists('avatar.png')) {
|
2015-12-16 22:26:00 +03:00
|
|
|
return 'png';
|
|
|
|
}
|
|
|
|
throw new NotFoundException;
|
|
|
|
}
|
2013-07-26 14:20:11 +04:00
|
|
|
}
|