summaryrefslogtreecommitdiff
path: root/doc/niels-diplom/Dateistruktur/admin/user_admin.php
blob: 01e7578c2e1c30155cea38c945a52f7ed7f82141 (plain)
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<?php

include("../header.php");

if ($_SESSION['type'] == 0)  // Session Zugangscheck für den Administrator
	{
				
		//print "<meta HTTP-EQUIV=\"Refresh\" CONTENT=5; URL=\"/dipl/praktikum.php\">";
		print "<tr><td class=\"titel_15\">KEINE ADMINSESSION...</td></tr>";
		print "<tr><td class=\"titel_15\">Bitte Loggen sie sich erneut als Admin ein...</td></tr>";
		print "</td></tr></table></table>"; 
		include("../footer.php");
		exit;

	}

include("adminfuncs.php");

if (isset($_POST['new_group']))
{
		
	add_group($_POST['gruppe']); //user anlegen
	
}

if (isset($_POST['add_user']))
{
		
	add_user($_POST['name'], $_POST['vorname'], $_POST['login'], $_POST['typ'], $_POST['user2group']); //user anlegen
	
}

if (isset($_POST['deakt_user']))
{
		$message = del_user($_POST['deakt_him']); //user deaktivieren
		unset($message);
}

if (isset($_POST['akt_user']))
{
		$message = akt_user($_POST['akt_ihn']); //user deaktivieren
		unset($message);
}

if (isset($_POST['chng_akt_group']))
{
		$message = akt_group($_POST['all_group']); //Gruppe komplett aktivieren
		unset($message);
}

if (isset($_POST['chng_inakt_group']))
{
		$message = inakt_group($_POST['all_group']); //Gruppe komplett deaktivieren
		unset($message);
}


?>

<a name="start"></a>

<tr>
<td class="titel_15">NUTZERVERWALTUNG</td>
</tr>
<tr>
<td>
<table width=560>
<form action="<?=$_POST['PHP_SELF'] . "?" . SID?>" method="post">
							
	<tr><td colspan=3 class="titel"><br>einzelne aktuelle Nutzer deaktivieren...<?print $message;?></td></tr>
	<tr><td colspan=3>&nbsp;</td></tr>
	<tr><td class="text" width=50>USER</td>
	<td width=100>
		<select class="inputtext" name="deakt_him" size="1" width=95>
		
		<?

			$sql = "SELECT name FROM students where aktiv=1";

			$stmt = dbconnect($sql);

			OCIExecute($stmt);

			$nrows = OCIFetchStatement($stmt, $results);	

					  
			for ( $i = 0; $i < $nrows; $i++ ) 
				{
					reset($results);
								 
					while ( $column = each($results) ) 
						{   
							$data = $column['value'];
							//Liste mit vorhandenen Benutzern füllen 
						}
											
					echo "<option>$data[$i]</option>\n";
				} 
													
		?> 

				</select>
				</td>
				
				<td  align=right>
				<input class="inputsubmit" type="Submit" name="deakt_user" value="inaktiv setzen">
				</td>
				
				</tr>
</table>
</form>

