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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
<?php
/**
* GForge Plugin CVSTracker Class
*
* Copyright 2004 (c) Francisco Gimeno <kikov @nospam@ kikov.org>
* Copyright 2005 (c) Guillaume Smet <guillaume-gforge@smet.org>
* Copyright (C) 2010 Alain Peyrat - Alcatel-Lucent
*
* This file is part of GForge-plugin-cvstracker
*
* GForge-plugin-cvstracker 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.
*
* GForge-plugin-cvstracker 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/**
* The cvstrackerPlugin class. It implements the Hooks for the presentation
* of table in tracker and task in detailed mode.
*
*/
class cvstrackerPlugin extends Plugin {
function cvstrackerPlugin () {
$this->Plugin() ;
$this->name = "cvstracker" ;
$this->text = "CVS<->Tracker";
$this->hooks[] = "groupisactivecheckbox";
$this->hooks[] = "groupisactivecheckboxpost";
$this->hooks[] = "artifact_extra_detail";
$this->hooks[] = "task_extra_detail";
$this->hooks[] = "update_cvs_repository";
$this->hooks[] = "get_cvs_loginfo_lines";
}
function groupisactivecheckbox (&$params) {
$group = group_get_object($params['group']);
if ($group->usesPlugin('scmcvs')) {
parent::groupisactivecheckbox($params);
}
}
/**
* It display a table with commit related to this tracker or task_extra_detail
*
* @param string $Query Query to be executed to get the commit entries.
* @param integer $group_id Group_id of the actual Group_id
*
*/
function getCommitEntries($DBResult,$group_id) {
$group = group_get_object($group_id);
if (!$group->usesPlugin($this->name)) {
return;
}
$Rows= db_numrows($DBResult);
if ($Rows > 0) {
echo '<tr><td colspan="2">';
echo '<h4>'._('Links to related CVS commits').':</h4>';
$title_arr=$this->getTitleArr();
echo $GLOBALS['HTML']->listTableTop ($title_arr);
for ($i=0; $i<$Rows; $i++) {
$Row = db_fetch_array($DBResult);
echo '<tr '. $GLOBALS['HTML']->boxGetAltRowStyle($i) .'>'.
'<td>'. $this->getFileLink($group->getUnixName(),
$Row['file'],$Row['actual_version']). '</td>'.
'<td>'. date(_('Y-m-d'), $Row['cvs_date']).'</td>'.
'<td>'. $this->getDiffLink($group->getUnixName(),
$Row['file'],
$Row['prev_version'],
$Row['actual_version']).'</td>'.
'<td>'. $this->getActualVersionLink($group->getUnixName(),
$Row['file'], $Row['actual_version']).
'</td>
<td>'. htmlspecialchars($Row['log_text']).'</td>
<td>'. util_make_link_u ($Row['author'],
user_get_object_by_name ($Row['author'])->getId(),
$Row['author']).'</td>
</tr>';
}
echo $GLOBALS['HTML']->listTableBottom();
echo '</td></tr>';
} else {
echo '<h4>'._('No commits have been made.').'</h4>';
}
}
/**
* Return an array with titles of Box to display the entries
*
* @return Array The array containing the titles
*
*/
function getTitleArr() {
$title_arr=array();
$title_arr[]=_('File Name');
$title_arr[]=_('Date');
$title_arr[]=_('Previous Version');
$title_arr[]=_('Current Version');
$title_arr[]=_('Log Message');
$title_arr[]=_('Author');
return $title_arr;
}
/**
* Return a link to the File in cvsweb
*
* @param String $GroupName is the Name of the project
* @param String $FileName is the FileName ( with path )
*
* @return String The string containing a link to the File in the cvsweb
*
*/
function getFileLink($GroupName, $FileName, $LatestRevision) {
return util_make_link ('/scm/viewvc.php/'.$FileName .
'?root='.$GroupName.'&view=log',
$FileName);
}
/**
* Return a link to the File in cvsweb in the specified Version
*
* @param String $GroupName is the Name of the project
* @param String $FileName is the FileName ( with path )
* @param String $Version the version to retrieve
*
* @return String The string containing a link to the File in the cvsweb
*
*/
function getActualVersionLink($GroupName, $FileName, $Version) {
return util_make_link ('/scm/viewvc.php/'.$FileName .
'?root='.$GroupName.'&pathrev='.$Version .
'&view=markup',
$Version);
}
/**
* Return a link to the diff between two versions of a File in cvsweb
*
* @param String $GroupName is the Name of the project
* @param String $FileName is the FileName ( with path )
* @param String $PrevVersion First version to retrieve
* @param String $ActualVersion Second version to retrieve
*
* @return String The string containing a link to the File in the cvsweb
*
*/
function getDiffLink($GroupName, $FileName, $PrevVersion, $ActualVersion) {
return util_make_link ('/scm/viewvc.php/'.$FileName .
'?root='.$GroupName.'&r1='.$PrevVersion .
'&r2='.$ActualVersion,
_('Diff To').' '.$PrevVersion);
}
/**
* Function to add cvstracker lines to a loginfo file
*
* @param string $path The filename of loginfo
*
*/
function addCvsTrackerToFile($group, $path) {
global $cvs_binary_version;
$FOut = fopen($path, "a");
if($FOut) {
fwrite($FOut, "# BEGIN added by gforge-plugin-cvstracker\n");
if ( $cvs_binary_version == "1.12" ) {
$Line = "ALL ( php -q -d include_path=".ini_get('include_path').
" ".forge_get_config('plugins_path')."/cvstracker/bin/post.php
%r %p %{sVv} )\n";
}
if ( $cvs_binary_version == "1.11") {
$Line = "ALL ( php -q -d include_path=".ini_get('include_path').
" ".forge_get_config('plugins_path')."/cvstracker/bin/post.php
".$group->getUnixName()." %{sVv} )\n";
}
fwrite($FOut,$Line);
fwrite($FOut, "# END added by gforge-plugin-cvstracker\n");
fclose($FOut);
}
}
/**
* Function to get cvstracker loginfo lines
*
*
* return array with the loginfo lines.
*/
function getCvsTrackerLogInfoLines() {
global $cvs_binary_version;
$array=array();
$array[]="# BEGIN added by gforge-plugin-cvstracker\n";
if ( $cvs_binary_version == "1.11" ) {
$array[] = "ALL ( php -q -d include_path=".ini_get('include_path').
" ".forge_get_config('plugins_path')."/cvstracker/bin/post.php
".$group->getUnixName()." %{sVv} )\n";
}else { //it's version 1.12
$array[] = "ALL ( php -q -d include_path=".ini_get('include_path').
" ".forge_get_config('plugins_path')."/cvstracker/bin/post.php
%r %p %{sVv} )\n";
}
$array[]= "# END added by gforge-plugin-cvstracker\n";
return $array;
}
/**
* Retrieve a file into a temporary directory from a CVS server
*
* @param String $repos Repository Name
* @param String $file File Name
*
* return String the FileName in the working repository
*/
function getCvsFile($repos,$file) {
$actual_dir = getcwd();
$tempdirname = tempnam("/tmp","cvstracker");
if (!$tempdirname)
return false;
if (!unlink($tempdirname))
return false;
// Create the temporary directory and returns its name.
if (!mkdir($tempdirname))
return false;
if (!chdir($tempdirname))
return false;
system("cvs -d ".$repos." co ".$file);
chdir($actual_dir);
return $tempdirname.$file;
}
/**
* putCvsFile commit a file to the repository
*
* @param String $repos Repository
* @param String $file to commit
* @param String $message to commit
*/
function putCvsFile($repos,$file,$message="Automatic updated by cvstracker") {
system("cvs -d ".$repos." ci -m \"".$message."\" ".$file);
unlink ($file);
}
/**
* The function to be called for a Hook
*
* @param String $hookname The name of the hookname that has been happened
* @param String $params The params of the Hook
*
*/
function CallHook ($hookname, &$params) {
global $group_id, $G_SESSION, $HTML, $aid ;
if ($hookname == "artifact_extra_detail") {
$DBResult = db_query_params ('SELECT * FROM plugin_cvstracker_data_master,plugin_cvstracker_data_artifact WHERE plugin_cvstracker_data_artifact.group_artifact_id=$1 AND plugin_cvstracker_data_master.holder_id=plugin_cvstracker_data_artifact.id ORDER BY cvs_date',
array ($aid)) ;
$this->getCommitEntries($DBResult, $group_id);
} elseif ($hookname == "task_extra_detail") {
$DBResult = db_query_params ('SELECT * FROM plugin_cvstracker_data_master,plugin_cvstracker_data_artifact WHERE plugin_cvstracker_data_artifact.project_task_id=$1 AND plugin_cvstracker_data_master.holder_id=plugin_cvstracker_data_artifact.id ORDER BY cvs_date',
array ($params['task_id'])) ;
$this->getCommitEntries($DBResult, $group_id);
} elseif ($hookname == "update_cvs_repository") {
$Group = group_get_object($params["group_id"]);
if ($Group->usesPlugin("cvstracker")) {
$LineFound=FALSE;
$FIn = fopen(getCvsFile( $params["file_name"],
"CVSROOT/loginfo"),"r");
if ($FIn) {
while (!feof($FIn)) {
$Line = fgets ($FIn);
if(!preg_match("/^#/", $Line) &&
preg_match("/cvstracker/",$Line)) {
$LineFound = TRUE;
}
}
fclose($FIn);
}
if($LineFound==FALSE) {
$newfile=getCvsFile($params["file_name"],
"CVSROOT/loginfo");
$this->addCvsTrackerToFile($group, $newfile);
$this->putCvsFile($params["file_name"],
$newfile);
}
}
} elseif ($hookname == "get_cvs_loginfo_lines") {
$group = group_get_object($group_id);
$GLOBALS['loginfo_lines']=$this->getCvsTrackerLogInfoLines($group);
}
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
|