itk-dev / azure_ad_delta_sync
Azure AD Delta Sync for Drupal
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 1
Type:drupal-module
Requires
- drush/drush: ^9 || ^10
- itk-dev/azure-ad-delta-sync: ^1.0
- itk-dev/drupal_psr6_cache: ^1.0
- symfony/http-client: ^5.3
Requires (Dev)
- dealerdirect/phpcodesniffer-composer-installer: ^0.7.1
- drupal/coder: ^8.3
- mglaman/drupal-check: ^1.1
This package is auto-updated.
Last update: 2024-11-08 11:44:32 UTC
README
Drupal module for Azure AD Delta Sync.
Installation
composer require itk-dev/azure_ad_delta_sync vendor/bin/drush pm:enable azure_ad_delta_sync
Go to /admin/config/azure_ad_delta_sync
to set up the module.
You will probably want to add Azure api keys in settings.local.php
, i.e.
# settings.local.php $config['azure_ad_delta_sync.settings']['azure']['client_id'] = '…'; $config['azure_ad_delta_sync.settings']['azure']['client_secret'] = '…'; $config['azure_ad_delta_sync.settings']['azure']['group_id'] = '…'; $config['azure_ad_delta_sync.settings']['azure']['tenant_id'] = '…';
Furthermore, you may want to install the Config
Ignore module and ignore the
azure_ad_delta_sync.settings
config if committing config to a version control
system.
Usage
A cron job should run the following command at regular intervals:
vendor/bin/drush azure_ad_delta_sync:run --force
Run vendor/bin/drush azure_ad_delta_sync:run --help
for details on the command.
Development
For development you need a full Drupal project. See itk-dev/azure-ad-delta-sync-drupal-test for an example.
We use a lazy services, azure_ad_delta_sync.user_manager
(Drupal\azure_ad_delta_sync\UserManager
) and azure_ad_delta_sync.controller
(Drupal\azure_ad_delta_sync\Controller
), , which requires generating a prozy
class (cf. https://www.webomelette.com/lazy-loaded-services-drupal-8).
Run the following commands to update the proxy classes:
php «DRUPAL_ROOT»/web/core/scripts/generate-proxy-class.php 'Drupal\azure_ad_delta_sync\UserManager' web/modules/contrib/azure_ad_delta_sync/src php «DRUPAL_ROOT»/web/core/scripts/generate-proxy-class.php 'Drupal\azure_ad_delta_sync\Controller web/modules/contrib/azure_ad_delta_sync/src
Automated tests
Requires a full Drupal installation with the azure_ad_delta_sync
module in the
web/modules/contrib
folder.
(cd «DRUPAL_ROOT»/web; ../vendor/bin/phpunit modules/contrib/azure_ad_delta_sync/tests/src/Functional)
Coding standards
The code follows the Drupal Coding
Standards (cf.
phpcs.xml.dist
) and can be checked by running
composer install composer coding-standards-check
Use
composer coding-standards-apply
to automatically fix some coding standard violations.
Code analysis
drupal-check is used to perform static analysis of the code. Run
composer code-analysis
GitHub Actions
We use GitHub Actions to check coding
standards, perform code analysis and run automated tests whenever a pull request
is made (cf. .github/workflows/pr.yaml
).
Before making a pull request you can run the GitHub Actions locally to check for any problems:
Install act
and run
act -P ubuntu-latest=shivammathur/node:focal pull_request
(cf. https://github.com/shivammathur/setup-php#local-testing-setup).