Updated ACL help file, minor styling changes (#1590)
[openemr.git] / services / UserService.php
blob50b15275f703f94add35383ddab3271c3fc8bcdc
1 <?php
2 /**
3 * UserService
5 * Copyright (C) 2017 Matthew Vita <matthewvita48@gmail.com>
7 * LICENSE: This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
18 * @package OpenEMR
19 * @author Matthew Vita <matthewvita48@gmail.com>
20 * @author Victor Kofia <victor.kofia@gmail.com>
21 * @link http://www.open-emr.org
24 namespace OpenEMR\Services;
26 use OpenEMR\Common\Database\Connector;
28 class UserService
30 /**
31 * The user repository to be used for db CRUD operations.
33 private $repository;
35 /**
36 * Default constructor.
38 public function __construct()
40 $database = Connector::Instance();
41 $entityManager = $database->entityManager;
42 $this->repository = $entityManager->getRepository('\OpenEMR\Entities\User');
45 /**
46 * @return Fully hydrated user object
48 public function getUser($userId)
50 return $this->repository->getUser($userId);
53 /**
54 * @return active users (fully hydrated)
56 public function getActiveUsers()
58 return $this->repository->getActiveUsers();
61 /**
62 * @return Fully hydrated user object.
64 public function getCurrentlyLoggedInUser()
66 return $this->repository->getCurrentlyLoggedInUser();
69 /**
70 * Centralized holder of the `authProvider` session
71 * value to encourage service ownership of global
72 * session values.
74 * @return String of the current user group.
76 public function getCurrentlyLoggedInUserGroup()
78 return $_SESSION['authProvider'];