Your IP : 216.73.216.224


Current Path : /var/www/html/components/com_jce/editor/plugins/spellchecker/
Upload File :
Current File : /var/www/html/components/com_jce/editor/plugins/spellchecker/spellchecker.php

<?php
/**
 * @package     JCE
 * @subpackage  Editor
 *
 * @copyright   Copyright (c) 2009-2026 Ryan Demmer. All rights reserved
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

\defined('_JEXEC') or die;

class WFSpellCheckerPlugin extends WFEditorPlugin
{
    /**
     * Constructor activating the default information of the class.
     */
    public function __construct()
    {
        parent::__construct();

        $engine = $this->getEngine();

        if (!$engine) {
            self::error('No Spellchecker Engine available');
        }

        $request = WFRequest::getInstance();

        $request->setRequest(array($engine, 'checkWords'));
        $request->setRequest(array($engine, 'getSuggestions'));
    }

    private function getConfig()
    {
        static $config;

        if (empty($config)) {
            $dictionary = trim($this->getParam('spellchecker.pspell_dictionary', ''));

            if (!empty($dictionary)) {
                $dictionary = JPATH_BASE . '/' . $dictionary;
                $dictDir = realpath(dirname($dictionary));
                $realBase = realpath(JPATH_BASE);

                if ($dictDir === false || strpos($dictDir, $realBase) !== 0) {
                    $dictionary = '';
                }
            }

            $config = array(
                'PSpell.mode'       => $this->getParam('spellchecker.pspell_mode', 'PSPELL_FAST'),
                'PSpell.spelling'   => $this->getParam('spellchecker.pspell_spelling', ''),
                'PSpell.jargon'     => $this->getParam('spellchecker.pspell_jargon', ''),
                'PSpell.encoding'   => $this->getParam('spellchecker.pspell_encoding', ''),
                'PSpell.dictionary' => $dictionary,
            );
        }

        return $config;
    }

    private function getEngine()
    {
        static $instance;

        if (!is_object($instance)) {
            $classname = '';
            $config = array();

            $engine = $this->getParam('spellchecker.engine', 'browser', 'browser');

            if (($engine === 'pspell' || $engine === 'pspellshell') && function_exists('pspell_new')) {
                $classname = 'PSpell';
                $config = $this->getConfig();
            }

            if ($engine === 'enchantspell' && function_exists('enchant_broker_init')) {
                $classname = 'Enchantspell';
            }

            if (!empty($classname)) {
                $file = __DIR__ . '/classes/' . strtolower($classname) . '.php';

                if (is_file($file)) {
                    require_once $file;
                    $instance = new $classname($config);
                }
            }
        }

        return $instance;
    }

    private static function error(string $str)
    {
        die('{"result":null,"id":null,"error":{"errstr":"' . addslashes($str) . '","errfile":"","errline":null,"errcontext":"","level":"FATAL"}}');
    }
}