You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					106 lines
				
				2.3 KiB
			
		
		
			
		
	
	
					106 lines
				
				2.3 KiB
			| 
											13 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
|  |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
|  |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | namespace yii\debug\controllers;
 | ||
|  | 
 | ||
| 
											13 years ago
										 | use Yii;
 | ||
| 
											13 years ago
										 | use yii\web\Controller;
 | ||
| 
											13 years ago
										 | use yii\web\HttpException;
 | ||
| 
											13 years ago
										 | 
 | ||
|  | /**
 | ||
|  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
|  |  * @since 2.0
 | ||
|  |  */
 | ||
|  | class DefaultController extends Controller
 | ||
|  | {
 | ||
| 
											13 years ago
										 | 	public $layout = 'main';
 | ||
| 
											12 years ago
										 | 	/**
 | ||
|  | 	 * @var  \yii\debug\Module
 | ||
|  | 	 */
 | ||
|  | 	public $module;
 | ||
|  | 	/**
 | ||
|  | 	 * @var array the summary data (e.g. URL, time)
 | ||
|  | 	 */
 | ||
|  | 	public $summary;
 | ||
| 
											13 years ago
										 | 
 | ||
| 
											12 years ago
										 | 	public function actionIndex()
 | ||
|  | 	{
 | ||
| 
											12 years ago
										 | 		return $this->render('index', ['manifest' => $this->getManifest()]);
 | ||
| 
											12 years ago
										 | 	}
 | ||
|  | 
 | ||
|  | 	public function actionView($tag = null, $panel = null)
 | ||
| 
											13 years ago
										 | 	{
 | ||
| 
											12 years ago
										 | 		if ($tag === null) {
 | ||
|  | 			$tags = array_keys($this->getManifest());
 | ||
| 
											12 years ago
										 | 			$tag = reset($tags);
 | ||
| 
											12 years ago
										 | 		}
 | ||
| 
											12 years ago
										 | 		$this->loadData($tag);
 | ||
| 
											13 years ago
										 | 		if (isset($this->module->panels[$panel])) {
 | ||
|  | 			$activePanel = $this->module->panels[$panel];
 | ||
|  | 		} else {
 | ||
| 
											12 years ago
										 | 			$activePanel = $this->module->panels['request'];
 | ||
| 
											13 years ago
										 | 		}
 | ||
| 
											12 years ago
										 | 		return $this->render('view', [
 | ||
| 
											13 years ago
										 | 			'tag' => $tag,
 | ||
| 
											12 years ago
										 | 			'summary' => $this->summary,
 | ||
| 
											12 years ago
										 | 			'manifest' => $this->getManifest(),
 | ||
| 
											13 years ago
										 | 			'panels' => $this->module->panels,
 | ||
|  | 			'activePanel' => $activePanel,
 | ||
| 
											12 years ago
										 | 		]);
 | ||
| 
											13 years ago
										 | 	}
 | ||
| 
											13 years ago
										 | 
 | ||
|  | 	public function actionToolbar($tag)
 | ||
|  | 	{
 | ||
| 
											13 years ago
										 | 		$this->loadData($tag);
 | ||
| 
											12 years ago
										 | 		return $this->renderPartial('toolbar', [
 | ||
| 
											13 years ago
										 | 			'tag' => $tag,
 | ||
| 
											13 years ago
										 | 			'panels' => $this->module->panels,
 | ||
| 
											12 years ago
										 | 		]);
 | ||
| 
											13 years ago
										 | 	}
 | ||
|  | 
 | ||
| 
											12 years ago
										 | 	public function actionPhpinfo()
 | ||
|  | 	{
 | ||
|  | 		phpinfo();
 | ||
|  | 	}
 | ||
|  | 
 | ||
| 
											12 years ago
										 | 	private $_manifest;
 | ||
|  | 
 | ||
|  | 	protected function getManifest()
 | ||
|  | 	{
 | ||
|  | 		if ($this->_manifest === null) {
 | ||
| 
											12 years ago
										 | 			$indexFile = $this->module->dataPath . '/index.data';
 | ||
| 
											12 years ago
										 | 			if (is_file($indexFile)) {
 | ||
| 
											12 years ago
										 | 				$this->_manifest = array_reverse(unserialize(file_get_contents($indexFile)), true);
 | ||
| 
											12 years ago
										 | 			} else {
 | ||
| 
											12 years ago
										 | 				$this->_manifest = [];
 | ||
| 
											12 years ago
										 | 			}
 | ||
|  | 		}
 | ||
|  | 		return $this->_manifest;
 | ||
|  | 	}
 | ||
|  | 
 | ||
| 
											13 years ago
										 | 	protected function loadData($tag)
 | ||
|  | 	{
 | ||
| 
											12 years ago
										 | 		$manifest = $this->getManifest();
 | ||
|  | 		if (isset($manifest[$tag])) {
 | ||
| 
											12 years ago
										 | 			$dataFile = $this->module->dataPath . "/$tag.data";
 | ||
| 
											12 years ago
										 | 			$data = unserialize(file_get_contents($dataFile));
 | ||
| 
											13 years ago
										 | 			foreach ($this->module->panels as $id => $panel) {
 | ||
| 
											12 years ago
										 | 				if (isset($data[$id])) {
 | ||
| 
											12 years ago
										 | 					$panel->tag = $tag;
 | ||
| 
											12 years ago
										 | 					$panel->load($data[$id]);
 | ||
| 
											13 years ago
										 | 				} else {
 | ||
|  | 					// remove the panel since it has not received any data
 | ||
|  | 					unset($this->module->panels[$id]);
 | ||
|  | 				}
 | ||
|  | 			}
 | ||
| 
											12 years ago
										 | 			$this->summary = $data['summary'];
 | ||
| 
											13 years ago
										 | 		} else {
 | ||
| 
											13 years ago
										 | 			throw new HttpException(404, "Unable to find debug data tagged with '$tag'.");
 | ||
| 
											13 years ago
										 | 		}
 | ||
|  | 	}
 | ||
| 
											13 years ago
										 | }
 |