1
|
|
|
<?php declare(strict_types=1); |
2
|
|
|
/* |
3
|
|
|
* This file is part of the feed-io package. |
4
|
|
|
* |
5
|
|
|
* (c) Alexandre Debril <[email protected]> |
6
|
|
|
* |
7
|
|
|
* For the full copyright and license information, please view the LICENSE |
8
|
|
|
* file that was distributed with this source code. |
9
|
|
|
*/ |
10
|
|
|
|
11
|
|
|
namespace FeedIo\Rule\Atom; |
12
|
|
|
|
13
|
|
|
use FeedIo\Feed\ItemInterface; |
14
|
|
|
use FeedIo\Feed\NodeInterface; |
15
|
|
|
use FeedIo\Rule\Author as BaseAuthor; |
16
|
|
|
|
17
|
|
|
class Author extends BaseAuthor |
18
|
|
|
{ |
19
|
|
|
const NODE_NAME = 'author'; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* @param NodeInterface $node |
23
|
|
|
* @param \DOMElement $element |
24
|
|
|
* @return mixed |
25
|
|
|
*/ |
26
|
|
|
public function setProperty(NodeInterface $node, \DOMElement $element) : void |
27
|
|
|
{ |
28
|
|
|
if ($node instanceof ItemInterface) { |
29
|
|
|
$author = $node->newAuthor(); |
30
|
|
|
$author->setName($this->getChildValue($element, 'name')); |
31
|
|
|
$author->setUri($this->getChildValue($element, 'uri')); |
32
|
|
|
$author->setEmail($this->getChildValue($element, 'email')); |
33
|
|
|
$node->setAuthor($author); |
34
|
|
|
} |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @inheritDoc |
39
|
|
|
*/ |
40
|
|
View Code Duplication |
protected function addElement(\DomDocument $document, \DOMElement $rootElement, NodeInterface $node) : void |
|
|
|
|
41
|
|
|
{ |
42
|
|
|
if ($node instanceof ItemInterface) { |
43
|
|
|
$element = $document->createElement(static::NODE_NAME); |
44
|
|
|
$this->appendNonEmptyChild($document, $element, 'name', $node->getAuthor()->getName()); |
45
|
|
|
$this->appendNonEmptyChild($document, $element, 'uri', $node->getAuthor()->getUri()); |
46
|
|
|
$this->appendNonEmptyChild($document, $element, 'email', $node->getAuthor()->getEmail()); |
47
|
|
|
|
48
|
|
|
$rootElement->appendChild($element); |
49
|
|
|
} |
50
|
|
|
} |
51
|
|
|
} |
52
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.