Add basic application in order to perform the tasks
This commit is contained in:
parent
46d993d168
commit
8d5109d7de
9 changed files with 295 additions and 5 deletions
30
resources/epub-loader/app/action_cvs_export.php
Normal file
30
resources/epub-loader/app/action_cvs_export.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* Epub loader action: export ebooks info in a csv files
|
||||
*
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
* @author Didier Corbière <didier.corbiere@opale-concept.com>
|
||||
*/
|
||||
|
||||
foreach ($gConfig['databases'] as $dbConfig) {
|
||||
// Init csv file
|
||||
$fileName = $dbConfig['db_path'] . DIRECTORY_SEPARATOR . basename($dbConfig['db_path']) . '_metadata.csv';
|
||||
try {
|
||||
// Open or create the export file
|
||||
$export = new BookExport($fileName, BookExport::eExportTypeCsv, true);
|
||||
echo sprintf('Export ebooks to %s', $fileName) . '<br />';
|
||||
// Add the epub files into the export file
|
||||
if (!empty($dbConfig['epub_path'])) {
|
||||
$fileList = glob($dbConfig['epub_path'] . DIRECTORY_SEPARATOR . '*.epub');
|
||||
foreach ($fileList as $fileName) {
|
||||
$export->AddEpub($fileName);
|
||||
}
|
||||
}
|
||||
$export->SaveToFile();
|
||||
}
|
||||
catch (Exception $e) {
|
||||
$gErrorArray[$fileName] = $e->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue