File: update_loginfo.php

package info (click to toggle)
gforge 4.5.14-22etch13
  • links: PTS
  • area: main
  • in suites: etch
  • size: 13,004 kB
  • ctags: 11,918
  • sloc: php: 36,047; sql: 29,050; sh: 10,538; perl: 6,496; xml: 3,810; makefile: 341; python: 263; ansic: 256
file content (88 lines) | stat: -rw-r--r-- 2,732 bytes parent folder | download | duplicates (2)
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
#! /usr/bin/php4 -f
<?php
/**
 * Copyright 2004 (c) Francisco Gimeno
 *
 * @version   $Id: update_loginfo.php 4509 2005-07-08 16:27:24Z gsmet $
 *
 * 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 GForge-plugin-cvstracker; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  US
 */
/**
 *
 *       This script maintain CVSROOT/loginfo files for groups
 *
 */
require ('squal_pre.php');
require ('common/include/cron_utils.php');
require ('plugins/cvstracker/config.php');

$Res = db_query("SELECT * FROM groups WHERE status='A';");
if (!$Res) {
        echo "Error. Couldn't get Group List!\n";
}

if ($cvs_binary_version != "1.11" &&
	$cvs_binary_version != "1.12" )
		$cvs_binary_version = "1.12";

function addCvsTrackerToFile(& $Group, $path) {
	global $sys_plugins_path, $sys_users_host, $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').
				" ".$sys_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').
				" ".$sys_plugins_path."/cvstracker/bin/post.php".
				" ".$Group->getUnixName()." %{sVv} )\n";
		}
		fwrite($FOut,$Line);
		fwrite($FOut, "# END added by gforge-plugin-cvstracker\n");
		fclose($FOut);
	}
}

while ($Row = db_fetch_array($Res)) {
	$Group = group_get_object($Row["group_id"]);
	if ($Group->usesPlugin("cvstracker")) {
		$LineFound=FALSE;
		$FIn  = fopen($sys_cvsroot_path."/".$Row["unix_group_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) {
				echo $Group->getUnixName().": loginfo modified\n";
				addCvsTrackerToFile($Group, $sys_cvsroot_path."/".$Row["unix_group_name"]."/CVSROOT/loginfo");
			}
		}
	}
}


?>