<?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 getGrantedRights( $start, $count, $dbh ) {
global $CONF;
$schema = db_determine_schema();
$tGrantedRights = array();
$query = " SELECT * " .
" FROM ".$schema."svnusers " .
" WHERE deleted = '00000000000000' " .
"ORDER BY ".$CONF['user_sort_fields']." ".$CONF['user_sort_order'];
# " LIMIT $start, $count";
$result = db_query( $query, $dbh, $count, $start );
$olduserid = "";
$rights = "";
$entry = array();
while( $row = db_assoc( $result['result'] ) ) {
if( $row['givenname'] != "" ) {
$entry['name'] = $row['givenname']." ".$row['name'];
} else {
$entry['name'] = $row['name'];
}
$entry['userid'] = $row['userid'];
$entry['locked'] = $row['locked'];
$id = $row['id'];
$query = "SELECT rights.right_name, users_rights.allowed " .
" FROM ".$schema."rights, ".$schema."users_rights " .
" WHERE (rights.id = users_rights.right_id) " .
" AND (users_rights.user_id = $id ) " .
" AND (users_rights.deleted = '00000000000000') " .
" AND (rights.deleted = '00000000000000') " .
"ORDER BY user_id, right_id";
$resultrights = db_query( $query, $dbh );
while( $rowrights = db_assoc( $resultrights['result'] ) ) {
if( $rights == "" ) {
$rights = $rowrights['right_name']." (".$rowrights['allowed'].")";
} else {
$rights = $rights.", ".$rowrights['right_name']." (".$rowrights['allowed'].")";
}
}
$entry['rights'] = $rights;
$rights = "";
$tGrantedRights[] = $entry;
$entry = array();
}
return $tGrantedRights;
}
function getCountGrantedRights( $dbh ) {
global $CONF;
$schema = db_determine_schema();
$query = " SELECT COUNT(*) AS anz " .
" FROM ".$schema."svnusers " .
" WHERE (deleted = '00000000000000') " .
"GROUP BY ".$CONF['user_sort_fields']." " .
"ORDER BY ".$CONF['user_sort_fields']." ".$CONF['user_sort_order'];
$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_granted_user_rights";
if( $rightAllowed == "none" ) {
db_disconnect( $dbh );
header( "Location: nopermission.php" );
exit;
}
#error_log( "page_size = ".$CONF['page_size'] );
if ($_SERVER['REQUEST_METHOD'] == "GET") {
$tGrantedRights = getGrantedRights( 0, $CONF['page_size'], $dbh );
$tCountRecords = getCountGrantedRights( $dbh );
$tPrevDisabled = "disabled";
$_SESSION['svn_sessid']['rightcounter'] = 0;
if( $tCountRecords <= $CONF['page_size'] ) {
$tNextDisabled = "disabled";
}
$template = "rep_granted_user_rights.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 = _(">>");
}
if( $button == _("<<") ) {
$_SESSION['svn_sessid']['rightcounter'] = 0;
$tGrantedRights = getGrantedRights( 0, $CONF['page_size'], $dbh );
$tCountRecords = getCountGrantedRights( $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'];
$tGrantedRights = getGrantedRights( 0, $CONF['page_size'], $dbh );
$tCountRecords = getCountGrantedRights( $dbh );
if( $tCountRecords <= $CONF['page_size'] ) {
$tNextDisabled = "disabled";
}
} elseif( $button == _(">") ) {
$_SESSION['svn_sessid']['rightcounter']++;
$start = $_SESSION['svn_sessid']['rightcounter'] * $CONF['page_size'];
$tGrantedRights = getGrantedRights( $start, $CONF['page_size'], $dbh );
$tCountRecords = getCountGrantedRights( $dbh );
$tRemainingRecords = $tCountRecords - $start - $CONF['page_size'];
if( $tRemainingRecords <= 0 ) {
$tNextDisabled = "disabled";
}
} elseif( $button == _(">>") ) {
$count = getCountGrantedRights( $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 - $CONF['page_size']- 1;
$_SESSION['svn_sessid']['rightcounter'] = floor($count / $CONF['page_size'] ) - 1;
}
$tGrantedRights = getGrantedRights( $start, $CONF['page_size'], $dbh );
$tNextDisabled = "disabled";
} else {
$tMessage = sprintf( _( "Invalid button %s, anyone tampered arround with?" ), $button );
}
$template = "rep_granted_user_rights.tpl";
$header = "reports";
$subheader = "reports";
$menu = "reports";
include ("$installBase/templates/framework.tpl");
db_disconnect( $dbh );
}
?>