решено Пути до файлов в новой версии 2.2.0

Kryl

Пользователь
Exile, не совсем понял ...
ну в сам то файл upload изменения внесены , и если явно путь указать то файлы загружаются ..
вот файл upload с изменениями (мода галереи)
PHP:
<?php
/**
 * MIT License
 *
 * Copyright (c) 2005-2017 TorrentPier
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

namespace TorrentPier\Legacy\Common;

/**
 * Class Upload
 * @package TorrentPier\Legacy\Common
 */
class Upload
{
    public $cfg = [
        'max_size' => 0,
        'max_width' => 0,
        'max_height' => 0,
        'allowed_ext' => [],
        'upload_path' => '',
    ];
    public $file = [
        'name' => '',
        'type' => '',
        'size' => 0,
        'tmp_name' => '',
        'error' => UPLOAD_ERR_NO_FILE,
    ];
    public $orig_name = '';
    public $file_path = '';      // Stored file path
    public $file_ext = '';
    public $file_ext_id = '';
    public $file_size = '';
    public $ext_ids = []; // array_flip($bb_cfg['file_id_ext'])
    public $errors = [];
    public $img_types = [
        1 => 'gif',
        2 => 'jpg',
        3 => 'png',
        6 => 'bmp',
        7 => 'tiff',
        8 => 'tiff',
    ];

    /**
     * @param array $cfg
     * @param array $post_params
     * @param bool $uploaded_only
     * @return bool
     */
    public function init(array $cfg = [], array $post_params = [], $uploaded_only = true)
    {
        global $bb_cfg, $lang;

        $this->cfg = array_merge($this->cfg, $cfg);
        $this->file = $post_params;

        // upload errors from $_FILES
        if ($this->file['error']) {
            $msg = $lang['UPLOAD_ERROR_COMMON'];
            $msg .= ($err_desc =& $lang['UPLOAD_ERRORS'][$this->file['error']]) ? " ($err_desc)" : '';
            $this->errors[] = $msg;
            return false;
        }
        // file_exists
        if (!file_exists($this->file['tmp_name'])) {
            $this->errors[] = "Uploaded file not exists: {$this->file['tmp_name']}";
            return false;
        }
        // size
        if (!$this->file_size = filesize($this->file['tmp_name'])) {
            $this->errors[] = "Uploaded file is empty: {$this->file['tmp_name']}";
            return false;
        }
        if ($this->cfg['max_size'] && $this->file_size > $this->cfg['max_size']) {
            $this->errors[] = sprintf($lang['UPLOAD_ERROR_SIZE'], humn_size($this->cfg['max_size']));
            return false;
        }
        // is_uploaded_file
        if ($uploaded_only && !is_uploaded_file($this->file['tmp_name'])) {
            $this->errors[] = "Not uploaded file: {$this->file['tmp_name']}";
            return false;
        }
        // get ext
        $this->ext_ids = array_flip($bb_cfg['file_id_ext']);
        $file_name_ary = explode('.', $this->file['name']);
        $this->file_ext = strtolower(end($file_name_ary));

        // img
        if ($this->cfg['max_width'] || $this->cfg['max_height']) {
            if ($img_info = getimagesize($this->file['tmp_name'])) {
                list($width, $height, $type, $attr) = $img_info;

                // redefine ext
                if (!$width || !$height || !$type || !isset($this->img_types[$type])) {
                    $this->errors[] = $lang['UPLOAD_ERROR_FORMAT'];
                    return false;
                }
                $this->file_ext = $this->img_types[$type];

                // width & height
                if (($this->cfg['max_width'] && $width > $this->cfg['max_width']) || ($this->cfg['max_height'] && $height > $this->cfg['max_height'])) {
                    $this->errors[] = sprintf($lang['UPLOAD_ERROR_DIMENSIONS'], $this->cfg['max_width'], $this->cfg['max_height']);
                    return false;
                }
            } else {
                $this->errors[] = $lang['UPLOAD_ERROR_NOT_IMAGE'];
                return false;
            }
        }
        // check ext
        if ($uploaded_only && (!isset($this->ext_ids[$this->file_ext]) || !in_array($this->file_ext, $this->cfg['allowed_ext'], true))) {
            $this->errors[] = sprintf($lang['UPLOAD_ERROR_NOT_ALLOWED'], htmlCHR($this->file_ext));
            return false;
        }
        $this->file_ext_id = $this->ext_ids[$this->file_ext];

        return true;
    }

