%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 3.135.194.130
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux 3051455-guretool.twc1.net 5.15.0-107-generic #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024 x86_64
User : www-root ( 1010)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/dev2fun.imagecompress/lib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/dev2fun.imagecompress/lib/Webp.php
<?php
/**
 * @author darkfriend <hi@darkfriend.ru>
 * @copyright dev2fun
 * @version 0.7.0
 */

namespace Dev2fun\ImageCompress;

use Bitrix\Main\Localization\Loc;
use Bitrix\Main\Config\Option;

IncludeModuleLangFile(__FILE__);

class Webp
{
    private static $instance;
    public $lastError;

    private $MODULE_ID = 'dev2fun.imagecompress';
    private $path = '/usr/bin';
    private $enable = false;
    private $quality = 80;
    private $compression = 4;
    private $multithreading = true;

    private function __construct()
    {
        $this->path = Option::get($this->MODULE_ID, 'path_to_cwebp', '/usr/bin');
        $this->enable = Option::get($this->MODULE_ID, 'convert_enable', 'N') === 'Y';

        $this->quality = Option::get($this->MODULE_ID, 'convert_quality', 80);
        if(!$this->quality) {
            $this->quality = 80;
        }

        $this->compression = Option::get($this->MODULE_ID, 'cwebp_compress', 4);
        if(!$this->compression && $this->compression!==0) {
            $this->compression = 4;
        }

        $this->multithreading = Option::get($this->MODULE_ID, 'cwebp_multithreading', 'Y') === 'Y';
    }

    /**
     * @static
     * @return Webp
     */
    public static function getInstance()
    {
        if (!isset(self::$instance)) {
            $c = __CLASS__;
            self::$instance = new $c;
        }
        return self::$instance;
    }

    /**
     * Check
     * @return bool
     */
    public function isOptim()
    {
        exec($this->path . '/cwebp -version', $s);
        return ($s ? true : false);
    }

    /**
     * Process convert
     * @param array $arFile
     * @param array $params - дополнительные параметры
     * @return bool
     * @throws \Exception
     */
    public function convert($arFile, $params = [])
    {
        if(!$this->enable) return false;

        //        $strFilePath = strtr(
        //            $strFilePath,
        //            [
        //                ' ' => '\ ',
        //                '(' => '\(',
        //                ')' => '\)',
        //                ']' => '\]',
        //                '[' => '\[',
        //            ]
        //        );

        $event = new \Bitrix\Main\Event(
            $this->MODULE_ID,
            "OnBeforeConvertImageWebp",
            [&$arFile, &$params]
        );
        $event->send();

        $uploadDir = Option::get('main', 'upload_dir', 'upload');
        if(!empty($arFile["ABS_PATH"])) {
            $src = $arFile["ABS_PATH"];
        } else {
            $src = "{$_SERVER["DOCUMENT_ROOT"]}/$uploadDir/{$arFile["SUBDIR"]}/{$arFile["FILE_NAME"]}";
        }

        $fileInfo = \pathinfo($src);
        $arFile["SUBDIR"] = \str_replace("/{$uploadDir}/resize_cache",'', $arFile["SUBDIR"]);
        $arFile["SUBDIR"] = \ltrim($arFile["SUBDIR"], '/');
        $srcWebp = "/{$uploadDir}/resize_cache/webp/{$arFile["SUBDIR"]}/{$fileInfo['filename']}.webp";
        $absSrcWebp = $_SERVER["DOCUMENT_ROOT"].$srcWebp;

        if(@\is_file($absSrcWebp)) {
            if(\filesize($absSrcWebp)===0) {
                return false;
            }
            return $srcWebp;
        }
        $dirname = \dirname($absSrcWebp);
        if(!\is_dir($dirname)) {
            if(!@\mkdir($dirname,0777, true)) {
                return false;
            }
        }

        if(!isset($params['compression'])) {
            $params['compression'] = $this->compression;
        }
        if(!isset($params['multithreading'])) {
            $params['multithreading'] = $this->multithreading;
        }
        if(!isset($params['quality'])) {
            $params['quality'] = $this->quality;
        }
        if(!isset($params['changeChmod'])) {
            $params['changeChmod'] = 0777;
        }

        $strCommand = '';
        if(!empty($params['compression']) || $params['compression']===0) {
            $strCommand .= "-m {$params['compression']} ";
        }
        if(!empty($params['multithreading'])) {
            $strCommand .= "-mt ";
        }
        if(!empty($params['quality']) && (int)$params['quality'] !== 100) {
            $strCommand .= "-q {$params['quality']} ";
        } else {
            $strCommand .= '-lossless ';
        }

        $event = new \Bitrix\Main\Event(
            $this->MODULE_ID,
            "OnBeforeCWebpConvert",
            [&$src, &$absSrcWebp, &$strCommand]
        );
        $event->send();

        \exec("{$this->path}/cwebp $strCommand $src -o $absSrcWebp 2>&1", $res);
        if (!empty($params['changeChmod'])) {
            @\chmod($absSrcWebp, $params['changeChmod']);
        }

        $event = new \Bitrix\Main\Event(
            $this->MODULE_ID,
            "OnAfterResize",
            [&$srcWebp]
        );
        $event->send();

        return $srcWebp;
    }

    public function getOptionsSettings($advanceSettings=[])
    {
        $settings = [
            'webp_multithreading' => 'checkbox',
            'webp_compress' => 'string',
            'webp_quality' => 'string',
        ];
        $post = [
            'checkbox' => [],
            'string' => [],
        ];
        foreach ($settings as $option=>$setting) {
            if(empty($advanceSettings[$setting][$option])) {
                if($setting==='checkbox') {
                    $post[$setting][$option] = 'N';
                } else {
                    $post[$setting][$option] = '';
                }
            } else {
                $post[$setting][$option] = $advanceSettings[$setting][$option];
            }
        }
        return $post;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit