Bug 22417: Switch to STOMP
[koha.git] / misc / background_jobs_worker.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19 use JSON qw( encode_json decode_json );
20
21 use Koha::BackgroundJob::BatchUpdateBiblio;
22 use Koha::BackgroundJob;
23
24 my $conn = Koha::BackgroundJob->connect;
25
26 my $job_type = 'batch_biblio_record_modification';
27
28 $conn->subscribe({ destination => $job_type, ack => 'client' });
29 while (1) {
30     my $frame = $conn->receive_frame;
31     if ( !defined $frame ) {
32         # maybe log connection problems
33         next;    # will reconnect automatically
34     }
35
36     my $body = $frame->body;
37     my $args = decode_json($body);
38
39     my $success = Koha::BackgroundJob::BatchUpdateBiblio->process( $args );
40
41     $conn->ack( { frame => $frame } ); # FIXME depending on $success?
42 }
43 $conn->disconnect;