| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/www/cj79373/libraries/kunena/upload/ |
Upload File : |
<?php
/**
* Kunena Component
* @package Kunena.Framework
* @subpackage Upload
*
* @copyright (C) 2008 - 2014 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die();
/**
* Kunena Upload Backend Helper Class
* @since Kunena
*/
class KunenaUploadHelper
{
/**
* @var array
* @since Kunena
*/
protected static $_instances = array();
/**
* @since Kunena
*/
private function __construct()
{
}
/**
* @param mixed $file file
* @param string $uploadfolder upload
* @param string $format format
*
* @return mixed
* @since Kunena
*/
public static function upload($file, $uploadfolder, $format)
{
jimport('joomla.filesystem.folder');
require_once JPATH_ADMINISTRATOR . '/components/com_media/helpers/media.php';
$err = null;
// Set FTP credentials, if given
jimport('joomla.client.helper');
\Joomla\CMS\Client\ClientHelper::setCredentialsFromRequest('ftp');
// Make the filename safe
jimport('joomla.filesystem.file');
$file['name'] = JFile::makeSafe($file['name']);
if (empty($file['tmp_name']) || !is_uploaded_file($file['tmp_name']) || !empty($file['error']))
{
return false;
}
if (!JFolder::exists($uploadfolder))
{
return false;
}
if (isset($file['name']))
{
$filepath = JPath::clean($uploadfolder . '/' . strtolower($file['name']));
if (JFile::exists($filepath))
{
if ($format == 'json')
{
header('HTTP/1.0 409 Conflict');
jexit('Error. File already exists');
}
else
{
$ext = JFile::getExt($file['name']);
$name = JFile::stripExt($file['name']);
$newFileName = '';
for ($i = 2; file_exists("{$uploadfolder}/{$newFileName}"); $i++)
{
$newFileName = $name . "-$i." . $ext;
}
$filepath = $uploadfolder . '/' . $newFileName;
}
}
if (!JFile::upload($file['tmp_name'], $filepath))
{
if ($format == 'json')
{
header('HTTP/1.0 400 Bad Request');
jexit('Error. Unable to upload file');
}
else
{
return false;
}
}
else
{
if ($format == 'json')
{
jexit('Upload complete');
}
else
{
return true;
}
}
}
else
{
return false;
}
}
}