summaryrefslogtreecommitdiff
path: root/pinyweb/cgi-bin/auth/newrepo.cgi
blob: 0810fa7bc0455313d2929a0b72841151f80ae40c (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
#!/usr/bin/perl
$| = 1;

use warnings;

use CGI;

use IPC::Open2;

$q = CGI->new;

my @cmd;

print( "Content-type: text/plain\n\n");

open(STDERR, ">&STDOUT");

if( defined( $q->param('r') ) && defined( $q->param('d') ) ) { # repository, description
  @cmd = ( '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newrepo', '--batch', '--enable-ikiwiki', scalar( $q->param('r') ) );

  if( defined( scalar( $q->param('i') ) ) && scalar( $q->param('i') ) eq "0" ) {
    push( @cmd, '--disable-ikiwiki' );
  } elsif( defined( scalar( $q->param('i') ) ) && scalar( $q->param('i') ) eq "1" ) {
    push( @cmd, '--enable-ikiwiki' );
  };

  if( defined( $q->param('s') ) ) { # source
    push( @cmd, scalar( $q->param('s') ) );
  };

  unless( open2( OUT, IN, @cmd ) ) {
    die 'could not execute newrepo';
  };
  # make things flushier
  select( (select(IN), $| = 1)[0] );
  select( (select(OUT), $| = 1)[0] );
  print( IN scalar( $q->param('d') ) . "\n" );
  close( IN );
  while( <OUT> ) {
    print;
  };
} else {
  print 'Missing parameters.';
};