Tools.php 1.4 KB
<?php


namespace App\Classes;


use App\Models\Worker;

class Tools
{
    static function generator_id($length = 6)
    {
        $word = '';
        $arr = array(
            'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
            'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
            'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
            'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
            '1', '2', '3', '4', '5', '6', '7', '8', '9', '0'
        );

        for ($i = 0; $i < $length; $i++) {
            $word .= $arr[random_int(0, count($arr) - 1)];
        }
        return $word;
    }

    public static function getWorkerProfilePercent(Worker $Worker): int
    {
        $persent = 10;

        if ((!empty($Worker->telephone)) &&
            (!empty($Worker->email)) && (!empty($Worker->experience)) &&
            (!empty($Worker->city)) && (!empty($Worker->old_year))) {
            $persent = $persent + 40;
        }

        if ($Worker->sertificate->count() > 0) {
            $persent = $persent + 15;
        }

        if ($Worker->infobloks->count() > 0) {
            $persent = $persent + 20;
        }

        if ($Worker->prev_company->count() > 0) {
            $persent = $persent + 10;
        }

        if (!empty($Worker->photo)) {
            $persent = $persent + 5;
        }

        return $persent;
    }
}