1 # This module is part of debbugs, and is released
2 # under the terms of the GPL version 2, or any later version at your option.
3 # See the file README and COPYING for more information.
4 # Copyright 2007 by Don Armstrong <don@donarmstrong.com>.
26 use vars qw($DEBUG %EXPORT_TAGS @EXPORT_OK @EXPORT);
27 use base qw(Exporter SOAP::Server::Parameters);
30 $DEBUG = 0 unless defined $DEBUG;
36 Exporter::export_ok_tags();
37 $EXPORT_TAGS{all} = [@EXPORT_OK];
43 use Debbugs::Status qw(get_bug_status);
44 use Debbugs::Common qw(make_list getbuglocation getbugcomponent);
45 use Storable qw(nstore retrieve);
48 our $CURRENT_VERSION = 1;
49 our %DEBBUGS_SOAP_COOKIES;
54 my %ut = get_usertag('don@donarmstrong.com','this-bug-sucks','eat-this-bug');
56 Returns a hashref of bugs which have the specified usertags for the
61 use Debbugs::User qw(read_usertags);
64 my $VERSION = __populate_version(pop);
65 my ($self,$email, @tags) = @_;
67 read_usertags(\%ut, $email);
69 @tags{@tags} = (1) x @tags;
71 for my $tag (keys %ut) {
72 delete $ut{$tag} unless exists $tags{$tag};
83 my @statuses = get_status(@bugs);
85 Returns an arrayref of hashrefs which output the status for specific
88 See L<Debbugs::Status::get_bug_status> for details.
93 my $VERSION = __populate_version(pop);
94 my ($self,@bugs) = @_;
95 @bugs = make_list(@bugs);
99 my $bug_status = get_bug_status(bug => $bug);
100 if (defined $bug_status and keys %{$bug_status} > 0) {
101 $status{$bug} = $bug_status;
104 # __prepare_response($self);
110 my @bugs = get_bugs(...);
112 See L<Debbugs::Bugs::get_bugs> for details.
116 use Debbugs::Bugs qw();
119 my $VERSION = __populate_version(pop);
120 my ($self,@params) = @_;
122 while (my ($key,$value) = splice @params,0,2) {
123 push @{$params{$key}}, make_list($value);
126 @bugs = Debbugs::Bugs::get_bugs(%params);
133 my $bug_log = get_bug_log($bug);
134 my $bug_log = get_bug_log($bug,$msg_num);
136 Retuns a parsed set of the bug log; this is an array of hashes with
155 use Debbugs::Log qw();
156 use Debbugs::MIME qw(parse);
159 my ($self,$bug,$msg_num) = @_;
161 my $location = getbuglocation($bug,'log');
162 my $bug_log = getbugcomponent($bug,'log',$location);
164 my $log_fh = IO::File->new($bug_log, 'r') or
165 die "Unable to open bug log $bug_log for reading: $!";
167 my $log = Debbugs::Log->new($log_fh) or
168 die "Debbugs::Log was unable to be initialized";
174 while (my $record = $log->read_record()) {
176 print STDERR "message $current_msg\n";
177 #next if defined $msg_num and ($current_msg ne $msg_num);
178 print STDERR "still message $current_msg\n";
179 next unless $record->{type} eq 'incoming-recv';
180 my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
181 next if defined $msg_id and exists $seen_msg_ids{$msg_id};
182 $seen_msg_ids{$msg_id} = 1 if defined $msg_id;
183 next if defined $msg_id and $msg_id =~ /handler\..+\.ack(?:info)?\@/;
184 my $message = parse($record->{text});
185 my ($header,$body) = map {join("\n",make_list($_))}
187 print STDERR "still still message $current_msg\n";
188 push @messages,{html => $record->{html},
192 msg_num => $current_msg,
199 =head1 VERSION COMPATIBILITY
201 The functionality provided by the SOAP interface will change over time.
203 To the greatest extent possible, we will attempt to provide backwards
204 compatibility with previous versions; however, in order to have
205 backwards compatibility, you need to specify the version with which
210 sub __populate_version{
212 return $request->{___debbugs_soap_version};