Highway to PSR2
[openemr.git] / services / UserService.php
blob23ccf5a3c06f1ac7bacf26d4deed7b2ab9eb02a3
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 services;
26 class UserService
28 /**
29 * The user repository to be used for db CRUD operations.
31 private $repository;
33 /**
34 * Default constructor.
36 public function __construct()
38 $database = \common\database\Connector::Instance();
39 $entityManager = $database->entityManager;
40 $this->repository = $entityManager->getRepository('\entities\User');
43 /**
44 * @return Fully hydrated user object
46 public function getUser($userId)
48 return $this->repository->getUser($userId);
51 /**
52 * @return active users (fully hydrated)
54 public function getActiveUsers()
56 return $this->repository->getActiveUsers();
59 /**
60 * @return Fully hydrated user object.
62 public function getCurrentlyLoggedInUser()
64 return $this->repository->getCurrentlyLoggedInUser();
67 /**
68 * Centralized holder of the `authProvider` session
69 * value to encourage service ownership of global
70 * session values.
72 * @return String of the current user group.
74 public function getCurrentlyLoggedInUserGroup()
76 return $_SESSION['authProvider'];