nextcloud/lib/private/avatarmanager.php

91 lines
2.4 KiB
PHP
Raw Normal View History

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 Lukas Reschke <lukas@owncloud.com>
2015-03-26 13:44:34 +03:00
* @author Morris Jobke <hey@morrisjobke.de>
2015-10-26 15:54:55 +03:00
* @author Roeland Jago Douma <rullzer@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
2015-03-26 13:44:34 +03:00
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
2015-03-26 13:44:34 +03:00
* @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
*/
2013-11-22 02:40:25 +04:00
namespace OC;
use OCP\Files\Folder;
use OCP\Files\NotFoundException;
2013-11-22 02:40:25 +04:00
use OCP\IAvatarManager;
use OCP\IUserManager;
use OCP\Files\IRootFolder;
use OCP\IL10N;
2013-11-22 02:40:25 +04:00
/**
2013-11-22 02:40:25 +04:00
* This class implements methods to access Avatar functionality
*/
class AvatarManager implements IAvatarManager {
/** @var IUserManager */
private $userManager;
/** @var IRootFolder */
private $rootFolder;
/** @var IL10N */
private $l;
/**
* AvatarManager constructor.
*
* @param IUserManager $userManager
* @param IRootFolder $rootFolder
* @param IL10N $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
/**
* return a user specific instance of \OCP\IAvatar
2013-11-22 02:40:25 +04:00
* @see \OCP\IAvatar
* @param string $userId the ownCloud user id
2013-11-22 02:40:25 +04:00
* @return \OCP\IAvatar
* @throws \Exception In case the username is potentially dangerous
* @throws NotFoundException In case there is no user folder yet
2013-11-22 02:40:25 +04:00
*/
public function getAvatar($userId) {
$user = $this->userManager->get($userId);
if (is_null($user)) {
throw new \Exception('user does not exist');
}
/*
* Fix for #22119
* Basically we do not want to copy the skeleton folder
*/
\OC\Files\Filesystem::initMountPoints($userId);
$dir = '/' . $userId;
/** @var Folder $folder */
$folder = $this->rootFolder->get($dir);
return new Avatar($folder, $this->l, $user);
2013-11-22 02:40:25 +04:00
}
}