/* * Copyright (c) 2017 Peerplays, Inc., and contributors. * * The MIT License * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include namespace graphene { namespace chain { void_result ticket_purchase_evaluator::do_evaluate( const ticket_purchase_operation& op ) { try { lottery = &op.lottery(db()); FC_ASSERT( lottery->is_lottery() ); asset_dynamic_data = &lottery->dynamic_asset_data_id(db()); FC_ASSERT( asset_dynamic_data->current_supply < lottery->options.max_supply ); FC_ASSERT( (asset_dynamic_data->current_supply.value + op.tickets_to_buy) <= lottery->options.max_supply ); auto lottery_options = *lottery->lottery_options; FC_ASSERT( lottery_options.is_active ); FC_ASSERT( lottery_options.ticket_price.asset_id == op.amount.asset_id ); FC_ASSERT( (double)op.amount.amount.value / lottery_options.ticket_price.amount.value == (double)op.tickets_to_buy ); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result ticket_purchase_evaluator::do_apply( const ticket_purchase_operation& op ) { try { db().adjust_balance( op.buyer, -op.amount ); db().adjust_balance( op.lottery, op.amount ); db().adjust_balance( op.buyer, asset( op.tickets_to_buy, lottery->id ) ); db().modify( *asset_dynamic_data, [&]( asset_dynamic_data_object& data ){ data.current_supply += op.tickets_to_buy; }); db().check_lottery_end_by_participants( op.lottery ); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result lottery_reward_evaluator::do_evaluate( const lottery_reward_operation& op ) { try { lottery = &op.lottery(db()); FC_ASSERT( lottery->is_lottery() ); auto lottery_options = *lottery->lottery_options; FC_ASSERT( lottery_options.is_active ); FC_ASSERT( db().get_balance(op.lottery).amount > 0 ); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result lottery_reward_evaluator::do_apply( const lottery_reward_operation& op ) { try { db().adjust_balance( op.lottery, -op.amount); db().adjust_balance( op.winner, op.amount ); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result lottery_end_evaluator::do_evaluate( const lottery_end_operation& op ) { try { lottery = &op.lottery(db()); FC_ASSERT( lottery->is_lottery() ); asset_dynamic_data = &lottery->dynamic_asset_data_id(db()); auto lottery_options = *lottery->lottery_options; FC_ASSERT( lottery_options.is_active ); FC_ASSERT( db().get_balance(lottery->get_id()).amount == 0 ); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result lottery_end_evaluator::do_apply( const lottery_end_operation& op ) { try { db().modify( *asset_dynamic_data, [&]( asset_dynamic_data_object& data ) { data.sweeps_tickets_sold = data.current_supply; data.current_supply = 0; }); for( auto account_info : op.participants ) { db().adjust_balance( account_info.first, -db().get_balance( account_info.first, op.lottery ) ); } db().modify( *lottery, [](asset_object& ao) { ao.lottery_options->is_active = false; }); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result sweeps_vesting_claim_evaluator::do_evaluate( const sweeps_vesting_claim_operation& op ) { try { const auto& sweeps_vesting_index = db().get_index_type().indices().get(); auto vesting = sweeps_vesting_index.find(op.account); FC_ASSERT( vesting != sweeps_vesting_index.end() ); FC_ASSERT( op.amount_to_claim <= vesting->available_for_claim() ); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } void_result sweeps_vesting_claim_evaluator::do_apply( const sweeps_vesting_claim_operation& op ) { try { db().adjust_sweeps_vesting_balance( op.account, -op.amount_to_claim.amount.value * SWEEPS_VESTING_BALANCE_MULTIPLIER ); db().adjust_balance( op.account, op.amount_to_claim ); return void_result(); } FC_CAPTURE_AND_RETHROW( (op) ) } } } // graphene::chain