2013-07-26 14:20:11 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Christopher Schäpers <christopher@schaepers.it>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2013-07-29 13:34:38 +04:00
|
|
|
/**
|
|
|
|
* This class gets and sets users avatars.
|
2013-08-19 14:15:48 +04:00
|
|
|
*/
|
2013-07-29 13:34:38 +04:00
|
|
|
|
2013-11-22 02:40:25 +04:00
|
|
|
class OC_Avatar implements \OCP\IAvatar {
|
2013-09-09 18:57:46 +04:00
|
|
|
|
|
|
|
private $view;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief constructor
|
|
|
|
* @param $user string user to do avatar-management with
|
|
|
|
*/
|
|
|
|
public function __construct ($user) {
|
|
|
|
$this->view = new \OC\Files\View('/'.$user);
|
|
|
|
}
|
|
|
|
|
2013-07-26 14:20:11 +04:00
|
|
|
/**
|
2013-08-19 14:38:39 +04:00
|
|
|
* @brief get the users avatar
|
2013-09-20 13:46:11 +04:00
|
|
|
* @param $size integer size in px of the avatar, avatars are square, defaults to 64
|
2013-09-04 23:22:36 +04:00
|
|
|
* @return boolean|\OC_Image containing the avatar or false if there's no image
|
2013-08-19 14:38:39 +04:00
|
|
|
*/
|
2013-09-09 18:57:46 +04:00
|
|
|
public function get ($size = 64) {
|
2013-09-11 09:11:33 +04:00
|
|
|
if ($this->view->file_exists('avatar.jpg')) {
|
2013-08-19 14:38:39 +04:00
|
|
|
$ext = 'jpg';
|
2013-09-09 18:57:46 +04:00
|
|
|
} elseif ($this->view->file_exists('avatar.png')) {
|
2013-08-19 14:38:39 +04:00
|
|
|
$ext = 'png';
|
|
|
|
} else {
|
|
|
|
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();
|
2013-09-09 18:57:46 +04:00
|
|
|
$avatar->loadFromData($this->view->file_get_contents('avatar.'.$ext));
|
2013-08-19 14:38:39 +04:00
|
|
|
$avatar->resize($size);
|
|
|
|
return $avatar;
|
|
|
|
}
|
2013-07-26 14:20:11 +04:00
|
|
|
|
|
|
|
/**
|
2013-08-19 14:15:48 +04:00
|
|
|
* @brief sets the users avatar
|
2013-11-23 02:57:23 +04:00
|
|
|
* @param $data mixed OC_Image, imagedata or path to set a new avatar
|
2013-07-30 18:09:54 +04:00
|
|
|
* @throws Exception if the provided file is not a jpg or png image
|
2013-08-24 02:35:32 +04:00
|
|
|
* @throws Exception if the provided image is not valid
|
|
|
|
* @throws \OC\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) {
|
2013-11-23 02:57:23 +04:00
|
|
|
if($data instanceOf OC_Image) {
|
|
|
|
$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') {
|
|
|
|
$l = \OC_L10N::get('lib');
|
|
|
|
throw new \Exception($l->t("Unknown filetype"));
|
|
|
|
}
|
2013-07-29 13:34:38 +04:00
|
|
|
|
2013-08-24 02:35:32 +04:00
|
|
|
if (!$img->valid()) {
|
2013-08-19 14:38:39 +04:00
|
|
|
$l = \OC_L10N::get('lib');
|
2013-08-30 11:00:37 +04:00
|
|
|
throw new \Exception($l->t("Invalid image"));
|
2013-08-24 02:35:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!($img->height() === $img->width())) {
|
|
|
|
throw new \OC\NotSquareException();
|
2013-07-29 13:34:38 +04:00
|
|
|
}
|
2013-08-19 14:38:39 +04:00
|
|
|
|
2013-09-09 18:57:46 +04:00
|
|
|
$this->view->unlink('avatar.jpg');
|
|
|
|
$this->view->unlink('avatar.png');
|
|
|
|
$this->view->file_put_contents('avatar.'.$type, $data);
|
2013-07-29 13:34:38 +04:00
|
|
|
}
|
|
|
|
|
2013-07-26 14:20:11 +04:00
|
|
|
/**
|
2013-08-19 14:38:39 +04:00
|
|
|
* @brief remove the users avatar
|
|
|
|
* @return void
|
2013-07-29 13:34:38 +04:00
|
|
|
*/
|
2013-09-09 18:57:46 +04:00
|
|
|
public function remove () {
|
|
|
|
$this->view->unlink('avatar.jpg');
|
|
|
|
$this->view->unlink('avatar.png');
|
2013-07-26 14:20:11 +04:00
|
|
|
}
|
|
|
|
}
|