aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Youri/Submit/Action/UpdateMaintDb.pm
blob: a8224cfb0cc4d14b6b641beacb01deef2834e628 (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
# $Id$
package Youri::Submit::Action::UpdateMaintDb;

=head1 NAME

Youri::Submit::Action::UpdateMaintDb - Mageia maintainers database updater

=head1 DESCRIPTION

This action plugin HTTP POSTs to package maintainers database to notify
of the action. See <http://maintdb.mageia.org/>.

=cut

use warnings;
use strict;
use Carp;
use base qw/Youri::Submit::Action/;

use HTTP::Request::Common qw(POST);
use LWP::UserAgent;

sub _init {
    my $self   = shift;
    my %options = (
        maintdb_url => '',
        maintdb_key => '',
	maintdb_binpath => '/usr/local/sbin/maintdb',
        @_
    );

    $self->{_maintdb_url}     = $options{maintdb_url};
    $self->{_maintdb_key}     = $options{maintdb_key};
    $self->{_maintdb_binpath} = $options{maintdb_binpath};

    return $self;
}

sub run {
    my ($self, $package, $repository, $target, $define) = @_;
    croak "Not a class method" unless ref $self;

    # only SRPMs matter
    return unless $package->is_source();

    unless ($self->{_test}) {
        my $pkg_name = $package->get_name();
        my $pkg_media = $repository->_get_main_section($package, $target, $define);
        my $pkg_commiter = $define->{user};

	system($self->{_maintdb_binpath}, 'root', 'new', $pkg_name, $pkg_commiter);

        my $ua = LWP::UserAgent->new;
        $ua->agent('Youri/0.1 ' . $ua->agent);

        my $req = POST $self->{_maintdb_url},
                      [
                        key     => $self->{_maintdb_key},
                        from    => "youri",
                        package => $pkg_name,
                        media   => $pkg_media,
                        uid     => $pkg_commiter
                      ];

        my $res = $ua->request($req);

        if ($res->is_success) {
            print "Updated package maintainers DB for '$pkg_name', '$pkg_media', '$pkg_commiter'.\n" if $self->{_verbose};
        } else {
            print "ERROR: POST failed to ".$self->{_maintdb_url}." for '$pkg_name', '$pkg_media', '$pkg_commiter'.\n";
        }
    }
}

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2007, Mandriva
Copyright (C) 2011, Mageia.Org

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

=cut

1;