forked from wallabag/wallabag
Merge pull request #3266 from egilli/export-domain-as-author
Use the article publisher as author for exported files
This commit is contained in:
@ -18,7 +18,7 @@ class EntriesExport
|
||||
private $logoPath;
|
||||
private $title = '';
|
||||
private $entries = [];
|
||||
private $authors = ['wallabag'];
|
||||
private $author = 'wallabag';
|
||||
private $language = '';
|
||||
private $footerTemplate = '<div style="text-align:center;">
|
||||
<p>Produced by wallabag with %EXPORT_METHOD%</p>
|
||||
@ -72,6 +72,33 @@ class EntriesExport
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the author for one entry or category.
|
||||
*
|
||||
* The publishers are used, or the domain name if empty.
|
||||
*
|
||||
* @param string $method Method to get articles
|
||||
*
|
||||
* @return EntriesExport
|
||||
*/
|
||||
public function updateAuthor($method)
|
||||
{
|
||||
if ('entry' !== $method) {
|
||||
$this->author = $method . ' authors';
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
$this->author = $this->entries[0]->getDomainName();
|
||||
|
||||
$publishedBy = $this->entries[0]->getPublishedBy();
|
||||
if (!empty($publishedBy)) {
|
||||
$this->author = implode(', ', $publishedBy);
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the output format.
|
||||
*
|
||||
@ -128,9 +155,7 @@ class EntriesExport
|
||||
$book->setLanguage($this->language);
|
||||
$book->setDescription('Some articles saved on my wallabag');
|
||||
|
||||
foreach ($this->authors as $author) {
|
||||
$book->setAuthor($author, $author);
|
||||
}
|
||||
$book->setAuthor($this->author, $this->author);
|
||||
|
||||
// I hope this is a non existant address :)
|
||||
$book->setPublisher('wallabag', 'wallabag');
|
||||
@ -196,7 +221,7 @@ class EntriesExport
|
||||
* Book metadata
|
||||
*/
|
||||
$content->set('title', $this->title);
|
||||
$content->set('author', implode($this->authors));
|
||||
$content->set('author', $this->author);
|
||||
$content->set('subject', $this->title);
|
||||
|
||||
/*
|
||||
@ -247,7 +272,7 @@ class EntriesExport
|
||||
* Book metadata
|
||||
*/
|
||||
$pdf->SetCreator(PDF_CREATOR);
|
||||
$pdf->SetAuthor('wallabag');
|
||||
$pdf->SetAuthor($this->author);
|
||||
$pdf->SetTitle($this->title);
|
||||
$pdf->SetSubject('Articles via wallabag');
|
||||
$pdf->SetKeywords('wallabag');
|
||||
|
||||
Reference in New Issue
Block a user