added snippet endpoint and test
This commit is contained in:
parent
b3f1a018b5
commit
3100fec233
4 changed files with 115 additions and 8 deletions
|
@ -173,7 +173,8 @@ sub startup {
|
||||||
|
|
||||||
my $api_v1_cust = $api_v1->under('/customer')->to('api-v1-customer#auth');
|
my $api_v1_cust = $api_v1->under('/customer')->to('api-v1-customer#auth');
|
||||||
|
|
||||||
$api_v1_org->post('/graphs')->to('api-v1-customer-graphs#index');
|
$api_v1_cust->post('/graphs')->to('api-v1-customer-graphs#index');
|
||||||
|
$api_v1_cust->post('/snippets')->to('api-v1-customer-snippets#index');
|
||||||
|
|
||||||
my $admin_routes = $r->under('/admin')->to('admin#under');
|
my $admin_routes = $r->under('/admin')->to('admin#under');
|
||||||
|
|
||||||
|
|
|
@ -16,13 +16,14 @@ sub index {
|
||||||
my $validation = $c->validation;
|
my $validation = $c->validation;
|
||||||
$validation->input( $c->stash->{api_json} );
|
$validation->input( $c->stash->{api_json} );
|
||||||
$validation->required('graph')->in( qw/
|
$validation->required('graph')->in( qw/
|
||||||
customers_last_7_days
|
total_today
|
||||||
customers_last_30_days
|
avg_spend_today
|
||||||
sales_last_7_days
|
total_last_week
|
||||||
sales_last_30_days
|
avg_spend_last_week
|
||||||
purchases_last_7_days
|
total_last_month
|
||||||
purchases_last_30_days
|
avg_spend_last_month
|
||||||
customers_range
|
total_user
|
||||||
|
avg_spend_user
|
||||||
/ );
|
/ );
|
||||||
|
|
||||||
return $c->api_validation_error if $validation->has_error;
|
return $c->api_validation_error if $validation->has_error;
|
||||||
|
|
31
lib/Pear/LocalLoop/Controller/Api/V1/Customer/Snippets.pm
Normal file
31
lib/Pear/LocalLoop/Controller/Api/V1/Customer/Snippets.pm
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
package Pear::LocalLoop::Controller::Api::V1::Customer::Snippets;
|
||||||
|
use Mojo::Base 'Mojolicious::Controller';
|
||||||
|
|
||||||
|
sub index {
|
||||||
|
my $c = shift;
|
||||||
|
|
||||||
|
my $entity = $c->stash->{api_user}->entity;
|
||||||
|
my $data = {
|
||||||
|
user_sum => 0,
|
||||||
|
user_position => 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
my $user_rs = $entity->purchases;
|
||||||
|
$data->{ user_sum } = $user_rs->get_column('value')->sum || 0;
|
||||||
|
$data->{ user_sum } /= 100000;
|
||||||
|
|
||||||
|
my $leaderboard_rs = $c->schema->resultset('Leaderboard');
|
||||||
|
my $monthly_board = $leaderboard_rs->get_latest( 'monthly_total' );
|
||||||
|
my $monthly_values = $monthly_board->values;
|
||||||
|
$data->{ user_position } = $monthly_values ? $monthly_values->find({ entity_id => $entity->id })->position : 0;
|
||||||
|
|
||||||
|
return $c->render(
|
||||||
|
json => {
|
||||||
|
success => Mojo::JSON->true,
|
||||||
|
snippets => $data,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
74
t/api/v1/customer/snippets.t
Normal file
74
t/api/v1/customer/snippets.t
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
use Mojo::Base -strict;
|
||||||
|
|
||||||
|
use FindBin qw/ $Bin /;
|
||||||
|
|
||||||
|
use Test::More;
|
||||||
|
use Mojo::JSON;
|
||||||
|
use Test::Pear::LocalLoop;
|
||||||
|
use DateTime;
|
||||||
|
|
||||||
|
my $framework = Test::Pear::LocalLoop->new(
|
||||||
|
etc_dir => "$Bin/../../../etc",
|
||||||
|
);
|
||||||
|
$framework->install_fixtures('users');
|
||||||
|
|
||||||
|
my $t = $framework->framework;
|
||||||
|
my $schema = $t->app->schema;
|
||||||
|
|
||||||
|
$t->app->schema->resultset('Leaderboard')->create_new( 'monthly_total', DateTime->now->truncate(to => 'month' )->subtract( months => 1) );
|
||||||
|
|
||||||
|
my $start = DateTime->today->subtract( hours => 12 );
|
||||||
|
|
||||||
|
# create 30 days worth of data
|
||||||
|
for my $count ( 0 .. 60 ) {
|
||||||
|
my $trans_day = $start->clone->subtract( days => $count );
|
||||||
|
|
||||||
|
create_random_transaction( 'test1@example.com', $trans_day );
|
||||||
|
if ( $count % 2 ) {
|
||||||
|
create_random_transaction( 'test2@example.com', $trans_day );
|
||||||
|
}
|
||||||
|
if ( $count % 3 ) {
|
||||||
|
create_random_transaction( 'test3@example.com', $trans_day );
|
||||||
|
}
|
||||||
|
if ( $count % 4 ) {
|
||||||
|
create_random_transaction( 'test4@example.com', $trans_day );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
my $session_key = $framework->login({
|
||||||
|
email => 'test1@example.com',
|
||||||
|
password => 'abc123',
|
||||||
|
});
|
||||||
|
|
||||||
|
$t->post_ok('/api/v1/customer/snippets' => json => {
|
||||||
|
session_key => $session_key,
|
||||||
|
})
|
||||||
|
->status_is(200)->or($framework->dump_error)
|
||||||
|
->json_is('/snippets', {
|
||||||
|
user_sum => 610,
|
||||||
|
user_position => 1,
|
||||||
|
});
|
||||||
|
|
||||||
|
$framework->logout( $session_key );
|
||||||
|
|
||||||
|
$session_key = $framework->login({
|
||||||
|
email => 'test1@example.com',
|
||||||
|
password => 'abc123',
|
||||||
|
});
|
||||||
|
|
||||||
|
sub create_random_transaction {
|
||||||
|
my $buyer = shift;
|
||||||
|
my $time = shift;
|
||||||
|
|
||||||
|
my $buyer_result = $schema->resultset('User')->find({ email => $buyer })->entity;
|
||||||
|
my $seller_result = $schema->resultset('Organisation')->find({ name => 'Test Org' })->entity;
|
||||||
|
$schema->resultset('Transaction')->create({
|
||||||
|
buyer => $buyer_result,
|
||||||
|
seller => $seller_result,
|
||||||
|
value => 10 * 100000,
|
||||||
|
proof_image => 'a',
|
||||||
|
purchase_time => $time,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
done_testing;
|
Reference in a new issue