1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
<?php
// WebSVN - Subversion repository viewing via the web using PHP
// Copyright (C) 2004-2006 Tim Armes
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// --
//
// filedetails.php
//
// Simply lists the contents of a file
require_once 'include/setup.php';
require_once 'include/svnlook.php';
require_once 'include/utils.php';
require_once 'include/template.php';
// Make sure that we have a repository
if ($rep) {
$svnrep = new SVNRepository($rep);
if ($path{0} != '/') {
$ppath = '/'.$path;
} else {
$ppath = $path;
}
$useMime = false;
// If there's no revision info, go to the lastest revision for this path
$history = $svnrep->getLog($path, 'HEAD', 1, false, 2, $peg);
$youngest = ($history && isset($history->entries[0])) ? $history->entries[0]->rev: false;
if (empty($rev)) {
$rev = $youngest;
} else if ($rev > $youngest) {
$vars['warning'] = 'Revision '.$rev.' of this resource does not exist.';
}
$extn = strtolower(strrchr($path, '.'));
// Check to see if the user has requested that this type be zipped and sent
// to the browser as an attachment
if (isset($zipped) && in_array($extn, $zipped) && $rep->hasReadAccess($path, false)) {
$base = basename($path);
header('Content-Type: application/x-gzip');
header('Content-Disposition: attachment; filename='.urlencode($base).'.gz');
// Get the file contents and pipe into gzip. All this without creating
// a temporary file. Damn clever.
$svnrep->getFileContents($path, '', $rev, $peg, '| '.$config->gzip.' -n -f');
exit;
}
// Check to see if we should serve it with a particular content-type.
// The content-type could come from an svn:mime-type property on the
// file, or from the $contentType array in setup.php.
if (!$rep->getIgnoreSvnMimeTypes()) {
$svnMimeType = $svnrep->getProperty($path, 'svn:mime-type', $rev);
}
if (!$rep->getIgnoreWebSVNContentTypes()) {
$setupContentType = @$contentType[$extn];
}
// Use the documented priorities when establishing what content-type to use.
if (!empty($svnMimeType) && $svnMimeType != 'application/octet-stream') {
$mimeType = $svnMimeType;
} else if (!empty($setupContentType)) {
$mimeType = $setupContentType;
} else if (!empty($svnMimeType)) {
$mimeType = $svnMimeType; // Use SVN's default of 'application/octet-stream'
} else {
$mimeType = '';
}
$useMime = ($mimeType) ? @$_REQUEST['usemime'] : false;
if (!empty($mimeType) && !$useMime) {
$useMime = $mimeType; // Save MIME type for later before possibly clobbering
// If a MIME type exists but is set to be ignored, set it to an empty string.
foreach ($config->inlineMimeTypes as $inlineType) {
if (preg_match('|'.$inlineType.'|', $mimeType)) {
$mimeType = '';
break;
}
}
}
// If a MIME type is associated with the file, deliver with Content-Type header.
if (!empty($mimeType) && $rep->hasReadAccess($path, false)) {
$base = basename($path);
header('Content-Type: '.$mimeType);
//header('Content-Length: '.$size);
header('Content-Disposition: inline; filename='.urlencode($base));
$svnrep->getFileContents($path, '', $rev, $peg);
exit;
}
// Display the file inline using WebSVN.
$vars['action'] = '';
$vars['path'] = escape($ppath);
if ($history) {
$vars['log'] = xml_entities($history->entries[0]->msg);
$vars['date'] = $history->entries[0]->date;
$vars['author'] = $history->entries[0]->author;
}
createPathLinks($rep, $ppath, $passrev, $peg);
$passRevString = createRevAndPegString($passrev, $peg);
if ($rev != $youngest) {
$vars['goyoungesturl'] = $config->getURL($rep, $path, 'file').($peg ? 'peg='.$peg : '');
$vars['goyoungestlink'] = '<a href="'.$vars['goyoungesturl'].'"'.($youngest ? ' title="'.$lang['REV'].' '.$youngest.'"' : '').'>'.$lang['GOYOUNGEST'].'</a>';
}
$revurl = $config->getURL($rep, $path, 'file');
if ($rev < $youngest) {
$history2 = $svnrep->getLog($path, $rev, $youngest, false, 2, $peg ? $peg : 'HEAD');
if (isset($history2->entries[1])) {
$nextRev = $history2->entries[1]->rev;
if ($nextRev != $youngest) {
$vars['nextrev'] = $nextRev;
$vars['nextrevurl'] = $revurl.createRevAndPegString($nextRev, $peg);
}
}
unset($vars['error']);
}
$history3 = $svnrep->getLog($path, $rev, 1, false, 2, $peg ? $peg : 'HEAD');
if (isset($history3->entries[1])) {
$prevRev = $history3->entries[1]->rev;
$prevPath = $history3->entries[1]->path;
$vars['prevrev'] = $prevRev;
$vars['prevrevurl'] = $revurl.createRevAndPegString($prevRev, $peg);
}
unset($vars['error']);
$vars['revurl'] = $config->getURL($rep, $path, 'revision').$passRevString;
$vars['revlink'] = '<a href="'.$vars['revurl'].'">'.$lang['LASTMOD'].'</a>';
$vars['logurl'] = $config->getURL($rep, $path, 'log').$passRevString;
$vars['loglink'] = '<a href="'.$vars['logurl'].'">'.$lang['VIEWLOG'].'</a>';
$vars['blameurl'] = $config->getURL($rep, $path, 'blame').$passRevString;
$vars['blamelink'] = '<a href="'.$vars['blameurl'].'">'.$lang['BLAME'].'</a>';
if ($history == null || count($history->entries) > 1) {
$vars['diffurl'] = $config->getURL($rep, $path, 'diff').$passRevString;
$vars['difflink'] = '<a href="'.$vars['diffurl'].'">'.$lang['DIFFPREV'].'</a>';
}
if ($rep->isDownloadAllowed($path)) {
$vars['downloadlurl'] = $config->getURL($rep, $path, 'dl').$passRevString;
$vars['downloadlink'] = '<a href="'.$vars['downloadlurl'].'">'.$lang['DOWNLOAD'].'</a>';
}
if ($rep->isRssEnabled()) {
$vars['rssurl'] = $config->getURL($rep, $path, 'rss').($peg ? 'peg='.$peg : '');
$vars['rsslink'] = '<a href="'.$vars['rssurl'].'">'.$lang['RSSFEED'].'</a>';
}
$mimeType = $useMime; // Restore preserved value to use for 'mimelink' variable.
// If there was a MIME type, create a link to display file with that type.
if ($mimeType && !isset($vars['warning'])) {
$vars['mimeurl'] = $config->getURL($rep, $path, 'file').'usemime=1&'.$passRevString;
$vars['mimelink'] = '<a href="'.$vars['mimeurl'].'">'.$lang['VIEWAS'].' "'.$mimeType.'"</a>';
}
$vars['rev'] = escape($rev);
$vars['peg'] = $peg;
if (!$rep->hasReadAccess($path, true)) {
$vars['error'] = $lang['NOACCESS'];
checkSendingAuthHeader($rep);
}
} else {
header('HTTP/1.x 404 Not Found', true, 404);
}
// $listing is populated with file data when file.tmpl calls [websvn-getlisting]
$vars['template'] = 'file';
parseTemplate('header.tmpl');
parseTemplate('file.tmpl');
parseTemplate('footer.tmpl');
|