This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/lib/Pear/LocalLoop/Controller/Admin/ImportFrom.pm

78 lines
1.9 KiB
Perl
Raw Normal View History

2019-07-02 14:21:01 +00:00
package Pear::LocalLoop::Controller::Admin::ImportFrom;
use Mojo::Base 'Mojolicious::Controller';
2019-07-05 14:30:31 +00:00
use Moo;
2019-07-05 17:44:46 +00:00
use Try::Tiny;
2019-07-02 14:21:01 +00:00
2019-07-05 14:30:31 +00:00
use Pear::LocalLoop::Import::LCCCsv::Suppliers;
use Pear::LocalLoop::Import::LCCCsv::Transactions;
2019-07-05 14:30:31 +00:00
2019-07-04 13:16:49 +00:00
sub index {
my $c = shift;
2019-07-05 14:30:31 +00:00
$c->app->max_request_size(104857600);
2019-07-04 13:16:49 +00:00
}
sub post_suppliers {
my $c = shift;
2019-07-05 14:30:31 +00:00
unless ($c->param('suppliers_csv')) {
$c->flash( error => "No CSV file given" );
return $c->redirect_to( '/admin/import_from' );
}
# Check file size
if ($c->req->is_limit_exceeded) {
$c->flash( error => "CSV file size is too large" );
return $c->redirect_to( '/admin/import_from' );
}
2019-07-08 15:41:59 +00:00
my $filename;
$c->minion->enqueue('csv_supplier_import' => $filename );
# my $csv_import = Pear::LocalLoop::Import::LCCCsv::Suppliers->new(
# csv_string => $c->param('suppliers_csv')->slurp,
# schema => $c->app->schema
# )->import_csv;
#
# my $job_id = $c->minion->enqueue('csv_supplier_import' => [$csv_import] );
2019-07-05 14:30:31 +00:00
$c->flash( success => "CSV imported" );
2019-07-04 13:16:49 +00:00
return $c->redirect_to( '/admin/import_from' );
}
sub post_transactions {
my $c = shift;
2019-07-05 14:30:31 +00:00
unless ($c->param('transactions_csv')) {
$c->flash( error => "No CSV file given" );
return $c->redirect_to( '/admin/import_from' );
}
# Check file size
if ($c->req->is_limit_exceeded) {
$c->flash( error => "CSV file size is too large" );
return $c->redirect_to( '/admin/import_from' );
}
2019-07-05 17:44:46 +00:00
my $csv_error;
try {
Pear::LocalLoop::Import::LCCCsv::Transactions->new(
csv_string => $c->param('transactions_csv')->slurp,
schema => $c->app->schema
)->import_csv;
} catch {
$csv_error = $_;
};
if ( $csv_error ) {
$c->flash( error => $csv_error );
2019-07-05 16:56:21 +00:00
return $c->redirect_to( '/admin/import_from' );
} else {
$c->flash( success => "CSV imported" );
return $c->redirect_to( '/admin/import_from' );
}
2019-07-04 13:16:49 +00:00
}
1;