Total Complexity | 121 |
Total Lines | 603 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like Name often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Name, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
39 | class Name implements HasParent |
||
40 | { |
||
41 | use InheritableNameAttributesTrait, |
||
|
|||
42 | FormattingTrait, |
||
43 | AffixesTrait, |
||
44 | DelimiterTrait; |
||
45 | |||
46 | /** |
||
47 | * @var array |
||
48 | */ |
||
49 | protected $nameParts; |
||
50 | |||
51 | /** |
||
52 | * Specifies the text string used to separate names in a name variable. Default is ”, ” (e.g. “Doe, Smith”). |
||
53 | * |
||
54 | * @var |
||
55 | */ |
||
56 | private $delimiter = ", "; |
||
57 | |||
58 | /** |
||
59 | * @var Names |
||
60 | */ |
||
61 | private $parent; |
||
62 | |||
63 | /** |
||
64 | * @var SimpleXMLElement |
||
65 | */ |
||
66 | private $node; |
||
67 | |||
68 | /** |
||
69 | * @var string |
||
70 | */ |
||
71 | private $etAl; |
||
72 | |||
73 | /** |
||
74 | * @var string |
||
75 | */ |
||
76 | private $variable; |
||
77 | |||
78 | /** |
||
79 | * Name constructor. |
||
80 | * |
||
81 | * @param SimpleXMLElement $node |
||
82 | * @param Names $parent |
||
83 | * @throws InvalidStylesheetException |
||
84 | */ |
||
85 | public function __construct(SimpleXMLElement $node, Names $parent) |
||
86 | { |
||
87 | $this->node = $node; |
||
88 | $this->parent = $parent; |
||
89 | |||
90 | $this->nameParts = []; |
||
91 | |||
92 | /** |
||
93 | * @var SimpleXMLElement $child |
||
94 | */ |
||
95 | foreach ($node->children() as $child) { |
||
96 | switch ($child->getName()) { |
||
97 | case "name-part": |
||
98 | /** @var NamePart $namePart */ |
||
99 | $namePart = Factory::create($child, $this); |
||
100 | $this->nameParts[$namePart->getName()] = $namePart; |
||
101 | } |
||
102 | } |
||
103 | |||
104 | foreach ($node->attributes() as $attribute) { |
||
105 | switch ($attribute->getName()) { |
||
106 | case 'form': |
||
107 | $this->form = (string) $attribute; |
||
108 | break; |
||
109 | } |
||
110 | } |
||
111 | |||
112 | $this->initFormattingAttributes($node); |
||
113 | $this->initAffixesAttributes($node); |
||
114 | $this->initDelimiterAttributes($node); |
||
115 | } |
||
116 | |||
117 | /** |
||
118 | * @param stdClass $data |
||
119 | * @param string $var |
||
120 | * @param integer|null $citationNumber |
||
121 | * @return string |
||
122 | * @throws CiteProcException |
||
123 | */ |
||
124 | public function render($data, $var, $citationNumber = null) |
||
125 | { |
||
126 | $this->variable = $var; |
||
127 | $name = $data->{$var}; |
||
128 | if (!$this->attributesInitialized) { |
||
129 | $this->initInheritableNameAttributes($this->node); |
||
130 | } |
||
131 | if ("text" === $this->and) { |
||
132 | $this->and = CiteProc::getContext()->getLocale()->filter('terms', 'and')->single; |
||
133 | } elseif ('symbol' === $this->and) { |
||
134 | $this->and = '&'; |
||
135 | } |
||
136 | |||
137 | $resultNames = $this->handleSubsequentAuthorSubstitution($name, $citationNumber); |
||
138 | |||
139 | if (empty($resultNames)) { |
||
140 | return CiteProc::getContext()->getCitationData()->getSubsequentAuthorSubstitute(); |
||
141 | } |
||
142 | |||
143 | $resultNames = $this->prepareAbbreviation($resultNames); |
||
144 | |||
145 | /* When set to “true” (the default is “false”), name lists truncated by et-al abbreviation are followed by |
||
146 | the name delimiter, the ellipsis character, and the last name of the original name list. This is only |
||
147 | possible when the original name list has at least two more names than the truncated name list (for this |
||
148 | the value of et-al-use-first/et-al-subsequent-min must be at least 2 less than the value of |
||
149 | et-al-min/et-al-subsequent-use-first). */ |
||
150 | if ($this->etAlUseLast) { |
||
151 | $this->and = "…"; // set "and" |
||
152 | $this->etAl = null; //reset $etAl; |
||
153 | } |
||
154 | |||
155 | /* add "and" */ |
||
156 | $this->addAnd($resultNames); |
||
157 | |||
158 | $text = $this->renderDelimiterPrecedesLast($resultNames); |
||
159 | |||
160 | if (empty($text)) { |
||
161 | $text = implode($this->delimiter, $resultNames); |
||
162 | } |
||
163 | |||
164 | $text = $this->appendEtAl($name, $text, $resultNames); |
||
165 | |||
166 | /* A third value, “count”, returns the total number of names that would otherwise be rendered by the use of the |
||
167 | cs:names element (taking into account the effects of et-al abbreviation and editor/translator collapsing), |
||
168 | which allows for advanced sorting. */ |
||
169 | if ($this->form == 'count') { |
||
170 | return (int) count($resultNames); |
||
171 | } |
||
172 | |||
173 | return $text; |
||
174 | } |
||
175 | |||
176 | /** |
||
177 | * @param stdClass $nameItem |
||
178 | * @param int $rank |
||
179 | * @return string |
||
180 | * @throws CiteProcException |
||
181 | */ |
||
182 | private function formatName($nameItem, $rank) |
||
183 | { |
||
184 | $nameObj = $this->cloneNamePOSC($nameItem); |
||
185 | |||
186 | $useInitials = $this->initialize && !is_null($this->initializeWith) && $this->initializeWith !== false; |
||
187 | if ($useInitials && isset($nameItem->given)) { |
||
188 | $nameObj->given = StringHelper::initializeBySpaceOrHyphen($nameItem->given, $this->initializeWith); |
||
189 | } |
||
190 | |||
191 | $renderedResult = $this->getNamesString($nameObj, $rank); |
||
192 | CiteProcHelper::applyAdditionMarkupFunction($nameItem, $this->parent->getVariables()->first(), $renderedResult); |
||
193 | return trim($renderedResult); |
||
194 | } |
||
195 | |||
196 | /** |
||
197 | * @param stdClass $name |
||
198 | * @param int $rank |
||
199 | * @return string |
||
200 | * @throws CiteProcException |
||
201 | */ |
||
202 | private function getNamesString($name, $rank) |
||
203 | { |
||
204 | $text = ""; |
||
205 | |||
206 | if (!isset($name->family)) { |
||
207 | return $text; |
||
208 | } |
||
209 | |||
210 | $text = $this->nameOrder($name, $rank); |
||
211 | |||
212 | //contains nbsp prefixed by normal space or followed by normal space? |
||
213 | $text = htmlentities($text); |
||
214 | if (strpos($text, " ") !== false || strpos($text, " ") !== false) { |
||
215 | $text = preg_replace("/[\s]+/", "", $text); //remove normal spaces |
||
216 | return preg_replace("/ +/", " ", $text); |
||
217 | } |
||
218 | $text = html_entity_decode(preg_replace("/[\s]+/", " ", $text)); |
||
219 | return $this->format(trim($text)); |
||
220 | } |
||
221 | |||
222 | /** |
||
223 | * @param stdClass $name |
||
224 | * @return stdClass |
||
225 | */ |
||
226 | private function cloneNamePOSC($name) |
||
245 | } |
||
246 | |||
247 | /** |
||
248 | * @param $data |
||
249 | * @param $text |
||
250 | * @param $resultNames |
||
251 | * @return string |
||
252 | */ |
||
253 | protected function appendEtAl($data, $text, $resultNames) |
||
254 | { |
||
255 | //append et al abbreviation |
||
256 | if (count($data) > 1 |
||
257 | && !empty($resultNames) |
||
258 | && !empty($this->etAl) |
||
259 | && !empty($this->etAlMin) |
||
260 | && !empty($this->etAlUseFirst) |
||
261 | && count($data) != count($resultNames) |
||
262 | ) { |
||
263 | /* By default, when a name list is truncated to a single name, the name and the “et-al” (or “and others”) |
||
264 | term are separated by a space (e.g. “Doe et al.”). When a name list is truncated to two or more names, the |
||
265 | name delimiter is used (e.g. “Doe, Smith, et al.”). This behavior can be changed with the |
||
266 | delimiter-precedes-et-al attribute. */ |
||
267 | |||
268 | switch ($this->delimiterPrecedesEtAl) { |
||
269 | case 'never': |
||
270 | $text = $text . " " . $this->etAl; |
||
271 | break; |
||
272 | case 'always': |
||
273 | $text = $text . $this->delimiter . $this->etAl; |
||
274 | break; |
||
275 | case 'contextual': |
||
276 | default: |
||
277 | if (count($resultNames) === 1) { |
||
278 | $text .= " " . $this->etAl; |
||
279 | } else { |
||
280 | $text .= $this->delimiter . $this->etAl; |
||
281 | } |
||
282 | } |
||
283 | } |
||
284 | return $text; |
||
285 | } |
||
286 | |||
287 | /** |
||
288 | * @param $resultNames |
||
289 | * @return array |
||
290 | */ |
||
291 | protected function prepareAbbreviation($resultNames) |
||
330 | } |
||
331 | |||
332 | /** |
||
333 | * @param $data |
||
334 | * @param stdClass $preceding |
||
335 | * @return array |
||
336 | * @throws CiteProcException |
||
337 | */ |
||
338 | protected function renderSubsequentSubstitution($data, $preceding) |
||
390 | } |
||
391 | |||
392 | /** |
||
393 | * @throws CiteProcException |
||
394 | */ |
||
395 | private function handleSubsequentAuthorSubstitution($data, $citationNumber): array |
||
396 | { |
||
397 | $hasPreceding = CiteProc::getContext()->getCitationData()->has($citationNumber - 1); |
||
398 | $subsequentSubstitution = CiteProc::getContext()->getCitationData()->getSubsequentAuthorSubstitute(); |
||
399 | $subsequentSubstitutionRule = CiteProc::getContext()->getCitationData()->getSubsequentAuthorSubstituteRule(); |
||
400 | $preceding = CiteProc::getContext()->getCitationData()->get($citationNumber - 1); |
||
401 | |||
402 | |||
403 | if ($hasPreceding && !is_null($subsequentSubstitution) && !empty($subsequentSubstitutionRule)) { |
||
404 | /** |
||
405 | * @var stdClass $preceding |
||
406 | */ |
||
407 | if ($subsequentSubstitutionRule == SubsequentAuthorSubstituteRule::COMPLETE_ALL) { |
||
408 | try { |
||
409 | if (NameHelper::identicalAuthors($preceding, $data)) { |
||
410 | return []; |
||
411 | } else { |
||
412 | $resultNames = $this->getFormattedNames($data); |
||
413 | } |
||
414 | } catch (CiteProcException $e) { |
||
415 | $resultNames = $this->getFormattedNames($data); |
||
416 | } |
||
417 | } else { |
||
418 | $resultNames = $this->renderSubsequentSubstitution($data, $preceding); |
||
419 | } |
||
420 | } else { |
||
421 | $resultNames = $this->getFormattedNames($data); |
||
422 | } |
||
423 | return $resultNames; |
||
424 | } |
||
425 | |||
426 | |||
427 | /** |
||
428 | * @param array $data |
||
429 | * @return array |
||
430 | * @throws CiteProcException |
||
431 | */ |
||
432 | protected function getFormattedNames($data) |
||
433 | { |
||
434 | $resultNames = []; |
||
435 | foreach ($data as $rank => $name) { |
||
436 | $formatted = $this->formatName($name, $rank); |
||
437 | $resultNames[] = NameHelper::addExtendedMarkup($this->variable, $name, $formatted); |
||
438 | } |
||
439 | return $resultNames; |
||
440 | } |
||
441 | |||
442 | /** |
||
443 | * @param $resultNames |
||
444 | * @return string |
||
445 | */ |
||
446 | protected function renderDelimiterPrecedesLastNever($resultNames) |
||
447 | { |
||
448 | $text = ""; |
||
449 | if (!$this->etAlUseLast) { |
||
450 | if (count($resultNames) === 1) { |
||
451 | $text = $resultNames[0]; |
||
452 | } elseif (count($resultNames) === 2) { |
||
453 | $text = implode(" ", $resultNames); |
||
454 | } else { // >2 |
||
455 | $lastName = array_pop($resultNames); |
||
456 | $text = implode($this->delimiter, $resultNames)." ".$lastName; |
||
457 | } |
||
458 | } |
||
459 | return $text; |
||
460 | } |
||
461 | |||
462 | /** |
||
463 | * @param $resultNames |
||
464 | * @return string |
||
465 | */ |
||
466 | protected function renderDelimiterPrecedesLastContextual($resultNames) |
||
467 | { |
||
468 | if (count($resultNames) === 1) { |
||
469 | $text = $resultNames[0]; |
||
470 | } elseif (count($resultNames) === 2) { |
||
471 | $text = implode(" ", $resultNames); |
||
472 | } else { |
||
473 | $text = implode($this->delimiter, $resultNames); |
||
474 | } |
||
475 | return $text; |
||
476 | } |
||
477 | |||
478 | /** |
||
479 | * @param $resultNames |
||
480 | */ |
||
481 | protected function addAnd(&$resultNames) |
||
482 | { |
||
483 | $count = count($resultNames); |
||
484 | if (!empty($this->and) && $count > 1 && empty($this->etAl)) { |
||
485 | $new = $this->and.' '.end($resultNames); // add and-prefix of the last name if "and" is defined |
||
486 | // set prefixed last name at the last position of $resultNames array |
||
487 | $resultNames[count($resultNames) - 1] = $new; |
||
488 | } |
||
489 | } |
||
490 | |||
491 | /** |
||
492 | * @param $resultNames |
||
493 | * @return array|string |
||
494 | */ |
||
495 | protected function renderDelimiterPrecedesLast($resultNames) |
||
515 | } |
||
516 | |||
517 | |||
518 | /** |
||
519 | * @param stdClass $data |
||
520 | * @param integer $rank |
||
521 | * |
||
522 | * @return string |
||
523 | * @throws CiteProcException |
||
524 | */ |
||
525 | private function nameOrder($data, $rank) |
||
526 | { |
||
527 | $nameAsSortOrder = (($this->nameAsSortOrder === "first" && $rank === 0) || $this->nameAsSortOrder === "all"); |
||
528 | $demoteNonDroppingParticle = CiteProc::getContext()->getGlobalOptions()->getDemoteNonDroppingParticles(); |
||
529 | $normalizedName = NameHelper::normalizeName($data); |
||
530 | if (StringHelper::isLatinString($normalizedName) || StringHelper::isCyrillicString($normalizedName)) { |
||
531 | if ($this->form === "long" |
||
532 | && $nameAsSortOrder |
||
533 | && ((string) $demoteNonDroppingParticle === DemoteNonDroppingParticle::NEVER |
||
534 | || (string) $demoteNonDroppingParticle === DemoteNonDroppingParticle::SORT_ONLY) |
||
535 | ) { |
||
536 | // [La] [Fontaine], [Jean] [de], [III] |
||
537 | NameHelper::prependParticleTo($data, "family", "non-dropping-particle"); |
||
538 | NameHelper::appendParticleTo($data, "given", "dropping-particle"); |
||
539 | |||
540 | list($family, $given) = $this->renderNameParts($data); |
||
541 | |||
542 | $text = $family.(!empty($given) ? $this->sortSeparator.$given : ""); |
||
543 | $text .= !empty($data->suffix) ? $this->sortSeparator.$data->suffix : ""; |
||
544 | } elseif ($this->form === "long" |
||
545 | && $nameAsSortOrder |
||
546 | && (is_null($demoteNonDroppingParticle) |
||
547 | || (string) $demoteNonDroppingParticle === DemoteNonDroppingParticle::DISPLAY_AND_SORT) |
||
548 | ) { |
||
549 | // [Fontaine], [Jean] [de] [La], [III] |
||
550 | NameHelper::appendParticleTo($data, "given", "dropping-particle"); |
||
551 | NameHelper::appendParticleTo($data, "given", "non-dropping-particle"); |
||
552 | list($family, $given) = $this->renderNameParts($data); |
||
553 | $text = $family; |
||
554 | $text .= !empty($given) ? $this->sortSeparator.$given : ""; |
||
555 | $text .= !empty($data->suffix) ? $this->sortSeparator.$data->suffix : ""; |
||
556 | } elseif ($this->form === "long" && $nameAsSortOrder && empty($demoteNonDroppingParticle)) { |
||
557 | list($family, $given) = $this->renderNameParts($data); |
||
558 | $text = $family; |
||
559 | $text .= !empty($given) ? $this->delimiter.$given : ""; |
||
560 | $text .= !empty($data->suffix) ? $this->sortSeparator.$data->suffix : ""; |
||
561 | } elseif ($this->form === "short") { |
||
562 | // [La] [Fontaine] |
||
563 | NameHelper::prependParticleTo($data, "family", "non-dropping-particle"); |
||
564 | $text = $data->family; |
||
565 | } else {// form "long" (default) |
||
566 | // [Jean] [de] [La] [Fontaine] [III] |
||
567 | NameHelper::prependParticleTo($data, "family", "non-dropping-particle"); |
||
568 | NameHelper::prependParticleTo($data, "family", "dropping-particle"); |
||
569 | NameHelper::appendParticleTo($data, "family", "suffix"); |
||
570 | list($family, $given) = $this->renderNameParts($data); |
||
571 | $text = !empty($given) ? $given." ".$family : $family; |
||
572 | } |
||
573 | } elseif (StringHelper::isAsianString(NameHelper::normalizeName($data))) { |
||
574 | $text = $this->form === "long" ? $data->family . $data->given : $data->family; |
||
575 | } else { |
||
576 | $text = $this->form === "long" ? $data->family . " " . $data->given : $data->family; |
||
577 | } |
||
578 | return $text; |
||
579 | } |
||
580 | |||
581 | /** |
||
582 | * @param $data |
||
583 | * @return array |
||
584 | */ |
||
585 | private function renderNameParts($data) |
||
601 | } |
||
602 | |||
603 | |||
604 | /** |
||
605 | * @return string |
||
606 | */ |
||
607 | public function getForm() |
||
608 | { |
||
609 | return $this->form; |
||
610 | } |
||
611 | |||
612 | /** |
||
613 | * @return string |
||
614 | */ |
||
615 | public function isNameAsSortOrder() |
||
618 | } |
||
619 | |||
620 | /** |
||
621 | * @return string |
||
622 | */ |
||
623 | public function getDelimiter() |
||
626 | } |
||
627 | |||
628 | /** |
||
629 | * @param mixed $delimiter |
||
630 | */ |
||
631 | public function setDelimiter($delimiter) |
||
632 | { |
||
634 | } |
||
635 | |||
636 | /** |
||
637 | * @return Names |
||
638 | */ |
||
639 | public function getParent() |
||
644 |