JFIF$        dd7 

Viewing File: /home/optimaldigitaltr/public_html/src/app/Http/Controllers/Agent/WithdrawController.php

<?php

namespace App\Http\Controllers\Agent;

use App\Concerns\CustomValidation;
use App\Enums\Payment\Withdraw\MethodStatus;
use App\Enums\Payment\Withdraw\Status;
use App\Enums\Transaction\Source;
use App\Enums\Transaction\Type;
use App\Enums\Transaction\WalletType;
use App\Http\Controllers\Controller;
use App\Http\Requests\WithdrawProcessRequest;
use App\Models\AgentTransaction;
use App\Models\AgentWithdrawLog;
use App\Models\Wallet;
use App\Models\WithdrawLog;
use App\Models\WithdrawMethod;
use App\Services\Payment\TransactionService;
use App\Services\Payment\WalletService;
use App\Services\Payment\WithdrawGatewayService;
use App\Services\Payment\WithdrawService;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Str;
use Illuminate\Validation\ValidationException;
use Illuminate\View\View;

class WithdrawController extends Controller
{
    use CustomValidation;

    public function __construct(
        protected WithdrawService $withdrawService,
        protected WithdrawGatewayService $withdrawGatewayService
    ){

    }

    public function withdrawNow(): View
    {
        $setTitle = "Withdraw Now";
        $withdrawMethods = $this->withdrawGatewayService->fetchActiveWithdrawMethod();

        return view('agent.withdraw.now', compact(
            'setTitle',
            'withdrawMethods',
        ));
    }


    public function index(): View
    {
        $setTitle = "Withdraw Logs";
        $agentId = auth()->guard('agent')->user()->id;

        $withdrawLogs = AgentWithdrawLog::where('agent_id', $agentId)
            ->latest()
            ->with(['withdrawMethod'])
            ->paginate(getPaginate());

        return view('agent.withdraw.index', compact(
            'setTitle',
            'withdrawLogs',
        ));
    }

    public function process(WithdrawProcessRequest $request)
    {
        $withdrawMethod = $this->withdrawGatewayService->findById($request->integer('id'));

        if(!$withdrawMethod){
            abort(404);
        }

        $amount = $request->input('amount');
        $agent = auth()->guard('agent')->user();

        if($request->input('amount') > $agent->balance){
            return back()->with('notify', [['error', 'Your request amount is larger then your current balance.']]);
        }

        $withdrawLog = $this->save(
            $this->prepParams($withdrawMethod, $request)
        );

        return redirect()->route('agent.withdraw.preview', $withdrawLog->uid);
    }


    /**
     * @param string $uid
     * @return View
     */
    public function preview(string $uid): View
    {
        $withdrawLog = AgentWithdrawLog::where('uid', $uid)
            ->where('status', Status::INITIATED->value)
            ->orderBy('id', 'desc')
            ->first();

        if(!$withdrawLog){
            abort(404);
        }

        $setTitle = 'Withdraw preview';
        return view('agent.withdraw.preview', compact(
            'setTitle',
            'withdrawLog',
            'uid',
        ));
    }


    /**
     * @param Request $request
     * @param string $uid
     * @return RedirectResponse
     * @throws ValidationException
     */
    public function makeSuccess(Request $request, string $uid): RedirectResponse
    {
        $withdrawLog =  AgentWithdrawLog::where('uid', $uid)
            ->where('status', Status::INITIATED->value)
            ->orderBy('id', 'desc')
            ->first();

        if(!$withdrawLog){
            abort(404);
        }

        $gateway = $withdrawLog->withdrawMethod;
        if (!$gateway ||  $gateway->status == MethodStatus::INACTIVE->value) {
            abort(404);
        }

        $this->validate($request, $this->parameterValidation((array)$gateway->parameter));
        $agent = auth()->guard('agent')->user();

        if ($withdrawLog->amount > $agent->balance) {
            return back()->with('notify', [['error', 'Your request amount is larger then your current balance.']]);
        }

        $agent->balance -= $withdrawLog->amount;
        $agent->save();

        $this->execute($withdrawLog, $gateway, $request);
        return redirect(route('agent.withdraw.index'))->with('notify', [['success', 'Withdraw request sent successfully.']]);
    }


    /**
     * @param AgentWithdrawLog $withdrawLog
     * @param WithdrawMethod $withdrawMethod
     * @param Request $request
     * @return void
     */
    public function execute(AgentWithdrawLog $withdrawLog, WithdrawMethod $withdrawMethod, Request $request)
    {
        $agent = auth()->guard('agent')->user();

        $withdrawLog->status = Status::PENDING->value;
        $withdrawLog->meta = $request->only(array_keys($withdrawMethod->parameter));
        $withdrawLog->save();

        $agentTransaction = new AgentTransaction();
        $agentTransaction->agent_id = $agent->id;
        $agentTransaction->amount = $withdrawLog->amount;
        $agentTransaction->post_balance = $agent->balance;
        $agentTransaction->charge = $withdrawLog->charge;
        $agentTransaction->trx = getTrx();
        $agentTransaction->type = Type::MINUS->value;
        $agentTransaction->details = "Withdraw ".shortAmount($withdrawLog->final_amount)." ".$withdrawLog->currency." via ".$withdrawLog->withdrawMethod->name;
        $agentTransaction->save();
    }


