Conditions | 29 |
Paths | > 20000 |
Total Lines | 186 |
Code Lines | 109 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
79 | public function process(): void |
||
80 | { |
||
81 | // prepares renderer |
||
82 | $this->builder->setRenderer(new Twig($this->builder, $this->getAllLayoutsPaths())); |
||
83 | |||
84 | // adds global variables |
||
85 | $this->addGlobals(); |
||
86 | |||
87 | $subset = $this->subset; |
||
88 | |||
89 | /** @var Collection $pages */ |
||
90 | $pages = $this->builder->getPages() |
||
91 | // published only |
||
92 | ->filter(function (Page $page) { |
||
93 | return (bool) $page->getVariable('published'); |
||
94 | }) |
||
95 | ->filter(function (Page $page) use ($subset) { |
||
96 | if (empty($subset)) { |
||
97 | return true; |
||
98 | } |
||
99 | if ( |
||
100 | !empty($subset['path']) |
||
101 | && !((bool) preg_match('/' . (string) $subset['path'] . '/i', $page->getPath())) |
||
102 | ) { |
||
103 | return false; |
||
104 | } |
||
105 | if (!empty($subset['language'])) { |
||
106 | $language = $page->getVariable('language', $this->config->getLanguageDefault()); |
||
107 | if ($language !== (string) $subset['language']) { |
||
108 | return false; |
||
109 | } |
||
110 | } |
||
111 | return true; |
||
112 | }) |
||
113 | // enrichs some variables |
||
114 | ->map(function (Page $page) { |
||
115 | $formats = $this->getOutputFormats($page); |
||
116 | // output formats |
||
117 | $page->setVariable('output', $formats); |
||
118 | // alternates formats |
||
119 | $page->setVariable('alternates', $this->getAlternates($formats)); |
||
120 | // translations |
||
121 | $page->setVariable('translations', $this->getTranslations($page)); |
||
122 | |||
123 | return $page; |
||
124 | }); |
||
125 | $total = \count($pages); |
||
126 | |||
127 | // renders each page |
||
128 | $count = 0; |
||
129 | $postprocessors = []; |
||
130 | foreach ((array) $this->config->get('output.postprocessors') as $name => $postprocessor) { |
||
131 | try { |
||
132 | if (!class_exists($postprocessor)) { |
||
133 | throw new RuntimeException(\sprintf('Class "%s" not found', $postprocessor)); |
||
134 | } |
||
135 | $postprocessors[] = new $postprocessor($this->builder); |
||
136 | $this->builder->getLogger()->debug(\sprintf('Output post processor "%s" loaded', $name)); |
||
137 | } catch (\Exception $e) { |
||
138 | $this->builder->getLogger()->error(\sprintf('Unable to load output post processor "%s": %s', $name, $e->getMessage())); |
||
139 | } |
||
140 | } |
||
141 | |||
142 | // some cache to avoid multiple calls |
||
143 | $cache = []; |
||
144 | |||
145 | /** @var Page $page */ |
||
146 | foreach ($pages as $page) { |
||
147 | $count++; |
||
148 | $rendered = []; |
||
149 | |||
150 | // l10n |
||
151 | $language = $page->getVariable('language', $this->config->getLanguageDefault()); |
||
152 | if (!isset($cache['locale'][$language])) { |
||
153 | $cache['locale'][$language] = $this->config->getLanguageProperty('locale', $language); |
||
154 | } |
||
155 | $this->builder->getRenderer()->setLocale($cache['locale'][$language]); |
||
156 | |||
157 | // global site variables |
||
158 | if (!isset($cache['site'][$language])) { |
||
159 | $cache['site'][$language] = new Site($this->builder, $language); |
||
160 | } |
||
161 | $this->builder->getRenderer()->addGlobal('site', $cache['site'][$language]); |
||
162 | |||
163 | // global config raw variables |
||
164 | if (!isset($cache['config'][$language])) { |
||
165 | $cache['config'][$language] = new Config($this->builder, $language); |
||
166 | } |
||
167 | $this->builder->getRenderer()->addGlobal('config', $cache['config'][$language]); |
||
168 | |||
169 | // excluded format(s)? |
||
170 | $formats = (array) $page->getVariable('output'); |
||
171 | foreach ($formats as $key => $format) { |
||
172 | if ($exclude = $this->config->getOutputFormatProperty($format, 'exclude')) { |
||
173 | // ie: |
||
174 | // formats: |
||
175 | // atom: |
||
176 | // [...] |
||
177 | // exclude: [paginated] |
||
178 | if (!\is_array($exclude)) { |
||
179 | $exclude = [$exclude]; |
||
180 | } |
||
181 | foreach ($exclude as $variable) { |
||
182 | if ($page->hasVariable($variable)) { |
||
183 | unset($formats[$key]); |
||
184 | } |
||
185 | } |
||
186 | } |
||
187 | } |
||
188 | |||
189 | // specific output format from subset |
||
190 | if (!empty($this->subset['output'])) { |
||
191 | $currentFormats = $formats; |
||
192 | $formats = []; |
||
193 | if (\in_array((string) $this->subset['output'], $currentFormats)) { |
||
194 | $formats = [(string) $this->subset['output']]; |
||
195 | } |
||
196 | } |
||
197 | |||
198 | // renders each output format |
||
199 | foreach ($formats as $format) { |
||
200 | // search for the template |
||
201 | $layout = Layout::finder($page, $format, $this->config); |
||
202 | // renders with Twig |
||
203 | try { |
||
204 | $deprecations = []; |
||
205 | set_error_handler(function ($type, $msg) use (&$deprecations) { |
||
206 | if (E_USER_DEPRECATED === $type) { |
||
207 | $deprecations[] = $msg; |
||
208 | } |
||
209 | }); |
||
210 | $output = $this->builder->getRenderer()->render($layout['file'], ['page' => $page]); |
||
211 | foreach ($deprecations as $value) { |
||
212 | $this->builder->getLogger()->warning($value); |
||
213 | } |
||
214 | foreach ($postprocessors as $postprocessor) { |
||
215 | $output = $postprocessor->process($page, $output, $format); |
||
216 | } |
||
217 | $rendered[$format] = [ |
||
218 | 'output' => $output, |
||
219 | 'template' => [ |
||
220 | 'scope' => $layout['scope'], |
||
221 | 'file' => $layout['file'], |
||
222 | ], |
||
223 | ]; |
||
224 | $page->addRendered($rendered); |
||
225 | } catch (\Twig\Error\Error $e) { |
||
226 | throw new RuntimeException( |
||
227 | \sprintf( |
||
228 | 'Can\'t render template "%s" for page "%s".', |
||
229 | $e->getSourceContext()->getName(), |
||
230 | $page->getFileName() ?? $page->getId() |
||
231 | ), |
||
232 | previous: $e, |
||
233 | file: $e->getSourceContext()->getPath(), |
||
234 | line: $e->getTemplateLine(), |
||
235 | ); |
||
236 | } catch (\Exception $e) { |
||
237 | throw new RuntimeException($e->getMessage(), previous: $e); |
||
238 | } |
||
239 | } |
||
240 | $this->builder->getPages()->replace($page->getId(), $page); |
||
241 | |||
242 | $templates = array_column($rendered, 'template'); |
||
243 | $message = \sprintf( |
||
244 | 'Page "%s" rendered with [%s]', |
||
245 | $page->getId() ?: 'index', |
||
246 | Util\Str::combineArrayToString($templates, 'scope', 'file') |
||
247 | ); |
||
248 | $this->builder->getLogger()->info($message, ['progress' => [$count, $total]]); |
||
249 | } |
||
250 | // profiler |
||
251 | if ($this->builder->isDebug()) { |
||
252 | try { |
||
253 | // HTML |
||
254 | $htmlDumper = new \Twig\Profiler\Dumper\HtmlDumper(); |
||
255 | $profileHtmlFile = Util::joinFile($this->config->getDestinationDir(), self::TMP_DIR, 'twig_profile.html'); |
||
256 | Util\File::getFS()->dumpFile($profileHtmlFile, $htmlDumper->dump($this->builder->getRenderer()->getDebugProfile())); |
||
257 | // TXT |
||
258 | $textDumper = new \Twig\Profiler\Dumper\TextDumper(); |
||
259 | $profileTextFile = Util::joinFile($this->config->getDestinationDir(), self::TMP_DIR, 'twig_profile.txt'); |
||
260 | Util\File::getFS()->dumpFile($profileTextFile, $textDumper->dump($this->builder->getRenderer()->getDebugProfile())); |
||
261 | // log |
||
262 | $this->builder->getLogger()->debug(\sprintf('Twig profile dumped in "%s"', Util::joinFile($this->config->getDestinationDir(), self::TMP_DIR))); |
||
263 | } catch (\Symfony\Component\Filesystem\Exception\IOException $e) { |
||
264 | throw new RuntimeException($e->getMessage()); |
||
265 | } |
||
382 |