App-CSVUtils
view release on metacpan or search on metacpan
lib/App/CSVUtils/csv2vcf.pm view on Meta::CPAN
package App::CSVUtils::csv2vcf;
use 5.010001;
use strict;
use warnings;
use Log::ger;
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2025-02-04'; # DATE
our $DIST = 'App-CSVUtils'; # DIST
our $VERSION = '1.036'; # VERSION
use App::CSVUtils qw(gen_csv_util);
gen_csv_util(
name => 'csv2vcf',
summary => 'Create a VCF from selected fields of the CSV',
description => <<'_',
You can set which CSV fields to use for name, cell phone, and email. If unset,
will guess from the field name. If that also fails, will warn/bail out.
_
add_args => {
name_vcf_field => {
summary => 'Select field to use as VCF N (name) field',
schema => 'str*',
},
cell_vcf_field => {
summary => 'Select field to use as VCF CELL field',
schema => 'str*',
},
email_vcf_field => {
summary => 'Select field to use as VCF EMAIL field',
schema => 'str*',
},
},
tags => ['category:converting', 'format:vcf'],
examples => [
{
summary => 'Create an addressbook from CSV',
argv => ['addressbook.csv'],
test => 0,
'x.doc.show_result' => 0,
},
],
writes_csv => 0,
on_begin => sub {
my $r = shift;
$r->{wants_input_row_as_hashref}++;
# this is the key we add to the stash
$r->{vcf} = '';
$r->{fields_for} = {};
$r->{fields_for}{N} = $r->{util_args}{name_vcf_field};
$r->{fields_for}{CELL} = $r->{util_args}{cell_vcf_field};
$r->{fields_for}{EMAIL} = $r->{util_args}{email_vcf_field};
},
on_input_header_row => sub {
my $r = shift;
for my $field (@{ $r->{input_fields} }) {
if ($field =~ /name|nama/i && !defined($r->{fields_for}{N})) {
log_info "Will be using field '$field' for VCF field 'N' (name)";
$r->{fields_for}{N} = $field;
}
if ($field =~ /(e-?)?mail/i && !defined($r->{fields_for}{EMAIL})) {
log_info "Will be using field '$field' for VCF field 'EMAIL'";
$r->{fields_for}{EMAIL} = $field;
}
if ($field =~ /cell|hp|phone|wa|whatsapp|te?le?[fp](on)?/i && !defined($r->{fields_for}{CELL})) {
log_info "Will be using field '$field' for VCF field 'CELL' (cellular phone)";
$r->{fields_for}{CELL} = $field;
}
}
if (!defined($r->{fields_for}{N})) {
die [412, "Can't convert to VCF because we cannot determine which field to use as the VCF N (name) field"];
lib/App/CSVUtils/csv2vcf.pm view on Meta::CPAN
on_input_data_row => sub {
my $r = shift;
$r->{vcard} .= join(
"",
"BEGIN:VCARD\n",
"VERSION:3.0\n",
"N:", $r->{input_row}[$r->{input_fields_idx}{ $r->{fields_for}{N} }], "\n",
(defined $r->{fields_for}{EMAIL} ? ("EMAIL;type=INTERNET;type=WORK;pref:", $r->{input_row}[$r->{input_fields_idx}{ $r->{fields_for}{EMAIL} }], "\n") : ()),
(defined $r->{fields_for}{CELL} ? ("TEL;type=CELL:", $r->{input_row}[$r->{input_fields_idx}{ $r->{fields_for}{CELL} }], "\n") : ()),
"END:VCARD\n\n",
);
},
on_end => sub {
my $r = shift;
$r->{result} = [200, "OK", $r->{vcard}];
},
);
1;
# ABSTRACT: Create a VCF from selected fields of the CSV
__END__
=pod
=encoding UTF-8
=head1 NAME
App::CSVUtils::csv2vcf - Create a VCF from selected fields of the CSV
=head1 VERSION
This document describes version 1.036 of App::CSVUtils::csv2vcf (from Perl distribution App-CSVUtils), released on 2025-02-04.
=head1 FUNCTIONS
=head2 csv2vcf
Usage:
csv2vcf(%args) -> [$status_code, $reason, $payload, \%result_meta]
Create a VCF from selected fields of the CSV.
Examples:
=over
=item * Create an addressbook from CSV:
csv2vcf(input_filename => "addressbook.csv");
=back
You can set which CSV fields to use for name, cell phone, and email. If unset,
will guess from the field name. If that also fails, will warn/bail out.
This function is not exported.
Arguments ('*' denotes required arguments):
=over 4
=item * B<cell_vcf_field> => I<str>
Select field to use as VCF CELL field.
=item * B<email_vcf_field> => I<str>
Select field to use as VCF EMAIL field.
=item * B<input_escape_char> => I<str>
Specify character to escape value in field in input CSV, will be passed to Text::CSV_XS.
Defaults to C<\\> (backslash). Overrides C<--input-tsv> option.
=item * B<input_filename> => I<filename> (default: "-")
Input CSV file.
Use C<-> to read from stdin.
Encoding of input file is assumed to be UTF-8.
=item * B<input_header> => I<bool> (default: 1)
Specify whether input CSV has a header row.
By default, the first row of the input CSV will be assumed to contain field
names (and the second row contains the first data row). When you declare that
input CSV does not have header row (C<--no-input-header>), the first row of the
CSV is assumed to contain the first data row. Fields will be named C<field1>,
C<field2>, and so on.
=item * B<input_quote_char> => I<str>
Specify field quote character in input CSV, will be passed to Text::CSV_XS.
Defaults to C<"> (double quote). Overrides C<--input-tsv> option.
=item * B<input_sep_char> => I<str>
Specify field separator character in input CSV, will be passed to Text::CSV_XS.
Defaults to C<,> (comma). Overrides C<--input-tsv> option.
=item * B<input_skip_num_lines> => I<posint>
Number of lines to skip before header row.
This can be useful if you have a CSV files (usually some generated reports,
sometimes converted from spreadsheet) that have additional header lines or info
before the CSV header row.
See also the alternative option: C<--input-skip-until-pattern>.
( run in 2.261 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )