1 | <?php |
||
7 | class LDAPMemberExtension extends DataExtension |
||
|
|||
8 | { |
||
9 | /** |
||
10 | * @var array |
||
11 | */ |
||
12 | private static $db = array( |
||
13 | // Unique user identifier, same field is used by SAMLMemberExtension |
||
14 | 'GUID' => 'Varchar(50)', |
||
15 | 'Username' => 'Varchar(64)', |
||
16 | 'IsImportedFromLDAP' => 'Boolean', |
||
17 | 'IsExpired' => 'Boolean', |
||
18 | 'LastSynced' => 'SS_Datetime', |
||
19 | ); |
||
20 | |||
21 | /** |
||
22 | * These fields are used by {@link LDAPMemberSync} to map specific AD attributes |
||
23 | * to {@link Member} fields. |
||
24 | * |
||
25 | * @var array |
||
26 | * @config |
||
27 | */ |
||
28 | private static $ldap_field_mappings = array( |
||
29 | 'givenname' => 'FirstName', |
||
30 | 'samaccountname' => 'Username', |
||
31 | 'sn' => 'Surname', |
||
32 | 'mail' => 'Email', |
||
33 | ); |
||
34 | |||
35 | /** |
||
36 | * The location (relative to /assets) where to save thumbnailphoto data. |
||
37 | * |
||
38 | * @var string |
||
39 | * @config |
||
40 | */ |
||
41 | private static $ldap_thumbnail_path = 'Uploads'; |
||
42 | |||
43 | /** |
||
44 | * When enabled, LDAP managed users have their data written back to LDAP. |
||
45 | * This is a push to LDAP, rather than {@link LDAPMemberSyncTask} |
||
46 | * which pulls from LDAP instead. |
||
47 | * |
||
48 | * This requires setting write permissions on the user who talks to LDAP, |
||
49 | * which is why it's disabled by default. |
||
50 | * |
||
51 | * Note that some constants must be configured in your environment file |
||
52 | * for this to work: |
||
53 | * |
||
54 | * LDAP_DOMAIN - the base DN of the directory. e.g. "DN=mydomain,DC=com" |
||
55 | * LDAP_NEW_USERS_OBJECT_CATEGORY - the type of object. e.g. "CN=Person,CN=Schema,DC=mydomain,DC=com" |
||
56 | * LDAP_NEW_USERS_DN - where to place users in the directory. e.g. "OU=Users,DC=mydomain,DC=com" |
||
57 | * |
||
58 | * @var bool |
||
59 | * @config |
||
60 | */ |
||
61 | private static $reverse_sync_ldap = false; |
||
62 | |||
63 | /** |
||
64 | * If enabled, new users written are also created in LDAP. |
||
65 | * |
||
66 | * This requires setting write permissions on the user who talks to LDAP, |
||
67 | * which is why it's disabled by default. |
||
68 | * |
||
69 | * Please see {@link $reverse_sync_ldap} for constants that must be configured in |
||
70 | * your environment file for this to work. |
||
71 | * |
||
72 | * @var bool |
||
73 | * @config |
||
74 | */ |
||
75 | private static $create_new_users_in_ldap = false; |
||
76 | |||
77 | /** |
||
78 | * @var array |
||
79 | */ |
||
80 | private static $dependencies = array( |
||
81 | 'ldapService' => '%$LDAPService', |
||
82 | ); |
||
83 | |||
84 | /** |
||
85 | * @param FieldList $fields |
||
86 | */ |
||
87 | public function updateCMSFields(FieldList $fields) |
||
135 | |||
136 | public function validate(ValidationResult $validationResult) |
||
157 | |||
158 | /** |
||
159 | * Create the user in LDAP, provided this configuration is enabled. |
||
160 | * |
||
161 | * Set a flag "Creating" so other extensions using on*() events can |
||
162 | * detect whether it's in a state of being created, such as for |
||
163 | * synchronising with other services when a user is being created |
||
164 | * in LDAP for the first time. |
||
165 | */ |
||
166 | public function onBeforeWrite() |
||
186 | |||
187 | /** |
||
188 | * Sync the local data with LDAP, and ensure local membership is also set in |
||
189 | * LDAP too. This writes into LDAP, provided reverse sync is enabled. |
||
190 | */ |
||
191 | public function onAfterWrite() |
||
213 | |||
214 | /** |
||
215 | * Triggered by {@link Member::logIn()} when successfully logged in, |
||
216 | * this will update the Member record from AD data. |
||
217 | */ |
||
218 | public function memberLoggedIn() |
||
224 | } |
||
225 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.