123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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/>
- *
- */
- namespace OCA\User_LDAP\User;
- use OCA\User_LDAP\Mapping\UserMapping;
- use OCP\IConfig;
- use OCP\IDBConnection;
- use OCP\Share\IManager;
- use OCP\Share\IShare;
- class OfflineUser {
- /**
- * @var string $ocName
- */
- protected $ocName;
- /**
- * @var string $dn
- */
- protected $dn;
- /**
- * @var string $uid the UID as provided by LDAP
- */
- protected $uid;
- /**
- * @var string $displayName
- */
- protected $displayName;
- /**
- * @var string $homePath
- */
- protected $homePath;
- /**
- * @var string $lastLogin the timestamp of the last login
- */
- protected $lastLogin;
- /**
- * @var string $foundDeleted the timestamp when the user was detected as unavailable
- */
- protected $foundDeleted;
- protected ?string $extStorageHome = null;
- /**
- * @var string $email
- */
- protected $email;
- /**
- * @var bool $hasActiveShares
- */
- protected $hasActiveShares;
- /**
- * @var IConfig $config
- */
- protected $config;
- /**
- * @var IDBConnection $db
- */
- protected $db;
- /**
- * @var \OCA\User_LDAP\Mapping\UserMapping
- */
- protected $mapping;
- /** @var IManager */
- private $shareManager;
- public function __construct(
- $ocName,
- IConfig $config,
- UserMapping $mapping,
- IManager $shareManager
- ) {
- $this->ocName = $ocName;
- $this->config = $config;
- $this->mapping = $mapping;
- $this->shareManager = $shareManager;
- }
- /**
- * remove the Delete-flag from the user.
- */
- public function unmark() {
- $this->config->deleteUserValue($this->ocName, 'user_ldap', 'isDeleted');
- $this->config->deleteUserValue($this->ocName, 'user_ldap', 'foundDeleted');
- }
- /**
- * exports the user details in an assoc array
- * @return array
- */
- public function export() {
- $data = [];
- $data['ocName'] = $this->getOCName();
- $data['dn'] = $this->getDN();
- $data['uid'] = $this->getUID();
- $data['displayName'] = $this->getDisplayName();
- $data['homePath'] = $this->getHomePath();
- $data['lastLogin'] = $this->getLastLogin();
- $data['email'] = $this->getEmail();
- $data['hasActiveShares'] = $this->getHasActiveShares();
- return $data;
- }
- /**
- * getter for Nextcloud internal name
- * @return string
- */
- public function getOCName() {
- return $this->ocName;
- }
- /**
- * getter for LDAP uid
- * @return string
- */
- public function getUID() {
- if ($this->uid === null) {
- $this->fetchDetails();
- }
- return $this->uid;
- }
- /**
- * getter for LDAP DN
- * @return string
- */
- public function getDN() {
- if ($this->dn === null) {
- $dn = $this->mapping->getDNByName($this->ocName);
- $this->dn = ($dn !== false) ? $dn : '';
- }
- return $this->dn;
- }
- /**
- * getter for display name
- * @return string
- */
- public function getDisplayName() {
- if ($this->displayName === null) {
- $this->fetchDetails();
- }
- return $this->displayName;
- }
- /**
- * getter for email
- * @return string
- */
- public function getEmail() {
- if ($this->email === null) {
- $this->fetchDetails();
- }
- return $this->email;
- }
- /**
- * getter for home directory path
- * @return string
- */
- public function getHomePath() {
- if ($this->homePath === null) {
- $this->fetchDetails();
- }
- return $this->homePath;
- }
- /**
- * getter for the last login timestamp
- * @return int
- */
- public function getLastLogin() {
- if ($this->lastLogin === null) {
- $this->fetchDetails();
- }
- return (int)$this->lastLogin;
- }
- /**
- * getter for the detection timestamp
- * @return int
- */
- public function getDetectedOn() {
- if ($this->foundDeleted === null) {
- $this->fetchDetails();
- }
- return (int)$this->foundDeleted;
- }
- public function getExtStorageHome(): string {
- if ($this->extStorageHome === null) {
- $this->fetchDetails();
- }
- return (string)$this->extStorageHome;
- }
- /**
- * getter for having active shares
- * @return bool
- */
- public function getHasActiveShares() {
- if ($this->hasActiveShares === null) {
- $this->determineShares();
- }
- return $this->hasActiveShares;
- }
- /**
- * reads the user details
- */
- protected function fetchDetails() {
- $properties = [
- 'displayName' => 'user_ldap',
- 'uid' => 'user_ldap',
- 'homePath' => 'user_ldap',
- 'foundDeleted' => 'user_ldap',
- 'extStorageHome' => 'user_ldap',
- 'email' => 'settings',
- 'lastLogin' => 'login',
- ];
- foreach ($properties as $property => $app) {
- $this->$property = $this->config->getUserValue($this->ocName, $app, $property, '');
- }
- }
- /**
- * finds out whether the user has active shares. The result is stored in
- * $this->hasActiveShares
- */
- protected function determineShares() {
- $shareInterface = new \ReflectionClass(IShare::class);
- $shareConstants = $shareInterface->getConstants();
- foreach ($shareConstants as $constantName => $constantValue) {
- if (!str_starts_with($constantName, 'TYPE_')
- || $constantValue === IShare::TYPE_USERGROUP
- ) {
- continue;
- }
- $shares = $this->shareManager->getSharesBy(
- $this->ocName,
- $constantValue,
- null,
- false,
- 1
- );
- if (!empty($shares)) {
- $this->hasActiveShares = true;
- return;
- }
- }
- $this->hasActiveShares = false;
- }
- }
|