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>
|
2015-10-26 15:54:55 +03:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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-12-02 00:08:42 +03:00
|
|
|
use OCP\IUserManager;
|
|
|
|
use OCP\Files\IRootFolder;
|
|
|
|
use OCP\IL10N;
|
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 {
|
|
|
|
|
2015-12-02 00:08:42 +03:00
|
|
|
/** @var IUserManager */
|
|
|
|
private $userManager;
|
|
|
|
|
|
|
|
/** @var IRootFolder */
|
|
|
|
private $rootFolder;
|
|
|
|
|
|
|
|
/** @var IL10N */
|
|
|
|
private $l;
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
IUserManager $userManager,
|
|
|
|
IRootFolder $rootFolder,
|
|
|
|
IL10N $l) {
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
$this->rootFolder = $rootFolder;
|
|
|
|
$this->l = $l;
|
|
|
|
}
|
|
|
|
|
2013-11-22 02:40:25 +04:00
|
|
|
/**
|
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-12-02 00:08:42 +03:00
|
|
|
if (!$this->userManager->userExists($user)) {
|
|
|
|
throw new \Exception('user does not exist');
|
|
|
|
}
|
|
|
|
return new Avatar($this->rootFolder->getUserFolder($user)->getParent(), $this->l);
|
2013-11-22 02:40:25 +04:00
|
|
|
}
|
|
|
|
}
|