forked from FriendsOfSymfony/FOSUserBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserManagerInterface.php
117 lines (102 loc) · 2.68 KB
/
UserManagerInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/*
* This file is part of the FOSUserBundle package.
*
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FOS\UserBundle\Model;
/**
* Interface to be implemented by user managers. This adds an additional level
* of abstraction between your application, and the actual repository.
*
* All changes to users should happen through this interface.
*
* The class also contains ACL annotations which will only work if you have the
* SecurityExtraBundle installed, otherwise they will simply be ignored.
*
* @author Gordon Franke <[email protected]>
* @author Thibault Duplessis <[email protected]>
* @author Johannes M. Schmitt <[email protected]>
*/
interface UserManagerInterface
{
/**
* Creates an empty user instance.
*
* @return UserInterface
*/
public function createUser();
/**
* Deletes a user.
*/
public function deleteUser(UserInterface $user);
/**
* Finds one user by the given criteria.
*
* @return UserInterface|null
*/
public function findUserBy(array $criteria);
/**
* Find a user by its username.
*
* @param string $username
*
* @return UserInterface|null
*/
public function findUserByUsername($username);
/**
* Finds a user by its email.
*
* @param string $email
*
* @return UserInterface|null
*/
public function findUserByEmail($email);
/**
* Finds a user by its username or email.
*
* @param string $usernameOrEmail
*
* @return UserInterface|null
*/
public function findUserByUsernameOrEmail($usernameOrEmail);
/**
* Finds a user by its confirmationToken.
*
* @param string $token
*
* @return UserInterface|null
*/
public function findUserByConfirmationToken($token);
/**
* Returns a collection with all user instances.
*
* @return \Traversable
*/
public function findUsers();
/**
* Returns the user's fully qualified class name.
*
* @return string
*/
public function getClass();
/**
* Reloads a user.
*/
public function reloadUser(UserInterface $user);
/**
* Updates a user.
*/
public function updateUser(UserInterface $user);
/**
* Updates the canonical username and email fields for a user.
*/
public function updateCanonicalFields(UserInterface $user);
/**
* Updates a user password if a plain password is set.
*/
public function updatePassword(UserInterface $user);
}