<?php
/*
SVN Access Manager - a subversion access rights management tool
Copyright (C) 2008 Thomas Krieger <hide@address.com>
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
*/
if ( file_exists ( realpath ( "./config/config.inc.php" ) ) ) {
require( "./config/config.inc.php" );
} elseif( file_exists ( realpath ( "../config/config.inc.php" ) ) ) {
require( "../config/config.inc.php" );
} elseif( file_exists( "/etc/svn-access-manager/config.inc.php" ) ) {
require( "/etc/svn-access-manager/config.inc.php" );
} else {
die( "can't load config.inc.php. Check your installation!\n'" );
}
$installBase = isset( $CONF['install_base'] ) ? $CONF['install_base'] : "";
require ("$installBase/include/variables.inc.php");
#require ("./config/config.inc.php");
require_once ("$installBase/include/functions.inc.php");
require_once ("$installBase/include/db-functions-adodb.inc.php");
include_once ("$installBase/include/output.inc.php");
function getAccessRights( $valid, $start, $count, $dbh ) {
$schema = db_determine_schema();
$tAccessRights = array();
$query = "SELECT svn_access_rights.id, svnmodule, modulepath, svnrepos." .
" reponame, valid_from, valid_until, path, access_right, recursive," .
" svn_access_rights.user_id, svn_access_rights.group_id " .
" FROM ".$schema."svn_access_rights, ".$schema."svnprojects, ".$schema."svnrepos " .
" WHERE (svnprojects.id = svn_access_rights.project_id) " .
" AND (svnprojects.repo_id = svnrepos.id) " .
" AND (svn_access_rights.deleted = '00000000000000') " .
" AND (valid_from <= '$valid' ) " .
" AND (valid_until >= '$valid') " .
"ORDER BY svnrepos.reponame, svn_access_rights.path ";
# " LIMIT $start, $count";
$result = db_query( $query, $dbh, $count, $start );
while( $row = db_assoc( $result['result'] ) ) {
$entry = $row;
$userid = $row['user_id'];
if( empty($userid) ) {
$userid = 0;
}
$groupid = $row['group_id'];
if( empty($groupid) ) {
$groupid = 0;
}
$entry['groupname'] = "";
$entry['username'] = "";
if( $userid != "0" ) {
$query = "SELECT * " .
" FROM ".$schema."svnusers " .
" WHERE id = $userid";
$resultread = db_query( $query, $dbh );
if( $resultread['rows'] == 1 ) {
$row = db_assoc( $resultread['result'] );
$entry['username'] = $row['userid'];
}
}
if( $groupid != "0" ) {
$query = "SELECT * " .
" FROM ".$schema."svngroups " .
" WHERE id = $groupid";
$resultread = db_query( $query, $dbh );
if( $resultread['rows'] == 1 ) {
$row = db_assoc( $resultread['result'] );
$entry['groupname'] = $row['groupname'];
} else {
$entry['groupname'] = "unknown";
}
}
$tAccessRights[] = $entry;
}
return $tAccessRights;
}
function getCountAccessRights( $valid, $dbh ) {
$schema = db_determine_schema();
$tAccessRights = array();
$query = "SELECT COUNT(*) AS anz " .
" FROM ".$schema."svn_access_rights, ".$schema."svnprojects, ".$schema."svnrepos " .
" WHERE (svnprojects.id = svn_access_rights.project_id) " .
" AND (svnprojects.repo_id = svnrepos.id) " .
" AND (svn_access_rights.deleted = '00000000000000') " .
" AND (valid_from <= '$valid' ) " .
" AND (valid_until >= '$valid') ";
$result = db_query( $query, $dbh );
if( $result['rows'] == 1 ) {
$row = db_assoc( $result['result'] );
$count = $row['anz'];
return $count;
} else {
return false;
}
}
initialize_i18n();
$SESSID_USERNAME = check_session ();
check_password_expired();
$dbh = db_connect();
$preferences = db_get_preferences($SESSID_USERNAME, $dbh );
$CONF['page_size'] = $preferences['page_size'];
$CONF['user_sort_fields'] = $preferences['user_sort_fields'];
$CONF['user_sort_order'] = $preferences['user_sort_order'];
$rightAllowed = db_check_acl( $SESSID_USERNAME, "Reports", $dbh );
$_SESSION['svn_sessid']['helptopic'] = "rep_access_rights";
if( $rightAllowed == "none" ) {
db_disconnect( $dbh );
header( "Location: nopermission.php" );
exit;
}
if ($_SERVER['REQUEST_METHOD'] == "GET") {
$lang = check_language();
if( $lang == "de" ) {
$tDate = "TT.MM.JJJJ";
} else {
$tDate = "MM/DD/YYYY";
}
$template = "getDateForAccessRights.tpl";
$header = "reports";
$subheader = "reports";
$menu = "reports";
include ("$installBase/templates/framework.tpl");
db_disconnect( $dbh );
}
if ($_SERVER['REQUEST_METHOD'] == "POST") {
$error = 0;
if( isset( $_POST['fSubmit'] ) ) {
$button = db_escape_string( $_POST['fSubmit'] );
} elseif( isset( $_POST['fSubmit_f_x'] ) ) {
$button = _("<<");
} elseif( isset( $_POST['fSubmit_p_x'] ) ) {
$button = _("<");
} elseif( isset( $_POST['fSubmit_n_x'] ) ) {
$button = _(">");
} elseif( isset( $_POST['fSubmit_l_x'] ) ) {
$button = _(">>");
} elseif( isset( $_POST['fSubmit_date_x'] ) ) {
$button = _("Create report");
} elseif( isset( $_POST['fSubmit_date'] ) ) {
$button = _("Create report");
} else {
$button = "undef";
}
if( $button == _("Create report") ) {
$tDate = isset( $_POST['fDate'] ) ? db_escape_string( $_POST['fDate'] ) : "";
$_SESSION['svn_sessid']['date'] = $tDate;
$lang = check_language();
if( $lang == "de" ) {
$day = substr($tDate, 0, 2);
$month = substr($tDate, 3, 2);
$year = substr($tDate, 6, 4);
} else {
$day = substr($tDate, 3, 2);
$month = substr($tDate, 0, 2);
$year = substr($tDate, 6, 4);
}
if( ! check_date( $day, $month, $year ) ) {
$tMessage = sprintf( _("Not a valid date: %s (%s-%s-%s)"), $tDate, $day, $month, $year );
$error = 1;
$template = "getDateForAccessRights.tpl";
$header = "reports";
$subheader = "reports";
$menu = "reports";
include ("$installBase/templates/framework.tpl");
db_disconnect( $dbh );
exit;
} else {
$valid = $year.$month.$day;
$_SESSION['svn_sessid']['valid'] = $valid;
$_SESSION['svn_sessid']['rightcounter'] = 0;
$tAccessRights = getAccessRights( $_SESSION['svn_sessid']['valid'], 0, $CONF['page_size'], $dbh );
$tCountRecords = getCountAccessRights( $_SESSION['svn_sessid']['valid'], $dbh );
$tPrevDisabled = "disabled";
if( $tCountRecords <= $CONF['page_size'] ) {
$tNextDisabled = "disabled";
}
}
} elseif( $button == _("<<") ) {
$_SESSION['svn_sessid']['rightcounter'] = 0;
$tAccessRights = getAccessRights( $_SESSION['svn_sessid']['valid'], 0, $CONF['page_size'], $dbh );
$tCountRecords = getCountAccessRights( $_SESSION['svn_sessid']['valid'], $dbh );
$tPrevDisabled = "disabled";
if( $tCountRecords <= $CONF['page_size'] ) {
$tNextDisabled = "disabled";
}
} elseif( $button == _("<") ) {
$_SESSION['svn_sessid']['rightcounter']--;
if( $_SESSION['svn_sessid']['rightcounter'] < 0 ) {
$_SESSION['svn_sessid']['rightcounter'] = 0;
$tPrevDisabled = "disabled";
} elseif( $_SESSION['svn_sessid']['rightcounter'] == 0 ) {
$tPrevDisabled = "disabled";
}
$start = $_SESSION['svn_sessid']['rightcounter'] * $CONF['page_size'];
$tAccessRights = getAccessRights( $_SESSION['svn_sessid']['valid'], 0, $CONF['page_size'], $dbh );
$tCountRecords = getCountAccessRights( $_SESSION['svn_sessid']['valid'], $dbh );
if( $tCountRecords <= $CONF['page_size'] ) {
$tNextDisabled = "disabled";
}
} elseif( $button == _(">") ) {
$_SESSION['svn_sessid']['rightcounter']++;
$start = $_SESSION['svn_sessid']['rightcounter'] * $CONF['page_size'];
$tAccessRights = getAccessRights( $_SESSION['svn_sessid']['valid'], $start, $CONF['page_size'], $dbh );
$tCountRecords = getCountAccessRights( $_SESSION['svn_sessid']['valid'], $dbh );
$tRemainingRecords = $tCountRecords - $start - $CONF['page_size'];
if( $tRemainingRecords <= 0 ) {
$tNextDisabled = "disabled";
}
} elseif( $button == _(">>") ) {
$count = getCountAccessRights( $_SESSION['svn_sessid']['valid'], $dbh );
$rest = $count % $CONF['page_size'];
if( $rest != 0 ) {
$start = $count - $rest + 1;
$_SESSION['svn_sessid']['rightcounter'] = floor($count / $CONF['page_size'] );
} else {
#$start = $count - 1;
$start = $count - $CONF['page_size'] - 1;
$_SESSION['svn_sessid']['rightcounter'] = floor($count / $CONF['page_size'] ) - 1;
}
$tAccessRights = getAccessRights( $_SESSION['svn_sessid']['valid'], $start, $CONF['page_size'], $dbh );
$tNextDisabled = "disabled";
} else {
$tMessage = sprintf( _( "Invalid button %s, anyone tampered arround with?" ), $button );
}
$template = "rep_access_rights.tpl";
$header = "reports";
$subheader = "reports";
$menu = "reports";
include ("$installBase/templates/framework.tpl");
db_disconnect( $dbh );
}
?>