| 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/amisdesseniors-fr/lyon/administrator/components/com_comment/models/ |
Upload File : |
<?php
/**
* @package CComment
* @author DanielDimitrov <daniel@compojoom.com>
* @date 07.10.14
*
* @copyright Copyright (C) 2008 - 2013 compojoom.com . All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die;
/**
* The updates provisioning Model
*
* @since 5.1
*/
class CCommentModelUpdates extends CompojoomModelUpdate
{
private $isPro = CCOMMENT_PRO;
/**
* Public constructor. Initialises the protected members as well.
*
* @param array $config - the config object
*/
public function __construct($config = array())
{
// If a valid Download ID is found, add it to extra_query (Needed for Joomla! 3.2+)
$extraQuery = null;
$dlid = $this->getDownloadId('com_comment');
if (!empty($dlid))
{
$extraQuery = 'dlid=' . $dlid;
}
$updateURL = 'https://compojoom.com/index.php?option=com_ars&view=update&task=stream&format=xml&id=16&dummy=extension.xml';
// If we are dealing with a PRO user, then we need a different URL
if ($this->isPro)
{
$updateURL = 'https://compojoom.com/index.php?option=com_ars&view=update&task=stream&format=xml&id=5&dummy=extension.xml';
}
$config = array(
'update_site' => $updateURL,
'update_extraquery' => $extraQuery,
'update_sitename' => 'CComment ' . (CCOMMENT_PRO == 1 ? 'Professional' : 'Core')
);
parent::__construct($config);
}
/**
* Checks the database for missing / outdated tables and installs or
* updates the database using the SQL xml file if necessary.
*
* @return void
*/
public function checkAndFixDatabase()
{
// Makes sure that the compojoom library tables are created
$libraryInstaller = new CompojoomDatabaseInstaller(
array(
'dbinstaller_directory' => JPATH_LIBRARIES . '/compojoom/sql/xml'
)
);
$libraryInstaller->updateSchema();
$dbInstaller = new CompojoomDatabaseInstaller(
array(
'dbinstaller_directory' => JPATH_ADMINISTRATOR . '/components/' . $this->component . '/sql/xml'
)
);
$dbInstaller->updateSchema();
}
/**
* Does the user need to enter a Download ID in the component's Options page?
*
* @return bool
*/
public function needsDownloadID()
{
// Do I need a Download ID?
$ret = true;
$isPro = $this->isPro;
if (!$isPro)
{
$ret = false;
}
else
{
$params = CompojoomUtilsComponent::getInstance($this->component);
$dlid = $params->get('downloadid', '');
if (preg_match('/^([0-9]{1,}:)?[0-9a-f]{32}$/i', $dlid))
{
$ret = false;
}
}
return $ret;
}
/**
* Let's find out if we need to warn the user that he cannot upgrade from core to PRO
* just by entering the download id
*
* @return bool
*/
public function mustWarnAboutDownloadIDInCore()
{
$ret = false;
$isPro = $this->isPro;
if ($isPro)
{
return $ret;
}
$params = CompojoomUtilsComponent::getInstance($this->component);
$dlid = $params->get('downloadid', '');
if (preg_match('/^([0-9]{1,}:)?[0-9a-f]{32}$/i', $dlid))
{
$ret = true;
}
return $ret;
}
}