    /**
     * @param WithdrawMethod $withdrawMethod
     * @param Request $request
     * @return array
     */
    public function prepParams(WithdrawMethod $withdrawMethod, Request $request): array
    {
        $agentId = auth()->guard('agent')->user()->id;
        $amount = $request->input('amount');
        $charge = $withdrawMethod->fixed_charge + ($amount * $withdrawMethod->percent_charge / 100);
        $afterCharge = $amount - $charge;

        return [
            'uid' => Str::uuid(),
            'withdraw_method_id' => $withdrawMethod->id,
            'agent_id' => $agentId,
            'currency' => $withdrawMethod->currency,
            'rate' => $withdrawMethod->rate,
            'amount' => $amount,
            'charge' => $charge,
            'final_amount' => $afterCharge * $withdrawMethod->rate,
            'after_charge' => $afterCharge,
            'trx' => getTrx(),
            'status' => Status::INITIATED->value,
        ];
    }


    /**
     * @param array $data
     * @return AgentWithdrawLog
     */
    public function save(array $data): AgentWithdrawLog
    {
        return AgentWithdrawLog::create($data);
    }
}
Back to Directory  nL+D550H?Mx ,D"v]qv;6*Zqn)ZP0!1 A "#a$2Qr D8 a Ri[f\mIykIw0cuFcRı?lO7к_f˓[C$殷WF<_W ԣsKcëIzyQy/_LKℂ;C",pFA:/]=H  ~,ls/9ć:[=/#f;)x{ٛEQ )~ =𘙲r*2~ a _V=' kumFD}KYYC)({ *g&f`툪ry`=^cJ.I](*`wq1dđ#̩͑0;H]u搂@:~וKL Nsh}OIR*8:2 !lDJVo(3=M(zȰ+i*NAr6KnSl)!JJӁ* %݉?|D}d5:eP0R;{$X'xF@.ÊB {,WJuQɲRI;9QE琯62fT.DUJ;*cP A\ILNj!J۱+O\͔]ޒS߼Jȧc%ANolՎprULZԛerE2=XDXgVQeӓk yP7U*omQIs,K`)6\G3t?pgjrmۛجwluGtfh9uyP0D;Uڽ"OXlif$)&|ML0Zrm1[HXPlPR0'G=i2N+0e2]]9VTPO׮7h(F*癈'=QVZDF,d߬~TX G[`le69CR(!S2!P <0x<!1AQ "Raq02Br#SCTb ?Ζ"]mH5WR7k.ۛ!}Q~+yԏz|@T20S~Kek *zFf^2X*(@8r?CIuI|֓>^ExLgNUY+{.RѪ τV׸YTD I62'8Y27'\TP.6d&˦@Vqi|8-OΕ]ʔ U=TL8=;6c| !qfF3aů&~$l}'NWUs$Uk^SV:U# 6w++s&r+nڐ{@29 gL u"TÙM=6(^"7r}=6YݾlCuhquympǦ GjhsǜNlɻ}o7#S6aw4!OSrD57%|?x>L |/nD6?/8w#[)L7+6〼T ATg!%5MmZ/c-{1_Je"|^$'O&ޱմTrb$w)R$& N1EtdU3Uȉ1pM"N*(DNyd96.(jQ)X 5cQɎMyW?Q*!R>6=7)Xj5`J]e8%t!+'!1Q5 !1 AQaqё#2"0BRb?Gt^## .llQT $v,,m㵜5ubV =sY+@d{N! dnO<.-B;_wJt6;QJd.Qc%p{ 1,sNDdFHI0ГoXшe黅XۢF:)[FGXƹ/w_cMeD,ʡcc.WDtA$j@:) -# u c1<@ۗ9F)KJ-hpP]_x[qBlbpʖw q"LFGdƶ*s+ډ_Zc"?%t[IP 6J]#=ɺVvvCGsGh1 >)6|ey?Lӣm,4GWUi`]uJVoVDG< SB6ϏQ@ TiUlyOU0kfV~~}SZ@*WUUi##; s/[=!7}"WN]'(L! ~y5g9T̅JkbM' +s:S +B)v@Mj e Cf jE 0Y\QnzG1д~Wo{T9?`Rmyhsy3!HAD]mc1~2LSu7xT;j$`}4->L#vzŏILS ֭T{rjGKC;bpU=-`BsK.SFw4Mq]ZdHS0)tLg