123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- /**
- * Controller for displaying blame
- *
- * @author Christopher Han <xiphux@gmail.com>
- * @copyright Copyright (c) 2010 Christopher Han
- * @package GitPHP
- * @subpackage Controller
- */
- class GitPHP_Controller_Blame extends GitPHP_ControllerBase
- {
- /**
- * Initialize controller
- */
- public function Initialize()
- {
- parent::Initialize();
- if (empty($this->params['hashbase']))
- $this->params['hashbase'] = 'HEAD';
- if (!empty($this->params['output']) && ($this->params['output'] == 'js')) {
- $this->DisableLogging();
- }
- }
- /**
- * Gets the template for this controller
- *
- * @return string template filename
- */
- protected function GetTemplate()
- {
- if (isset($this->params['output']) && ($this->params['output'] == 'js')) {
- return 'blamedata.tpl';
- }
- return 'blame.tpl';
- }
- /**
- * Gets the cache key for this controller
- *
- * @return string cache key
- */
- protected function GetCacheKey()
- {
- return (isset($this->params['hashbase']) ? $this->params['hashbase'] : '') . '|' . (isset($this->params['hash']) ? $this->params['hash'] : '') . '|' . (isset($this->params['file']) ? sha1($this->params['file']) : '');
- }
- /**
- * Gets the name of this controller's action
- *
- * @param boolean $local true if caller wants the localized action name
- * @return string action name
- */
- public function GetName($local = false)
- {
- if ($local && $this->resource) {
- return $this->resource->translate('blame');
- }
- return 'blame';
- }
- /**
- * Loads data for this template
- */
- protected function LoadData()
- {
- $head = $this->GetProject()->GetHeadCommit();
- $this->tpl->assign('head', $head);
- $commit = $this->GetProject()->GetCommit($this->params['hashbase']);
- $this->tpl->assign('commit', $commit);
- if ((!isset($this->params['hash'])) && (isset($this->params['file']))) {
- $this->params['hash'] = $commit->GetTree()->PathToHash($this->params['file']);
- if (empty($this->params['hash']))
- throw new GitPHP_FileNotFoundException($this->params['file']);
- }
-
- $blob = $this->GetProject()->GetObjectManager()->GetBlob($this->params['hash']);
- if ($this->params['file'])
- $blob->SetPath($this->params['file']);
- $blob->SetCommit($commit);
- $this->tpl->assign('blob', $blob);
- $blame = new GitPHP_FileBlame($this->GetProject(), $commit, $this->params['file'], $this->exe);
- $this->tpl->assign('blame', $blame->GetBlame());
- if (isset($this->params['output']) && ($this->params['output'] == 'js')) {
- return;
- }
- $this->tpl->assign('tree', $commit->GetTree());
- if ($this->config->GetValue('geshi')) {
- include_once(GITPHP_GESHIDIR . "geshi.php");
- if (class_exists('GeSHi')) {
- $geshi = new GeSHi("",'php');
- if ($geshi) {
- $lang = GitPHP_Util::GeshiFilenameToLanguage($blob->GetName());
- if (empty($lang)) {
- $lang = $geshi->get_language_name_from_extension(substr(strrchr($blob->GetName(),'.'),1));
- }
- if (!empty($lang)) {
- $geshi->enable_classes();
- $geshi->enable_strict_mode(GESHI_MAYBE);
- $geshi->set_source($blob->GetData());
- $geshi->set_language($lang);
- $geshi->set_header_type(GESHI_HEADER_PRE_TABLE);
- $geshi->enable_line_numbers(GESHI_NORMAL_LINE_NUMBERS);
- $output = $geshi->parse_code();
- $bodystart = strpos($output, '<td');
- $bodyend = strrpos($output, '</tr>');
- if (($bodystart !== false) && ($bodyend !== false)) {
- $geshihead = substr($output, 0, $bodystart);
- $geshifoot = substr($output, $bodyend);
- $geshibody = substr($output, $bodystart, $bodyend-$bodystart);
- $this->tpl->assign('geshihead', $geshihead);
- $this->tpl->assign('geshibody', $geshibody);
- $this->tpl->assign('geshifoot', $geshifoot);
- $this->tpl->assign('geshicss', $geshi->get_stylesheet());
- $this->tpl->assign('geshi', true);
- }
- }
- }
- }
- }
- }
- }
|