75 lines
1.9 KiB
PHP
75 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* @package MokoSuiteNPO
|
|
* @subpackage pkg_mokosuitenpo
|
|
* @copyright Copyright (C) 2026 Moko Consulting. All rights reserved.
|
|
* @license GNU General Public License version 3 or later; see LICENSE
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\Installer\InstallerAdapter;
|
|
use Joomla\CMS\Log\Log;
|
|
|
|
/**
|
|
* Package installation script for MokoSuiteNPO.
|
|
*/
|
|
class Pkg_MokoSuiteNPOInstallerScript
|
|
{
|
|
public function postflight(string $type, InstallerAdapter $adapter): void
|
|
{
|
|
$this->warnMissingLicenseKey();
|
|
}
|
|
|
|
private function warnMissingLicenseKey(): void
|
|
{
|
|
try
|
|
{
|
|
$db = Factory::getDbo();
|
|
$app = Factory::getApplication();
|
|
|
|
$query = $db->getQuery(true)
|
|
->select([$db->quoteName('update_site_id'), $db->quoteName('extra_query')])
|
|
->from($db->quoteName('#__update_sites'))
|
|
->where('(' . $db->quoteName('name') . ' LIKE ' . $db->quote('%MokoSuiteNPO%')
|
|
. ' OR ' . $db->quoteName('location') . ' LIKE ' . $db->quote('%MokoSuiteNPO%') . ')')
|
|
->setLimit(1);
|
|
$db->setQuery($query);
|
|
$site = $db->loadObject();
|
|
|
|
if ($site)
|
|
{
|
|
$extraQuery = (string) ($site->extra_query ?? '');
|
|
|
|
if (!empty($extraQuery) && strpos($extraQuery, 'dlid=') !== false)
|
|
{
|
|
parse_str($extraQuery, $parsed);
|
|
|
|
if (!empty($parsed['dlid']))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
$editUrl = 'index.php?option=com_installer&task=updatesite.edit&update_site_id=' . (int) $site->update_site_id;
|
|
}
|
|
else
|
|
{
|
|
$editUrl = 'index.php?option=com_installer&view=updatesites';
|
|
}
|
|
|
|
$app->enqueueMessage(
|
|
'<strong>Moko Consulting License Key Required</strong> — '
|
|
. 'No download key is configured. Updates will not be available until a valid license key is entered. '
|
|
. '<a href="' . $editUrl . '" class="btn btn-sm btn-warning ms-2">Enter License Key</a>',
|
|
'warning'
|
|
);
|
|
}
|
|
catch (\Throwable $e)
|
|
{
|
|
// Silent — avoid breaking install if update_sites query fails
|
|
}
|
|
}
|
|
}
|