fac/_install.php

134 lines
4.0 KiB
PHP
Raw Normal View History

2021-08-20 15:44:19 +00:00
<?php
2021-09-02 19:08:55 +00:00
/**
* @brief fac, a plugin for Dotclear 2
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @author Jean-Christian Denis and Contributors
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-20 15:44:19 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
2021-08-20 16:39:12 +00:00
return null;
2021-08-20 15:44:19 +00:00
}
// Module specs
2021-08-23 20:47:08 +00:00
$mod_conf = [
[
'active',
2021-08-20 16:39:12 +00:00
'Enabled fac plugin',
false,
2022-11-20 20:13:56 +00:00
'boolean',
2021-08-23 20:47:08 +00:00
],
[
'public_tpltypes',
2021-08-20 16:39:12 +00:00
'List of templates types which used fac',
json_encode(['post', 'tag', 'archive']),
2022-11-20 20:13:56 +00:00
'string',
2021-08-23 20:47:08 +00:00
],
[
'formats',
2021-08-20 16:39:12 +00:00
'Formats of feeds contents',
json_encode([
2021-08-23 20:47:08 +00:00
uniqid() => [
2022-11-20 20:13:56 +00:00
'name' => 'default',
'dateformat' => '',
'lineslimit' => '5',
'linestitletext' => '%T',
'linestitleover' => '%D',
'linestitlelength' => '150',
'showlinesdescription' => '0',
'linesdescriptionlength' => '350',
'linesdescriptionnohtml' => '1',
'showlinescontent' => '0',
'linescontentlength' => '350',
'linescontentnohtml' => '1',
2021-08-23 20:47:08 +00:00
],
uniqid() => [
2022-11-20 20:13:56 +00:00
'name' => 'full',
'dateformat' => '',
'lineslimit' => '20',
'linestitletext' => '%T',
'linestitleover' => '%D - %E',
'linestitlelength' => '',
'showlinesdescription' => '1',
'linesdescriptionlength' => '',
'linesdescriptionnohtml' => '1',
'showlinescontent' => '1',
'linescontentlength' => '',
'linescontentnohtml' => '1',
],
2021-08-23 20:47:08 +00:00
]),
'string',
false,
2022-11-20 20:13:56 +00:00
true,
2021-08-23 20:47:08 +00:00
],
[
'defaultfeedtitle',
2021-08-20 16:39:12 +00:00
'Default title of feed',
'%T',
2022-11-20 20:13:56 +00:00
'string',
2021-08-23 20:47:08 +00:00
],
[
'showfeeddesc',
2021-08-20 16:39:12 +00:00
'Show description of feed',
1,
2022-11-20 20:13:56 +00:00
'boolean',
],
2021-08-23 20:47:08 +00:00
];
2021-08-20 15:44:19 +00:00
// Nothing to change below
2021-08-20 15:44:19 +00:00
try {
// Check module version
2022-12-10 14:22:37 +00:00
if (!dcCore::app()->newVersion(
basename(__DIR__),
2022-12-10 14:22:37 +00:00
dcCore::app()->plugins->moduleInfo(basename(__DIR__), 'version')
2022-11-20 20:13:56 +00:00
)) {
2021-08-20 16:39:12 +00:00
return null;
}
// version < 1.0 : upgrade settings id and ns and array
$current = dcCore::app()->getVersion(basename(__DIR__));
if ($current && version_compare($current, '1.0', '<')) {
$record = dcCore::app()->con->select(
'SELECT * FROM ' . dcCore::app()->prefix . dcNamespace::NS_TABLE_NAME . ' ' .
"WHERE setting_ns = 'fac' "
);
while ($record->fetch()) {
if (preg_match('/^fac_(.*?)$/', $record->setting_id, $match)) {
$cur = dcCore::app()->con->openCursor(dcCore::app()->prefix . dcNamespace::NS_TABLE_NAME);
if (in_array($record->setting_id, ['fac_public_tpltypes', 'fac_formats'])) {
$cur->setting_value = json_encode(@unserialize($record->setting_value));
}
$cur->setting_id = $match[1];
$cur->setting_ns = basename(__DIR__);
$cur->update(
"WHERE setting_id = '" . $record->setting_id . "' and setting_ns = 'fac' " .
'AND blog_id ' . (null === $record->blog_id ? 'IS NULL ' : ("= '" . dcCore::app()->con->escape($record->blog_id) . "' "))
);
}
}
}
// Set module settings
2022-12-10 14:22:37 +00:00
dcCore::app()->blog->settings->addNamespace(basename(__DIR__));
2022-11-20 20:13:56 +00:00
foreach ($mod_conf as $v) {
dcCore::app()->blog->settings->get(basename(__DIR__))->put(
2022-11-20 20:13:56 +00:00
$v[0],
$v[2],
$v[3],
$v[1],
false,
true
2021-08-20 16:39:12 +00:00
);
}
2022-11-20 20:13:56 +00:00
2021-08-20 16:39:12 +00:00
return true;
2021-08-23 20:47:08 +00:00
} catch (Exception $e) {
2022-11-20 20:13:56 +00:00
dcCore::app()->error->add($e->getMessage());
2021-08-20 16:39:12 +00:00
return false;
2022-11-20 20:13:56 +00:00
}