You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

203 lines
6.8 KiB
PHP

<?php
# ***** BEGIN LICENSE BLOCK *****
# This file is part of YASH3, a plugin for DotClear2.
# Forked by (c) Gnieark https://blog-du-grouik.tinad.fr 2016
# licensed as GPL V2
# including minify function by tovic https://gist.github.com/tovic/d7b310dea3b33e4732c0
# no explicit license
#
# Original dev is: Yash Copyright (c) 2008 Pep and contributors. All rights
# reserved.
#
# This plugin is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This plugin is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this plugin; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# ***** END LICENSE BLOCK *****
if (!defined('DC_CONTEXT_ADMIN')) { exit; }
// Setting default parameters if missing configuration
$core->blog->settings->addNamespace('yash3');
if (is_null($core->blog->settings->yash3->yash3_active)) {
try {
// Default state is active if the comments are configured to allow wiki syntax
$core->blog->settings->yash3->put('yash3_active',false,'boolean',true);
$core->blog->settings->yash3->put('yash3_theme','Default','string',true);
$core->blog->settings->yash3->put('yash3_custom_css','','string',true);
$core->blog->triggerBlog();
http::redirect($p_url);
}
catch (Exception $e) {
$core->error->add($e->getMessage());
}
}
// Getting current parameters
$active = (boolean)$core->blog->settings->yash3->yash3_active;
$theme = (string)$core->blog->settings->yash3->yash3_theme;
$custom_css = (string)$core->blog->settings->yash3->yash3_custom_css;
if (!empty($_REQUEST['popup'])) {
$yash3_brushes = array(
'plain' => __('Plain Text'),
'applescript' => __('AppleScript'),
'as3' => __('ActionScript3'),
'bash' => __('Bash/shell'),
'cf' => __('ColdFusion'),
'csharp' => __('C#'),
'cpp' => __('C/C++'),
'css' => __('CSS'),
'delphi' => __('Delphi'),
'diff' => __('Diff/Patch'),
'erl' => __('Erlang'),
'groovy' => __('Groovy'),
'haxe' => __('Haxe'),
'js' => __('Javascript/JSON'),
'java' => __('Java'),
'jfx' => __('JavaFX'),
'pl' => __('Perl'),
'php' => __('PHP'),
'ps' => __('PowerShell'),
'python' => __('Python'),
'ruby' => __('Ruby'),
'sass' => __('SASS'),
'scala' => __('Scala'),
'sql' => __('SQL'),
'tap' => __('Tap'),
'ts' => __('TypeScript'),
'vb' => __('Visual Basic'),
'xml' => __('XML/XSLT/XHTML/HTML'),
'yaml' => __('Yaml')
);
echo
'<html>'.
'<head>'.
'<title>'.__('YASH - Syntax Selector').'</title>'.
dcPage::jsLoad(urldecode(dcPage::getPF('yash3/js/popup.js')),$core->getVersion('yash3')).
'</head>'.
'<body>'.
'<h2>'.__('YASH - Syntax Selector').'</h2>'.
'<form id="yash3-form" action="'.$p_url.'&amp;popup=1" method="get">'.
'<p><label>'.__('Select the primary syntax of your code snippet.').
form::combo('syntax',array_flip($yash3_brushes)).'</label></p>'.
'<p><a id="yash3-cancel" class="button" href="#">'.__('Cancel').'</a> - '.
'<strong><a id="yash3-ok" class="button" href="#">'.__('Ok').'</a></strong></p>'.
'</form>'.
'</body>'.
'</html>';
return;
}
// Saving new configuration
if (!empty($_POST['saveconfig'])) {
try
{
$core->blog->settings->addNameSpace('yash3');
$active = (empty($_POST['active'])) ? false : true;
$theme = (empty($_POST['theme'])) ? 'Default' : $_POST['theme'];
$custom_css = (empty($_POST['custom_css'])) ? '' : html::sanitizeURL($_POST['custom_css']);
$core->blog->settings->yash3->put('yash3_active',$active,'boolean');
$core->blog->settings->yash3->put('yash3_theme',$theme,'string');
$core->blog->settings->yash3->put('yash3_custom_css',$custom_css,'string');
//To do, créer le file minifié ici yash3/syntaxhighlighter/js/shConcatened.js
if(file_exists(dirname(__FILE__)."/syntaxhighlighter/js/shConcatened.js")){
//delete It
unlink(dirname(__FILE__)."/syntaxhighlighter/js/shConcatened.js");
}
//concat js files and minify them
include_once(dirname(__FILE__).'/inc/Minifier.php');
$fContent = Minifier::minify(
file_get_contents(dirname(__FILE__)."/syntaxhighlighter/js/shCore.js").
file_get_contents(dirname(__FILE__)."/syntaxhighlighter/js/shAutoloader.js").
"\n var yash3_path=\"".$core->blog->getPF('yash3/syntaxhighlighter/js/')."\";\n".
file_get_contents(dirname(__FILE__)."/js/public.js")
);
//write the fiule
file_put_contents(dirname(__FILE__)."/syntaxhighlighter/js/shConcatened.js",$fContent);
$core->blog->triggerBlog();
dcPage::addSuccessNotice(__('Configuration successfully updated.'));
http::redirect($p_url);
}
catch (Exception $e)
{
$core->error->add($e->getMessage());
}
}
?>
<html>
<head>
<title><?php echo __('YASH'); ?></title>
</head>
<body>
<?php
echo dcPage::breadcrumb(
array(
html::escapeHTML($core->blog->name) => '',
__('YASH') => ''
));
echo dcPage::notices();
$combo_theme = array(
__('Default') => 'Default',
__('Django') => 'Django',
__('Eclipse') => 'Eclipse',
__('Emacs') => 'Emacs',
__('Fade to gray') => 'FadeToGrey',
__('Material') => 'Material',
__('MD Ultra') => 'MDUltra',
__('Midnight') => 'Midnight',
__('RDark') => 'RDark',
__('Solarized Dark') => 'SolarizedDark',
__('Solarized Light') => 'SolarizedLight',
__('Tomorrow Night') => 'TomorrowNight'
);
?>
<div id="yash3_options">
<form method="post" action="<?php http::getSelfURI(); ?>">
<p>
<?php echo form::checkbox('active', 1, $active); ?>
<label class="classic" for="active">&nbsp;<?php echo __('Enable YASH');?></label>
</p>
<h3><?php echo __('Options'); ?></h3>
<p class="field"><label for="theme" class="classic"><?php echo __('Theme:'); ?> </label>
<?php echo form::combo('theme',$combo_theme,$theme); ?>
</p>
<p class="field">
<label for="custom_css" class="classic"><?php echo __('Use custom CSS:') ; ?> </label>
<?php echo form::field('custom_css',40,128,$custom_css); ?>
</p>
<p class="info">
<?php echo __('You can use a custom CSS by providing its location.'); ?><br />
<?php echo __('A location beginning with a / is treated as absolute, else it is treated as relative to the blog\'s current theme URL'); ?>
</p>
<p><input type="hidden" name="p" value="yash3" />
<?php echo $core->formNonce(); ?>
<input type="submit" name="saveconfig" value="<?php echo __('Save configuration'); ?>" />
</p>
</form>
</div>
</body>
</html>