2013-11-22 03:43:23 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
2013-11-22 03:43:23 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-11-22 03:43:23 +04:00
|
|
|
namespace OCP;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides avatar functionality
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface IAvatar {
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get the users avatar
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param int $size size in px of the avatar, avatars are square, defaults to 64
|
2015-03-13 12:10:11 +03:00
|
|
|
* @return boolean|\OCP\IImage containing the avatar or false if there's no image
|
2013-11-22 03:43:23 +04:00
|
|
|
*/
|
|
|
|
function get($size = 64);
|
|
|
|
|
2015-02-03 16:54:06 +03:00
|
|
|
/**
|
|
|
|
* Check if an avatar exists for the user
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function exists();
|
|
|
|
|
2013-11-22 03:43:23 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* sets the users avatar
|
2015-03-13 12:10:11 +03:00
|
|
|
* @param \OCP\IImage|resource|string $data An image object, imagedata or path to set a new avatar
|
2014-11-25 18:28:41 +03:00
|
|
|
* @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
|
2013-11-22 03:43:23 +04:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function set($data);
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* remove the users avatar
|
2013-11-22 03:43:23 +04:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function remove();
|
|
|
|
}
|