<table width=560>
<form action="<?=$_POST['PHP_SELF'] . "?" . SID?>" method="post">
							
				<tr><td colspan=5 class="randoben">&nbsp;</td></tr>

				<tr><td colspan=5 class="titel" >einzelne inaktive Nutzer aktivieren...nach Gruppen selektiert</td></tr>
				<tr><td colspan=5>&nbsp;</td></tr>
				
				
				
				<tr><td class="text" width=50>GRUPPE</td>
				<td width=100>
				<select type=submit class="inputtext" name="group" size="1" onchange="this.form.submit()" width=95>
		<?

			$sql = "SELECT distinct groups FROM students";

			$stmt = dbconnect($sql);

			OCIExecute($stmt);

			$nrows = OCIFetchStatement($stmt, $results);	

					  
			for ( $i = 0; $i < $nrows; $i++ ) 
				{
					reset($results);
								 
					while ( $column = each($results) ) 
						{   
							$data = $column['value'];	//Liste mit vorhandenen Benutzern füllen 
						}
											
					if ($_POST['group'] == $data[$i]) print "<option selected>" . $data[$i] . "</option>\n"; else print "<option>$data[$i]</option>\n";
				} 
													
		?> 

				</select>
				</td>
				
				
				<td class="text" align=right width=200>inaktive Nutzer aus der Gruppe: <?print $_POST['group'];?></td>
				<td>
				<select class="inputtext" name="akt_ihn" size="1">
		<?
			$gruppe = $_POST['group'];
			
			$sql = "SELECT name FROM students where aktiv=0 and groups='$gruppe'";

			$stmt = dbconnect($sql);

			OCIExecute($stmt);

			$nrows = OCIFetchStatement($stmt, $results);	

					  
			for ( $i = 0; $i < $nrows; $i++ ) 
				{
					reset($results);
								 
					while ( $column = each($results) ) 
						{   
							$data = $column['value'];
							//Liste mit vorhandenen Benutzern füllen 
						}
											
					echo "<option>$data[$i]</option>\n";
				} 
													
		?> 

				</select>
				</td>
				<td align=right>
				<input class="inputsubmit" type="Submit" name="akt_user" value="aktiv setzen">
				</td>
				</tr>
				<tr><td colspan=5>&nbsp;</td></tr>
</form>
</table>



<table width=560>
<form action="<?=$_POST['PHP_SELF'] . "?" . SID?>" method="post">
	
	<tr><td colspan=4 class="randoben">&nbsp;</td></tr>

	<tr><td colspan=4 class="titel">gesamte Gruppen aktivieren oder deaktivieren...<?print $message;?></td></tr>
	<tr><td colspan=4>&nbsp;</td></tr>
	<tr><td class="text" width=50>GRUPPE</td>
				<td width=100>
				<select type=submit class="inputtext" name="all_group" size="1" onchange="this.form.submit()" width=95>
		<?

			$sql = "SELECT distinct groups FROM students";

			$stmt = dbconnect($sql);

			OCIExecute($stmt);

			$nrows = OCIFetchStatement($stmt, $results);	

					  
			for ( $i = 0; $i < $nrows; $i++ ) 
				{
					reset($results);
								 
					while ( $column = each($results) ) 
						{   
							$data = $column['value'];	//Liste mit vorhandenen Benutzern füllen 
						}
											
					if ($_POST['all_group'] == $data[$i]) print "<option selected>" . $data[$i] . "</option>\n"; else print "<option>$data[$i]</option>\n";
				} 
													
		?> 

				</select>
				</td>
				
				<td  align=right>
				<input class="inputsubmit" type="Submit" name="chng_akt_group" value="Gr. aktiv setzen">
				</td>
				<td  align=right>
				<input class="inputsubmit" type="Submit" name="chng_inakt_group" value="Gr. inaktiv setzen">
				</td>
				
				</tr>
					<tr><td>&nbsp;</td></tr>
	</form>
</table>

<table width=560>
<form action="<?=$_POST['PHP_SELF'] . "?" . SID?>" method="Post">
							
							
							<tr><td colspan=3 class="randoben">&nbsp;</td></tr>
							
							<tr>
							<td valign="center" colspan=3 class="titel">Hinzufügen einzelner Nutzer zu bestehenden Gruppen<br></td>	
							</tr>
							<tr><td colspan=3>&nbsp;</td></tr>
							
