kivitendo/SL/Template/OpenDocument.pm @ 68748667
0fba3edd | Moritz Bunkus | package SL::Template::OpenDocument;
|
||
439e45e4 | Moritz Bunkus | use parent qw(SL::Template::Simple);
|
||
0fba3edd | Moritz Bunkus | |||
use Archive::Zip;
|
||||
4c19594d | Moritz Bunkus | use Encode;
|
||
fc2fbbca | Moritz Bunkus | use HTML::Entities;
|
||
0fba3edd | Moritz Bunkus | use POSIX 'setsid';
|
||
079c91d5 | Cem Aydin | use XML::LibXML;
|
||
7ff07461 | Cem Aydin | use File::Basename;
|
||
0fba3edd | Moritz Bunkus | |||
use SL::Iconv;
|
||||
fc2fbbca | Moritz Bunkus | use SL::Template::OpenDocument::Styles;
|
||
0fba3edd | Moritz Bunkus | |||
079c91d5 | Cem Aydin | use SL::Helper::QrBill;
|
||
3cb3fcdf | Cem Aydin | use SL::Helper::QrBillFunctions qw(
|
||
get_ref_number_formatted get_iban_formatted get_amount_formatted
|
||||
get_street_name_from_address_line get_building_number_from_address_line
|
||||
);
|
||||
079c91d5 | Cem Aydin | |||
0fba3edd | Moritz Bunkus | use Cwd;
|
||
# use File::Copy;
|
||||
# use File::Spec;
|
||||
# use File::Temp qw(:mktemp);
|
||||
use IO::File;
|
||||
use strict;
|
||||
fc2fbbca | Moritz Bunkus | my %text_markup_replace = (
|
||
b => "BOLD",
|
||||
i => "ITALIC",
|
||||
s => "STRIKETHROUGH",
|
||||
u => "UNDERLINE",
|
||||
sup => "SUPER",
|
||||
sub => "SUB",
|
||||
);
|
||||
sub _format_text {
|
||||
my ($self, $content, %params) = @_;
|
||||
$content = $::locale->quote_special_chars('Template/OpenDocument', $content);
|
||||
# Allow some HTML markup to be converted into the output format's
|
||||
# corresponding markup code, e.g. bold or italic.
|
||||
foreach my $key (keys(%text_markup_replace)) {
|
||||
my $value = $text_markup_replace{$key};
|
||||
$content =~ s|\<${key}\>|<text:span text:style-name=\"TKIVITENDO${value}\">|gi; #"
|
||||
$content =~ s|\</${key}\>|</text:span>|gi;
|
||||
}
|
||||
return $content;
|
||||
}
|
||||
my %html_replace = (
|
||||
'</ul>' => '</text:list>',
|
||||
'</ol>' => '</text:list>',
|
||||
'</li>' => '</text:p></text:list-item>',
|
||||
'<b>' => '<text:span text:style-name="TKIVITENDOBOLD">',
|
||||
'</b>' => '</text:span>',
|
||||
'<strong>' => '<text:span text:style-name="TKIVITENDOBOLD">',
|
||||
'</strong>' => '</text:span>',
|
||||
'<i>' => '<text:span text:style-name="TKIVITENDOITALIC">',
|
||||
'</i>' => '</text:span>',
|
||||
'<em>' => '<text:span text:style-name="TKIVITENDOITALIC">',
|
||||
'</em>' => '</text:span>',
|
||||
'<u>' => '<text:span text:style-name="TKIVITENDOUNDERLINE">',
|
||||
'</u>' => '</text:span>',
|
||||
'<s>' => '<text:span text:style-name="TKIVITENDOSTRIKETHROUGH">',
|
||||
'</s>' => '</text:span>',
|
||||
'<sub>' => '<text:span text:style-name="TKIVITENDOSUB">',
|
||||
'</sub>' => '</text:span>',
|
||||
'<sup>' => '<text:span text:style-name="TKIVITENDOSUPER">',
|
||||
'</sup>' => '</text:span>',
|
||||
'<br/>' => '<text:line-break/>',
|
||||
'<br>' => '<text:line-break/>',
|
||||
);
|
||||
sub _format_html {
|
||||
my ($self, $content, %params) = @_;
|
||||
a2be45a1 | Moritz Bunkus | my $in_p = 0;
|
||
my $p_start_tag = qq|<text:p text:style-name="@{[ $self->{current_text_style} ]}">|;
|
||||
my $prefix = '';
|
||||
my $suffix = '';
|
||||
my (@tags_to_open, @tags_to_close);
|
||||
for (my $idx = scalar(@{ $self->{tag_stack} }) - 1; $idx >= 0; --$idx) {
|
||||
my $tag = $self->{tag_stack}->[$idx];
|
||||
next if $tag =~ m{/>$};
|
||||
last if $tag =~ m{^<table};
|
||||
if ($tag =~ m{^<text:p}) {
|
||||
$in_p = 1;
|
||||
$p_start_tag = $tag;
|
||||
last;
|
||||
} else {
|
||||
$suffix = "${tag}${suffix}";
|
||||
$tag =~ s{ .*>}{>};
|
||||
$prefix .= '</' . substr($tag, 1);
|
||||
}
|
||||
}
|
||||
$content =~ s{ ^<p> | </p>$ }{}gx if $in_p;
|
||||
$content =~ s{ \r+ }{}gx;
|
||||
$content =~ s{ \n+ }{ }gx;
|
||||
$content =~ s{ (?:\ |\s)+ }{ }gx;
|
||||
my $ul_start_tag = qq|<text:list xml:id="list@{[ int rand(9999999999999999) ]}" text:style-name="LKIVITENDOitemize@{[ $self->{current_text_style} ]}">|;
|
||||
my $ol_start_tag = qq|<text:list xml:id="list@{[ int rand(9999999999999999) ]}" text:style-name="LKIVITENDOenumerate@{[ $self->{current_text_style} ]}">|;
|
||||
my $ul_li_start_tag = qq|<text:list-item><text:p text:style-name="PKIVITENDOitemize@{[ $self->{current_text_style} ]}">|;
|
||||
my $ol_li_start_tag = qq|<text:list-item><text:p text:style-name="PKIVITENDOenumerate@{[ $self->{current_text_style} ]}">|;
|
||||
fc2fbbca | Moritz Bunkus | |||
my @parts = map {
|
||||
if (substr($_, 0, 1) eq '<') {
|
||||
s{ +}{}g;
|
||||
if ($_ eq '</p>') {
|
||||
$in_p--;
|
||||
a2be45a1 | Moritz Bunkus | $in_p == 0 ? '</text:p>' : '';
|
||
fc2fbbca | Moritz Bunkus | |||
} elsif ($_ eq '<p>') {
|
||||
a2be45a1 | Moritz Bunkus | $in_p++;
|
||
$in_p == 1 ? $p_start_tag : '';
|
||||
fc2fbbca | Moritz Bunkus | |||
} elsif ($_ eq '<ul>') {
|
||||
$self->{used_list_styles}->{itemize}->{$self->{current_text_style}} = 1;
|
||||
$html_replace{'<li>'} = $ul_li_start_tag;
|
||||
$ul_start_tag;
|
||||
} elsif ($_ eq '<ol>') {
|
||||
$self->{used_list_styles}->{enumerate}->{$self->{current_text_style}} = 1;
|
||||
$html_replace{'<li>'} = $ol_li_start_tag;
|
||||
$ol_start_tag;
|
||||
} else {
|
||||
$html_replace{$_} || '';
|
||||
}
|
||||
} else {
|
||||
$::locale->quote_special_chars('Template/OpenDocument', HTML::Entities::decode_entities($_));
|
||||
}
|
||||
} split(m{(<.*?>)}x, $content);
|
||||
a2be45a1 | Moritz Bunkus | my $out = join('', $prefix, @parts, $suffix);
|
||
fc2fbbca | Moritz Bunkus | |||
a2be45a1 | Moritz Bunkus | # $::lxdebug->dump(0, "prefix parts suffix", [ $prefix, join('', @parts), $suffix ]);
|
||
fc2fbbca | Moritz Bunkus | |||
return $out;
|
||||
}
|
||||
my %formatters = (
|
||||
html => \&_format_html,
|
||||
text => \&_format_text,
|
||||
);
|
||||
0fba3edd | Moritz Bunkus | sub new {
|
||
my $type = shift;
|
||||
my $self = $type->SUPER::new(@_);
|
||||
$self->set_tag_style('<%', '%>');
|
||||
$self->{quot_re} = '"';
|
||||
return $self;
|
||||
}
|
||||
sub parse_foreach {
|
||||
my ($self, $var, $text, $start_tag, $end_tag, @indices) = @_;
|
||||
my ($form, $new_contents) = ($self->{"form"}, "");
|
||||
my $ary = $self->_get_loop_variable($var, 1, @indices);
|
||||
e81efe40 | Sven Schöling | for (my $i = 0; $i < scalar(@{$ary || []}); $i++) {
|
||
0fba3edd | Moritz Bunkus | $form->{"__first__"} = $i == 0;
|
||
$form->{"__last__"} = ($i + 1) == scalar(@{$ary});
|
||||
$form->{"__odd__"} = (($i + 1) % 2) == 1;
|
||||
$form->{"__counter__"} = $i + 1;
|
||||
my $new_text = $self->parse_block($text, (@indices, $i));
|
||||
return undef unless (defined($new_text));
|
||||
$new_contents .= $start_tag . $new_text . $end_tag;
|
||||
}
|
||||
map({ delete($form->{"__${_}__"}); } qw(first last odd counter));
|
||||
return $new_contents;
|
||||
}
|
||||
sub find_end {
|
||||
my ($self, $text, $pos, $var, $not) = @_;
|
||||
my $depth = 1;
|
||||
$pos = 0 unless ($pos);
|
||||
while ($pos < length($text)) {
|
||||
$pos++;
|
||||
next if (substr($text, $pos - 1, 5) ne '<%');
|
||||
if ((substr($text, $pos + 4, 2) eq 'if') || (substr($text, $pos + 4, 3) eq 'for')) {
|
||||
$depth++;
|
||||
} elsif ((substr($text, $pos + 4, 4) eq 'else') && (1 == $depth)) {
|
||||
if (!$var) {
|
||||
14db961c | Cem Aydin | $self->{error} = '<%else%> outside of <%if%> / <%ifnot%>.';
|
||
0fba3edd | Moritz Bunkus | return undef;
|
||
}
|
||||
my $block = substr($text, 0, $pos - 1);
|
||||
substr($text, 0, $pos - 1) = "";
|
||||
$text =~ s!^\<\%[^\%]+\%\>!!;
|
||||
$text = '<%if' . ($not ? " " : "not ") . $var . '%>' . $text;
|
||||
return ($block, $text);
|
||||
} elsif (substr($text, $pos + 4, 3) eq 'end') {
|
||||
$depth--;
|
||||
if ($depth == 0) {
|
||||
my $block = substr($text, 0, $pos - 1);
|
||||
substr($text, 0, $pos - 1) = "";
|
||||
$text =~ s!^\<\%[^\%]+\%\>!!;
|
||||
return ($block, $text);
|
||||
}
|
||||
}
|
||||
}
|
||||
return undef;
|
||||
}
|
||||
sub parse_block {
|
||||
$main::lxdebug->enter_sub();
|
||||
my ($self, $contents, @indices) = @_;
|
||||
my $new_contents = "";
|
||||
while ($contents ne "") {
|
||||
if (substr($contents, 0, 1) eq "<") {
|
||||
e09e900d | Sven Schöling | $contents =~ m|^(<[^>]+>)|;
|
||
my $tag = $1;
|
||||
substr($contents, 0, length($1)) = "";
|
||||
0fba3edd | Moritz Bunkus | |||
fc2fbbca | Moritz Bunkus | $self->{current_text_style} = $1 if $tag =~ m|text:style-name\s*=\s*"([^"]+)"|;
|
||
a2be45a1 | Moritz Bunkus | push @{ $self->{tag_stack} }, $tag;
|
||
0fba3edd | Moritz Bunkus | if ($tag =~ m|<table:table-row|) {
|
||
$contents =~ m|^(.*?)(</table:table-row[^>]*>)|;
|
||||
my $table_row = $1;
|
||||
my $end_tag = $2;
|
||||
if ($table_row =~ m|\<\%foreachrow\s+(.*?)\%\>|) {
|
||||
my $var = $1;
|
||||
e09e900d | Sven Schöling | $contents =~ m|^(.*?)(\<\%foreachrow\s+.*?\%\>)|;
|
||
substr($contents, length($1), length($2)) = "";
|
||||
0fba3edd | Moritz Bunkus | |||
e09e900d | Sven Schöling | ($table_row, $contents) = $self->find_end($contents, length($1));
|
||
f51fdc2b | Moritz Bunkus | if (!$table_row) {
|
||
14db961c | Cem Aydin | $self->{error} = "Unclosed <\%foreachrow\%>." unless ($self->{"error"});
|
||
0fba3edd | Moritz Bunkus | $main::lxdebug->leave_sub();
|
||
return undef;
|
||||
}
|
||||
f51fdc2b | Moritz Bunkus | $contents =~ m|^(.*?)(</table:table-row[^>]*>)|;
|
||
$table_row .= $1;
|
||||
$end_tag = $2;
|
||||
49e7cf41 | Sven Schöling | substr $contents, 0, length($1) + length($2), '';
|
||
f51fdc2b | Moritz Bunkus | |||
my $new_text = $self->parse_foreach($var, $table_row, $tag, $end_tag, @indices);
|
||||
0fba3edd | Moritz Bunkus | if (!defined($new_text)) {
|
||
$main::lxdebug->leave_sub();
|
||||
return undef;
|
||||
}
|
||||
$new_contents .= $new_text;
|
||||
} else {
|
||||
f51fdc2b | Moritz Bunkus | substr($contents, 0, length($table_row) + length($end_tag)) = "";
|
||
0fba3edd | Moritz Bunkus | my $new_text = $self->parse_block($table_row, @indices);
|
||
if (!defined($new_text)) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return undef;
|
||||
}
|
||||
$new_contents .= $tag . $new_text . $end_tag;
|
||||
}
|
||||
} else {
|
||||
$new_contents .= $tag;
|
||||
}
|
||||
a2be45a1 | Moritz Bunkus | if ($tag =~ m{^</ | />$}x) {
|
||
# $::lxdebug->message(0, "popping top tag is $tag top " . $self->{tag_stack}->[-1]);
|
||||
pop @{ $self->{tag_stack} };
|
||||
}
|
||||
0fba3edd | Moritz Bunkus | } else {
|
||
e09e900d | Sven Schöling | $contents =~ /^([^<]+)/;
|
||
my $text = $1;
|
||||
0fba3edd | Moritz Bunkus | |||
my $pos_if = index($text, '<%if');
|
||||
my $pos_foreach = index($text, '<%foreach');
|
||||
if ((-1 == $pos_if) && (-1 == $pos_foreach)) {
|
||||
substr($contents, 0, length($text)) = "";
|
||||
$new_contents .= $self->substitute_vars($text, @indices);
|
||||
next;
|
||||
}
|
||||
if ((-1 == $pos_if) || ((-1 != $pos_foreach) && ($pos_if > $pos_foreach))) {
|
||||
$new_contents .= $self->substitute_vars(substr($contents, 0, $pos_foreach), @indices);
|
||||
substr($contents, 0, $pos_foreach) = "";
|
||||
e09e900d | Sven Schöling | if ($contents !~ m|^(\<\%foreach (.*?)\%\>)|) {
|
||
14db961c | Cem Aydin | $self->{error} = "Malformed <\%foreach\%>.";
|
||
0fba3edd | Moritz Bunkus | $main::lxdebug->leave_sub();
|
||
return undef;
|
||||
}
|
||||
e09e900d | Sven Schöling | my $var = $2;
|
||
0fba3edd | Moritz Bunkus | |||
e09e900d | Sven Schöling | substr($contents, 0, length($1)) = "";
|
||
0fba3edd | Moritz Bunkus | |||
my $block;
|
||||
($block, $contents) = $self->find_end($contents);
|
||||
if (!$block) {
|
||||
14db961c | Cem Aydin | $self->{error} = "Unclosed <\%foreach\%>." unless ($self->{error});
|
||
0fba3edd | Moritz Bunkus | $main::lxdebug->leave_sub();
|
||
return undef;
|
||||
}
|
||||
my $new_text = $self->parse_foreach($var, $block, "", "", @indices);
|
||||
if (!defined($new_text)) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return undef;
|
||||
}
|
||||
$new_contents .= $new_text;
|
||||
} else {
|
||||
if (!$self->_parse_block_if(\$contents, \$new_contents, $pos_if, @indices)) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return undef;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
return $new_contents;
|
||||
}
|
||||
sub parse {
|
||||
$main::lxdebug->enter_sub();
|
||||
my $self = $_[0];
|
||||
079c91d5 | Cem Aydin | |||
0fba3edd | Moritz Bunkus | local *OUT = $_[1];
|
||
14db961c | Cem Aydin | my $form = $self->{form};
|
||
0fba3edd | Moritz Bunkus | |||
close(OUT);
|
||||
0176fba8 | Cem Aydin | my $is_qr_bill = $::instance_conf->get_create_qrbill_invoices &&
|
||
2045198c | Cem Aydin | ($form->{formname} eq 'invoice' ||
|
||
$form->{formname} eq 'invoice_for_advance_payment') &&
|
||||
14db961c | Cem Aydin | $form->{template_meta}->{printer}->{template_code} =~ m/qr/ ?
|
||
0176fba8 | Cem Aydin | 1 : 0;
|
||
079c91d5 | Cem Aydin | my $qr_image_path;
|
||
0176fba8 | Cem Aydin | if ($is_qr_bill) {
|
||
079c91d5 | Cem Aydin | # the biller account information, biller address and the reference number,
|
||
# are needed in the template aswell as in the qr-code generation, therefore
|
||||
# assemble these and add to $::form
|
||||
$qr_image_path = $self->generate_qr_code;
|
||||
}
|
||||
0fba3edd | Moritz Bunkus | my $file_name;
|
||
14db961c | Cem Aydin | if ($form->{IN} =~ m|^/|) {
|
||
$file_name = $form->{IN};
|
||||
0fba3edd | Moritz Bunkus | } else {
|
||
14db961c | Cem Aydin | $file_name = $form->{templates} . "/" . $form->{IN};
|
||
0fba3edd | Moritz Bunkus | }
|
||
my $zip = Archive::Zip->new();
|
||||
if (Archive::Zip->AZ_OK != $zip->read($file_name)) {
|
||||
14db961c | Cem Aydin | $self->{error} = "File not found/is not a OpenDocument file.";
|
||
0fba3edd | Moritz Bunkus | $main::lxdebug->leave_sub();
|
||
return 0;
|
||||
}
|
||||
4c19594d | Moritz Bunkus | my $contents = Encode::decode('utf-8-strict', $zip->contents("content.xml"));
|
||
0fba3edd | Moritz Bunkus | if (!$contents) {
|
||
14db961c | Cem Aydin | $self->{error} = "File is not a OpenDocument file.";
|
||
0fba3edd | Moritz Bunkus | $main::lxdebug->leave_sub();
|
||
return 0;
|
||||
}
|
||||
fc2fbbca | Moritz Bunkus | $self->{current_text_style} = '';
|
||
$self->{used_list_styles} = {
|
||||
itemize => {},
|
||||
enumerate => {},
|
||||
};
|
||||
0fba3edd | Moritz Bunkus | |||
1b9d0f70 | Sven Schöling | my $new_contents;
|
||
if ($self->{use_template_toolkit}) {
|
||||
my $additional_params = $::form;
|
||||
4cf756d3 | Moritz Bunkus | $::form->template->process(\$contents, $additional_params, \$new_contents) || die $::form->template->error;
|
||
1b9d0f70 | Sven Schöling | } else {
|
||
a2be45a1 | Moritz Bunkus | $self->{tag_stack} = [];
|
||
1b9d0f70 | Sven Schöling | $new_contents = $self->parse_block($contents);
|
||
}
|
||||
0fba3edd | Moritz Bunkus | if (!defined($new_contents)) {
|
||
$main::lxdebug->leave_sub();
|
||||
return 0;
|
||||
}
|
||||
fc2fbbca | Moritz Bunkus | my $new_styles = SL::Template::OpenDocument::Styles->get_style('text_basic');
|
||
foreach my $type (qw(itemize enumerate)) {
|
||||
foreach my $parent (sort { $a cmp $b } keys %{ $self->{used_list_styles}->{$type} }) {
|
||||
$new_styles .= SL::Template::OpenDocument::Styles->get_style('text_list_item', TYPE => $type, PARENT => $parent)
|
||||
. SL::Template::OpenDocument::Styles->get_style("list_${type}", TYPE => $type, PARENT => $parent);
|
||||
}
|
||||
}
|
||||
# $::lxdebug->dump(0, "new_Styles", $new_styles);
|
||||
$new_contents =~ s|</office:automatic-styles>|${new_styles}</office:automatic-styles>|;
|
||||
$new_contents =~ s|[\n\r]||gm;
|
||||
0fba3edd | Moritz Bunkus | # $new_contents =~ s|>|>\n|g;
|
||
4c19594d | Moritz Bunkus | $zip->contents("content.xml", Encode::encode('utf-8-strict', $new_contents));
|
||
0fba3edd | Moritz Bunkus | |||
d72dd9ab | Moritz Bunkus | my $styles = Encode::decode('utf-8-strict', $zip->contents("styles.xml"));
|
||
0fba3edd | Moritz Bunkus | if ($contents) {
|
||
my $new_styles = $self->parse_block($styles);
|
||||
if (!defined($new_contents)) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return 0;
|
||||
}
|
||||
d72dd9ab | Moritz Bunkus | $zip->contents("styles.xml", Encode::encode('utf-8-strict', $new_styles));
|
||
0fba3edd | Moritz Bunkus | }
|
||
0176fba8 | Cem Aydin | if ($is_qr_bill) {
|
||
079c91d5 | Cem Aydin | # get placeholder path from odt XML
|
||
my $qr_placeholder_path;
|
||||
my $dom = XML::LibXML->load_xml(string => $contents);
|
||||
my @nodelist = $dom->getElementsByTagName("draw:frame");
|
||||
for my $node (@nodelist) {
|
||||
my $attr = $node->getAttribute('draw:name');
|
||||
if ($attr eq 'QRCodePlaceholder') {
|
||||
my @children = $node->getChildrenByTagName('draw:image');
|
||||
$qr_placeholder_path = $children[0]->getAttribute('xlink:href');
|
||||
}
|
||||
}
|
||||
if (!defined($qr_placeholder_path)) {
|
||||
$::form->error($::locale->text('QR-Code placeholder image: QRCodePlaceholder not found in template.'));
|
||||
}
|
||||
# replace QR-Code Placeholder Image in zip file (odt) with generated one
|
||||
$zip->updateMember(
|
||||
$qr_placeholder_path,
|
||||
$qr_image_path
|
||||
);
|
||||
}
|
||||
14db961c | Cem Aydin | $zip->writeToFileNamed($form->{tmpfile}, 1);
|
||
0fba3edd | Moritz Bunkus | |||
my $res = 1;
|
||||
14db961c | Cem Aydin | if ($form->{format} =~ /pdf/) {
|
||
0fba3edd | Moritz Bunkus | $res = $self->convert_to_pdf();
|
||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
return $res;
|
||||
}
|
||||
079c91d5 | Cem Aydin | sub generate_qr_code {
|
||
$main::lxdebug->enter_sub();
|
||||
my $self = $_[0];
|
||||
14db961c | Cem Aydin | my $form = $self->{form};
|
||
079c91d5 | Cem Aydin | |||
# assemble data for QR-Code
|
||||
aab96bbe | Cem Aydin | if (!$form->{qrbill_iban}) {
|
||
$::form->error($::locale->text('No bank account flagged for QRBill usage was found.'));
|
||||
64ba4cbb | Cem Aydin | }
|
||
079c91d5 | Cem Aydin | |||
my %biller_information = (
|
||||
14db961c | Cem Aydin | iban => $form->{qrbill_iban}
|
||
079c91d5 | Cem Aydin | );
|
||
aab96bbe | Cem Aydin | if (!$form->{qrbill_biller_countrycode}) {
|
||
079c91d5 | Cem Aydin | $::form->error($::locale->text('Error mapping biller countrycode.'));
|
||
}
|
||||
my %biller_data = (
|
||||
3cb3fcdf | Cem Aydin | address_type => 'S',
|
||
14db961c | Cem Aydin | company => $::instance_conf->get_company(),
|
||
3cb3fcdf | Cem Aydin | street => get_street_name_from_address_line($::instance_conf->get_address_street1()),
|
||
street_no => get_building_number_from_address_line($::instance_conf->get_address_street1()),
|
||||
postalcode => $::instance_conf->get_address_zipcode(),
|
||||
city => $::instance_conf->get_address_city(),
|
||||
14db961c | Cem Aydin | countrycode => $form->{qrbill_biller_countrycode},
|
||
079c91d5 | Cem Aydin | );
|
||
64ba4cbb | Cem Aydin | my ($amount, $amount_formatted);
|
||
14db961c | Cem Aydin | if ($form->{qrbill_without_amount}) {
|
||
94976940 | Cem Aydin | $amount = '';
|
||
64ba4cbb | Cem Aydin | $amount_formatted = '';
|
||
94976940 | Cem Aydin | } else {
|
||
aab96bbe | Cem Aydin | $amount = $form->{qrbill_amount};
|
||
64ba4cbb | Cem Aydin | |||
# format amount for template
|
||||
$amount_formatted = get_amount_formatted($amount);
|
||||
if (!$amount_formatted) {
|
||||
$::form->error($::locale->text('Amount has wrong format.'));
|
||||
}
|
||||
94976940 | Cem Aydin | }
|
||
079c91d5 | Cem Aydin | my %payment_information = (
|
||
14db961c | Cem Aydin | amount => $amount,
|
||
currency => $form->{currency},
|
||||
079c91d5 | Cem Aydin | );
|
||
3cb3fcdf | Cem Aydin | # get address data from billing address if given, otherwise from invoice
|
||
my $street_name = get_street_name_from_address_line($form->{billing_address_id} ?
|
||||
$form->{billing_address_street} :
|
||||
$form->{street});
|
||||
my $building_number = get_building_number_from_address_line($form->{billing_address_id} ?
|
||||
$form->{billing_address_street} :
|
||||
$form->{street});
|
||||
my $postalcode = $form->{billing_address_id} ?
|
||||
$form->{billing_address_zipcode} :
|
||||
$form->{zipcode};
|
||||
my $city = $form->{billing_address_id} ?
|
||||
$form->{billing_address_city} :
|
||||
$form->{city};
|
||||
cf8581ed | Cem Aydin | # validate address data
|
||
3cb3fcdf | Cem Aydin | if ($postalcode !~ m/^\d{4,}$/) {
|
||
cf8581ed | Cem Aydin | $::form->error($::locale->text('Zipcode missing or wrong format.'));
|
||
}
|
||||
3cb3fcdf | Cem Aydin | if (!$city) {
|
||
cf8581ed | Cem Aydin | $::form->error($::locale->text('No city given.'));
|
||
}
|
||||
aab96bbe | Cem Aydin | if (!$form->{qrbill_customer_countrycode}) {
|
||
079c91d5 | Cem Aydin | $::form->error($::locale->text('Error mapping customer countrycode.'));
|
||
}
|
||||
b9a3e200 | Cem Aydin | |||
079c91d5 | Cem Aydin | my %invoice_recipient_data = (
|
||
3cb3fcdf | Cem Aydin | address_type => 'S',
|
||
14db961c | Cem Aydin | name => $form->{billing_address_id} ?
|
||
$form->{billing_address_name} :
|
||||
$form->{name},
|
||||
3cb3fcdf | Cem Aydin | street => $street_name,
|
||
street_no => $building_number,
|
||||
postalcode => $postalcode,
|
||||
city => $city,
|
||||
14db961c | Cem Aydin | countrycode => $form->{qrbill_customer_countrycode},
|
||
079c91d5 | Cem Aydin | );
|
||
a9d122f7 | Cem Aydin | my %ref_nr_data;
|
||
if ($::instance_conf->get_create_qrbill_invoices == 1) {
|
||||
836c2c18 | Cem Aydin | # fill reference number with zeros when printing preview (before booking)
|
||
14db961c | Cem Aydin | my $reference_number = $form->{id} ? $form->{qr_reference} : '0' x 27;
|
||
836c2c18 | Cem Aydin | |||
a9d122f7 | Cem Aydin | %ref_nr_data = (
|
||
14db961c | Cem Aydin | type => 'QRR',
|
||
ref_number => $reference_number,
|
||||
a9d122f7 | Cem Aydin | );
|
||
11e8489d | Cem Aydin | # get ref. number/iban formatted with spaces and set into form for template
|
||
# processing
|
||||
14db961c | Cem Aydin | $form->{ref_number} = $reference_number;
|
||
$form->{ref_number_formatted} = get_ref_number_formatted($reference_number);
|
||||
a9d122f7 | Cem Aydin | } elsif ($::instance_conf->get_create_qrbill_invoices == 2) {
|
||
%ref_nr_data = (
|
||||
14db961c | Cem Aydin | type => 'NON',
|
||
ref_number => '',
|
||||
a9d122f7 | Cem Aydin | );
|
||
} else {
|
||||
$::form->error($::locale->text('Error getting QR-Bill type.'));
|
||||
}
|
||||
079c91d5 | Cem Aydin | |||
bfeee737 | Cem Aydin | my %additional_information = (
|
||
14db961c | Cem Aydin | unstructured_message => $form->{qr_unstructured_message}
|
||
bfeee737 | Cem Aydin | );
|
||
079c91d5 | Cem Aydin | # set into form for template processing
|
||
14db961c | Cem Aydin | $form->{biller_information} = \%biller_information;
|
||
$form->{biller_data} = \%biller_data;
|
||||
$form->{iban_formatted} = get_iban_formatted($form->{qrbill_iban});
|
||||
$form->{amount_formatted} = $amount_formatted;
|
||||
$form->{unstructured_message} = $form->{qr_unstructured_message};
|
||||
2045198c | Cem Aydin | |||
079c91d5 | Cem Aydin | # set outfile
|
||
14db961c | Cem Aydin | my $outfile = $form->{tmpdir} . '/' . 'qr-code.png';
|
||
079c91d5 | Cem Aydin | |||
# generate QR-Code Image
|
||||
eval {
|
||||
my $qr_image = SL::Helper::QrBill->new(
|
||||
\%biller_information,
|
||||
\%biller_data,
|
||||
\%payment_information,
|
||||
\%invoice_recipient_data,
|
||||
\%ref_nr_data,
|
||||
bfeee737 | Cem Aydin | \%additional_information
|
||
079c91d5 | Cem Aydin | );
|
||
$qr_image->generate($outfile);
|
||||
} or do {
|
||||
local $_ = $@; chomp; my $error = $_;
|
||||
$::form->error($::locale->text('QR-Image generation failed: ' . $error));
|
||||
};
|
||||
$main::lxdebug->leave_sub();
|
||||
return $outfile;
|
||||
}
|
||||
c09eb68d | Moritz Bunkus | sub _run_python_uno {
|
||
my ($self, @args) = @_;
|
||||
local $ENV{PYTHONPATH};
|
||||
$ENV{PYTHONPATH} = $::lx_office_conf{environment}->{python_uno_path} . ':' . $ENV{PYTHONPATH} if $::lx_office_conf{environment}->{python_uno_path};
|
||||
my $cmd = $::lx_office_conf{applications}->{python_uno} . ' ' . join(' ', @args);
|
||||
return `$cmd`;
|
||||
}
|
||||
0fba3edd | Moritz Bunkus | sub is_openoffice_running {
|
||
c09eb68d | Moritz Bunkus | my ($self) = @_;
|
||
0fba3edd | Moritz Bunkus | $main::lxdebug->enter_sub();
|
||
c09eb68d | Moritz Bunkus | my $output = $self->_run_python_uno('./scripts/oo-uno-test-conn.py', $::lx_office_conf{print_templates}->{openofficeorg_daemon_port}, ' 2> /dev/null');
|
||
0fba3edd | Moritz Bunkus | chomp $output;
|
||
my $res = ($? == 0) || $output;
|
||||
$main::lxdebug->message(LXDebug->DEBUG2(), " is_openoffice_running(): res $res\n");
|
||||
$main::lxdebug->leave_sub();
|
||||
return $res;
|
||||
}
|
||||
sub spawn_openoffice {
|
||||
$main::lxdebug->enter_sub();
|
||||
my ($self) = @_;
|
||||
$main::lxdebug->message(LXDebug->DEBUG2(), "spawn_openoffice()\n");
|
||||
my ($try, $spawned_oo, $res);
|
||||
$res = 0;
|
||||
for ($try = 0; $try < 15; $try++) {
|
||||
if ($self->is_openoffice_running()) {
|
||||
$res = 1;
|
||||
last;
|
||||
}
|
||||
c6ab4d99 | Sven Schöling | if ($::dispatcher->interface_type eq 'FastCGI') {
|
||
$::dispatcher->{request}->Detach;
|
||||
}
|
||||
0fba3edd | Moritz Bunkus | if (!$spawned_oo) {
|
||
my $pid = fork();
|
||||
if (0 == $pid) {
|
||||
$main::lxdebug->message(LXDebug->DEBUG2(), " Child daemonizing\n");
|
||||
c6ab4d99 | Sven Schöling | |||
if ($::dispatcher->interface_type eq 'FastCGI') {
|
||||
$::dispatcher->{request}->Finish;
|
||||
$::dispatcher->{request}->LastCall;
|
||||
}
|
||||
0fba3edd | Moritz Bunkus | chdir('/');
|
||
open(STDIN, '/dev/null');
|
||||
open(STDOUT, '>/dev/null');
|
||||
my $new_pid = fork();
|
||||
exit if ($new_pid);
|
||||
my $ssres = setsid();
|
||||
$main::lxdebug->message(LXDebug->DEBUG2(), " Child execing\n");
|
||||
f2af9def | Moritz Bunkus | my @cmdline = ($::lx_office_conf{applications}->{openofficeorg_writer},
|
||
813e461c | Cem Aydin | "--minimized", "--norestore", "--nologo", "--nolockcheck",
|
||
"--headless",
|
||||
"--accept=socket,host=localhost,port=" .
|
||||
2b339152 | Moritz Bunkus | $::lx_office_conf{print_templates}->{openofficeorg_daemon_port} . ";urp;");
|
||
0fba3edd | Moritz Bunkus | exec(@cmdline);
|
||
c6ab4d99 | Sven Schöling | } else {
|
||
# parent
|
||||
if ($::dispatcher->interface_type eq 'FastCGI') {
|
||||
$::dispatcher->{request}->Attach;
|
||||
}
|
||||
0fba3edd | Moritz Bunkus | }
|
||
$main::lxdebug->message(LXDebug->DEBUG2(), " Parent after fork\n");
|
||||
$spawned_oo = 1;
|
||||
sleep(3);
|
||||
}
|
||||
sleep($try >= 5 ? 2 : 1);
|
||||
}
|
||||
if (!$res) {
|
||||
14db961c | Cem Aydin | $self->{error} = "Conversion from OpenDocument to PDF failed because " .
|
||
0fba3edd | Moritz Bunkus | "OpenOffice could not be started.";
|
||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
return $res;
|
||||
}
|
||||
sub convert_to_pdf {
|
||||
$main::lxdebug->enter_sub();
|
||||
my ($self) = @_;
|
||||
14db961c | Cem Aydin | my $form = $self->{form};
|
||
0fba3edd | Moritz Bunkus | |||
14db961c | Cem Aydin | my $filename = $form->{tmpfile};
|
||
0fba3edd | Moritz Bunkus | $filename =~ s/.odt$//;
|
||
if (substr($filename, 0, 1) ne "/") {
|
||||
$filename = getcwd() . "/${filename}";
|
||||
}
|
||||
14db961c | Cem Aydin | if (substr($self->{userspath}, 0, 1) eq "/") {
|
||
$ENV{HOME} = $self->{userspath};
|
||||
0fba3edd | Moritz Bunkus | } else {
|
||
14db961c | Cem Aydin | $ENV{HOME} = getcwd() . "/" . $self->{userspath};
|
||
0fba3edd | Moritz Bunkus | }
|
||
2045198c | Cem Aydin | |||
7ff07461 | Cem Aydin | my $outdir = dirname($filename);
|
||
0fba3edd | Moritz Bunkus | |||
2b339152 | Moritz Bunkus | if (!$::lx_office_conf{print_templates}->{openofficeorg_daemon}) {
|
||
232d7868 | Bernd Bleßmann | if (system($::lx_office_conf{applications}->{openofficeorg_writer},
|
||
813e461c | Cem Aydin | "--minimized", "--norestore", "--nologo", "--nolockcheck", "--headless",
|
||
7ff07461 | Cem Aydin | "--convert-to", "pdf", "--outdir", $outdir,
|
||
"file:${filename}.odt") == -1) {
|
||||
232d7868 | Bernd Bleßmann | die "system call to $::lx_office_conf{applications}->{openofficeorg_writer} failed: $!";
|
||
}
|
||||
0fba3edd | Moritz Bunkus | } else {
|
||
if (!$self->spawn_openoffice()) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return 0;
|
||||
}
|
||||
c09eb68d | Moritz Bunkus | $self->_run_python_uno('./scripts/oo-uno-convert-pdf.py', $::lx_office_conf{print_templates}->{openofficeorg_daemon_port}, "${filename}.odt");
|
||
0fba3edd | Moritz Bunkus | }
|
||
my $res = $?;
|
||||
if ((0 == $?) || (-f "${filename}.pdf" && -s "${filename}.pdf")) {
|
||||
14db961c | Cem Aydin | $form->{tmpfile} =~ s/odt$/pdf/;
|
||
0fba3edd | Moritz Bunkus | |||
unlink($filename . ".odt");
|
||||
$main::lxdebug->leave_sub();
|
||||
return 1;
|
||||
}
|
||||
unlink($filename . ".odt", $filename . ".pdf");
|
||||
14db961c | Cem Aydin | $self->{error} = "Conversion from OpenDocument to PDF failed. " .
|
||
0fba3edd | Moritz Bunkus | "Exit code: $res";
|
||
$main::lxdebug->leave_sub();
|
||||
return 0;
|
||||
}
|
||||
sub format_string {
|
||||
fc2fbbca | Moritz Bunkus | my ($self, $content, $variable) = @_;
|
||
0fba3edd | Moritz Bunkus | |||
fc2fbbca | Moritz Bunkus | my $formatter =
|
||
$formatters{ $self->{variable_content_types}->{$variable} }
|
||||
// $formatters{ $self->{default_content_type} }
|
||||
// $formatters{ text };
|
||||
0fba3edd | Moritz Bunkus | |||
fc2fbbca | Moritz Bunkus | return $formatter->($self, $content, variable => $variable);
|
||
0fba3edd | Moritz Bunkus | }
|
||
sub get_mime_type() {
|
||||
my ($self) = @_;
|
||||
14db961c | Cem Aydin | if ($self->{form}->{format} =~ /pdf/) {
|
||
0fba3edd | Moritz Bunkus | return "application/pdf";
|
||
} else {
|
||||
return "application/vnd.oasis.opendocument.text";
|
||||
}
|
||||
}
|
||||
sub uses_temp_file {
|
||||
return 1;
|
||||
}
|
||||
1;
|