2016-03-12 14:18:28 +01:00
< ? php
/**
* UserRepositoryInterface.php
2017-10-21 08:40:00 +02:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
2016-03-12 14:18:28 +01:00
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
2016-10-05 06:52:15 +02:00
*
2017-10-21 08:40:00 +02:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2016-03-12 14:18:28 +01:00
*/
2017-03-24 15:01:53 +01:00
declare ( strict_types = 1 );
2016-05-20 12:41:23 +02:00
2016-03-12 14:18:28 +01:00
namespace FireflyIII\Repositories\User ;
use FireflyIII\User ;
2016-04-03 07:07:17 +02:00
use Illuminate\Support\Collection ;
2016-03-12 14:18:28 +01:00
/**
* Interface UserRepositoryInterface
*
* @package FireflyIII\Repositories\User
*/
interface UserRepositoryInterface
{
2017-01-30 16:40:49 +01:00
2016-04-03 07:07:17 +02:00
/**
2016-04-26 08:09:10 +02:00
* Returns a collection of all users.
*
2016-04-03 07:07:17 +02:00
* @return Collection
*/
public function all () : Collection ;
2016-03-12 14:18:28 +01:00
/**
2016-04-26 08:09:10 +02:00
* Gives a user a role.
*
2016-03-12 14:18:28 +01:00
* @param User $user
* @param string $role
*
* @return bool
*/
public function attachRole ( User $user , string $role ) : bool ;
2017-09-26 08:52:16 +02:00
/**
2017-09-26 09:15:21 +02:00
* This updates the users email address and records some things so it can be confirmed or undone later.
* The user is blocked until the change is confirmed.
*
2017-09-26 08:52:16 +02:00
* @param User $user
* @param string $newEmail
*
2017-09-26 09:15:21 +02:00
* @see updateEmail
*
2017-09-26 08:52:16 +02:00
* @return bool
*/
public function changeEmail ( User $user , string $newEmail ) : bool ;
2016-12-18 17:54:11 +01:00
/**
* @param User $user
* @param string $password
*
* @return mixed
*/
public function changePassword ( User $user , string $password );
2017-03-24 15:01:53 +01:00
/**
2017-04-09 07:44:22 +02:00
* @param User $user
2017-03-24 15:01:53 +01:00
* @param bool $isBlocked
* @param string $code
*
* @return bool
*/
public function changeStatus ( User $user , bool $isBlocked , string $code ) : bool ;
2016-03-12 14:18:28 +01:00
/**
2016-04-26 08:09:10 +02:00
* Returns a count of all users.
2016-04-26 21:40:15 +02:00
*
2016-03-12 14:18:28 +01:00
* @return int
*/
public function count () : int ;
2016-10-22 09:33:03 +02:00
2016-12-12 15:24:47 +01:00
/**
* @param User $user
*
* @return bool
*/
public function destroy ( User $user ) : bool ;
2016-10-22 09:33:03 +02:00
/**
* @param int $userId
*
* @return User
*/
public function find ( int $userId ) : User ;
2017-09-26 08:52:16 +02:00
/**
* @param string $email
*
* @return User|null
*/
public function findByEmail ( string $email ) : ? User ;
2016-10-22 09:33:03 +02:00
/**
* Return basic user information.
*
* @param User $user
*
* @return array
*/
public function getUserData ( User $user ) : array ;
2017-03-19 17:54:21 +01:00
/**
* @param User $user
* @param string $role
*
* @return bool
*/
public function hasRole ( User $user , string $role ) : bool ;
2017-09-26 09:15:21 +02:00
/**
* This updates the users email address. Same as changeEmail just without most logging. This makes sure that the undo/confirm routine can't catch this one.
* The user is NOT blocked.
*
* @param User $user
* @param string $newEmail
*
* @see changeEmail
*
* @return bool
*/
public function updateEmail ( User $user , string $newEmail ) : bool ;
2016-03-14 20:38:23 +01:00
}