Files
Kleeja/includes/adm/j_plugins.php

667 lines
23 KiB
PHP
Raw Normal View History

2018-01-09 02:09:07 +03:00
<?php
/**
*
* @package adm
* @copyright (c) 2007 Kleeja.com
* @license http://www.kleeja.com/license
*
*/
// not for directly open
2019-05-03 23:52:08 +03:00
if (! defined('IN_ADMIN'))
2018-01-09 02:09:07 +03:00
{
exit();
}
2019-05-03 23:52:08 +03:00
//turn time-limit off
2018-01-09 02:09:07 +03:00
@set_time_limit(0);
2019-05-03 23:52:08 +03:00
//get current case
2019-04-19 23:54:23 +03:00
$case = g('case', 'str', 'installed');
2018-01-09 02:09:07 +03:00
2019-05-03 23:52:08 +03:00
//set _get form key
2018-01-09 02:09:07 +03:00
$GET_FORM_KEY = kleeja_add_form_key_get('PLUGINS_FORM_KEY');
2019-05-03 23:52:08 +03:00
$H_FORM_KEYS = kleeja_add_form_key('adm_plugins');
2018-01-09 02:09:07 +03:00
$action = ADMIN_PATH . '?cp=' . basename(__file__, '.php');
2019-05-03 23:52:08 +03:00
$plugin_install_link = ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '&amp;case=install&amp;' . $GET_FORM_KEY . '&amp;plg=';
2018-01-09 02:09:07 +03:00
$plugin_uninstall_link = ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '&amp;case=uninstall&amp;' . $GET_FORM_KEY . '&amp;plg=';
2019-05-03 23:52:08 +03:00
$plugin_enable_link = ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '&amp;case=enable&amp;' . $GET_FORM_KEY . '&amp;plg=';
$plugin_disable_link = ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '&amp;case=disable&amp;' . $GET_FORM_KEY . '&amp;plg=';
$plugin_download_link = ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '&amp;case=download&amp;' . $GET_FORM_KEY . '&amp;plg=';
$plugin_update_link = ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '&amp;case=update&amp;' . $GET_FORM_KEY . '&amp;plg=';
2018-01-09 02:09:07 +03:00
//check _GET Csrf token
2019-05-03 23:52:08 +03:00
if (! empty($case) && in_array($case, ['install', 'uninstall', 'enable', 'disable' , 'download' , 'update']))
2018-01-09 02:09:07 +03:00
{
2019-05-03 23:52:08 +03:00
if (! kleeja_check_form_key_get('PLUGINS_FORM_KEY'))
2019-04-16 22:54:33 +03:00
{
kleeja_admin_err($lang['INVALID_GET_KEY'], $action);
2019-05-03 23:52:08 +03:00
2019-04-16 22:54:33 +03:00
exit;
}
2018-01-09 02:09:07 +03:00
}
2019-05-03 23:52:08 +03:00
if (ip('newplugin'))
2018-01-09 02:09:07 +03:00
{
2019-05-03 23:52:08 +03:00
if (! kleeja_check_form_key('adm_plugins'))
2018-01-09 02:09:07 +03:00
{
kleeja_admin_err($lang['INVALID_FORM_KEY'], true, $lang['ERROR'], true, $action);
2019-05-03 23:52:08 +03:00
2019-04-16 20:25:20 +02:00
exit;
2018-01-09 02:09:07 +03:00
}
$case = 'upload';
}
switch ($case):
default:
2019-04-19 23:54:23 +03:00
case 'local':
case 'store':
2019-05-02 19:51:46 +03:00
case 'check':
2018-01-09 02:09:07 +03:00
2019-05-03 23:52:08 +03:00
// Get installed plugins
$query = [
'SELECT' => 'plg_id, plg_name, plg_ver, plg_disabled, plg_author, plg_dsc',
'FROM' => "{$dbprefix}plugins",
'ORDER BY' => 'plg_id ASC',
];
2018-01-09 02:09:07 +03:00
$result = $SQL->build($query);
2019-05-03 23:52:08 +03:00
$installed_plugins = [];
2018-01-09 02:09:07 +03:00
while ($row = $SQL->fetch($result))
{
$installed_plugins[$row['plg_name']] = $row;
$installed_plugins[$row['plg_name']]['extra_info'] = Plugins::getInstance()->installed_plugin_info($row['plg_name']);
$installed_plugins[$row['plg_name']]['icon'] = file_exists(
2019-05-03 23:52:08 +03:00
PATH . KLEEJA_PLUGINS_FOLDER . '/' . $row['plg_name'] . '/icon.png'
2018-01-09 02:09:07 +03:00
)
2019-05-03 23:52:08 +03:00
? PATH . KLEEJA_PLUGINS_FOLDER . '/' . $row['plg_name'] . '/icon.png'
2018-01-09 02:09:07 +03:00
: $STYLE_PATH_ADMIN . 'images/plugin.png';
2019-05-03 23:52:08 +03:00
foreach (['plugin_title', 'plugin_description'] as $localizedInfo)
2018-01-09 02:09:07 +03:00
{
if (is_array($installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo]))
{
2019-05-03 23:52:08 +03:00
if (! empty($installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo][$config['language']]))
2018-01-09 02:09:07 +03:00
{
$installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo] =
shorten_text($installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo][$config['language']], 100);
}
2019-05-03 23:52:08 +03:00
elseif (! empty($installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo]['en']))
2018-01-09 02:09:07 +03:00
{
$installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo] =
shorten_text($installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo]['en'], 100);
}
else
{
$installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo] =
shorten_text($installed_plugins[$row['plg_name']]['extra_info'][$localizedInfo][0], 100);
}
}
}
}
$SQL->free($result);
2019-05-03 23:52:08 +03:00
//get available plugins
$dh = opendir(PATH . KLEEJA_PLUGINS_FOLDER);
$available_plugins = [];
2018-01-09 02:09:07 +03:00
while (false !== ($folder_name = readdir($dh)))
{
2019-05-03 23:52:08 +03:00
if (is_dir(PATH . KLEEJA_PLUGINS_FOLDER . '/' . $folder_name) && preg_match('/[a-z0-9_.]{3,}/', $folder_name))
2019-04-19 23:08:22 +03:00
{
2018-01-09 02:09:07 +03:00
if (empty($installed_plugins[$folder_name]))
{
array_push($available_plugins,
2019-05-03 23:52:08 +03:00
[
2018-01-09 02:09:07 +03:00
'name' => $folder_name,
2019-05-03 23:52:08 +03:00
'icon' => file_exists(PATH . KLEEJA_PLUGINS_FOLDER . '/' . $folder_name . '/icon.png')
? PATH . KLEEJA_PLUGINS_FOLDER . '/' . $folder_name . '/icon.png'
2018-01-09 02:09:07 +03:00
: $STYLE_PATH_ADMIN . 'images/plugin.png',
2019-05-03 23:52:08 +03:00
]
2018-01-09 02:09:07 +03:00
);
}
}
}
@closedir($dh);
2019-04-19 23:55:21 +03:00
$no_plugins = sizeof($available_plugins) == 0 && sizeof($installed_plugins) == 0;
2019-04-19 23:54:23 +03:00
2019-05-03 23:52:08 +03:00
$stylee = 'admin_plugins';
2019-04-19 23:54:23 +03:00
//do not proceed if not store case
2019-05-03 23:52:08 +03:00
if (! in_array($case, ['store', 'check']))
2019-04-19 23:54:23 +03:00
{
break;
}
2018-01-09 02:09:07 +03:00
2019-05-05 20:12:32 +03:00
// plugins avilable in kleeja remote catalog
2019-05-03 23:52:08 +03:00
if (! ($catalog_plugins = $cache->get('catalog_plugins')))
2019-04-16 22:54:33 +03:00
{
2019-05-03 14:56:46 +03:00
$store_link = 'https://raw.githubusercontent.com/kleeja-official/store-catalog/master/catalog.json';
2019-04-16 20:25:20 +02:00
2019-04-16 22:54:33 +03:00
$catalog_plugins = fetch_remote_file($store_link);
2019-05-03 23:52:08 +03:00
$catalog_plugins = json_decode($catalog_plugins, true);
2019-04-16 20:25:20 +02:00
2019-05-03 23:52:08 +03:00
if (json_last_error() == JSON_ERROR_NONE)
2019-04-16 22:54:33 +03:00
{
$cache->save('catalog_plugins', $catalog_plugins);
}
2019-04-16 20:25:20 +02:00
}
2019-04-16 22:54:33 +03:00
// make an array for all plugins in kleeja remote catalog
// that are not exsisted locally.
2019-05-03 23:52:08 +03:00
$store_plugins = [];
2019-04-16 22:54:33 +03:00
$available_plugins_names = array_column($available_plugins, 'name');
2019-05-03 23:52:08 +03:00
foreach ($catalog_plugins as $plugin_info)
2019-04-16 20:25:20 +02:00
{
2019-05-03 23:52:08 +03:00
if ($case == 'store' && (in_array($plugin_info['name'], $available_plugins_names) ||
2019-05-02 21:50:23 +02:00
! empty($installed_plugins[$plugin_info['name']]) )
2019-05-03 23:52:08 +03:00
) {
2019-05-02 19:51:46 +03:00
continue;
2019-04-16 20:25:20 +02:00
}
2019-05-02 19:51:46 +03:00
// is there a new version of this in the store
2019-05-05 20:12:32 +03:00
elseif ($case == 'check' && (! empty($installed_plugins[$plugin_info['name']]) &&
2019-05-02 19:51:46 +03:00
version_compare(
2019-05-03 00:07:56 +03:00
strtolower($installed_plugins[$plugin_info['name']]['extra_info']['plugin_version']),
strtolower($plugin_info['file']['version']),
2019-05-02 19:51:46 +03:00
'>=') || empty($installed_plugins[$plugin_info['name']]))
2019-05-03 23:52:08 +03:00
) {
2019-05-02 19:51:46 +03:00
continue;
}
2019-05-03 23:52:08 +03:00
$store_plugins[$plugin_info['name']] = [
'name' => $plugin_info['name'],
'developer' => $plugin_info['developer'],
'version' => $plugin_info['file']['version'],
'title' => ! empty($plugin_info['title'][$config['language']]) ? $plugin_info['title'][$config['language']] : $plugin_info['title']['en'],
'website' => $plugin_info['website'],
'current_version' => ! empty($installed_plugins[$plugin_info['name']]) ? strtolower($installed_plugins[$plugin_info['name']]['extra_info']['plugin_version']) : '',
'kj_min_version' => $plugin_info['kleeja_version']['min'],
'kj_max_version' => $plugin_info['kleeja_version']['max'],
2019-05-02 19:51:46 +03:00
'kj_version_cmtp' => sprintf($lang[ 'KLJ_VER_NO_PLUGIN'], $plugin_info['kleeja_version']['min'], $plugin_info['kleeja_version']['max']),
2019-05-03 23:52:08 +03:00
'icon' => $plugin_info['icon'] ,
'NotCompatible' => version_compare(strtolower($plugin_info['kleeja_version']['min']), KLEEJA_VERSION, '<=')
&& version_compare(strtolower($plugin_info['kleeja_version']['max']), KLEEJA_VERSION, '>=')
? false : true,
];
2019-05-02 19:51:46 +03:00
}
$no_store_plugins = sizeof($store_plugins) == 0;
2018-01-09 02:09:07 +03:00
break;
//
//upload a plugin
//
case 'upload':
2019-05-03 23:52:08 +03:00
$ERRORS = [];
2018-01-09 02:09:07 +03:00
2019-05-03 23:52:08 +03:00
if (intval($userinfo['founder']) !== 1)
2018-01-09 02:09:07 +03:00
{
$ERRORS[] = $lang['HV_NOT_PRVLG_ACCESS'];
}
2019-05-03 23:52:08 +03:00
//is uploaded?
if (empty($_FILES['plugin_file']['tmp_name']))
2018-01-09 02:09:07 +03:00
{
$ERRORS[] = $lang['CHOSE_F'];
}
2019-05-03 23:52:08 +03:00
//extract it to plugins folder
if (! sizeof($ERRORS))
2018-01-09 02:09:07 +03:00
{
2019-05-03 23:52:08 +03:00
if (class_exists('ZipArchive'))
2018-01-09 02:09:07 +03:00
{
$zip = new ZipArchive;
2019-05-03 23:52:08 +03:00
2018-01-09 02:09:07 +03:00
if ($zip->open($_FILES['plugin_file']['tmp_name']) === true)
{
2019-05-03 23:52:08 +03:00
if (! $zip->extractTo(PATH . KLEEJA_PLUGINS_FOLDER))
2018-01-09 02:09:07 +03:00
{
$ERRORS[] = sprintf($lang['EXTRACT_ZIP_FAILED'], KLEEJA_PLUGINS_FOLDER);
}
$zip->close();
}
else
{
$ERRORS[] = sprintf($lang['EXTRACT_ZIP_FAILED'], KLEEJA_PLUGINS_FOLDER);
}
}
else
{
$ERRORS[] = $lang['NO_ZIP_ARCHIVE'];
}
}
2019-05-03 23:52:08 +03:00
if (! empty($_FILES['plugin_file']['tmp_name']))
2018-01-09 02:09:07 +03:00
{
@unlink($_FILES['plugin_file']['tmp_name']);
}
2019-05-03 23:52:08 +03:00
if (! sizeof($ERRORS))
2018-01-09 02:09:07 +03:00
{
kleeja_admin_info($lang['NO_PROBLEM_AFTER_ZIP'], true, '', true, $action);
}
else
{
2019-04-19 23:08:22 +03:00
kleeja_admin_err('- ' . implode('<br>- ', $ERRORS), true, '', true, ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2018-01-09 02:09:07 +03:00
}
break;
//
//install a plugin
//
case 'install':
2019-05-03 23:52:08 +03:00
if (intval($userinfo['founder']) !== 1)
2018-01-09 02:09:07 +03:00
{
kleeja_admin_err($lang['HV_NOT_PRVLG_ACCESS'], ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2019-05-03 23:52:08 +03:00
2018-01-09 02:09:07 +03:00
exit;
}
$plg_name = g('plg', 'str');
if (empty($plg_name))
{
if (defined('DEBUG'))
{
exit('empty($plg_name)');
}
//no plugin selected? back
2019-05-03 23:52:08 +03:00
redirect(ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2018-01-09 02:09:07 +03:00
}
else
{
2019-05-03 23:52:08 +03:00
if (! file_exists(PATH . KLEEJA_PLUGINS_FOLDER . '/' . $plg_name . '/init.php'))
2018-01-09 02:09:07 +03:00
{
if (defined('DEBUG'))
{
exit('!file_exists($plg_name)');
}
2019-05-03 23:52:08 +03:00
redirect(ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2018-01-09 02:09:07 +03:00
exit;
}
2019-05-03 23:52:08 +03:00
//if already installed, show a message
if (! empty(Plugins::getInstance()->installed_plugin_info($plg_name)))
2018-01-09 02:09:07 +03:00
{
2019-04-19 23:08:22 +03:00
kleeja_admin_info($lang['PLUGIN_EXISTS_BEFORE'], true, '', true, ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2019-05-03 23:52:08 +03:00
2018-01-09 02:09:07 +03:00
exit;
}
2019-05-03 23:52:08 +03:00
$kleeja_plugin = [];
2018-01-09 02:09:07 +03:00
include PATH . KLEEJA_PLUGINS_FOLDER . '/' . $plg_name . '/init.php';
$install_callback = $kleeja_plugin[$plg_name]['install'];
2019-05-03 23:52:08 +03:00
$plugin_info = $kleeja_plugin[$plg_name]['information'];
2018-01-09 02:09:07 +03:00
$plugin_first_run = false;
2019-05-03 23:52:08 +03:00
if (! empty($kleeja_plugin[$plg_name]['first_run'][$config['language']]))
2018-01-09 02:09:07 +03:00
{
$plugin_first_run = $kleeja_plugin[$plg_name]['first_run'][$config['language']];
}
2019-05-03 23:52:08 +03:00
elseif (! empty($kleeja_plugin[$plg_name]['first_run']['en']))
2018-01-09 02:09:07 +03:00
{
$plugin_first_run = $kleeja_plugin[$plg_name]['first_run']['en'];
}
2019-05-03 23:52:08 +03:00
//check if compatible with kleeja
//'plugin_kleeja_version_min' => '1.8',
// Max version of Kleeja that's required to run this plugin
//'plugin_kleeja_version_max' => '3.8',
2018-01-09 02:09:07 +03:00
if (version_compare(KLEEJA_VERSION, $plugin_info['plugin_kleeja_version_min'], '<'))
{
2019-04-19 23:08:22 +03:00
kleeja_admin_info(
2019-05-03 23:52:08 +03:00
$lang['PLUGIN_N_CMPT_KLJ'] . '<br>k:' . KLEEJA_VERSION . '|<|p.min:' . $plugin_info['plugin_kleeja_version_min'],
2019-04-19 23:08:22 +03:00
true, '', true, ADMIN_PATH . '?cp=' . basename(__file__, '.php')
);
2019-05-03 23:52:08 +03:00
2018-01-09 02:09:07 +03:00
exit;
}
if ($plugin_info['plugin_kleeja_version_max'] != '0')
{
if (version_compare(KLEEJA_VERSION, $plugin_info['plugin_kleeja_version_max'], '>'))
{
2019-04-19 23:08:22 +03:00
kleeja_admin_info(
2019-05-03 23:52:08 +03:00
$lang['PLUGIN_N_CMPT_KLJ'] . '<br>k:' . KLEEJA_VERSION . '|>|p.max:' . $plugin_info['plugin_kleeja_version_max'],
2019-04-19 23:08:22 +03:00
true, '', true, ADMIN_PATH . '?cp=' . basename(__file__, '.php')
);
2019-05-03 23:52:08 +03:00
2018-01-09 02:09:07 +03:00
exit;
}
}
delete_cache('', true);
if (is_array($plugin_info['plugin_description']))
{
2019-05-03 23:52:08 +03:00
$plugin_info['plugin_description'] = ! empty($plugin_info['plugin_description']['en']) ? $plugin_info['plugin_description']['en'] : $plugin_info['plugin_description'][0];
2018-01-09 02:09:07 +03:00
}
2019-05-03 23:52:08 +03:00
//add to database
$insert_query = [
2018-01-09 02:09:07 +03:00
'INSERT' => '`plg_name` ,`plg_ver`, `plg_author`, `plg_dsc`, `plg_icon`, `plg_uninstall`, `plg_instructions`, `plg_store`, `plg_files`',
2019-05-03 23:52:08 +03:00
'INTO' => "{$dbprefix}plugins",
2018-01-09 02:09:07 +03:00
'VALUES' => "'" . $SQL->escape($plg_name) . "','" . $SQL->escape($plugin_info['plugin_version']) . "', '" . $SQL->escape($plugin_info['plugin_developer']) . "','" . $SQL->escape($plugin_info['plugin_description']) . "', '', '', '', '', ''",
2019-05-03 23:52:08 +03:00
];
2018-01-09 02:09:07 +03:00
$SQL->build($insert_query);
2019-05-03 23:52:08 +03:00
//may God protect you brother.
if (is_callable($install_callback))
2018-01-09 02:09:07 +03:00
{
$install_callback($SQL->insert_id());
}
2019-05-03 23:52:08 +03:00
//show done, msg
2018-01-09 02:09:07 +03:00
$text = '<h3>' . $lang['NEW_PLUGIN_ADDED'] . '</h3>';
2019-05-03 23:52:08 +03:00
2018-01-09 02:09:07 +03:00
if ($plugin_first_run)
{
$text .= $plugin_first_run;
$text .= '<br><hr><a href="' . ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '" class="btn btn-primary btn-lg">' . $lang['GO_BACK_BROWSER'] . '</a>';
}
else
{
$text .= '<script type="text/javascript"> setTimeout("get_kleeja_link(\'' . ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '\');", 2000);</script>' . "\n";
}
$stylee = 'admin_info';
}
break;
//
//uninstall a plugin
//
case 'uninstall':
2019-05-03 23:52:08 +03:00
if (intval($userinfo['founder']) !== 1)
2018-01-09 02:09:07 +03:00
{
kleeja_admin_err($lang['HV_NOT_PRVLG_ACCESS'], ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2019-05-03 23:52:08 +03:00
2018-01-09 02:09:07 +03:00
exit;
}
$plg_name = g('plg', 'str');
if (empty($plg_name))
{
if (defined('DEV_STAGE'))
{
exit('empty($plg_name)');
}
2019-04-19 23:08:22 +03:00
2018-01-09 02:09:07 +03:00
//no plugin selected? back
2019-05-03 23:52:08 +03:00
redirect(ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2018-01-09 02:09:07 +03:00
}
else
{
2019-05-03 23:52:08 +03:00
if (! file_exists(PATH . KLEEJA_PLUGINS_FOLDER . '/' . $plg_name . '/init.php'))
2018-01-09 02:09:07 +03:00
{
if (defined('DEV_STAGE'))
{
exit('!file_exists($plg_name)');
}
2019-05-03 23:52:08 +03:00
redirect(ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2018-01-09 02:09:07 +03:00
exit;
}
2019-05-03 23:52:08 +03:00
$kleeja_plugin = [];
2018-01-09 02:09:07 +03:00
include PATH . KLEEJA_PLUGINS_FOLDER . '/' . $plg_name . '/init.php';
$uninstall_callback = $kleeja_plugin[$plg_name]['uninstall'];
2019-05-03 23:52:08 +03:00
if (! is_callable($uninstall_callback))
2018-01-09 02:09:07 +03:00
{
2019-05-03 23:52:08 +03:00
redirect(ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2018-01-09 02:09:07 +03:00
exit;
}
2019-05-03 23:52:08 +03:00
$query = [
'SELECT' => 'plg_id',
'FROM' => "{$dbprefix}plugins",
'WHERE' => "plg_name='" . $SQL->escape($plg_name) . "'"
];
2018-01-09 02:09:07 +03:00
$result = $SQL->build($query);
$pluginDatabaseInfo = $SQL->fetch($result);
2019-05-03 23:52:08 +03:00
//sad to see you go, brother
$uninstall_callback(! empty($pluginDatabaseInfo) ? $pluginDatabaseInfo['plg_id'] : 0);
2018-01-09 02:09:07 +03:00
delete_cache('', true);
2019-05-03 23:52:08 +03:00
//remove from database
$query_del = [
2018-01-09 02:09:07 +03:00
'DELETE' => "`{$dbprefix}plugins`",
2019-05-03 23:52:08 +03:00
'WHERE' => "plg_name='" . $SQL->escape($plg_name) . "'"
];
2018-01-09 02:09:07 +03:00
$SQL->build($query_del);
2019-05-03 23:52:08 +03:00
//show done, msg
2018-01-09 02:09:07 +03:00
$text = '<h3>' . $lang['PLUGIN_DELETED'] . '</h3>';
$text .= '<script type="text/javascript"> setTimeout("get_kleeja_link(\'' . ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '\');", 2000);</script>' . "\n";
$stylee = 'admin_info';
}
break;
//
2019-04-16 22:54:33 +03:00
// disable a plugin
2018-01-09 02:09:07 +03:00
//
case 'disable':
case 'enable':
2019-05-03 23:52:08 +03:00
if (intval($userinfo['founder']) !== 1)
2018-01-09 02:09:07 +03:00
{
kleeja_admin_err($lang['HV_NOT_PRVLG_ACCESS'], ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2019-05-03 23:52:08 +03:00
2018-01-09 02:09:07 +03:00
exit;
}
$plg_name = g('plg', 'str');
if (empty($plg_name))
{
if (defined('DEV_STAGE'))
{
exit('empty($plg_name)');
}
//no plugin selected? back
2019-05-03 23:52:08 +03:00
redirect(ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2018-01-09 02:09:07 +03:00
}
else
{
2019-05-03 23:52:08 +03:00
//update database
$update_query = [
2018-01-09 02:09:07 +03:00
'UPDATE' => "{$dbprefix}plugins",
2019-05-03 23:52:08 +03:00
'SET' => 'plg_disabled=' . ($case == 'disable' ? 1 : 0),
'WHERE' => "plg_name='" . $SQL->escape($plg_name) . "'"
];
2018-01-09 02:09:07 +03:00
$SQL->build($update_query);
delete_cache('', true);
2019-05-03 23:52:08 +03:00
//show done, msg
2018-01-09 02:09:07 +03:00
$text = '<h3>' . $lang['PLGUIN_DISABLED_ENABLED'] . '</h3>';
$text .= '<script type="text/javascript"> setTimeout("get_kleeja_link(\'' . ADMIN_PATH . '?cp=' . basename(__file__, '.php') . '\');", 2000);</script>' . "\n";
$stylee = 'admin_info';
}
break;
2019-04-16 22:54:33 +03:00
case 'download':
2019-04-16 20:25:20 +02:00
2019-05-03 23:52:08 +03:00
if (intval($userinfo['founder']) !== 1)
2019-04-16 20:25:20 +02:00
{
kleeja_admin_err($lang['HV_NOT_PRVLG_ACCESS'], ADMIN_PATH . '?cp=' . basename(__file__, '.php'));
2019-05-03 23:52:08 +03:00
2019-04-16 20:25:20 +02:00
exit;
}
2019-05-02 22:57:44 +02:00
$download_plugin = g('plg');
// update it , rename function doesn't move the folder , if the folder is exists on the new dir
2019-05-03 23:52:08 +03:00
if ( file_exists( PATH . KLEEJA_PLUGINS_FOLDER . '/' . $download_plugin . '/init.php' ) )
2019-05-02 22:57:44 +02:00
{
redirect( $plugin_update_link . $download_plugin );
2019-05-03 23:52:08 +03:00
2019-05-02 22:57:44 +02:00
exit;
}
2019-05-05 20:12:32 +03:00
// plugins avilable in kleeja store
2019-05-03 14:56:46 +03:00
$store_link = 'https://raw.githubusercontent.com/kleeja-official/store-catalog/master/catalog.json';
2019-04-16 20:25:20 +02:00
2019-04-16 22:54:33 +03:00
$catalog_plugins = fetch_remote_file($store_link);
2019-04-16 20:25:20 +02:00
2019-05-03 23:52:08 +03:00
if ($catalog_plugins)
2019-04-16 20:25:20 +02:00
{
2019-05-03 23:52:08 +03:00
$catalog_plugins = json_decode($catalog_plugins, true);
$store_plugins = [];
2019-04-16 22:54:33 +03:00
2019-04-16 20:25:20 +02:00
// make an arry for all plugins in kleeja store that not included in our server
2019-05-03 23:52:08 +03:00
foreach ($catalog_plugins as $plugin_info)
2019-04-16 20:25:20 +02:00
{
2019-05-03 23:52:08 +03:00
$store_plugins[$plugin_info['name']] = [
'name' => $plugin_info['name'] ,
'plg_version' => $plugin_info['file']['version'] ,
'url' => $plugin_info['file']['url'] ,
2019-04-16 20:25:20 +02:00
'kj_min_version' => $plugin_info['kleeja_version']['min'] ,
'kj_max_version' => $plugin_info['kleeja_version']['max'] ,
2019-05-03 23:52:08 +03:00
];
2019-04-16 20:25:20 +02:00
}
2019-04-16 22:54:33 +03:00
// // => this plugin is hosted in our store
if (isset($store_plugins[$download_plugin]))
2019-04-16 20:25:20 +02:00
{
// check if the version of the plugin is compatible with our kleeja version or not
if (
2019-05-03 23:52:08 +03:00
version_compare(strtolower($store_plugins[$download_plugin]['kj_min_version']), KLEEJA_VERSION, '<=')
2019-05-05 20:12:32 +03:00
&& version_compare(strtolower($store_plugins[$download_plugin]['kj_max_version']), KLEEJA_VERSION, '>=')
2019-05-03 23:52:08 +03:00
) {
2019-04-16 22:54:33 +03:00
$download_plugin_link = $store_plugins[$download_plugin]['url'];
$downloaded_plugin_zip = fetch_remote_file($download_plugin_link, PATH . 'cache/' . $download_plugin . '.zip', 60, false, 10, true);
2019-05-03 23:52:08 +03:00
if ($downloaded_plugin_zip)
2019-04-16 20:25:20 +02:00
{
2019-05-03 23:52:08 +03:00
if (file_exists(PATH . 'cache/' . $download_plugin . '.zip' ) )
2019-04-16 20:25:20 +02:00
{
$zip = new ZipArchive();
2019-05-03 23:52:08 +03:00
2019-04-16 22:54:33 +03:00
if ($zip->open(PATH . 'cache/' . $download_plugin . '.zip' ) === true)
2019-04-16 20:25:20 +02:00
{
2019-05-03 23:52:08 +03:00
if ( $zip->extractTo(PATH . KLEEJA_PLUGINS_FOLDER))
2019-04-16 20:25:20 +02:00
{
$zip->close();
// we dont need the zip file anymore
2019-04-16 22:54:33 +03:00
unlink(PATH . 'cache/' . $download_plugin . '.zip');
2019-04-16 20:25:20 +02:00
// for example :: When we extract zip file , the name will be ( advanced-extras-1.0 )
// so we need to remove the version from folder name and replace ( - ) with ( _ )
// and done
2019-05-03 23:52:08 +03:00
$plugin_folder_name = PATH . KLEEJA_PLUGINS_FOLDER . '/' . str_replace('_', '-', $download_plugin) . '-' . $store_plugins[$download_plugin]['plg_version'];
rename($plugin_folder_name, PATH . KLEEJA_PLUGINS_FOLDER . '/' . $download_plugin);
2019-04-16 22:54:33 +03:00
2019-04-16 20:25:20 +02:00
// download or update msg
2019-04-16 22:54:33 +03:00
kleeja_admin_info(
2019-05-03 23:52:08 +03:00
sprintf($lang[ig('update') ? 'PLUGIN_UPDATED' : 'PLUGIN_DOWNLOADED'], $download_plugin),
2019-04-19 23:08:22 +03:00
ADMIN_PATH . '?cp=' . basename(__file__, '.php')
);
2019-05-03 23:52:08 +03:00
2019-04-16 20:25:20 +02:00
exit;
}
2019-05-03 23:52:08 +03:00
else
2019-04-16 20:25:20 +02:00
{
2019-05-08 23:28:18 +02:00
kleeja_admin_err(sprintf($lang['EXTRACT_ZIP_FAILED'], KLEEJA_PLUGINS_FOLDER));
2019-04-16 20:25:20 +02:00
}
}
}
2019-04-16 22:54:33 +03:00
else
2019-04-16 20:25:20 +02:00
{
2019-04-19 23:08:22 +03:00
kleeja_admin_err($lang['PLUGIN_FILE_NOT_FOUND']);
2019-04-16 20:25:20 +02:00
}
}
2019-05-03 23:52:08 +03:00
else
2019-04-16 20:25:20 +02:00
{
2019-04-19 23:08:22 +03:00
kleeja_admin_err($lang['PLUGINS_SERVER_ERROR']);
2019-04-16 20:25:20 +02:00
}
}
2019-04-19 23:08:22 +03:00
else
2019-04-16 20:25:20 +02:00
{
2019-04-19 23:08:22 +03:00
kleeja_admin_err($lang['PLUGIN_N_CMPT_KLJ']);
2019-04-16 20:25:20 +02:00
}
}
2019-05-03 23:52:08 +03:00
else
2019-04-16 20:25:20 +02:00
{
2019-04-19 23:08:22 +03:00
kleeja_admin_err(sprintf($lang['PLUGIN_REMOTE_FILE_MISSING'], $download_plugin));
2019-04-16 20:25:20 +02:00
}
}
2019-04-16 22:54:33 +03:00
else
2019-04-16 20:25:20 +02:00
{
2019-04-19 23:08:22 +03:00
kleeja_admin_err($lang['PLUGINS_SERVER_ERROR']);
2019-04-16 20:25:20 +02:00
}
2019-04-16 22:54:33 +03:00
break;
2019-04-16 20:25:20 +02:00
2019-04-16 22:54:33 +03:00
case 'update':
2019-04-16 20:25:20 +02:00
2019-04-16 22:54:33 +03:00
$update_plugin = g('plg');
2019-04-16 20:25:20 +02:00
2019-04-16 22:54:33 +03:00
$plugin_folder_name = PATH . KLEEJA_PLUGINS_FOLDER . '/' . $update_plugin;
2019-04-16 20:25:20 +02:00
2019-05-03 23:52:08 +03:00
if (is_dir($plugin_folder_name))
2019-04-16 22:54:33 +03:00
{
2019-05-05 20:12:32 +03:00
kleeja_unlink($plugin_folder_name);
2019-04-16 22:54:33 +03:00
}
2019-04-16 20:25:20 +02:00
2019-04-16 22:54:33 +03:00
redirect($plugin_download_link . $update_plugin . '&amp;update' );
2019-05-03 23:52:08 +03:00
2019-04-16 22:54:33 +03:00
break;
2019-04-16 20:25:20 +02:00
2018-01-09 02:09:07 +03:00
endswitch;