#!/usr/bin/perl

#######################################################################
#
# argonaut-debconf-crawler
#
# Copyright (C) 2011-2015 FusionDirectory project
#
# Author: Côme BERNIGAUD
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
#######################################################################

use strict;
use warnings;

use 5.008;

use Argonaut::Libraries::Common qw(:ldap :net :config);
use Argonaut::Libraries::Packages qw(get_packages_info store_packages_file cleanup_and_extract);

my $config = argonaut_read_config;

my $settings = argonaut_get_crawler_settings($config,$config->{'client_ip'});

my $servpath                =   $settings->{'mirrordir'};
my $packagesfolder          =   $settings->{'packagesfolder'};

my $mymac                   =   $settings->{'macaddress'};

#=pod
#=item cleanup_and_extract
#Extract templates from packages.
#Templates are saved as $servdir/debconf.d/release/section/nameofthepackage
#
#=cut

store_packages_file($packagesfolder,$mymac); # FIXME : may be replaced by an mv+extract (no getstore in this case). (we should avoid using http get to access a local file)
cleanup_and_extract($servpath,get_packages_info($packagesfolder,$mymac,undef,["package","version","filename"]));

print "done\n";

__END__

=head1 NAME

argonaut-debconf-crawler - Extract debconf templates from packages

=head1 SYNOPSIS

argonaut-debconf-crawler

=head1 DESCRIPTION

argonaut-debconf-crwaler is a program used to extract debconf templates from packages

=head1 BUGS

Please report any bugs, or post any suggestions, to the fusiondirectory mailing list fusiondirectory-users or to
<https://forge.fusiondirectory.org/projects/argonaut-agents/issues/new>

=head1 LICENCE AND COPYRIGHT

This code is part of FusionDirectory <http://www.fusiondirectory.org>

=over 1

=item Copyright (C) 2011-2015 FusionDirectory project

=back

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

=cut
