Bug 22417: Add debian script koha-worker
[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 $channel = $conn->open_channel();
27
28 my $job_type = 'batch_biblio_record_modification';
29 $channel->declare_queue(
30     queue => $job_type,
31     durable => 1,
32 );
33
34 $channel->qos(prefetch_count => 1,);
35
36 $channel->consume(
37     on_consume => sub {
38         my $var = shift;
39         my $body = $var->{body}->{payload};
40         say " [x] Received $body";
41
42         my $args = decode_json( $body );
43
44         Koha::BackgroundJob::BatchUpdateBiblio->process($args, $channel);
45         say " [x] Done";
46     },
47     no_ack => 0,
48 );
49
50 warn "waiting forever";
51 # Wait forever
52 AnyEvent->condvar->recv;