2013-11-22 02:40:25 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
|
|
|
* @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-11-22 02:40:25 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-11-22 02:40:25 +04:00
|
|
|
namespace OC;
|
|
|
|
|
|
|
|
use OCP\IAvatarManager;
|
2015-03-03 14:52:27 +03:00
|
|
|
use OC\Avatar;
|
2013-11-22 02:40:25 +04:00
|
|
|
|
2015-03-03 14:52:27 +03:00
|
|
|
/**
|
2013-11-22 02:40:25 +04:00
|
|
|
* This class implements methods to access Avatar functionality
|
|
|
|
*/
|
|
|
|
class AvatarManager implements IAvatarManager {
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* return a user specific instance of \OCP\IAvatar
|
2013-11-22 02:40:25 +04:00
|
|
|
* @see \OCP\IAvatar
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $user the ownCloud user id
|
2013-11-22 02:40:25 +04:00
|
|
|
* @return \OCP\IAvatar
|
2015-04-28 17:57:23 +03:00
|
|
|
* @throws \Exception In case the username is potentially dangerous
|
2013-11-22 02:40:25 +04:00
|
|
|
*/
|
2015-04-20 13:52:40 +03:00
|
|
|
public function getAvatar($user) {
|
2015-03-03 14:52:27 +03:00
|
|
|
return new Avatar($user);
|
2013-11-22 02:40:25 +04:00
|
|
|
}
|
|
|
|
}
|