jield-webdev / jield-export
This repo can be used to export database objects (using Doctrine) to External data formats (Excel/Parquet/CSV)
Installs: 7 656
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- php: ~8.3.0 || ~8.4.0
- codename/parquet: ^0.7
- doctrine/orm: ^2 || ^3
- jetbrains/phpstorm-attributes: ^1.0
- jield-webdev/azure-blob-storage: dev-main
- laminas/laminas-mvc: ^3.7.0
- phpoffice/phpspreadsheet: ^2.2
- webmozart/assert: ^1.11.0
Requires (Dev)
- iteaoffice/testing: dev-develop
This package is auto-updated.
Last update: 2024-11-22 07:59:59 UTC
README
This repo can be used to export database objects (using Doctrine) to External data formats (Excel/Parquet/CSV)
Installation
To enable this module in a Laminas application, ad the following to the modules
section of
your config/application.config.php
file:
return [ 'Jield\\Export', ];
Configuration
Each entity which has to be exported has to be registered in the configuration file. The following snippet shows how this can be done. It is also possible to include this array in the configuration files
<?php declare(strict_types=1); namespace General; use General\Export\Country\CountryColumns; return [ 'jield_export' => [ 'entities' => [ 'country' => CountryColumns::class ], ] ];
Columns file
Each object has to be transformed in to a set of columns. This is done by creating a class which extends
the AbstractEntityColums
. An example is shown below:
<?php declare(strict_types=1); namespace General\Export\Country; use General\Entity\Country;use Jield\Export\Columns\AbstractEntityColumns;use Jield\Export\ValueObject\Column; final class CountryColumns extends AbstractEntityColumns { protected string $name = 'dimcountry'; /** * @return array<Column> */ public function getColumns(): array { $qb = $this->entityManager->createQueryBuilder(); $countries = $qb->select('general_entity_country') ->from(from: Country::class, alias: 'general_entity_country') ->getQuery() ->getResult(); $idColumn = new Column(columnName: 'Id', type: Column::TYPE_INTEGER, isNullable: false); $cdColumn = new Column(columnName: 'Cd'); $countryColumn = new Column(columnName: 'Country'); $iso3Column = new Column(columnName: 'Iso3'); /** @var Country $country */ foreach ($countries as $country) { $idColumn->addRow($country->getId()); $cdColumn->addRow($country->getCd()); $countryColumn->addRow($country->getCountry()); } return [ $idColumn, $cdColumn, $countryColumn, ]; } public function getDependencies(): array { return [ 'organisationtype' => TypeColumns::class, ]; } }
When the getDependencies
method is implemented, the dependencies will be exported ass well. This is useful when you
have
a dimension table which is used in a fact table.
The component will automatically instantiate the extended class with the EntityManager
, if more dependencies are
needed register the class in the service manager
Upload to Azure.
Create an Azure storage account and create a container. The container name is used in the configuration file. Register a
service in the service manager with StorageLocationServiceInterface::class
as key, this service should
implement \Jield\Export\Service\StorageLocationServiceInterface
and required 2 methods
-
getDefaultStorageLocation
which returns an object implementing\Jield\Entity\StorageLocationInterface
, this object should a connection string which supports an account key or SAS token (recommended). The system also support access tokens but thengetOAuth2Service()
should return a service which is able to generate an access_token -
getBlobService
a function returns a\AzureOSS\Storage\Blob\BlobRestProxy
object, the following sample code can be usedpublic function getBlobService(): \AzureOSS\Storage\Blob\BlobRestProxy { if (null !== $this->blobClient) { return $this->blobClient; } $storageLocation = $this->getDefaultStorageLocation(); if ($storageLocation->hasOAuth2Service()) { $accessToken = $this->oAuth2Service->fetchAccessTokenFromService($storageLocation->getOAuth2Service()); $this->blobClient = BlobRestProxy::createBlobServiceWithTokenCredential( token: $accessToken, connectionString: $storageLocation->getConnectionString() ); } else { $this->blobClient = BlobRestProxy::createBlobService( connectionString: $storageLocation->getConnectionString() ); } return $this->blobClient; }