<tr><td class="text" width=150>in welche GRUPPE einfügen?</td>
				<td width=100>
				<select type=submit class="inputtext" name="user2group" size="1" onchange="this.form.submit()" width=95>
		<?

			$sql = "SELECT groups FROM groups";
			//$sql = "SELECT distinct groups FROM students";

			$stmt = dbconnect($sql);

			OCIExecute($stmt);

			$nrows = OCIFetchStatement($stmt, $results);	

					  
			for ( $i = 0; $i < $nrows; $i++ ) 
				{
					reset($results);
								 
					while ( $column = each($results) ) 
						{   
							$data = $column['value'];	//Liste mit vorhandenen Benutzern füllen 
						}
											
					if ($_POST['user2group'] == $data[$i]) print "<option selected>" . $data[$i] . "</option>\n"; else print "<option>$data[$i]</option>\n";
				} 
													
		?> 

				</select>
				</td>
			</tr>


							<tr>
								<td class="text">NAME</td>
								<td>
							  	<input class="inputtext" type="title" name="name" size=40>
								</td>
							</tr>

							<tr>
								<td class="text">VORNAME</td>
								<td>
							  	<input class="inputtext" type="title" name="vorname" size=40>
								</td>
							</tr>

							<tr>
								<td class="text">LOGIN</td>
								<td>
							  	<input class="inputtext" type="Password" name="login" size=40>
								</td>
							</tr>
							
							<tr><td>&nbsp;</td></tr>

							<tr>
								<td class="text">TYP</td>
								<td>
								<select class="inputtext" name="typ" size="1">
								<option value=0>USER</option>
								<option value=1>ADMIN</option>					
								</select>
								</td>
								<td>
								<input class="inputsubmit" type="Submit" name="add_user" size="30" value="Nutzer in <?print $_POST['user2group'];?> anlegen">	
								</td>
							</tr>

							<tr><td>&nbsp;</td></tr>
							
						</form>

	

	</table>

<table width=560>
<form action="<?=$_POST['PHP_SELF'] . "?" . SID?>" method="post">
	<tr><td colspan=5 class="randoben">&nbsp;</td></tr>						
	<tr><td colspan=3 class="titel">Neue Gruppe anlegen...</td></tr>
	<tr><td colspan=3>&nbsp;</td></tr>
	<tr><td class="text" width=50>Gruppenname:</td>
				<td>
				<input class="inputtext" type="title" name="gruppe" size=40>
				</td>
				<td  align=right>
				<input class="inputsubmit" type="Submit" name="new_group" value="Gruppe anlegen">
				</td>
				
				</tr>
</table>
</form>


<table width=560>
<form action="<?$_POST['PHP_SELF'] . SID?>" method="post" enctype="multipart/form-data">

<tr><td colspan=5 class="randoben">&nbsp;</td></tr>
<tr><td colspan=5 class="titel" >EXCEL-LISTE HOCHLADEN</td></tr>
				<tr><td colspan=5>&nbsp;</td></tr>
				<tr>
				<td class=text>Bitte wählen Sie eine .XLS-Datei mit den Userdaten:
				<input type="hidden" name="MAX_FILE_SIZE" value="100000">
				<input class="inputsubmit" name="userfile" type="file" size="40" accept="*.xls"></td>
				<td><br>
				<input class="inputsubmit" type="submit" value="Upload File" name=upload align=right>
				</td>
				</tr>
				<tr><td colspan=5>&nbsp;</td></tr>
</form>

<?

$uploadDir = '/usr/local/apache/htdocs_ssl/dipl/admin/LIST/';
$uploadFile = $uploadDir . $_FILES['userfile']['name'];

if ( $_FILES['userfile']['type'] == "application/vnd.ms-excel" )
{
	$up = move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadFile);
	$_SESSION['file'] = $_FILES['userfile']['name'];
}

if ( $up == 1 )
{
	print "<tr><td class=text>Datei ist akzeptiert und wurde erfolgreich hochgeladen. <br>"; 
	print "<B>Debugging info:</B><br>" . "Datei: " . $_FILES['userfile']['name'] .  "<br>Typ: " . $_FILES['userfile']['type'] . "<br>Größe: " . $_FILES['userfile']['size'] . " Byte"; 
	print "</td></tr><tr><td colspan=5>&nbsp;</td></tr>";
	print "<tr><td class=text><a href=get_user.php?".SID.">Zum Datenbankupload...</a></td></tr>";
}
elseif (isset($_POST['upload']))
{
	print "<tr><td class=text>Datei ist fehlerhaft oder keine EXCEL-DATEI und wurde nicht hochgeladen.<br>"; 
	print "<B>Debugging info:</B><br>" . "Datei: " . $_FILES['userfile']['name'] .  "<br>Typ: " . $_FILES['userfile']['type'] . "<br>Größe: " . $_FILES['userfile']['size'] . " Byte";
}
?>

</table>

	</td>
</tr>
</table>
</table> 


<?
include("../footer.php");
?>