<?php
# $Id$
# http://www.mapbender.org/index.php/Administration
# Copyright (C) 2002 CCGIS 
#
# 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, 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.

import_request_variables("PG");
require_once(dirname(__FILE__)."/../php/mb_validatePermission.php");
$con = db_connect(DBSERVER,OWNER,PW);
db_select_db(DB,$con);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<?php
echo '<meta http-equiv="Content-Type" content="text/html; charset='.CHARSET.'">';	
?>
<title>Edit GUI Permissions</title>

<?php include '../include/dyn_css.php'; ?>
<script language="JavaScript">
function validate(wert){
	if(document.forms[0]["selected_gui"].selectedIndex == -1){
		document.getElementsByName("selected_gui")[0].style.backgroundColor = '#ff0000';
		return;
	}else{
		if(wert == "remove"){
			if(document.forms[0]["remove_user[]"].selectedIndex == -1){
				document.getElementsByName("remove_user[]")[0].style.backgroundColor = '#ff0000';
				return;
			}
			document.form1.remove.value = 'true';
			document.form1.submit();
		}
		if(wert == "insert"){
			if(document.forms[0]["selected_user[]"].selectedIndex == -1){
				document.getElementsByName("selected_user[]")[0].style.backgroundColor = '#ff0000';
				return;
			}
			document.form1.insert.value = 'true';
			document.form1.submit();
		}
	}
}
</script>
</head>
<body>
<?php

$fieldHeight = 20;

$cnt_gui = 0;
$cnt_user = 0;
$cnt_group = 0;
$cnt_gui_user = 0;
$cnt_gui_group = 0;
$gui_id_array = array();
$exists = false;

/*handle remove, update and insert*****************************************************************/
if($insert){
	if(count($selected_user)>0){
		for($i=0; $i<count($selected_user); $i++){
			$exists = false;
			$sql_insert = "SELECT * from gui_mb_user where fkey_gui_id = $1 and fkey_mb_user_id = $2";
			$v = array($selected_gui,$selected_user[$i]);
			$t = array('s','i');
			$res_insert = db_prep_query($sql_insert,$v,$t);
			while(db_fetch_row($res_insert)){$exists = true;}
			if($exists == false){
				$sql_insert = "INSERT INTO gui_mb_user(fkey_gui_id, fkey_mb_user_id) VALUES($1, $2)";
				$v = array($selected_gui,$selected_user[$i]);
				$t = array('s','i');
				$res_insert = db_prep_query($sql_insert,$v,$t);
			}
		}
	}
}
if($remove){
	if(count($remove_user)>0){
		for($i=0; $i<count($remove_user); $i++){
			$sql_remove = "DELETE FROM gui_mb_user WHERE fkey_mb_user_id = $1 and fkey_gui_id = $2";
			$v = array($remove_user[$i],$selected_gui);
			$t = array('i','s');
			db_prep_query($sql_remove,$v,$t);
		}
	}
}


/*get all gui  ********************************************************************************************/
$sql_gui = "SELECT * FROM gui ORDER BY gui_name";
$res_gui = db_query($sql_gui);
while($row = db_fetch_array($res_gui)){
	$gui_id_array[$cnt_gui] = $row["gui_id"];
	$gui_name[$cnt_gui] = $row["gui_name"];
	$cnt_gui++;
}

/*get all user **********************************************************************************************/
$sql_user = "SELECT * FROM mb_user ORDER BY mb_user_name";
$res_user = db_query($sql_user);
while($row = db_fetch_array($res_user)){
	$user_id[$cnt_user] = $row["mb_user_id"];
	$user_name[$cnt_user] = $row["mb_user_name"];
	$cnt_user++;
}

/*get all user from selected gui*******************************************************************/
$sql_gui_mb_user = "SELECT mb_user.mb_user_id, mb_user.mb_user_name, gui_mb_user.fkey_gui_id FROM gui_mb_user ";
$sql_gui_mb_user .= "INNER JOIN mb_user ON gui_mb_user.fkey_mb_user_id = mb_user.mb_user_id ";
$sql_gui_mb_user .= "WHERE gui_mb_user.fkey_gui_id= $1 ";
$sql_gui_mb_user .= " ORDER BY mb_user.mb_user_name";
if(!$selected_gui){$v = array($gui_id_array[0]);}
if($selected_gui){$v = array($selected_gui);}
$t = array('s');
$res_gui_mb_user = db_prep_query($sql_gui_mb_user,$v,$t);
while($row = db_fetch_array($res_gui_mb_user)){
	$user_id_gui[$cnt_gui_user] = $row["mb_user_id"];
	$user_name_gui[$cnt_gui_user] =  $row["mb_user_name"];
	$cnt_gui_user++;
}


/*INSERT HTML*/
echo "<form name='form1' action='" . $self ."' method='post'>";

/*insert projects in selectbox*********************************************************************/
echo "<div class='text1'>GUI: </div>";
echo "<select style='background:#ffffff' class='select1' name='selected_gui' onchange='submit()' size='10'>";
for($i=0; $i<$cnt_gui; $i++){
	echo "<option value='" . $gui_id_array[$i] . "' ";
	if($selected_gui && $selected_gui == $gui_id_array[$i]){
		echo "selected";
	}
	echo ">" . $gui_name[$i]  . "</option>";
}
echo "</select>";

/*insert all profiles in selectbox*****************************************************************/
echo "<div class='text2'>USER:</div>";
echo "<select style='background:#ffffff' class='select2' multiple='multiple' name='selected_user[]' size='$fieldHeight' >";
for($i=0; $i<$cnt_user; $i++){
	echo "<option value='" . $user_id[$i]  . "'>" . $user_name[$i]  . "</option>";
}
echo "</select>";

/*Button******************************************************************************************/

echo "<div class='button1'><input type='button'  value='==>' onClick='validate(\"insert\")'></div>";
echo "<input type='hidden' name='insert'>";

echo "<div class='button2'><input type='button' value='<==' onClick='validate(\"remove\")'></div>";
echo "<input type='hidden' name='remove'>";

/*insert container_profile_dependence and container_group_dependence in selectbox******************/
echo "<div class='text3'>SELECTED USER:</div>";
echo "<select style='background:#ffffff' class='select3' multiple='multiple' name='remove_user[]' size='$fieldHeight' >";
for($i=0; $i<$cnt_gui_user; $i++){
	echo "<option value='" . $user_id_gui[$i]  . "'>" . $user_name_gui[$i]  . "</option>";
}
echo "</select>";

echo "</form>";

?>
<script type="text/javascript">
<!--
document.forms[0].selected_gui.focus();
// -->
</script>
</body>
</html>