blob: f2dec4f5ff29be79408bab6d300bde62279754e0 (
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
|
#!/usr/bin/perl
use strict;
use CGI;
use File::Basename;
use lib dirname( __FILE__ ) . '/lib';
use rddb;
binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");
binmode(STDERR, ":utf8");
my $status = 'ERROR';
my $errorstring = 'unknown';
my $responsecode = 500;
my @dropboxes = ();
my $q = CGI->new;
my $username = $q->param('LOGIN_NAME');
my $token = $q->param('PASSWORD');
my $dbh;
($dbh, $status, $errorstring) = rddb::opendb();
if(defined $dbh) {
my $result;
($result, $status, $errorstring) = rddb::check_token($dbh, $username, $token);
if($result == 1) {
$responsecode = 200;
@dropboxes = rddb::get_dropboxes($dbh, $username);
} elsif($result == 0) {
$responsecode = 403;
} else {
$responsecode = 500;
}
rddb::closedb($dbh);
}
print "Content-type: application/xml; charset=UTF-8\n\n";
if($responsecode != 200) {
print "<RDWebResult>\n";
print " <ResponseCode>" . $responsecode . "</ResponseCode>\n";
print " <ErrorString>" . $errorstring . "</ErrorString>\n";
print "</RDWebResult>\n";
} else {
print "<dropboxList>\n";
for my $href (@dropboxes) {
print " <dropbox>\n";
print " <name>" . $href->{'NAME'} . "</name>\n";
print " <group>" . $href->{'GROUP'} . "</group>\n";
print " <path>" . $href->{'PATH'} . "</path>\n";
print " <to_cart>" . $href->{'TO_CART'} . "</to_cart>\n";
print " </dropbox>\n";
}
print "</dropboxList>\n";
}
|