X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FApp%2FWeb%2FOof.pm;h=dffaaa57136a65d91d55151eb090fc75e2b2c775;hb=bf8c3839b1715d687ec4fa9607164c10b225f9e3;hp=471c200473e26c09eea31b71d718e71cacf36b01;hpb=fb23ef22a984edea290b1d2f22a5bd5fb5ce09af;p=app-web-oof.git diff --git a/lib/App/Web/Oof.pm b/lib/App/Web/Oof.pm index 471c200..dffaaa5 100644 --- a/lib/App/Web/Oof.pm +++ b/lib/App/Web/Oof.pm @@ -6,7 +6,7 @@ use warnings; use utf8; use parent qw/Plack::Component/; -our $VERSION = '0.000_002'; +our $VERSION = '0.000_005'; use DBIx::Simple; use File::Slurp; @@ -62,10 +62,13 @@ sub make_slug { $slug } +our %highlight; sub form_table_row { my ($data, $tr) = @_; + $tr->attr(class => 'highlight') if $highlight{$data->{product}}; $tr->fclass($_)->replace_content($data->{$_}) for qw/title subtitle stock/; $tr->fclass('price')->replace_content(stringify_money $data->{price}); + $tr->fclass('freepost')->detach unless $data->{freepost}; $tr->fclass('title')->attr('data-product', $data->{product}); $tr->fclass('title')->attr('href', '/details/'.$data->{product}.'/'.make_slug $data->{title}); # $tr->fclass('title')->attr('data-summary', $data->{summary}); @@ -76,7 +79,9 @@ sub form_table_row { sub form_app { my ($env) = @_; $db{$$} //= DBIx::Simple->connect($ENV{OOF_DSN} // 'dbi:Pg:'); + my $req = Plack::Request->new($env); + local %highlight = map { $_ => 1 } $req->param('highlight'); my $data = $db{$$}->select(products => '*', {}, 'product')->hashes; my $tree = $form->clone; $tree->find('tbody')->find('tr')->iter3($data, \&form_table_row); @@ -87,6 +92,7 @@ sub form_app { sub continue_table_row { my ($data, $tr) = @_; $tr->fclass($_)->replace_content($data->{$_}) for qw/title subtitle quantity/; + $tr->fclass('freepost')->detach unless $data->{freepost}; $tr->fclass('price')->replace_content(stringify_money $data->{subtotal}); $tr->fclass('title')->attr('data-product', $data->{product}); } @@ -98,7 +104,7 @@ sub continue_app { my $req = Plack::Request->new($env); my $params = $req->body_parameters; - my ($quant, $total, @data, @notes); + my ($quant, $quant_freepost, $total, @data, @notes) = (0) x 3; for (sort keys %$params) { next unless /^quant/; next unless $params->{$_}; @@ -114,6 +120,7 @@ sub continue_app { } $data->{subtotal} = $data->{price} * $data->{quantity}; $quant += $data->{quantity}; + $quant_freepost += $data->{quantity} if $data->{freepost}; $total += $data->{subtotal}; push @data, $data } @@ -139,7 +146,8 @@ sub continue_app { } $tree->look_down(name => 'discount')->detach unless $dvalue; $tree->fid('discount_tr')->detach unless $dvalue; - my $postage = 220 + 50 * $quant; + my $postage = 220 + 50 * ($quant - $quant_freepost); + $postage = 0 if $quant == $quant_freepost; $tree->fid('postage')->replace_content(stringify_money $postage); $total += $postage; $tree->fid('total')->replace_content(stringify_money $total); @@ -160,7 +168,8 @@ sub order_app { my $req = Plack::Request->new($env); my ($id) = $env->{PATH_INFO} =~ m,^/([0-9A-F]+),; if ($id) { - my $total = $db{$$}->select(orders => 'total', {id => $id})->list; + my $total = $db{$$}->select(orders => 'total', {id => $id})->list or + return [500, ['Content-type', 'text/plain'], ['Order not found']]; $tree->fid('orderid')->replace_content($id); $tree->look_down(name => 'order')->attr(value => $id); $tree->fid('total')->replace_content(stringify_money $total); @@ -189,6 +198,25 @@ sub order_app { } } +sub cancel { + my ($order) = @_; + $db{$$} //= DBIx::Simple->connect($ENV{OOF_DSN} // 'dbi:Pg:'); + $order = $db{$$}->select(orders => '*', {id => $order})->hash; + my $products = decode_json $order->{products}; + $db{$$}->begin_work; + try { + for my $prod (@$products) { + my $stock = $db{$$}->select(products => 'stock', {product => $prod->{product}})->list; + $db{$$}->update(products => {stock => $stock + $prod->{quantity}}, {product => $prod->{product}}); + } + $db{$$}->delete(orders => {id => $order->{id}}); + $db{$$}->commit; + } catch { + $db{$$}->rollback; + die $_ + } +} + sub details_list_element { my ($data, $li) = @_; $li->find('a')->attr(href => "/$data"); @@ -202,13 +230,18 @@ sub details_app { $db{$$} //= DBIx::Simple->connect($ENV{OOF_DSN} // 'dbi:Pg:'); my $tree = $details->clone; my ($id) = $env->{PATH_INFO} =~ m,^/(\d+),; - my $title = $db{$$}->select(products => 'title', {product => $id})->list; + my ($title, $summary) = $db{$$}->select(products => [qw/title summary/], {product => $id})->list; my @pics = ; my $slug = make_slug $title; - $tree->find('title')->replace_content("Pictures of $title"); + $tree->find('title')->replace_content("Pictures of $title | ledparts4you"); $tree->find('h2')->replace_content($title); + $tree->fid('summary')->replace_content($summary); $tree->look_down(rel => 'canonical')->attr(href => "/details/$id/$slug"); - $tree->fid('pictures')->iter3(\@pics, \&details_list_element); + $tree->fid('pictures')->find('li')->iter3(\@pics, \&details_list_element); + + for my $ahref ($tree->find('a')) { + $ahref->attr(href => "/form?highlight=$id") if $ahref->attr('href') eq '/'; + } [200, ['Content-type' => 'text/html; charset=utf-8'], [$tree->as_HTML]] } @@ -231,7 +264,7 @@ sub app { my $app = shift; sub { my $res = $app->(@_); - push @{$res->[2]}, $footer if $res->[0] == 200; + $res->[2][0] =~ s,,$footer, if $res->[0] == 200; $res; } };