IndexFileAnalyzer.php 1.74 KB
Newer Older
1 2
<?php
/**
3 4 5
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
6 7 8 9 10 11 12 13
 */

namespace yii\apidoc\helpers;

use cebe\markdown\Markdown;

class IndexFileAnalyzer extends Markdown
{
14 15 16
    public $title;
    public $introduction;

17 18 19
    private $_chapter = 0;
    private $_chapters = [];

20

21 22 23 24 25 26 27 28 29
    public function analyze($text)
    {
        $this->parse($text);

        return $this->_chapters;
    }

    protected function renderHeadline($block)
    {
30
        if ($this->_chapter === 0) {
31
            $this->title = $this->renderAbsy($block['content']);
32 33 34 35 36
            $this->introduction = '';
            $this->_chapter++;
        } else {
            $this->_chapter++;
            $this->_chapters[$this->_chapter] = [
37
                'headline' => $this->renderAbsy($block['content']),
38 39 40
                'content' => [],
            ];
        }
41 42 43
        return parent::renderHeadline($block);
    }

44 45 46
    protected function renderParagraph($block)
    {
        if ($this->_chapter < 1) {
47
            $this->introduction .= $this->renderAbsy($block['content']);
48 49 50 51
        }
        return parent::renderParagraph($block);
    }

52 53
    protected function renderList($block)
    {
54 55
        if ($this->_chapter > 0) {
            foreach ($block['items'] as $item => $itemLines) {
56
                if (preg_match('~\[([^\]]+)\]\(([^\)]+)\)(.*)~', $this->renderAbsy($itemLines), $matches)) {
57 58 59 60 61 62
                    $this->_chapters[$this->_chapter]['content'][] = [
                        'headline' => $matches[1],
                        'file' => $matches[2],
                        'teaser' => $matches[3],
                    ];
                }
63 64 65 66
            }
        }
        return parent::renderList($block);
    }
67
}