3 # Parts copyright 2014 ByWater Solutions
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 use Koha
::Patrons
::Import
;
27 my $Import = Koha
::Patrons
::Import
->new();
31 my $overwrite_cardnumber;
39 'c|confirm' => \
$confirm,
40 'f|file=s' => \
$csv_file,
41 'm|matchpoint=s' => \
$matchpoint,
42 'd|default=s' => \
%defaults,
43 'o|overwrite' => \
$overwrite_cardnumber,
44 'p|preserve-extended-attributes' => \
$ext_preserve,
45 'v|verbose+' => \
$verbose,
49 pod2usage
(1) if $help;
50 pod2usage
(q
|--file is required
|) unless $csv_file;
51 pod2usage
(q
|--matchpoint is required
|) unless $matchpoint;
53 warn "Running in dry-run mode, provide --confirm to apply the changes\n" unless $confirm;
56 open( $handle, "<", $csv_file ) or die $!;
58 my $return = $Import->import_patrons(
61 defaults
=> \
%defaults,
62 matchpoint
=> $matchpoint,
63 overwrite_cardnumber
=> $overwrite_cardnumber,
64 preserve_extended_attributes
=> $ext_preserve,
68 my $feedback = $return->{feedback
};
69 my $errors = $return->{errors
};
70 my $imported = $return->{imported
};
71 my $overwritten = $return->{overwritten
};
72 my $alreadyindb = $return->{already_in_db
};
73 my $invalid = $return->{invalid
};
76 my $total = $imported + $alreadyindb + $invalid + $overwritten;
78 say "Import complete:";
79 say "Imported: $imported";
80 say "Overwritten: $overwritten";
81 say "Skipped: $alreadyindb";
82 say "Invalid: $invalid";
89 say Data
::Dumper
::Dumper
( $errors );
94 say Data
::Dumper
::Dumper
( $feedback );
99 import_patrons.pl - CLI script to import patrons data into Koha
103 import_patrons.pl --file /path/to/patrons.csv --matchpoint cardnumber --confirm [--default branchcode=MPL] [--overwrite] [--preserve-extended-attributes] [--verbose]
111 Prints a brief help message and exits
113 =item B<-c|--confirm>
115 Confirms you really want to import these patrons, otherwise prints this help
119 Path to the CSV file of patrons to import
121 =item B<-c|--matchpoint>
123 Field on which to match incoming patrons to existing patrons
125 =item B<-d|--default>
127 Set defaults to patron fields, repeatable e.g. --default branchcode=MPL --default categorycode=PT
129 =item B<-o|--overwrite>
131 Overwrite existing patrons with new data if a match is found
133 =item B<-p|--preserve-extended-attributes>
135 Retain extended patron attributes for existing patrons being overwritten
137 =item B<-v|--verbose>