2013-07-26 06:20:11 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2015-06-25 05:43:55 -04:00
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
2015-10-26 08:54:55 -04:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
|
*
|
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
|
* @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 06:20:11 -04:00
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2015-04-28 10:57:23 -04:00
|
|
|
namespace OC;
|
2015-03-03 06:52:27 -05:00
|
|
|
|
2015-12-01 16:08:42 -05:00
|
|
|
use OCP\Files\Folder;
|
|
|
|
|
use OCP\Files\File;
|
|
|
|
|
use OCP\IL10N;
|
2015-04-28 10:57:23 -04:00
|
|
|
use OC_Image;
|
2015-03-03 06:52:27 -05:00
|
|
|
|
2015-02-26 05:37:37 -05:00
|
|
|
/**
|
|
|
|
|
* This class gets and sets users avatars.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-03 06:52:27 -05:00
|
|
|
class Avatar implements \OCP\IAvatar {
|
2015-12-01 16:08:42 -05:00
|
|
|
/** @var Folder */
|
|
|
|
|
private $folder;
|
|
|
|
|
|
|
|
|
|
/** @var IL10N */
|
|
|
|
|
private $l;
|
2013-09-09 10:57:46 -04:00
|
|
|
|
|
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* constructor
|
2015-12-01 16:08:42 -05:00
|
|
|
*
|
|
|
|
|
* @param Folder $folder The folder where the avatars are
|
|
|
|
|
* @param IL10N $l
|
2015-04-28 10:57:23 -04:00
|
|
|
*/
|
2015-12-01 16:08:42 -05:00
|
|
|
public function __construct (Folder $folder, IL10N $l) {
|
|
|
|
|
$this->folder = $folder;
|
|
|
|
|
$this->l = $l;
|
2013-09-09 10:57:46 -04:00
|
|
|
}
|
|
|
|
|
|
2013-07-26 06:20:11 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* get the users avatar
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param int $size size in px of the avatar, avatars are square, defaults to 64
|
2015-03-13 05:10:11 -04:00
|
|
|
* @return boolean|\OCP\IImage containing the avatar or false if there's no image
|
2013-08-19 06:38:39 -04:00
|
|
|
*/
|
2013-09-09 10:57:46 -04:00
|
|
|
public function get ($size = 64) {
|
2015-12-01 16:08:42 -05:00
|
|
|
if ($this->folder->nodeExists('avatar.jpg')) {
|
2013-08-19 06:38:39 -04:00
|
|
|
$ext = 'jpg';
|
2015-12-01 16:08:42 -05:00
|
|
|
} elseif ($this->folder->nodeExists('avatar.png')) {
|
2013-08-19 06:38:39 -04:00
|
|
|
$ext = 'png';
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
2013-08-23 18:35:32 -04:00
|
|
|
}
|
2013-08-19 06:15:48 -04:00
|
|
|
|
2013-09-01 15:17:48 -04:00
|
|
|
$avatar = new OC_Image();
|
2015-12-01 16:08:42 -05:00
|
|
|
if ($this->folder->nodeExists('avatar.' . $size . '.' . $ext)) {
|
|
|
|
|
/** @var File $node */
|
|
|
|
|
$node = $this->folder->get('avatar.' . $size . '.' . $ext);
|
|
|
|
|
$avatar->loadFromData($node->getContent());
|
2015-11-28 11:33:16 -05:00
|
|
|
} else {
|
2015-12-01 16:08:42 -05:00
|
|
|
/** @var File $node */
|
|
|
|
|
$node = $this->folder->get('avatar.' . $ext);
|
|
|
|
|
$avatar->loadFromData($node->getContent());
|
2015-11-25 15:44:36 -05:00
|
|
|
if ($size > 0) {
|
|
|
|
|
$avatar->resize($size);
|
|
|
|
|
}
|
2015-12-01 16:08:42 -05:00
|
|
|
$this->folder->newFile('avatar.' . $size . '.' . $ext)->putContent($avatar->data());
|
2015-11-28 11:33:16 -05:00
|
|
|
}
|
2013-08-19 06:38:39 -04:00
|
|
|
return $avatar;
|
|
|
|
|
}
|
2013-07-26 06:20:11 -04:00
|
|
|
|
2015-02-03 08:54:06 -05:00
|
|
|
/**
|
|
|
|
|
* Check if an avatar exists for the user
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function exists() {
|
2015-12-01 16:08:42 -05:00
|
|
|
return $this->folder->nodeExists('avatar.jpg') || $this->folder->nodeExists('avatar.png');
|
2015-02-03 08:54:06 -05:00
|
|
|
}
|
|
|
|
|
|
2013-07-26 06:20:11 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* sets the users avatar
|
2015-03-13 05:10:11 -04:00
|
|
|
* @param \OCP\IImage|resource|string $data An image object, imagedata or path to set a new avatar
|
2015-03-03 06:52:27 -05:00
|
|
|
* @throws \Exception if the provided file is not a jpg or png image
|
|
|
|
|
* @throws \Exception if the provided image is not valid
|
2013-08-23 18:35:32 -04:00
|
|
|
* @throws \OC\NotSquareException if the image is not square
|
2013-08-30 03:00:37 -04:00
|
|
|
* @return void
|
2013-07-26 06:20:11 -04:00
|
|
|
*/
|
2013-09-09 10:57:46 -04:00
|
|
|
public function set ($data) {
|
2015-06-15 11:54:48 -04:00
|
|
|
|
2015-03-13 05:10:11 -04:00
|
|
|
if($data instanceOf \OCP\IImage) {
|
2013-11-22 17:57:23 -05:00
|
|
|
$img = $data;
|
|
|
|
|
$data = $img->data();
|
|
|
|
|
} else {
|
|
|
|
|
$img = new OC_Image($data);
|
|
|
|
|
}
|
2013-08-19 06:38:39 -04:00
|
|
|
$type = substr($img->mimeType(), -3);
|
2013-11-22 06:34:37 -05:00
|
|
|
if ($type === 'peg') {
|
|
|
|
|
$type = 'jpg';
|
|
|
|
|
}
|
2013-08-19 06:38:39 -04:00
|
|
|
if ($type !== 'jpg' && $type !== 'png') {
|
2015-12-01 16:08:42 -05:00
|
|
|
throw new \Exception($this->l->t("Unknown filetype"));
|
2013-08-19 06:38:39 -04:00
|
|
|
}
|
2013-07-29 05:34:38 -04:00
|
|
|
|
2013-08-23 18:35:32 -04:00
|
|
|
if (!$img->valid()) {
|
2015-12-01 16:08:42 -05:00
|
|
|
throw new \Exception($this->l->t("Invalid image"));
|
2013-08-23 18:35:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!($img->height() === $img->width())) {
|
|
|
|
|
throw new \OC\NotSquareException();
|
2013-07-29 05:34:38 -04:00
|
|
|
}
|
2013-08-19 06:38:39 -04:00
|
|
|
|
2015-12-01 16:08:42 -05:00
|
|
|
$this->remove();
|
|
|
|
|
$this->folder->newFile('avatar.'.$type)->putContent($data);
|
2013-07-29 05:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
2013-07-26 06:20:11 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* remove the users avatar
|
2013-08-19 06:38:39 -04:00
|
|
|
* @return void
|
2013-07-29 05:34:38 -04:00
|
|
|
*/
|
2013-09-09 10:57:46 -04:00
|
|
|
public function remove () {
|
2015-12-01 16:08:42 -05:00
|
|
|
try {
|
|
|
|
|
$this->folder->get('avatar.jpg')->delete();
|
|
|
|
|
} catch (\OCP\Files\NotFoundException $e) {}
|
|
|
|
|
try {
|
|
|
|
|
$this->folder->get('avatar.png')->delete();
|
|
|
|
|
} catch (\OCP\Files\NotFoundException $e) {}
|
2013-07-26 06:20:11 -04:00
|
|
|
}
|
|
|
|
|
}
|