]> git.pld-linux.org Git - projects/distfiles.git/blame - request-handler.pl
- whitespace cleanup
[projects/distfiles.git] / request-handler.pl
CommitLineData
a04817ac 1#!/usr/bin/perl -w
b396edfa 2# $Id$
052c958f
MM
3# read email with request from stdin and process it
4
5$spool_dir = "./spool";
7a0595ea 6$commits_list = "pld-cvs-commit\@lists.pld-linux.org";
052c958f
MM
7
8$spec = undef;
9$branch = "";
10$from = undef;
47f8fda7 11$flags = "";
052c958f 12
a04817ac 13# ---------------------------------------------------------------
91ff13d3 14use File::Basename;
95106fc3 15use File::Copy;
9654851f 16use Cwd;
91ff13d3 17
a04817ac
MM
18sub cleanup()
19{
20 system("rm -rf tmp/$id");
21}
22
23sub report_fatal($)
24{
25 my $msg = shift;
26 cleanup();
2fcadf85 27 open(M, "| /usr/sbin/sendmail -t") or die("/usr/sbin/sendmail not found");
a04817ac
MM
28 #open(M, "| cat") or die;
29 my $version = '$Id$';
30 print M <<EOF
31From: $from <$from\@pld-linux.org>
32To: $commits_list
33Cc: $from\@pld-linux.org
34Message-ID: <$id\@distfiles.pld-linux.org>
35Subject: DISTFILES: ERROR fetching sources for $spec ($branch)
36X-distfiles-program: request-handler.pl
37X-distfiles-version: $version
38
39$msg
40
41--
42Virtually Yours: distfiles.
43EOF
44;
b5160615 45 close(M) or die("problem while sending email");
a04817ac
MM
46 exit 0;
47}
48# ---------------------------------------------------------------
49
052c958f
MM
50$id = `uuidgen`;
51chomp $id;
52$id = rand if (!defined $id or $id eq "");
53
0e296d4e 54my $ref_pattern='[0-9a-zA-Z][0-9#a-zA-Z._\@/+ :,-]*';
052c958f 55while (<STDIN>) {
47f8fda7 56 chomp;
ad64e6a8 57 /^X-Package: ([a-z0-9_.+-]+)/i and $spec = $1;
0e296d4e 58 /^X-Branch: ($ref_pattern)/i and $branch = $1;
576dff03
ER
59 /^X-Login: ([a-z0-9_.]+)/i and $from = $1;
60 /^X-Flags: ([a-z0-9_ -]+)/i and $flags = $1;
052c958f
MM
61}
62
63die "ill-formed request" if (!defined $from);
64
65report_fatal("bad spec name") if (!defined $spec);
66
d22382ac 67$oldcwd = Cwd::getcwd();
9654851f 68
b5160615 69mkdir("tmp/$id") or die("cannot create: tmp/$id");
052c958f
MM
70chdir("tmp/$id");
71
a106d34c 72my $cvs_get = `~/distfiles/show_spec.sh $spec $branch 2>&1`;
1f167206 73if ( $? ) {
d22382ac 74 chdir($oldcwd);
1f167206 75 my $at_branch = "";
76 $at_branch = " from branch $branch" if $branch;
77 my $code = $? >> 8;
ad64e6a8 78 report_fatal("cannot git fetch $spec$at_branch;\n$cvs_get\nexited with code $code");
052c958f
MM
79}
80
d22382ac 81chdir($oldcwd);
052c958f
MM
82
83open(S, "> tmp/$id/to-spool");
84print S "$from\@pld-linux.org\n";
cba859d3 85print S "$spec\n";
47f8fda7 86print S "$flags\n";
052c958f
MM
87close(S);
88
ad64e6a8 89if (system("perl ./specparser.pl \"tmp/$id/$spec\" >> tmp/$id/to-spool") != 0) {
052c958f
MM
90 report_fatal("cannot parse $spec ($branch)")
91}
92
95106fc3 93File::Copy::move("tmp/$id/to-spool", "$spool_dir/$id") or die("move failed: $!");
052c958f
MM
94
95cleanup();
96
97exit(0);
98
319fb6c1 99# vim: ts=2:sw=2:et
This page took 0.116645 seconds and 4 git commands to generate.