29f83d06ee
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || github.ref_name }}) (push) Successful in 12s
Gate the installer success/license/next-steps message behind a fail-open verifier so the installer never reports success when the install failed or only partially completed. - Package scripts: verify every child extension declared in the manifest actually registered in #__extensions before showing the license message. - com_mokoog component script: verify the declared SQL tables exist before echoing the success message. Mirrors MokoSuiteHQ PR #72 and MokoSuiteClient PR #300. Both checks are wrapped in try/catch and fail open, so a transient DB/IO glitch never fakes a failure. Claude-Session: https://claude.ai/code/session_01B9aZHSWbiiZykJD88pYx8R
264 lines
8.0 KiB
PHP
264 lines
8.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package MokoSuiteOpenGraph
|
|
* @author Moko Consulting <hello@mokoconsulting.tech>
|
|
* @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\Language\Text;
|
|
|
|
class Pkg_MokoOGInstallerScript
|
|
{
|
|
protected $minimumJoomla = '6.0.0';
|
|
protected $minimumPhp = '8.2.0';
|
|
|
|
|
|
|
|
|
|
public function preflight(string $type, InstallerAdapter $parent): bool
|
|
{
|
|
if (version_compare(PHP_VERSION, $this->minimumPhp, '<'))
|
|
{
|
|
Factory::getApplication()->enqueueMessage(
|
|
Text::sprintf('PKG_MOKOOG_PHP_VERSION_ERROR', $this->minimumPhp),
|
|
'error'
|
|
);
|
|
|
|
return false;
|
|
}
|
|
|
|
if (version_compare(JVERSION, $this->minimumJoomla, '<'))
|
|
{
|
|
Factory::getApplication()->enqueueMessage(
|
|
Text::sprintf('PKG_MOKOOG_JOOMLA_VERSION_ERROR', $this->minimumJoomla),
|
|
'error'
|
|
);
|
|
|
|
return false;
|
|
}
|
|
|
|
$this->saveDownloadKey();
|
|
|
|
return true;
|
|
}
|
|
|
|
public function postflight(string $type, InstallerAdapter $parent): void
|
|
{
|
|
$this->restoreDownloadKey();
|
|
|
|
// Enable plugins after first install (unconditional module/plugin setup)
|
|
if ($type === 'install')
|
|
{
|
|
$db = Factory::getContainer()->get(\Joomla\Database\DatabaseInterface::class);
|
|
|
|
foreach (['system', 'content', 'webservices'] as $folder)
|
|
{
|
|
$db->setQuery(
|
|
$db->getQuery(true)
|
|
->update($db->quoteName('#__extensions'))
|
|
->set($db->quoteName('enabled') . ' = 1')
|
|
->where($db->quoteName('type') . ' = ' . $db->quote('plugin'))
|
|
->where($db->quoteName('folder') . ' = ' . $db->quote($folder))
|
|
->where($db->quoteName('element') . ' = ' . $db->quote('mokoog'))
|
|
)->execute();
|
|
}
|
|
}
|
|
|
|
// Be honest about success. Joomla's package installer only LOGS a failed child
|
|
// sub-install but still runs this postflight, so don't show the license /
|
|
// next-steps message if a bundled extension is actually missing. Fails open
|
|
// (see missingChildExtensions) so a query/IO glitch never fakes a failure.
|
|
$missing = $this->missingChildExtensions($parent);
|
|
|
|
if (!empty($missing))
|
|
{
|
|
Factory::getApplication()->enqueueMessage(
|
|
'<h4>MokoSuiteOpenGraph did not install correctly.</h4>'
|
|
. '<p>The following bundled extensions are missing: '
|
|
. htmlspecialchars(implode(', ', $missing), ENT_QUOTES) . '</p>'
|
|
. '<p>Please uninstall MokoSuiteOpenGraph and reinstall the full package.</p>',
|
|
'error'
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
$this->warnMissingLicenseKey();
|
|
}
|
|
|
|
/**
|
|
* Verify every child extension declared in the package manifest actually landed
|
|
* in #__extensions. Returns readable labels of any that are missing.
|
|
*
|
|
* element = <file> "id", EXCEPT plugins strip a leading plg_<group>_; plugins also
|
|
* match folder = <file> "group". FAILS OPEN — any error returns [] so a transient
|
|
* glitch never turns a good install into a false failure.
|
|
*/
|
|
private function missingChildExtensions($parent): array
|
|
{
|
|
try
|
|
{
|
|
$manifest = $parent->getParent()->getManifest();
|
|
|
|
if (!$manifest || !isset($manifest->files) || !isset($manifest->files->file))
|
|
{
|
|
return [];
|
|
}
|
|
|
|
$db = Factory::getContainer()->get(\Joomla\Database\DatabaseInterface::class);
|
|
$missing = [];
|
|
|
|
foreach ($manifest->files->file as $file)
|
|
{
|
|
$attrs = $file->attributes();
|
|
$id = isset($attrs['id']) ? (string) $attrs['id'] : '';
|
|
$exType = isset($attrs['type']) ? (string) $attrs['type'] : '';
|
|
|
|
if ($id === '' || $exType === '')
|
|
{
|
|
continue;
|
|
}
|
|
|
|
$group = isset($attrs['group']) ? (string) $attrs['group'] : '';
|
|
$element = $id;
|
|
|
|
// Plugin element in #__extensions is the id minus any leading plg_<group>_.
|
|
if ($exType === 'plugin' && $group !== '')
|
|
{
|
|
$prefix = 'plg_' . $group . '_';
|
|
|
|
if (strpos($element, $prefix) === 0)
|
|
{
|
|
$element = substr($element, \strlen($prefix));
|
|
}
|
|
}
|
|
|
|
$query = $db->getQuery(true)
|
|
->select('COUNT(*)')
|
|
->from($db->quoteName('#__extensions'))
|
|
->where($db->quoteName('element') . ' = ' . $db->quote($element))
|
|
->where($db->quoteName('type') . ' = ' . $db->quote($exType));
|
|
|
|
if ($exType === 'plugin' && $group !== '')
|
|
{
|
|
$query->where($db->quoteName('folder') . ' = ' . $db->quote($group));
|
|
}
|
|
|
|
if ((int) $db->setQuery($query)->loadResult() === 0)
|
|
{
|
|
$label = trim((string) $file);
|
|
$missing[] = $label !== '' ? preg_replace('/\.zip$/i', '', $label) : $id;
|
|
}
|
|
}
|
|
|
|
return $missing;
|
|
}
|
|
catch (\Throwable $e)
|
|
{
|
|
// Fail open — never fake a failure on a glitch.
|
|
return [];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
private ?string $savedDownloadKey = null;
|
|
|
|
private function saveDownloadKey(): void
|
|
{
|
|
try
|
|
{
|
|
$db = \Joomla\CMS\Factory::getContainer()->get(\Joomla\Database\DatabaseInterface::class);
|
|
$db->setQuery(
|
|
$db->getQuery(true)
|
|
->select($db->quoteName('us.extra_query'))
|
|
->from($db->quoteName('#__update_sites', 'us'))
|
|
->join('INNER', $db->quoteName('#__update_sites_extensions', 'use') . ' ON use.update_site_id = us.update_site_id')
|
|
->join('INNER', $db->quoteName('#__extensions', 'e') . ' ON e.extension_id = use.extension_id')
|
|
->where($db->quoteName('e.element') . ' = ' . $db->quote('pkg_mokoog'))
|
|
->setLimit(1)
|
|
);
|
|
$key = $db->loadResult();
|
|
if (!empty($key)) { $this->savedDownloadKey = $key; }
|
|
}
|
|
catch (\Throwable $e) {
|
|
\Joomla\CMS\Log\Log::add('MokoOG saveDownloadKey: ' . $e->getMessage(), \Joomla\CMS\Log\Log::WARNING, 'mokoog');
|
|
}
|
|
}
|
|
|
|
private function restoreDownloadKey(): void
|
|
{
|
|
if ($this->savedDownloadKey === null) { return; }
|
|
|
|
try
|
|
{
|
|
$db = \Joomla\CMS\Factory::getContainer()->get(\Joomla\Database\DatabaseInterface::class);
|
|
$db->setQuery(
|
|
$db->getQuery(true)
|
|
->select($db->quoteName('us.update_site_id'))
|
|
->from($db->quoteName('#__update_sites', 'us'))
|
|
->join('INNER', $db->quoteName('#__update_sites_extensions', 'use') . ' ON use.update_site_id = us.update_site_id')
|
|
->join('INNER', $db->quoteName('#__extensions', 'e') . ' ON e.extension_id = use.extension_id')
|
|
->where($db->quoteName('e.element') . ' = ' . $db->quote('pkg_mokoog'))
|
|
->setLimit(1)
|
|
);
|
|
$siteId = (int) $db->loadResult();
|
|
if ($siteId > 0)
|
|
{
|
|
$db->setQuery(
|
|
$db->getQuery(true)
|
|
->update($db->quoteName('#__update_sites'))
|
|
->set($db->quoteName('extra_query') . ' = ' . $db->quote($this->savedDownloadKey))
|
|
->where($db->quoteName('update_site_id') . ' = ' . $siteId)
|
|
)->execute();
|
|
}
|
|
}
|
|
catch (\Throwable $e) {
|
|
\Joomla\CMS\Log\Log::add('MokoOG restoreDownloadKey: ' . $e->getMessage(), \Joomla\CMS\Log\Log::WARNING, 'mokoog');
|
|
}
|
|
}
|
|
|
|
private function warnMissingLicenseKey(): void
|
|
{
|
|
try
|
|
{
|
|
$db = \Joomla\CMS\Factory::getContainer()->get(\Joomla\Database\DatabaseInterface::class);
|
|
$db->setQuery(
|
|
$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('%MokoSuiteOpenGraph%') . ' OR ' . $db->quoteName('location') . ' LIKE ' . $db->quote('%MokoSuiteOpenGraph%') . ')')
|
|
->setLimit(1)
|
|
);
|
|
$site = $db->loadObject();
|
|
|
|
if ($site)
|
|
{
|
|
$eq = (string) ($site->extra_query ?? '');
|
|
if (!empty($eq) && strpos($eq, 'dlid=') !== false) { parse_str($eq, $p); if (!empty($p['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';
|
|
}
|
|
|
|
\Joomla\CMS\Factory::getApplication()->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) {
|
|
\Joomla\CMS\Log\Log::add('MokoOG warnMissingLicenseKey: ' . $e->getMessage(), \Joomla\CMS\Log\Log::WARNING, 'mokoog');
|
|
}
|
|
}
|
|
}
|