licenseBootstrap/_install.php

122 lines
3.0 KiB
PHP
Raw Normal View History

2021-08-17 21:25:45 +00:00
<?php
2021-09-02 19:43:35 +00:00
/**
* @brief licenseBootstrap, a plugin for Dotclear 2
2022-11-20 21:36:32 +00:00
*
2021-09-02 19:43:35 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-20 21:36:32 +00:00
*
2021-09-02 19:43:35 +00:00
* @author Jean-Christian Denis
2022-11-20 21:36:32 +00:00
*
2021-09-02 19:43:35 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-17 21:25:45 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
2021-08-17 21:46:17 +00:00
return null;
2021-08-17 21:25:45 +00:00
}
# -- Module specs --
2022-11-20 21:36:32 +00:00
$mod_conf = [
[
2021-08-17 21:46:17 +00:00
'overwrite',
'Overwrite existing licence',
false,
2022-11-20 21:36:32 +00:00
'boolean',
],
[
2021-08-17 21:46:17 +00:00
'write_full',
'Add complete licence file',
true,
2022-11-20 21:36:32 +00:00
'boolean',
],
[
2021-08-17 21:46:17 +00:00
'write_php',
'Write license into php files',
true,
2022-11-20 21:36:32 +00:00
'boolean',
],
[
2021-08-17 21:46:17 +00:00
'write_js',
'Write license into js files',
false,
2022-11-20 21:36:32 +00:00
'boolean',
],
[
2021-08-17 21:46:17 +00:00
'exclude_locales',
'Exclude locales from license',
true,
2022-11-20 21:36:32 +00:00
'boolean',
],
[
2021-08-17 21:46:17 +00:00
'license_name',
'License short name',
'gpl2',
2022-11-20 21:36:32 +00:00
'string',
],
[
2021-08-17 21:46:17 +00:00
'license_head',
'File header licence text',
licenseBootstrap::encode(
licenseBootstrap::getHead('gpl2')
),
2022-11-20 21:36:32 +00:00
'string',
],
[
2021-08-17 21:46:17 +00:00
'behavior_packman',
'Add LicenceBootstrap to plugin pacKman',
false,
2022-11-20 21:36:32 +00:00
'boolean',
],
];
2021-08-17 21:25:45 +00:00
# -- Nothing to change below --
try {
2021-08-17 21:46:17 +00:00
# Check module version
2022-12-10 14:36:31 +00:00
if (!dcCore::app()->newVersion(
2022-12-22 21:59:31 +00:00
basename(__DIR__),
2022-12-10 14:36:31 +00:00
dcCore::app()->plugins->moduleInfo(basename(__DIR__), 'version')
2021-08-17 21:46:17 +00:00
)) {
return null;
}
2021-08-17 21:25:45 +00:00
2022-12-22 21:45:38 +00:00
// version < 2022.12.22 : upgrade settings ns and array
$current = dcCore::app()->getVersion(basename(__DIR__));
if ($current && version_compare($current, '2022.12.22', '<')) {
$record = dcCore::app()->con->select(
'SELECT * FROM ' . dcCore::app()->prefix . dcNamespace::NS_TABLE_NAME . ' ' .
"WHERE setting_ns = 'licenseBootstrap' "
);
$cur = dcCore::app()->con->openCursor(dcCore::app()->prefix . dcNamespace::NS_TABLE_NAME);
while ($record->fetch()) {
if (in_array($record->setting_id, ['license_head'])) {
$cur->setting_value = (string) unserialize(base64_decode($record->setting_value));
}
$cur->setting_ns = basename(__DIR__);
$cur->update(
"WHERE setting_id = '" . $record->setting_id . "' and setting_ns = 'licenseBootstrap' " .
'AND blog_id ' . (null === $record->blog_id ? 'IS NULL ' : ("= '" . dcCore::app()->con->escape($record->blog_id) . "' "))
);
$cur->clean();
}
}
2021-08-17 21:46:17 +00:00
# Set module settings
2022-12-10 14:36:31 +00:00
dcCore::app()->blog->settings->addNamespace(basename(__DIR__));
2022-11-20 21:36:32 +00:00
foreach ($mod_conf as $v) {
2022-12-10 14:36:31 +00:00
dcCore::app()->blog->settings->__get(basename(__DIR__))->put(
2022-11-20 21:36:32 +00:00
$v[0],
$v[2],
$v[3],
$v[1],
false,
true
2021-08-17 21:46:17 +00:00
);
}
2021-08-17 21:25:45 +00:00
2021-08-17 21:46:17 +00:00
return true;
2022-11-20 21:36:32 +00:00
} catch (Exception $e) {
dcCore::app()->error->add($e->getMessage());
2021-08-17 21:25:45 +00:00
2021-08-17 21:46:17 +00:00
return false;
2022-11-20 21:36:32 +00:00
}