diffusionRequest = $request; return $this; } final public function getDiffusionRequest() { return $this->diffusionRequest; } final public function linkHistory($path) { $drequest = $this->getDiffusionRequest(); if ($drequest->getRawCommit()) { $commit = ';'.$drequest->getCommitURIComponent($drequest->getRawCommit()); } else { $commit = null; } $repository = $drequest->getRepository(); $callsign = $repository->getCallsign(); $branch = $drequest->getBranchURIComponent($drequest->getBranch()); $path = $branch.$path; $text = 'History'; return phutil_render_tag( 'a', array( 'href' => "/diffusion/{$callsign}/history/{$path}{$commit}", ), $text); } final public function linkBrowse($path, array $details = array()) { $drequest = $this->getDiffusionRequest(); $raw_commit = idx($details, 'commit', $drequest->getRawCommit()); if ($raw_commit) { $commit = ';'.$drequest->getCommitURIComponent($raw_commit); } else { $commit = null; } $repository = $drequest->getRepository(); $callsign = $repository->getCallsign(); $branch = $drequest->getBranchURIComponent($drequest->getBranch()); $path = $branch.$path; if (isset($details['text'])) { $text = phutil_escape_html($details['text']); } else { $text = 'Browse'; } return phutil_render_tag( 'a', array( 'href' => "/diffusion/{$callsign}/browse/{$path}{$commit}", ), $text); } final public static function linkCommit($repository, $commit) { switch ($repository->getVersionControlSystem()) { case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT: $commit_name = substr($commit, 0, 7); break; default: $commit_name = $commit; break; } $callsign = $repository->getCallsign(); $commit_name = "r{$callsign}{$commit_name}"; return phutil_render_tag( 'a', array( 'href' => "/r{$callsign}{$commit}", ), $commit_name); } }