c42127d3cab5c78430e578a07038f54f8cdff459
bernd First draft of gitolite-mod...

bernd authored 12 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) 
bernd First draft of gitolite-mod...

bernd authored 12 years ago

17) require_role(ROLE_SYSTEMUSER);
18) 
19) include('git.php');
20) 
21) $section = 'git_git';
22) 
23) $handle = '';
24) if (isset($_GET['handle'])) {
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 4 years ago

25)     $handle = verify_input_identifier($_GET['handle']);
bernd First draft of gitolite-mod...

bernd authored 12 years ago

26) }
27) 
28) $action = '';
29) $form = '';
30) 
31) $pubkey = '';
32) 
33) if ($handle) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

34)     $action = 'newkey';
35)     title('Neuen SSH-Key für GIT-Benutzer');
36)     output('<p>Legen Sie hier einen neuen SSH-Key für einen bestehenden Benutzer fest.</p>');
37)     $pubkey = get_pubkey($handle);
bernd First draft of gitolite-mod...

bernd authored 12 years ago

38) } else {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

39)     $action = 'newuser';
40)     title('Neuer GIT-Benutzer');
41)     output('<p>Tragen Sie hier einen eindeutigen Namen für den neuen Benutzer fest und hinterlegen Sie einen SSH-Public-Key.</p><p><strong>Hinweis:</strong> Es wird nicht funktionieren, mehrere GIT-Zugänge mit dem selben Public-Key einzurichten. Soll ein Entwickler auf GIT-Repositories mehrerer unserer Kunden zugreifen, dann darf der Benutzer nur einmal angelegt werden und muss bei den übrigen Kunden als "GIT-Benutzer eines anderern Kunden" freigeschaltet werden.</p>');
bernd First draft of gitolite-mod...

bernd authored 12 years ago

42) }
43) 
44) $userprefix = $_SESSION['userinfo']['username'].'-';
45) 
46) $form .= '<table><tr><td><label for="handle" />Name des Benutzers:</label></td>';
47) if ($handle) {
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 4 years ago

48)     $form .= '<td><input type="hidden" name="handle" value="'.filter_output_html(str_replace($userprefix, '', $handle)).'" /><strong>'.filter_output_html($handle).'</strong></td></tr>';
bernd First draft of gitolite-mod...

bernd authored 12 years ago

49) } else {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

50)     $form .= '<td>'.$userprefix.'<input type="text" id="handle" name="handle" value="'.$handle.'" /></td></tr>';
bernd First draft of gitolite-mod...

bernd authored 12 years ago

51) }
Bernd Wurst Umstellung von filter_input...

Bernd Wurst authored 4 years ago

52) $form .= '<tr><td><label for="pubkey">SSH-Public-Key:</label></td><td><textarea name="pubkey" id="pubkey" cols="70" rows="10">'.filter_output_html($pubkey).'</textarea></td></tr>