Adds Fasit Schultz handler for archiving purposes.
composer require os2forms/os2forms_fasit
vendor/bin/drush pm:enable os2forms_fasitConfigure Fasit API base url and a way of getting
certificate on /admin/os2forms_fasit/settings.
The certificate must be in pem or cer format and
must be whitelisted by Fasit Schultz.
For this the certificate thumbprint,
in lowercase and without colons, is needed.
To get the thumbprint in the correct format from the command line run
openssl x509 -in SOME_CERTIFICATE.pem -noout -fingerprint | cut -d= -f2 | sed 's/://g' | tr '[:upper:]' '[:lower:]'Example output
6acb261f393172d87fa3997cec86569759a8528aArchiving is done via an
Advanced Queue
called fasit_queue.
The queue should be processed with drush:
drush advancedqueue:queue:process fasit_queueList the queue (and all other queues) with
drush advancedqueue:queue:listor go to /admin/config/system/queues/jobs/fasit_queue
for a graphical overview of jobs in the queue.
Consider running the queue via a cronjob.
*/5 * * * * /path/to/drush advancedqueue:queue:process fasit_queueCheck coding standards:
// PHP CS Fixer
docker run --rm --interactive --tty --volume ${PWD}:/app itkdev/php8.3-fpm:latest composer install
docker run --rm --interactive --tty --volume ${PWD}:/app itkdev/php8.3-fpm:latest composer coding-standards-check
// Markdownlint
docker run --rm --interactive --tty --volume ${PWD}:/app node:20 yarn --cwd /app install
docker run --rm --interactive --tty --volume ${PWD}:/app node:20 yarn --cwd /app coding-standards-checkApply coding standards:
docker run --rm --interactive --tty --volume ${PWD}:/app itkdev/php8.3-fpm:latest composer coding-standards-apply
docker run --rm --interactive --tty --volume ${PWD}:/app node:20 yarn --cwd /app coding-standards-apply