saml_sp.admin.inc in SAML Service Provider 7.8
Same filename and directory in other branches
Admin pages for the SAML Service Provider module.
File
saml_sp.admin.incView source
<?php
/**
* @file
* Admin pages for the SAML Service Provider module.
*/
/**
* Overview page.
* Display a list of IDPs in a table.
*/
function saml_sp__admin_overview() {
return array(
'idps' => saml_sp__load_all_idps(),
'#theme' => 'saml_sp__idp_list',
);
}
/**
* Configure or add a SAML IDP.
*
* @ingroup forms
*/
function saml_sp__configure_idp_form($form, &$form_state, $saml_idp = NULL) {
$show_metadata = TRUE;
if (is_null($saml_idp)) {
$show_metadata = FALSE;
// Populate a default IDP object, with empty fields.
$saml_idp = _saml_sp__default_idp();
}
$form['#destination'] = 'admin/config/people/saml_sp/IDP';
$form['export_type'] = array(
'#type' => 'value',
'#value' => isset($saml_idp->export_type) ? $saml_idp->export_type : NULL,
);
// If this is an update to an existing IDP, track the original machine name,
// in case it is changed.
if (!empty($saml_idp->machine_name)) {
$form['orig_machine_name'] = array(
'#type' => 'value',
'#value' => $saml_idp->machine_name,
);
}
$form['name'] = array(
'#type' => 'textfield',
'#title' => t('Name'),
'#default_value' => $saml_idp->name,
'#description' => t('The human-readable name of this IDP. This text will be displayed to administrators who can configure SAML.'),
'#required' => TRUE,
'#size' => 30,
'#maxlength' => 30,
);
$form['machine_name'] = array(
'#type' => 'machine_name',
'#default_value' => $saml_idp->machine_name,
'#maxlength' => 32,
'#machine_name' => array(
'exists' => 'saml_sp_idp_load',
),
'#description' => t('A unique machine-readable name for this IDP. It must only contain lowercase letters, numbers, and underscores.'),
);
$form['entity_id'] = array(
'#type' => 'textfield',
'#title' => t('Entity ID'),
'#description' => t('The entityID identifier which the Identity Provider will use to identiy itself by, this may sometimes be a URL.'),
'#default_value' => $saml_idp->entity_id,
'#maxlength' => 255,
);
$form['app_name'] = array(
'#type' => 'textfield',
'#title' => t('App name'),
'#description' => t('The app name is provided to the Identiy Provider, to identify the origin of the request.'),
'#default_value' => $saml_idp->app_name,
'#maxlength' => 255,
);
// Adding mail and extra fields to select list
$fields = array(
'mail' => t('Email'),
);
$extra_fields = field_info_instances($entity_type = 'user', $bundle_name = NULL);
$extra_fields = array_keys($extra_fields['user']);
foreach ($extra_fields as $value) {
$fields[$value] = $value;
}
$form['nameid_field'] = array(
'#type' => 'select',
'#title' => t('NameID field'),
'#description' => t('Mail is usually used between IdP and SP, but if you want to let users change the email address in IdP, you need to use a custom field to store the ID.'),
'#options' => $fields,
'#default_value' => $saml_idp->nameid_field,
);
// The SAML Login URL and x.509 certificate must match the details provided
// by the IDP.
$form['idp'] = array(
'#type' => 'fieldset',
'#title' => t('IDP configuration'),
'#description' => t('Enter the details provided by the IDP.'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['idp']['idp_login_url'] = array(
'#type' => 'textfield',
'#title' => t('IDP Login URL'),
'#description' => t('Login URL of the Identity Provider server.'),
'#default_value' => $saml_idp->login_url,
'#required' => TRUE,
'#max_length' => 255,
);
$form['idp']['idp_logout_url'] = array(
'#type' => 'textfield',
'#title' => t('IDP Logout URL'),
'#description' => t('Logout URL of the Identity Provider server.'),
'#default_value' => $saml_idp->logout_url,
'#required' => TRUE,
'#max_length' => 255,
);
$form['idp']['idp_x509_cert'] = array(
'#type' => 'textarea',
'#title' => t('x.509 Certificate'),
'#description' => t('Enter the application certificate provided by the IdP.'),
'#default_value' => $saml_idp->x509_cert,
'#required' => TRUE,
'#max_length' => 1024,
);
$authn_context_class_ref_options = array(
'urn:oasis:names:tc:SAML:2.0:ac:classes:Password' => t('User Name and Password'),
'urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport' => t('Password Protected Transport'),
'urn:oasis:names:tc:SAML:2.0:ac:classes:TLSClient' => t('Transport Layer Security (TLS) Client'),
'urn:oasis:names:tc:SAML:2.0:ac:classes:X509' => t('X.509 Certificate'),
'urn:federation:authentication:windows' => t('Integrated Windows Authentication'),
'urn:oasis:names:tc:SAML:2.0:ac:classes:Kerberos' => t('Kerberos'),
);
$form['idp']['authn_context_class_ref'] = array(
'#type' => 'select',
'#title' => t('Authentication Method'),
'#description' => t('What authentication method would you like to use with this IdP?'),
'#default_value' => $saml_idp->authn_context_class_ref,
'#options' => $authn_context_class_ref_options,
'#required' => TRUE,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save settings'),
);
return $form;
}
/**
* Submit handler for the SAML IDP configuration form.
*/
function saml_sp__configure_idp_form_submit($form, &$form_state) {
// Redirect to the admin overview page.
if (!empty($form['#destination'])) {
$form_state['redirect'] = $form['#destination'];
}
$idp = (object) array(
'name' => $form_state['values']['name'],
'machine_name' => $form_state['values']['machine_name'],
'app_name' => $form_state['values']['app_name'],
'entity_id' => $form_state['values']['entity_id'],
'nameid_field' => $form_state['values']['nameid_field'],
'login_url' => $form_state['values']['idp_login_url'],
'logout_url' => $form_state['values']['idp_logout_url'],
'x509_cert' => $form_state['values']['idp_x509_cert'],
'authn_context_class_ref' => $form_state['values']['authn_context_class_ref'],
'export_type' => $form_state['values']['export_type'],
);
// Machine names can be changed.
if (isset($form_state['values']['orig_machine_name']) && $form_state['values']['orig_machine_name'] != $form_state['values']['machine_name']) {
$idp->orig_machine_name = $form_state['values']['orig_machine_name'];
}
$result = saml_sp_idp_save($idp);
switch ($result) {
case SAVED_NEW:
drupal_set_message(t('IdP %idp_name has been created.', array(
'%idp_name' => $form_state['values']['name'],
)));
break;
case SAVED_UPDATED:
drupal_set_message(t('IdP %idp_name has been updated.', array(
'%idp_name' => $form_state['values']['name'],
)));
break;
default:
drupal_set_message(t('An error occurred, IdP %idp_name has not been saved.', array(
'%idp_name' => $form_state['values']['name'],
)), 'error');
break;
}
}
/**
* Confirmation form to delete an IDP.
*/
function saml_sp__delete_idp_form($form, &$form_state, $saml_idp) {
$form['#destination'] = 'admin/config/people/saml_sp/IDP';
// Pass the name to the submit handler, to use in the message.
$form['name'] = array(
'#type' => 'value',
'#value' => $saml_idp->name,
);
// Pass the machine name to the handler, to use as the key for invoking
// the delete API.
$form['machine_name'] = array(
'#type' => 'value',
'#value' => $saml_idp->machine_name,
);
// Usage: confirm_form($form, $question, $path, $description = NULL, $yes = NULL, $no = NULL, $name = 'confirm')
$question = $saml_idp->export_type & EXPORT_IN_CODE ? t('Are you sure you wish revert the IDP %idp_name?', array(
'%idp_name' => $saml_idp->name,
)) : t('Are you sure you wish delete the IDP %idp_name?', array(
'%idp_name' => $saml_idp->name,
));
return confirm_form($form, $question, 'admin/config/people/saml_sp/IDP', t('This action cannot be undone.'), $saml_idp->export_type & EXPORT_IN_CODE ? t('Revert') : t('Delete'));
}
/**
* Submit handler.
*/
function saml_sp__delete_idp_form_submit($form, &$form_state) {
// Redirect to the admin overview page.
if (!empty($form['#destination'])) {
$form_state['redirect'] = $form['#destination'];
}
$result = saml_sp_idp_delete($form_state['values']['machine_name']);
drupal_set_message(t('IDP %idp_name has been deleted.', array(
'%idp_name' => $form_state['values']['name'],
)));
}
/**
* Export handler.
*/
function saml_sp__export_idp($saml_idp) {
$output = array();
$code = ctools_export_crud_export('saml_sp_idps', $saml_idp);
$code .= "\n";
$code .= '$saml_sp_idps[$saml_idp->machine_name] = $saml_idp;';
$code .= "\n";
$file = 'modulename.saml_sp_idps.inc';
$export_form = drupal_get_form('ctools_export_form', $code, t('Add this to hook_saml_sp_default_idps().'));
$output['saml_sp_idps__inc'] = array(
'#markup' => drupal_render($export_form),
);
return $output;
}
function saml_sp__admin_config_validate(&$form, &$form_state) {
// check the saml_sp__sign_metadata status
if ($form_state['values']['saml_sp__sign_metadata']) {
// certificate file
if (empty($form_state['values']['saml_sp__cert_location'])) {
form_set_error('saml_sp__cert_location', 'The Certificate Location must be provided.');
}
if (!is_file($form_state['values']['saml_sp__cert_location'])) {
form_set_error('saml_sp__cert_location', 'The Certificate file does not exist.');
}
// key file
if (empty($form_state['values']['saml_sp__key_location'])) {
form_set_error('saml_sp__cert_location', 'The Certificate Location must be provided.');
}
if (!is_file($form_state['values']['saml_sp__key_location'])) {
form_set_error('saml_sp__cert_location', 'The Certificate file does not exist.');
}
}
}
Functions
Name | Description |
---|---|
saml_sp__admin_config_validate | |
saml_sp__admin_overview | Overview page. Display a list of IDPs in a table. |
saml_sp__configure_idp_form | Configure or add a SAML IDP. |
saml_sp__configure_idp_form_submit | Submit handler for the SAML IDP configuration form. |
saml_sp__delete_idp_form | Confirmation form to delete an IDP. |
saml_sp__delete_idp_form_submit | Submit handler. |
saml_sp__export_idp | Export handler. |