    /**
     * @param string $mode
     * @param array $params
     * @return bool
     */
    public function store($mode = '', array $params = [])
    {
        if ($mode == 'avatar') {
            delete_avatar($params['user_id'], $params['avatar_ext_id']);
            $file_path = get_avatar_path($params['user_id'], $this->file_ext_id);
            return $this->_move($file_path);
        }

        if ($mode == 'attach') {
            $file_path = get_attach_path($params['topic_id']);
            return $this->_move($file_path);
        } else {
            trigger_error("Invalid upload mode: $mode", E_USER_ERROR);
        }
        else if ($mode == 'imgfile')
        {
            $file_path = get_imgfile_path($params['user_id'], $this->file_ext_id, $params['user_id'].$this->file['name'].$this->file['size']);
            return $this->_move($file_path);
        }
        if ($mode == 'imgfile')
        {
            $file_path = get_imgfile_path($params['user_id'], $this->file_ext_id, $params['user_id'].$this->file['name'].$this->file['size']);
            return $this->_move($file_path);
        }
    }

    /**
     * @param $file_path
     * @return bool
     */
    public function _move($file_path)
    {
        $dir = dirname($file_path);
        if (!file_exists($dir)) {
            if (!bb_mkdir($dir)) {
                $this->errors[] = "Cannot create dir: $dir";
                return false;
            }
        }
        if (!@rename($this->file['tmp_name'], $file_path)) {
            if (!@copy($this->file['tmp_name'], $file_path)) {
                $this->errors[] = 'Cannot copy tmp file';
                return false;
            }
            @unlink($this->file['tmp_name']);
        }
        @chmod($file_path, 0664);

        return file_exists($file_path);
    }
   
        function thumb ($path)
    {
        global $bb_cfg, $userdata;

        if (($bb_cfg['file_id_ext'][$this->file_ext_id] == 'jpg') OR ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'jpeg'))
        {
            $img = imagecreatefromjpeg($path);
        }
        elseif ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'png')
        {
            $img = imagecreatefrompng($path);
        }
        elseif ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'gif')
        {
            $img = imagecreatefromgif($path);
        }

        $resize        = imagesy($img)/imagesx($img);
        $new_width    = $this->cfg['thumb_height']/$resize;
        $out_img    = get_imgfile_path($userdata['user_id'], $this->file_ext_id, $userdata['user_id'].$this->file['name'].$this->file['size'], true);
        $img_create    = imagecreatetruecolor($new_width, $this->cfg['thumb_height']);

        imagecopyresampled($img_create, $img, 0, 0, 0, 0, $new_width, $this->cfg['thumb_height'], imagesx($img), imagesy($img));

        if (($bb_cfg['file_id_ext'][$this->file_ext_id] == 'jpg') OR ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'jpeg'))
        {
            imagejpeg($img_create, $out_img, 75);
        }
        elseif ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'png')
        {
            imagepng($img_create, $out_img);
        }
        elseif ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'gif')
        {
            imagegif($img_create, $out_img);
        }

        imagedestroy($img);
        imagedestroy($img_create);
    }
   
        function thumb ($path)
    {
        global $bb_cfg, $userdata;

        if (($bb_cfg['file_id_ext'][$this->file_ext_id] == 'jpg') OR ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'jpeg'))
        {
            $img = imagecreatefromjpeg($path);
        }
        elseif ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'png')
        {
            $img = imagecreatefrompng($path);
        }
        elseif ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'gif')
        {
            $img = imagecreatefromgif($path);
        }

        $resize        = imagesy($img)/imagesx($img);
        $new_width    = $this->cfg['thumb_height']/$resize;
        $out_img    = get_imgfile_path($userdata['user_id'], $this->file_ext_id, $userdata['user_id'].$this->file['name'].$this->file['size'], true);
        $img_create    = imagecreatetruecolor($new_width, $this->cfg['thumb_height']);

        imagecopyresampled($img_create, $img, 0, 0, 0, 0, $new_width, $this->cfg['thumb_height'], imagesx($img), imagesy($img));

        if (($bb_cfg['file_id_ext'][$this->file_ext_id] == 'jpg') OR ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'jpeg'))
        {
            imagejpeg($img_create, $out_img, 75);
        }
        elseif ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'png')
        {
            imagepng($img_create, $out_img);
        }
        elseif ($bb_cfg['file_id_ext'][$this->file_ext_id] == 'gif')
        {
            imagegif($img_create, $out_img);
        }

        imagedestroy($img);
        imagedestroy($img_create);
    }
}
 
