| 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/plats-individuels/lyon/administrator/components/com_djmediatools/lib/ |
Upload File : |
<?php
/**
* @version $Id: image.php 111 2017-11-08 18:19:13Z szymon $
* @package DJ-MediaTools
* @copyright Copyright (C) 2017 DJ-Extensions.com, All rights reserved.
* @license http://www.gnu.org/licenses GNU/GPL
* @author url: http://dj-extensions.com
* @author email contact@dj-extensions.com
* @developer Szymon Woronowski - szymon.woronowski@design-joomla.eu
*
* DJ-MediaTools is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DJ-MediaTools is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with DJ-MediaTools. If not, see <http://www.gnu.org/licenses/>.
*
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.filesystem.folder');
jimport('joomla.filesystem.file');
abstract class DJMTImageOptimizer {
static function resmushit() {
$app = JFactory::getApplication();
$db = JFactory::getDbo();
$files = JFolder::files(JPATH_ROOT.'/media/djmediatools/cache', '.', true, true, array('index.html', '.svn', 'CVS', '.DS_Store', '__MACOSX'));
$path = null;
$filepath = null;
foreach ($files as $key => $file) {
$filepath = $file;
$path = JPath::clean(str_replace(JPATH_ROOT, '', $file));
$db->setQuery("SELECT * FROM #__djmt_resmushit WHERE path=".$db->quote($path));
$obj = $db->loadObject();
if(!$obj) break;
if($key == count($files) - 1) {
return 'end';
}
}
if (function_exists('curl_file_create')) { // php 5.6+
$file = curl_file_create($filepath);
} else { //
$file = '@' . realpath($filepath);
}
$post = array('files'=> $file);
// Losslessly compressing with resmush.it
$url = 'http://api.resmush.it/ws.php';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$data = curl_exec($ch);
if(curl_errno($ch)) {
$err = curl_error($ch);
@curl_close($ch);
return $err;
}
curl_close($ch);
$json = json_decode($data);
if(isset($json->error)) {
return "reSmush.it Webservice Error ".$json->error." - ".$json->error_long;
}
$json->percent = 0;
// download and write file only if image size is smaller
if($json->src_size > $json->dest_size) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $json->dest);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$image = curl_exec($ch);
if(curl_errno($ch)) {
$err = curl_error($ch);
@curl_close($ch);
return $err;
}
curl_close($ch);
if(!JFile::write($filepath, $image)) {
return "Can't download or write the optimized file";
}
$json->percent = 100 * ($json->src_size - $json->dest_size) / $json->src_size;
}
$db->setQuery("INSERT INTO #__djmt_resmushit (path, original_size, size, percent) VALUES (".$db->quote($path).", ".$json->src_size.", ".$json->dest_size.", ".$json->percent.")");
$db->execute();
$db->setQuery("select count(*) from #__djmt_resmushit");
$resmushed = $db->loadResult();
$return = array();
$return['path'] = $path;
$return['percent'] = $json->percent;
$return['total'] = count($files);
$return['optimized'] = $resmushed;
return $return;
}
}