-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1062: Added helper function to toggle default webform encrypt
- Loading branch information
Showing
10 changed files
with
153 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
modules/os2forms_encrypt/config/install/encrypt.profile.webform.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
uuid: 98e9a380-a5d6-4d2a-9176-7c50a9ec7c47 | ||
langcode: en | ||
status: true | ||
dependencies: | ||
config: | ||
- key.key.webform | ||
module: | ||
- sodium | ||
id: webform | ||
label: Webform | ||
encryption_method: sodium | ||
encryption_method_configuration: { } | ||
encryption_key: webform |
17 changes: 17 additions & 0 deletions
17
modules/os2forms_encrypt/config/install/key.key.webform.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
uuid: be3383e8-1b0e-4b50-989f-e132900d02a0 | ||
langcode: en | ||
status: true | ||
dependencies: { } | ||
id: webform | ||
label: Webform | ||
description: 'Encrypt webform submissions' | ||
key_type: encryption | ||
key_type_settings: | ||
key_size: 256 | ||
key_provider: config | ||
key_provider_settings: | ||
key_value: LWD5+0klWZn48ZVs13UVHaHJYawX62PAMd3sklkKj/w= | ||
base64_encoded: true | ||
key_input: text_field | ||
key_input_settings: | ||
base64_encoded: true |
1 change: 1 addition & 0 deletions
1
modules/os2forms_encrypt/config/install/os2forms_encrypt.settings.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
enabled: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: OS2Forms Encrypt | ||
description: Encryption functionality for OS2Forms web-forms | ||
package: OS2Forms | ||
type: module | ||
version: 1.0.0 | ||
core_version_requirement: ^8 || ^9 || ^10 | ||
dependencies: | ||
- 'drupal:webform_encrypt' | ||
- 'drupal:sodium' | ||
|
||
configure: os2forms_encrypt.admin_settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
os2forms_encrypt.admin_settings: | ||
title: 'OS2Forms Encrypt settings' | ||
parent: system.admin_config_system | ||
description: 'Settings for the OS2Forms Encrypt module' | ||
route_name: os2forms_encrypt.admin_settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
/** | ||
* Implements hook_webform_element_info_alter(). | ||
* | ||
* Add extra processing function to "force" enabled encryption on webform | ||
* elements when they are being saved in the UI. | ||
*/ | ||
function os2forms_encrypt_element_info_alter(array &$definitions): void { | ||
foreach ($definitions as $element_id => &$definition) { | ||
if ($element_id === 'webform_element_encrypt') { | ||
$definition['#process'][] = [ | ||
'Drupal\os2forms_encrypt\Element\WebformElementEncrypt', | ||
'processWebformElementEncrypt', | ||
]; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
os2forms_encrypt.admin_settings: | ||
path: '/admin/config/os2forms_encrypt/settings' | ||
defaults: | ||
_form: '\Drupal\os2forms_encrypt\Form\SettingsForm' | ||
_title: 'OS2Forms Encrypt settings' | ||
requirements: | ||
_permission: 'administer encrypt' |
23 changes: 23 additions & 0 deletions
23
modules/os2forms_encrypt/src/Element/WebformElementEncrypt.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace Drupal\os2forms_encrypt\Element; | ||
|
||
use Drupal\Core\Form\FormStateInterface; | ||
use Drupal\os2forms_encrypt\Form\SettingsForm; | ||
|
||
class WebformElementEncrypt { | ||
|
||
/** | ||
* Processes element attributes. | ||
* | ||
* Enabled encryption as default. | ||
*/ | ||
public static function processWebformElementEncrypt(&$element, FormStateInterface $form_state, &$complete_form): array { | ||
$config = \Drupal::config(SettingsForm::$configName); | ||
if ($config->get('enabled')) { | ||
$element['element_encrypt']['encrypt']['#default_value'] = TRUE; | ||
} | ||
|
||
return $element; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
|
||
namespace Drupal\os2forms_encrypt\Form; | ||
|
||
use Drupal\Core\Form\ConfigFormBase; | ||
use Drupal\Core\Form\FormStateInterface; | ||
|
||
/** | ||
* Class Os2FormsEncryptAdminForm. | ||
*/ | ||
class SettingsForm extends ConfigFormBase { | ||
|
||
public static string $configName = 'os2forms_encrypt.settings'; | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
protected function getEditableConfigNames(): array { | ||
return [self::$configName]; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function getFormId(): string { | ||
return 'os2forms_encrypt_admin_form'; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function buildForm(array $form, FormStateInterface $form_state): array { | ||
$config = $this->config('os2forms_encrypt.settings'); | ||
|
||
$form['enabled'] = [ | ||
'#type' => 'checkbox', | ||
'#title' => $this->t('Enabled encryption'), | ||
'#description' => $this->t('Enable encryption for all webform fields. Please note that encryption will be applied only to those fields that are modified after enabling this option.'), | ||
'#default_value' => $config->get('enabled'), | ||
]; | ||
|
||
return parent::buildForm($form, $form_state); | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function submitForm(array &$form, FormStateInterface $form_state): void { | ||
parent::submitForm($form, $form_state); | ||
|
||
$this->config(self::$configName) | ||
->set('enabled', $form_state->getValue('enabled')) | ||
->save(); | ||
} | ||
|
||
} |