package Spreadsheet::Template::Generator::Parser::Excel; use Moose::Role; with 'Spreadsheet::Template::Generator::Parser'; requires '_build_excel'; has excel => ( is => 'ro', isa => 'Object', lazy => 1, builder => '_build_excel', ); sub parse { my $self = shift; return $self->_parse_workbook; } sub _parse_workbook { my $self = shift; my $data = { selection => $self->excel->{SelectedSheet}, # XXX worksheets => [], }; for my $sheet ($self->excel->worksheets) { push @{ $data->{worksheets} }, $self->_parse_worksheet($sheet); } return $data; } sub _parse_worksheet { my $self = shift; my ($sheet) = @_; my $data = { name => $sheet->get_name, row_heights => [ $sheet->get_row_heights ], column_widths => [ $sheet->get_col_widths ], selection => $sheet->{Selection}, # XXX cells => [], }; my ($rmin, $rmax) = $sheet->row_range; my ($cmin, $cmax) = $sheet->col_range; splice @{ $data->{row_heights} }, $rmax + 1; splice @{ $data->{column_widths} }, $cmax + 1; for my $row (0..$rmin - 1) { push @{ $data->{cells} }, []; } for my $row ($rmin..$rmax) { my $row_data = []; for my $col (0..$cmin - 1) { push @$row_data, {}; } for my $col ($cmin..$cmax) { if (my $cell = $sheet->get_cell($row, $col)) { push @$row_data, $self->_parse_cell($cell); } else { push @$row_data, {}; } } push @{ $data->{cells} }, $row_data } return $data; } sub _parse_cell { my $self = shift; my ($cell) = @_; my $contents = $cell->unformatted; my $type = $cell->type; my $formula = $cell->{Formula}; # XXX my $format = $cell->get_format; if ($type eq 'Numeric') { $type = 'number'; } elsif ($type eq 'Text') { $type = 'string'; } elsif ($type eq 'Date') { $type = 'date_time'; } else { die "unknown type $type"; } my $format_data = {}; if ($format) { my %halign = ( 0 => 'none', 1 => 'left', 2 => 'center', 3 => 'right', 4 => 'fill', 5 => 'justify', 6 => 'center_across', ); my %valign = ( 0 => 'top', 1 => 'vcenter', 2 => 'bottom', 3 => 'vjustify', ); $format_data->{size} = $format->{Font}{Height}; $format_data->{color} = '#' . Spreadsheet::ParseExcel->ColorIdxToRGB( $format->{Font}{Color} ) unless $format->{Font}{Color} == 8; # XXX $format_data->{bg_color} = '#' . Spreadsheet::ParseExcel->ColorIdxToRGB( $format->{Fill}[1] ) unless $format->{Fill}[1] == 64; $format_data->{align} = $halign{$format->{AlignH}} unless $format->{AlignH} == 0; $format_data->{valign} = $valign{$format->{AlignV}} unless $format->{AlignV} == 2; $format_data->{text_wrap} = JSON::true if $format->{Wrap}; # XXX num_format } my $data = { contents => $self->_filter_cell_contents($contents, $type), type => $type, ($formula ? (formula => $formula) : ()), (keys %$format_data ? (format => $format_data) : ()), }; return $data; } sub _filter_cell_contents { my $self = shift; my ($contents) = @_; return $contents; } no Moose::Role; 1;