Newer
Older
<?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.
*/
/**
* This class gets and sets users avatars.

Christopher Schäpers
committed
*/
private $view;
/**
* @param string $user user to do avatar-management with
*/
public function __construct ($user) {
$this->view = new \OC\Files\View('/'.$user);
}
* get the users avatar
* @param int $size size in px of the avatar, avatars are square, defaults to 64
* @return boolean|\OC_Image containing the avatar or false if there's no image

Christopher Schäpers
committed
*/
public function get ($size = 64) {
if ($this->view->file_exists('avatar.jpg')) {

Christopher Schäpers
committed
$ext = 'jpg';
} elseif ($this->view->file_exists('avatar.png')) {

Christopher Schäpers
committed
$ext = 'png';
} else {
return false;
}

Christopher Schäpers
committed
$avatar = new OC_Image();
$avatar->loadFromData($this->view->file_get_contents('avatar.'.$ext));

Christopher Schäpers
committed
$avatar->resize($size);
return $avatar;
}
/**
* Check if an avatar exists for the user
*
* @return bool
*/
public function exists() {
return $this->view->file_exists('avatar.jpg') || $this->view->file_exists('avatar.png');
}
* sets the users avatar
* @param \OC_Image|resource|string $data OC_Image, imagedata or path to set a new avatar
* @throws Exception if the provided file is not a jpg or png image
* @throws Exception if the provided image is not valid
* @throws \OC\NotSquareException if the image is not square

Christopher Schäpers
committed
* @return void
public function set ($data) {
if($data instanceOf OC_Image) {
$img = $data;
$data = $img->data();
} else {
$img = new OC_Image($data);
}

Christopher Schäpers
committed
$type = substr($img->mimeType(), -3);
if ($type === 'peg') {
$type = 'jpg';
}

Christopher Schäpers
committed
if ($type !== 'jpg' && $type !== 'png') {

Christopher Schäpers
committed
throw new \Exception($l->t("Unknown filetype"));
}
if (!$img->valid()) {

Christopher Schäpers
committed
throw new \Exception($l->t("Invalid image"));
}
if (!($img->height() === $img->width())) {
throw new \OC\NotSquareException();

Christopher Schäpers
committed
$this->view->unlink('avatar.jpg');
$this->view->unlink('avatar.png');
$this->view->file_put_contents('avatar.'.$type, $data);
* remove the users avatar

Christopher Schäpers
committed
* @return void
public function remove () {
$this->view->unlink('avatar.jpg');
$this->view->unlink('avatar.png');