more managing and validation

This commit is contained in:
Robert Nasarek 2023-09-04 00:18:13 +02:00
parent 7605c9f2f4
commit bb4d5b65d5
9 changed files with 334 additions and 136 deletions

View file

@ -47,7 +47,8 @@ class WisskiCloudAccountManagerController extends ControllerBase {
*/ */
public function termsAndConditionsPage(): array { public function termsAndConditionsPage(): array {
$build = [ $build = [
'#markup' => $this->t('Hello World!'), '#theme' => 'terms_and_conditions_page',
'#date' => date('Y'),
]; ];
return $build; return $build;
} }
@ -64,17 +65,41 @@ class WisskiCloudAccountManagerController extends ControllerBase {
public function validationPage(string $validationCode): array { public function validationPage(string $validationCode): array {
$validationResponse = $this->wisskiCloudAccountManagerDaemonApiActions->validateAccount($validationCode); $validationResponse = $this->wisskiCloudAccountManagerDaemonApiActions->validateAccount($validationCode);
$responseContents = json_decode($validationResponse->getBody() $account = json_decode($validationResponse->getBody()
->getContents(), TRUE); ->getContents(), TRUE);
return [ return [
'#theme' => 'wisski_cloud_account_manager_validation_page', '#theme' => 'wisski_cloud_account_manager_validation_page',
'#responseContents' => $responseContents, '#account' => $account,
'#attached' => [ '#attached' => [
'library' => [ 'library' => [
'wisski_cloud_account_manager/wisski_cloud_account_manager', 'wisski_cloud_account_manager/wisski_cloud_account_manager',
], ],
], ],
'#cache' => [
'max-age' => 0,
],
];
}
/**
* Page list the account statuses.
*
* @return array
* The page build array.
*/
public function accountManagingPage(): array {
$accounts = $this->wisskiCloudAccountManagerDaemonApiActions->getAccounts();
return [
'#theme' => 'wisski_cloud_account_manager_account_managing_page',
'#accounts' => $accounts,
'#attached' => [
'library' => [
'wisski_cloud_account_manager/wisski_cloud_account_manager',
],
],
'#cache' => [
'max-age' => 0,
],
]; ];
} }

View file

@ -3,8 +3,10 @@
namespace Drupal\wisski_cloud_account_manager\Form; namespace Drupal\wisski_cloud_account_manager\Form;
use Drupal\Component\Utility\EmailValidatorInterface; use Drupal\Component\Utility\EmailValidatorInterface;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Form\FormBase; use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\wisski_cloud_account_manager\WisskiCloudAccountManagerDaemonApiActions; use Drupal\wisski_cloud_account_manager\WisskiCloudAccountManagerDaemonApiActions;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
@ -13,18 +15,44 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
*/ */
class WisskiCloudAccountManagerCreateForm extends FormBase { class WisskiCloudAccountManagerCreateForm extends FormBase {
/**
* @var \Drupal\wisski_cloud_account_manager\WisskiCloudAccountManagerDaemonApiActions
* The WissKi Cloud account manager daemon API actions service.
*/ /**
protected WisskiCloudAccountManagerDaemonApiActions $wisskiCloudAccountManagerDaemonApiActions; * The config factory service.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactory;
/** /**
* @var \Drupal\Component\Utility\EmailValidatorInterface
* The email validator service. * The email validator service.
*
* @var \Drupal\Component\Utility\EmailValidatorInterface
*/ */
private EmailValidatorInterface $emailValidator; private EmailValidatorInterface $emailValidator;
/**
* The messenger service.
*
* @var \Drupal\Core\Messenger\MessengerInterface
*/
protected $messenger;
/**
* The settings config.
*
* @var \Drupal\Core\Config\Config
*/
protected $settings;
/**
* The WissKi Cloud account manager daemon API actions service.
*
* @var \Drupal\wisski_cloud_account_manager\WisskiCloudAccountManagerDaemonApiActions
*/
protected WisskiCloudAccountManagerDaemonApiActions $wisskiCloudAccountManagerDaemonApiActions;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
@ -35,14 +63,23 @@ class WisskiCloudAccountManagerCreateForm extends FormBase {
/** /**
* Class constructor. * Class constructor.
* *
* @param \Drupal\wisski_cloud_account_manager\WisskiCloudAccountManagerDaemonApiActions $wisskiCloudAccountManagerDaemonApiActions * @param \Drupal\Core\Config\ConfigFactoryInterface $configFactory
* The WissKi Cloud account manager daemon API actions service. * The config factory service.
* @param \Drupal\Component\Utility\EmailValidatorInterface $emailValidator * @param \Drupal\Component\Utility\EmailValidatorInterface $emailValidator
* The email validator service. * The email validator service.
* @param \Drupal\Core\Messenger\MessengerInterface $messenger
* The messenger service.
* @param \Drupal\wisski_cloud_account_manager\WisskiCloudAccountManagerDaemonApiActions $wisskiCloudAccountManagerDaemonApiActions
* The WissKi Cloud account manager daemon API actions service.
*/ */
public function __construct(WisskiCloudAccountManagerDaemonApiActions $wisskiCloudAccountManagerDaemonApiActions, EmailValidatorInterface $emailValidator) { public function __construct(ConfigFactoryInterface $configFactory, EmailValidatorInterface $emailValidator, MessengerInterface $messenger, WisskiCloudAccountManagerDaemonApiActions $wisskiCloudAccountManagerDaemonApiActions) {
$this->configFactory = $configFactory;
$settings = $configFactory
->getEditable('wisski_cloud_account_manager.settings');
$this->settings = $settings;
$this->wisskiCloudAccountManagerDaemonApiActions = $wisskiCloudAccountManagerDaemonApiActions; $this->wisskiCloudAccountManagerDaemonApiActions = $wisskiCloudAccountManagerDaemonApiActions;
$this->emailValidator = $emailValidator; $this->emailValidator = $emailValidator;
$this->messenger = $messenger;
} }
/** /**
@ -53,8 +90,10 @@ class WisskiCloudAccountManagerCreateForm extends FormBase {
*/ */
public static function create(ContainerInterface $container) { public static function create(ContainerInterface $container) {
return new static( return new static(
$container->get('wisski_cloud_account_manager.daemon_api.actions'), $container->get('config.factory'),
$container->get('email.validator'), $container->get('email.validator'),
$container->get('messenger'),
$container->get('wisski_cloud_account_manager.daemon_api.actions'),
); );
} }
@ -102,8 +141,8 @@ class WisskiCloudAccountManagerCreateForm extends FormBase {
$form['subdomain'] = [ $form['subdomain'] = [
'#type' => 'textfield', '#type' => 'textfield',
'#title' => $this->t('Subdomain'), '#title' => $this->t('Subdomain'),
'#maxlength' => 12, '#maxlength' => 64,
'#description' => $this->t('WissKI cloud subdomain. Only small caps (a-z), underscore (_), minus (-) and 12 letter maximum allowed, i.e. "my_wisski" will end in "my_wisski.wisski.cloud".'), '#description' => $this->t('WissKI cloud subdomain. Only small caps (a-z), underscore (_), minus (-) and 64 letter maximum allowed, i.e. "my_wisski" will end in "my_wisski.wisski.cloud".'),
'#pattern' => '[a-z]+([_-]{1}[a-z]+)*', '#pattern' => '[a-z]+([_-]{1}[a-z]+)*',
'#required' => TRUE, '#required' => TRUE,
]; ];
@ -137,6 +176,15 @@ class WisskiCloudAccountManagerCreateForm extends FormBase {
$response = $this->wisskiCloudAccountManagerDaemonApiActions->checkAccountData($dataToCheck); $response = $this->wisskiCloudAccountManagerDaemonApiActions->checkAccountData($dataToCheck);
if (!$response['success']) {
$this->messenger->addError('Can not communicate with the provision daemon, please try again later or write an email to cloud@wiss-ki.eu.');
}
if (strlen($dataToCheck['username']) < 3) {
$form_state->setErrorByName('username', $this->t('The username "@username" is too short, please use at least 3 characters.', ['@username' => $dataToCheck['username']]));
}
if (in_array($dataToCheck['username'], explode(',', $this->settings->get('usernameBlacklist')))) {
$form_state->setErrorByName('username', $this->t('The username "@username" is not allowed.', ['@username' => $dataToCheck['username']]));
}
if ($response['accountData']['accountWithUsername']) { if ($response['accountData']['accountWithUsername']) {
$form_state->setErrorByName('username', $this->t('The username "@username" is already in use.', ['@username' => $dataToCheck['username']])); $form_state->setErrorByName('username', $this->t('The username "@username" is already in use.', ['@username' => $dataToCheck['username']]));
} }
@ -145,6 +193,13 @@ class WisskiCloudAccountManagerCreateForm extends FormBase {
$form_state->setErrorByName('email', $this->t('The email "@email" is already in use.', ['@email' => $dataToCheck['email']])); $form_state->setErrorByName('email', $this->t('The email "@email" is already in use.', ['@email' => $dataToCheck['email']]));
} }
if (strlen($dataToCheck['subdomain']) < 3) {
$form_state->setErrorByName('subdomain', $this->t('The subdomain "@subdomain" is too short, please use at least 3 characters.', ['@subdomain' => $dataToCheck['subdomain']]));
}
if (in_array($dataToCheck['subdomain'], explode(',', $this->settings->get('subdomainBlacklist')))) {
$form_state->setErrorByName('subdomain', $this->t('The subdomain "@subdomain" is not allowed.', ['@subdomain' => $dataToCheck['subdomain']]));
}
if ($response['accountData']['accountWithSubdomain']) { if ($response['accountData']['accountWithSubdomain']) {
$form_state->setErrorByName('subdomain', $this->t('The subdomain "@subdomain" is already in use.', ['@subdomain' => $dataToCheck['subdomain']])); $form_state->setErrorByName('subdomain', $this->t('The subdomain "@subdomain" is already in use.', ['@subdomain' => $dataToCheck['subdomain']]));
} }
@ -170,8 +225,7 @@ class WisskiCloudAccountManagerCreateForm extends FormBase {
$account["subdomain"] = $field['subdomain']; $account["subdomain"] = $field['subdomain'];
$accountResponse = $this->wisskiCloudAccountManagerDaemonApiActions->addAccount($account); $accountResponse = $this->wisskiCloudAccountManagerDaemonApiActions->addAccount($account);
dpm($accountResponse, 'accountResponse'); $this->wisskiCloudAccountManagerDaemonApiActions->sendValidationEmail($accountResponse['data']['email'], $accountResponse['data']['validationCode']);
$this->wisskiCloudAccountManagerDaemonApiActions->sendValidationEmail($accountResponse['account']['email'], $accountResponse['account']['validationCode']);
$this->messenger() $this->messenger()
->addMessage($this->t('The account data has been successfully saved, please check your email for validation!')); ->addMessage($this->t('The account data has been successfully saved, please check your email for validation!'));

View file

@ -42,6 +42,13 @@ class WisskiCloudAccountManagerSettingsForm extends ConfigFormBase {
'#default_value' => $config->get('daemonUrl'), '#default_value' => $config->get('daemonUrl'),
]; ];
$form['allAccounts'] = [
'#type' => 'url',
'#title' => $this->t('All accounts URL path'),
'#description' => $this->t('Provide the endpoint to the GET endpoint for all accounts, i. e. "http://wisski_cloud_api_daemon:3000/wisski-cloud-daemon/api/v1/account/all"'),
'#default_value' => $config->get('allAccounts'),
];
$form['accountPostUrlPath'] = [ $form['accountPostUrlPath'] = [
'#type' => 'url', '#type' => 'url',
'#title' => $this->t('POST URL path'), '#title' => $this->t('POST URL path'),
@ -63,9 +70,35 @@ class WisskiCloudAccountManagerSettingsForm extends ConfigFormBase {
'#default_value' => $config->get('accountValidation'), '#default_value' => $config->get('accountValidation'),
]; ];
$form['usernameBlacklist'] = [
'#type' => 'textfield',
'#title' => $this->t('Username blacklist'),
'#description' => $this->t('Provide blocked usernames with a comma separated list, i. e. "admin,root"'),
'#default_value' => $config->get('usernameBlacklist'),
];
$form['subdomainBlacklist'] = [
'#type' => 'textfield',
'#title' => $this->t('Subdomain blacklist'),
'#description' => $this->t('Provide blocked subdomain with a comma separated list, i. e. "www,admin,root"'),
'#default_value' => $config->get('subdomainBlacklist'),
];
return $form; return $form;
} }
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state): void {
parent::validateForm($form, $form_state);
if (!preg_match("/^(?:\w+(?:,\w+)*)?$/", $form_state->getValue('usernameBlacklist'))) {
$form_state->setErrorByName('usernameBlacklist', $this->t('The username blacklist is not valid. Only words separated by commas are allowed.'));
}
if (!preg_match("/^(?:\w+(?:,\w+)*)?$/", $form_state->getValue('subdomainBlacklist'))) {
$form_state->setErrorByName('subdomainBlacklist', $this->t('The subdomain blacklist is not valid. Only words separated by commas are allowed.'));
}
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
@ -77,6 +110,8 @@ class WisskiCloudAccountManagerSettingsForm extends ConfigFormBase {
->set('accountFilterByData', $form_state->getValue('accountFilterByData')) ->set('accountFilterByData', $form_state->getValue('accountFilterByData'))
->set('accountProvisionAndValidationCheck', $form_state->getValue('accountProvisionAndValidationCheck')) ->set('accountProvisionAndValidationCheck', $form_state->getValue('accountProvisionAndValidationCheck'))
->set('accountValidation', $form_state->getValue('accountValidation')) ->set('accountValidation', $form_state->getValue('accountValidation'))
->set('usernameBlacklist', $form_state->getValue('usernameBlacklist'))
->set('subdomainBlacklist', $form_state->getValue('subdomainBlacklist'))
->save(); ->save();
parent::submitForm($form, $form_state); parent::submitForm($form, $form_state);

View file

@ -6,6 +6,7 @@ use Drupal\Core\Config\Config;
use Drupal\Core\Config\ConfigFactoryInterface; use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\DependencyInjection\DependencySerializationTrait; use Drupal\Core\DependencyInjection\DependencySerializationTrait;
use Drupal\Core\Language\LanguageManagerInterface; use Drupal\Core\Language\LanguageManagerInterface;
use Drupal\Core\Logger\LoggerChannelFactoryInterface;
use Drupal\Core\Mail\MailManagerInterface; use Drupal\Core\Mail\MailManagerInterface;
use Drupal\Core\Messenger\MessengerInterface; use Drupal\Core\Messenger\MessengerInterface;
use Drupal\Core\Render\Markup; use Drupal\Core\Render\Markup;
@ -21,11 +22,11 @@ class WisskiCloudAccountManagerDaemonApiActions {
use DependencySerializationTrait; use DependencySerializationTrait;
/** /**
* The base URL of the WissKI Cloud account manager daemon. * The URL path to all account data GET endpoint.
* *
* @var string * @var string
*/ */
private string $DAEMON_URL; private string $ALL_ACCOUNTS = '/account/all';
/** /**
* The URL path to the POST endpoint. * The URL path to the POST endpoint.
@ -35,11 +36,11 @@ class WisskiCloudAccountManagerDaemonApiActions {
private string $ACCOUNT_POST_URL_PART = '/account'; private string $ACCOUNT_POST_URL_PART = '/account';
/** /**
* The URL path to the GET endpoint. * The URL path to provision and validation GET endpoint.
* *
* @var string * @var string
*/ */
private string $FILTER_BY_DATA_URL_PART = '/account/by_data'; private string $ACCOUNT_PROVISION_AND_VALIDATION_URL_PART;
/** /**
* The URL path to provision and validation GET endpoint. * The URL path to provision and validation GET endpoint.
@ -49,25 +50,18 @@ class WisskiCloudAccountManagerDaemonApiActions {
private string $ACCOUNT_VALIDATION_URL_PART = '/account/validation'; private string $ACCOUNT_VALIDATION_URL_PART = '/account/validation';
/** /**
* The string translation service. * The base URL of the WissKI Cloud account manager daemon.
* *
* @var \Drupal\Core\StringTranslation\TranslationInterface * @var string
*/ */
protected TranslationInterface $stringTranslation; private string $DAEMON_URL;
/** /**
* The messenger service. * The URL path to the filter by account data GET endpoint.
* *
* @var \Drupal\Core\Messenger\MessengerInterface * @var string
*/ */
protected MessengerInterface $messenger; private string $FILTER_BY_DATA_URL_PART = '/account/by_data';
/**
* The HTTP client.
*
* @var \GuzzleHttp\ClientInterface
*/
protected ClientInterface $httpClient;
/** /**
* The settings config. * The settings config.
@ -77,11 +71,25 @@ class WisskiCloudAccountManagerDaemonApiActions {
protected Config $settings; protected Config $settings;
/** /**
* The mail manager. * The HTTP client.
* *
* @var \Drupal\Core\Mail\MailManagerInterface * @var \GuzzleHttp\ClientInterface
*/ */
protected MailManagerInterface $mailManager; protected ClientInterface $httpClient;
/**
* The logger factory.
*
* @var \Drupal\Core\Logger\LoggerChannelFactoryInterface
*/
protected LoggerChannelFactoryInterface $loggerFactory;
/**
* The messenger service.
*
* @var \Drupal\Core\Messenger\MessengerInterface
*/
protected MessengerInterface $messenger;
/** /**
* The language manager. * The language manager.
@ -90,19 +98,35 @@ class WisskiCloudAccountManagerDaemonApiActions {
*/ */
protected LanguageManagerInterface $languageManager; protected LanguageManagerInterface $languageManager;
/**
* The mail manager.
*
* @var \Drupal\Core\Mail\MailManagerInterface
*/
protected MailManagerInterface $mailManager;
/**
* The string translation service.
*
* @var \Drupal\Core\StringTranslation\TranslationInterface
*/
protected TranslationInterface $stringTranslation;
/** /**
* Class constructor. * Class constructor.
*/ */
public function __construct( public function __construct(
TranslationInterface $stringTranslation,
MessengerInterface $messenger,
ClientInterface $httpClient,
ConfigFactoryInterface $configFactory, ConfigFactoryInterface $configFactory,
ClientInterface $httpClient,
LanguageManagerInterface $languageManager,
LoggerChannelFactoryInterface $loggerFactory,
MessengerInterface $messenger,
MailManagerInterface $mailManager, MailManagerInterface $mailManager,
LanguageManagerInterface $languageManager TranslationInterface $stringTranslation,
) { ) {
// Services from container. // Services from container.
$this->stringTranslation = $stringTranslation; $this->stringTranslation = $stringTranslation;
$this->loggerFactory = $loggerFactory;
$this->messenger = $messenger; $this->messenger = $messenger;
$this->httpClient = $httpClient; $this->httpClient = $httpClient;
$this->mailManager = $mailManager; $this->mailManager = $mailManager;
@ -115,9 +139,10 @@ class WisskiCloudAccountManagerDaemonApiActions {
// Set the daemon URL and the URL parts class variables. // Set the daemon URL and the URL parts class variables.
$this->DAEMON_URL = $settings->get('daemonUrl') ?: 'http://wisski_cloud_api_daemon:3000/wisski-cloud-daemon/api/v1'; $this->DAEMON_URL = $settings->get('daemonUrl') ?: 'http://wisski_cloud_api_daemon:3000/wisski-cloud-daemon/api/v1';
$this->USER_POST_URL_PART = $settings->get('accountPostUrlPath') ?: '/account'; $this->ALL_ACCOUNTS = $settings->get('allAccounts') ?: '/account/all';
$this->ACCOUNT_POST_URL_PART = $settings->get('accountPostUrlPath') ?: '/account';
$this->FILTER_BY_DATA_URL_PART = $settings->get('accountFilterByData') ?: '/account/by_data'; $this->FILTER_BY_DATA_URL_PART = $settings->get('accountFilterByData') ?: '/account/by_data';
$this->USER_PROVISION_AND_VALIDATION_URL_PART = $settings->get('accountProvisionAndValidationUrlPart') ?: '/account/provision_and_validation'; $this->ACCOUNT_PROVISION_AND_VALIDATION_URL_PART = $settings->get('accountProvisionAndValidationUrlPart') ?: '/account/provision_and_validation';
$this->ACCOUNT_VALIDATION_URL_PART = $settings->get('accountValidationUrlPart') ?: '/account/validation'; $this->ACCOUNT_VALIDATION_URL_PART = $settings->get('accountValidationUrlPart') ?: '/account/validation';
} }
@ -156,6 +181,7 @@ class WisskiCloudAccountManagerDaemonApiActions {
* The response from the daemon. * The response from the daemon.
*/ */
public function checkAccountData(array $dataToCheck): array { public function checkAccountData(array $dataToCheck): array {
try {
// Build the query string from the parameters. // Build the query string from the parameters.
$query_string = http_build_query($dataToCheck); $query_string = http_build_query($dataToCheck);
@ -170,17 +196,54 @@ class WisskiCloudAccountManagerDaemonApiActions {
// Request successful, handle the data in $response->data. // Request successful, handle the data in $response->data.
return [ return [
"message" => "Get account data", "message" => "Get account data",
"accountData" => json_decode($response->getBody()->getContents(), TRUE), "accountData" => json_decode($response->getBody()->getContents(),
TRUE)['data'],
'success' => TRUE,
]; ];
} }
else { else {
// Request failed, handle the error. // Request failed, handle the error.
return [ return [
"message" => 'Request failed with code: ' . $response->getStatusCode(), "message" => 'Request failed with code: ' . $response->getStatusCode(),
"accountData" => [], "accountData" => [
'accountWithUsername' => NULL,
'accountWithEmail' => NULL,
'accountWithSubdomain' => NULL,
],
'success' => FALSE,
]; ];
} }
} }
catch (\Exception $e) {
// Request failed, handle the error.
$this->loggerFactory
->get('wisski_cloud_account_manager')
->error('Request failed with exception: ' . $e->getMessage());
return [
"message" => 'Request failed with exception: ' . $e->getMessage(),
"accountData" => [
'accountWithUsername' => NULL,
'accountWithEmail' => NULL,
'accountWithSubdomain' => NULL,
],
'success' => FALSE,
];
}
}
/**
* Gets all accounts from the WissKI Cloud account manager daemon.
*
* @return array
* The accounts response from the daemon.
*/
public function getAccounts(): array {
// Combine the base URL and the query string.
$request_url = $this->DAEMON_URL . $this->ALL_ACCOUNTS;
// Send the GET request using the `drupal_http_request()` function.
$response = $this->httpClient->get($request_url);
return json_decode($response->getBody()->getContents(), TRUE);
}
/** /**
* Checks the validation status of the given validation code. * Checks the validation status of the given validation code.
@ -194,10 +257,8 @@ class WisskiCloudAccountManagerDaemonApiActions {
public function validateAccount(string $validationCode): ResponseInterface { public function validateAccount(string $validationCode): ResponseInterface {
$url = $this->DAEMON_URL . $this->ACCOUNT_VALIDATION_URL_PART . '/' . $validationCode; $url = $this->DAEMON_URL . $this->ACCOUNT_VALIDATION_URL_PART . '/' . $validationCode;
return $this->httpClient->put($url); return $this->httpClient->put($url);
} }
/** /**
* Sends a validation email to the given email address. * Sends a validation email to the given email address.
* *
@ -219,7 +280,6 @@ class WisskiCloudAccountManagerDaemonApiActions {
$params['subject'] = $this->stringTranslation->translate('WissKI Cloud account validation'); $params['subject'] = $this->stringTranslation->translate('WissKI Cloud account validation');
$result = $this->mailManager->mail($module, $key, $to, $langcode, $params, NULL, TRUE); $result = $this->mailManager->mail($module, $key, $to, $langcode, $params, NULL, TRUE);
dpm($result, 'result');
if ($result['result'] === TRUE) { if ($result['result'] === TRUE) {
$this->messenger $this->messenger
->addMessage($this->stringTranslation->translate('Email sent successfully.')); ->addMessage($this->stringTranslation->translate('Email sent successfully.'));

View file

@ -1,56 +1,57 @@
{# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_validation_page.html.twig #} {# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_account_managing_page.html.twig #}
<div> <div>
{% if responseContents is not empty %} {% if accounts is not empty %}
<table class="wisski-cloud-account-manager-table"> <table class="wisski-cloud-account-manager-table">
<tr> <tr>
<th>Id</th>
<th>Person name</th> <th>Person name</th>
<th>Email</th> <th>Email</th>
<th>Username</th> <th>Username</th>
<th>Subdomain</th> <th>Subdomain</th>
<th>Valid</th> <th>Valid</th>
<th>Provisioned</th> <th>Provisioned</th>
<th>ErrorLog</th> <th>Error</th>
<th>Options</th>
</tr> </tr>
{% for item in accounts.data %}
<tr> <tr>
<td>{{ responseContents.data.personName }}</td> <td>{{ item._id }}</td>
<td>{{ responseContents.data.email }}</td> <td>{{ item.personName }}</td>
<td>{{ responseContents.data.username }}</td> <td>{{ item.email }}</td>
<td>{{ responseContents.data.subdomain }}</td> <td>{{ item.username }}</td>
<td>{{ item.subdomain }}</td>
<td class="valid"> <td class="valid">
{% if responseContents.data.valid == 1 %} {% if item.valid == 1 %}
yes yes
{% elseif responseContents.data.valid == 0 %} {% elseif item.valid == 0 %}
no no
{% else %} {% else %}
unknown unknown
{% endif %} {% endif %}
</td> </td>
<td class="provisioned">{% if responseContents.data.provisioned == 1 %} <td class="provisioned">{% if item.provisioned == 1 %}
yes
{% elseif responseContents.data.provisioned == 0 %}
no
{% elseif responseContents.data.provisioned == 2 %}
ongoing ongoing
{% elseif item.provisioned == 2 %}
yes
{% elseif item.provisioned == 3 %}
no
{% else %} {% else %}
unknown unknown
{% endif %}</td> {% endif %}</td>
<td>{{ responseContents.error }}</td> <td>{{ accounts.error }}</td>
<td><label for="account-edit"></label>
<select name="account-edit" id="account-edit">
<option value="edit">edit</option>
{% if item.valid == 0 %}
<option value="validate">validate</option>
{% endif %}
{% if item.provisioned == 0 %}
<option value="provise">provise</option>
{% endif %}
<option value="delete">delete</option>
</select></td>
</tr> </tr>
{% endfor %}
</table> </table>
<hr>
<div class="wisski-cloud-account-manager-center">
{% if responseContents.data.valid == 1 and responseContents.data.provisioned == 1 %}
<p class="wisski-cloud-account-manager-success"><strong> Your account is valid and provisioned. You can now log in to your account at <a href="https://{{ responseContents.data.subdomain }}.wisski.cloud">https://{{ responseContents.data.subdomain }}.wisski.cloud</a>.</strong></p>
{% elseif responseContents.data.valid == 1 and responseContents.data.provisioned == 0 %}
<p class="wisski-cloud-account-manager-error"><strong>Your account is valid but the provision has not started. Please contact <a href="mailto:info@wiss-ki.eu">info@wiss-ki.eu</a> to resolve this issue.</strong></p>
{% elseif responseContents.data.valid == 1 and responseContents.data.provisioned == 2 %}
<p class="wisski-cloud-account-manager-warning"><strong>Your account is valid and the provision of your WissKI Cloud instance has started. Please wait a few minutes and refresh this page.</strong></p>
{% elseif responseContents.data.valid == 0 %}
<p class="wisski-cloud-account-manager-error"><strong>Your account is not valid. Please contact <a href="mailto:info@wiss-ki.eu">info@wiss-ki.eu</a> to resolve this issue.</strong></p>
{% else %}
<p class="wisski-cloud-account-manager-error"><strong>Something went wrong. Please contact <a href="mailto:info@wiss-ki.eu">info@wiss-ki.eu</a> to resolve this issue.</strong></p>
{% endif %}
</div>
{% endif %} {% endif %}
</div> </div>

View file

@ -1,6 +1,6 @@
{# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_validation_page.html.twig #} {# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_validation_page.html.twig #}
<div> <div>
{% if responseContents is not empty %} {% if account is not empty %}
<table class="wisski-cloud-account-manager-table"> <table class="wisski-cloud-account-manager-table">
<tr> <tr>
<th>Person name</th> <th>Person name</th>
@ -9,41 +9,43 @@
<th>Subdomain</th> <th>Subdomain</th>
<th>Valid</th> <th>Valid</th>
<th>Provisioned</th> <th>Provisioned</th>
<th>Error</th>
</tr> </tr>
<tr> <tr>
<td>{{ responseContents.data.personName }}</td> <td>{{ account.data.personName }}</td>
<td>{{ responseContents.data.email }}</td> <td>{{ account.data.email }}</td>
<td>{{ responseContents.data.username }}</td> <td>{{ account.data.username }}</td>
<td>{{ responseContents.data.subdomain }}</td> <td>{{ account.data.subdomain }}</td>
<td class="valid"> <td class="valid">
{% if responseContents.data.valid == 1 %} {% if account.data.valid == 1 %}
yes yes
{% elseif responseContents.data.valid == 0 %} {% elseif account.data.valid == 0 %}
no no
{% else %} {% else %}
unknown unknown
{% endif %} {% endif %}
</td> </td>
<td class="provisioned">{% if responseContents.data.provisioned == 1 %} <td class="provisioned">{% if account.data.provisioned == 1 %}
yes
{% elseif responseContents.data.provisioned == 0 %}
no
{% elseif responseContents.data.provisioned == 2 %}
ongoing ongoing
{% elseif account.data.provisioned == 2 %}
yes
{% elseif account.data.provisioned == 3 %}
failed
{% else %} {% else %}
unknown unknown
{% endif %}</td> {% endif %}</td>
<td>{{ account.error }}</td>
</tr> </tr>
</table> </table>
<hr> <hr>
<div class="wisski-cloud-account-manager-center"> <div class="wisski-cloud-account-manager-center">
{% if responseContents.data.valid == 1 and responseContents.data.provisioned == 1 %} {% if account.data.valid == 1 and account.data.provisioned == 2 %}
<p class="wisski-cloud-account-manager-success"><strong> Your account is valid and provisioned. You can now log in to your account at <a href="https://{{ responseContents.data.subdomain }}.wisski.cloud">https://{{ responseContents.data.subdomain }}.wisski.cloud</a>.</strong></p> <p class="wisski-cloud-account-manager-success"><strong> Your account is valid and provisioned. You can now log in to your account at <a href="https://{{ account.data.subdomain }}.wisski.cloud">https://{{ account.data.subdomain }}.wisski.cloud</a>.</strong></p>
{% elseif responseContents.data.valid == 1 and responseContents.data.provisioned == 0 %} {% elseif account.data.valid == 1 and (account.data.provisioned == 0 or account.data.provisioned == 3)%}
<p class="wisski-cloud-account-manager-error"><strong>Your account is valid but the provision has not started. Please contact <a href="mailto:info@wiss-ki.eu">info@wiss-ki.eu</a> to resolve this issue.</strong></p> <p class="wisski-cloud-account-manager-error"><strong>Your account is valid but the provision failed or the state is unknown. Please refresh this site and if the state persists contact <a href="mailto:info@wiss-ki.eu">cloud@wiss-ki.eu</a> to resolve this issue.</strong></p>
{% elseif responseContents.data.valid == 1 and responseContents.data.provisioned == 2 %} {% elseif account.data.valid == 1 and account.data.provisioned == 1 %}
<p class="wisski-cloud-account-manager-warning"><strong>Your account is valid and the provision of your WissKI Cloud instance has started. Please wait a few minutes and refresh this page.</strong></p> <p class="wisski-cloud-account-manager-warning"><strong>Your account is valid and the provision of your WissKI Cloud instance has started. Please wait a few minutes and refresh this page.</strong></p>
{% elseif responseContents.data.valid == 0 %} {% elseif account.data.valid == 0 %}
<p class="wisski-cloud-account-manager-error"><strong>Your account is not valid. Please contact <a href="mailto:info@wiss-ki.eu">info@wiss-ki.eu</a> to resolve this issue.</strong></p> <p class="wisski-cloud-account-manager-error"><strong>Your account is not valid. Please contact <a href="mailto:info@wiss-ki.eu">info@wiss-ki.eu</a> to resolve this issue.</strong></p>
{% else %} {% else %}
<p class="wisski-cloud-account-manager-error"><strong>Something went wrong. Please contact <a href="mailto:info@wiss-ki.eu">info@wiss-ki.eu</a> to resolve this issue.</strong></p> <p class="wisski-cloud-account-manager-error"><strong>Something went wrong. Please contact <a href="mailto:info@wiss-ki.eu">info@wiss-ki.eu</a> to resolve this issue.</strong></p>

View file

@ -12,7 +12,7 @@ function wisski_cloud_account_manager_help($route_name, \Drupal\Core\Routing\Rou
case 'help.page.wisski_cloud_account_manager': case 'help.page.wisski_cloud_account_manager':
$output = ''; $output = '';
$output .= '<h3>' . t('About') . '</h3>'; $output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module provides a form to create a WissKI Cloud account. Create form can be found at the route <a href="@createPage"> "/wisski_cloud_account_manager/create" </a>', ['@createPage' => '/wisski_cloud_account_manager/create']). '</p>'; $output .= '<p>' . t('This module provides a form to create a WissKI Cloud account. Create form can be found at the route <a href="@createPage"> "/wisski_cloud_account_manager/create" </a>', ['@createPage' => '/wisski-cloud-account-manager/create']). '</p>';
return $output; return $output;
} }
} }
@ -48,9 +48,16 @@ function wisski_cloud_account_manager_mail($key, &$message, $params) {
*/ */
function wisski_cloud_account_manager_theme($existing, $type, $theme, $path) { function wisski_cloud_account_manager_theme($existing, $type, $theme, $path) {
return [ return [
'wisski_cloud_account_manager_validation_page' => [ 'wisski_cloud_account_manager_terms_and_conditions_page' => [
'variables' => ['responseContents' => NULL], 'variables' => ['date' => NULL],
], ],
'wisski_cloud_account_manager_account_managing_page' => [
'variables' => ['accounts' => NULL],
],
'wisski_cloud_account_manager_validation_page' => [
'variables' => ['account' => NULL],
],
]; ];
} }

View file

@ -7,14 +7,6 @@ system.admin_config_wisski_cloud_account:
requirements: requirements:
_permission: 'administer site configuration' _permission: 'administer site configuration'
wisski_cloud_account.settings:
path: '/admin/config/wisski-cloud-account-manager/settings'
defaults:
_form: '\Drupal\wisski_cloud_account_manager\Form\WisskiCloudAccountManagerSettingsForm'
_title: 'WissKI cloud account settings'
requirements:
_permission: 'administer site configuration'
wisski_cloud_account.create: wisski_cloud_account.create:
path: '/wisski-cloud-account-manager/create' path: '/wisski-cloud-account-manager/create'
defaults: defaults:
@ -23,14 +15,22 @@ wisski_cloud_account.create:
requirements: requirements:
_access: 'TRUE' _access: 'TRUE'
wisski_cloud_account.validate: wisski_cloud_account.manage:
path: '/wisski-cloud-account-manager/validate/{validationCode}' path: '/wisski-cloud-account-manager/manage'
defaults: defaults:
_controller: '\Drupal\wisski_cloud_account_manager\Controller\WisskiCloudAccountManagerController::validationPage' _controller: '\Drupal\wisski_cloud_account_manager\Controller\WisskiCloudAccountManagerController::accountManagingPage'
_title: 'Check validation and provision of your WissKI Cloud account' _title: 'Account managing page'
requirements: requirements:
_access: 'TRUE' _access: 'TRUE'
token: '[a-zA-Z0-9]+'
wisski_cloud_account.settings:
path: '/admin/config/wisski-cloud-account-manager/settings'
defaults:
_form: '\Drupal\wisski_cloud_account_manager\Form\WisskiCloudAccountManagerSettingsForm'
_title: 'WissKI cloud account settings'
requirements:
_permission: 'administer site configuration'
wisski_cloud_account.terms_and_conditions: wisski_cloud_account.terms_and_conditions:
path: '/wisski-cloud-account-manager/terms-and-conditions' path: '/wisski-cloud-account-manager/terms-and-conditions'
@ -40,5 +40,17 @@ wisski_cloud_account.terms_and_conditions:
requirements: requirements:
_access: 'TRUE' _access: 'TRUE'
wisski_cloud_account.validate:
path: '/wisski-cloud-account-manager/validate/{validationCode}'
defaults:
_controller: '\Drupal\wisski_cloud_account_manager\Controller\WisskiCloudAccountManagerController::validationPage'
_title: 'Check validation and provision of your WissKI Cloud account'
requirements:
_access: 'TRUE'
token: '[a-zA-Z0-9]+'
options:
no_cache: TRUE

View file

@ -2,9 +2,11 @@ services:
wisski_cloud_account_manager.daemon_api.actions: wisski_cloud_account_manager.daemon_api.actions:
class: Drupal\wisski_cloud_account_manager\WisskiCloudAccountManagerDaemonApiActions class: Drupal\wisski_cloud_account_manager\WisskiCloudAccountManagerDaemonApiActions
arguments: arguments:
- '@string_translation'
- '@messenger'
- '@http_client'
- '@config.factory' - '@config.factory'
- '@plugin.manager.mail' - '@http_client'
- '@language_manager' - '@language_manager'
- '@logger.factory'
- '@messenger'
- '@plugin.manager.mail'
- '@string_translation'