Последнее редактирование:

Kryl

Пользователь
Exile,
Да я сам затупил ))) не правильно код добавил ..
нужно вот так
PHP:
    public function store($mode = '', array $params = [])
    {
        if ($mode == 'avatar') {
            delete_avatar($params['user_id'], $params['avatar_ext_id']);
            $file_path = get_avatar_path($params['user_id'], $this->file_ext_id);
            return $this->_move($file_path);
        }
       
        if ($mode == 'imgfile')
        {
            $file_path = get_imgfile_path($params['user_id'], $this->file_ext_id, $params['user_id'].$this->file['name'].$this->file['size']);
            return $this->_move($file_path);
        }

        if ($mode == 'attach') {
            $file_path = get_attach_path($params['topic_id']);
            return $this->_move($file_path);
        } else {
            trigger_error("Invalid upload mode: $mode", E_USER_ERROR);
        }
       
    }
А добавлял по инсталу в конец
PHP:
    public function store($mode = '', array $params = [])
    {
        if ($mode == 'avatar') {
            delete_avatar($params['user_id'], $params['avatar_ext_id']);
            $file_path = get_avatar_path($params['user_id'], $this->file_ext_id);
            return $this->_move($file_path);
        }

        if ($mode == 'attach') {
            $file_path = get_attach_path($params['topic_id']);
            return $this->_move($file_path);
        } else {
            trigger_error("Invalid upload mode: $mode", E_USER_ERROR);
        }
        if ($mode == 'imgfile')
        {
            $file_path = get_imgfile_path($params['user_id'], $this->file_ext_id, $params['user_id'].$this->file['name'].$this->file['size']);
            return $this->_move($file_path);
        }

       
    }
 

Dr_Brown

Пользователь
Ребят, может не в тему, начал обновляться, пока до 2.1.2 (где папки поменяли) и с локальной галереей такая трабла, да и с другими картинками, путь до файлов картинок ставит с точкой т.е. http: //домен/./data/pictures/123.png, в конце домена вот так. не могу понять в чем дело, и по аватарам таже фигня ./ путь к картинке
 
Последнее редактирование:

Exile

Администратор
Dr_Brown, в константах путь задан вообще. Надо все переменные конфига сравнить. В 2.2.0 они уехали в defines.php, например.
 

Dr_Brown

Пользователь
Dr_Brown, в константах путь задан вообще. Надо все переменные конфига сравнить. В 2.2.0 они уехали в defines.php, например.

да путь задан

'upload_path' => BB_ROOT . 'data/pictures', // путь к директории с изображениями

причем если поставить так

'upload_path' => BB_ROOT . 'data/pictures/', // путь к директории с изображениями

то 2 слеша ставит после pictures//

и выше так

define('DATA_DIR', BB_PATH .'/data/' );
 
Последнее редактирование:
Сверху