1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Class LDAPGroupExtension |
4
|
|
|
* |
5
|
|
|
* Adds a field to map an LDAP group to a SilverStripe {@link Group} |
6
|
|
|
*/ |
7
|
|
|
class LDAPGroupExtension extends DataExtension |
|
|
|
|
8
|
|
|
{ |
9
|
|
|
/** |
10
|
|
|
* @var array |
11
|
|
|
*/ |
12
|
|
|
private static $db = [ |
|
|
|
|
13
|
|
|
// Unique user identifier, same field is used by SAMLMemberExtension |
14
|
|
|
'GUID' => 'Varchar(50)', |
15
|
|
|
'DN' => 'Text', |
16
|
|
|
'LastSynced' => 'SS_Datetime' |
17
|
|
|
]; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* A SilverStripe group can have several mappings to LDAP groups. |
21
|
|
|
* @var array |
22
|
|
|
*/ |
23
|
|
|
private static $has_many = [ |
|
|
|
|
24
|
|
|
'LDAPGroupMappings' => 'LDAPGroupMapping' |
25
|
|
|
]; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* Add a field to the Group_Members join table so we can keep track |
29
|
|
|
* of Members added to a mapped Group. |
30
|
|
|
* |
31
|
|
|
* See {@link LDAPService::updateMemberFromLDAP()} for more details |
32
|
|
|
* on how this gets used. |
33
|
|
|
* |
34
|
|
|
* @var array |
35
|
|
|
*/ |
36
|
|
|
private static $many_many_extraFields = [ |
|
|
|
|
37
|
|
|
'Members' => [ |
38
|
|
|
'IsImportedFromLDAP' => 'Boolean' |
39
|
|
|
] |
40
|
|
|
]; |
41
|
|
|
|
42
|
|
|
public function updateCMSFields(FieldList $fields) |
43
|
|
|
{ |
44
|
|
|
// Add read-only LDAP metadata fields. |
45
|
|
|
$fields->addFieldToTab('Root.LDAP', new ReadonlyField('GUID')); |
46
|
|
|
$fields->addFieldToTab('Root.LDAP', new ReadonlyField('DN')); |
47
|
|
|
$fields->addFieldToTab('Root.LDAP', new ReadonlyField( |
48
|
|
|
'LastSynced', |
49
|
|
|
_t('LDAPGroupExtension.LASTSYNCED', 'Last synced')) |
50
|
|
|
); |
51
|
|
|
|
52
|
|
|
if ($this->owner->GUID) { |
|
|
|
|
53
|
|
|
$fields->replaceField('Title', new ReadonlyField('Title')); |
54
|
|
|
$fields->replaceField('Description', new ReadonlyField('Description')); |
55
|
|
|
// Surface the code which is normally hidden from the CMS user. |
56
|
|
|
$fields->addFieldToTab('Root.Members', new ReadonlyField('Code'), 'Members'); |
57
|
|
|
|
58
|
|
|
$message = _t( |
59
|
|
|
'LDAPGroupExtension.INFOIMPORTED', |
60
|
|
|
'This group is automatically imported from LDAP.' |
61
|
|
|
); |
62
|
|
|
$fields->addFieldToTab( |
63
|
|
|
'Root.Members', |
64
|
|
|
new LiteralField( |
65
|
|
|
'Info', |
66
|
|
|
sprintf('<p class="message warning">%s</p>', $message) |
67
|
|
|
), |
68
|
|
|
'Title' |
69
|
|
|
); |
70
|
|
|
|
71
|
|
|
$fields->addFieldToTab('Root.LDAP', new ReadonlyField( |
72
|
|
|
'LDAPGroupMappingsRO', |
73
|
|
|
_t('LDAPGroupExtension.AUTOMAPPEDGROUPS', 'Automatically mapped LDAP Groups'), |
74
|
|
|
implode('; ', $this->owner->LDAPGroupMappings()->column('DN')) |
75
|
|
|
)); |
76
|
|
|
} else { |
77
|
|
|
$field = GridField::create( |
78
|
|
|
'LDAPGroupMappings', |
79
|
|
|
_t('LDAPGroupExtension.MAPPEDGROUPS', 'Mapped LDAP Groups'), |
80
|
|
|
$this->owner->LDAPGroupMappings() |
81
|
|
|
); |
82
|
|
|
$config = GridFieldConfig_RecordEditor::create(); |
83
|
|
|
$config->getComponentByType('GridFieldAddNewButton') |
|
|
|
|
84
|
|
|
->setButtonName(_t('LDAPGroupExtension.ADDMAPPEDGROUP', 'Add LDAP group mapping')); |
85
|
|
|
|
86
|
|
|
$field->setConfig($config); |
87
|
|
|
$fields->addFieldToTab('Root.LDAP', $field); |
88
|
|
|
} |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* LDAPGroupMappings are inherently relying on groups and can be removed now. |
93
|
|
|
*/ |
94
|
|
|
public function onBeforeDelete() |
95
|
|
|
{ |
96
|
|
|
foreach ($this->owner->LDAPGroupMappings() as $mapping) { |
97
|
|
|
$mapping->delete(); |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
|
} |
101
|
|
|
|
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.