1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
<?php
use dokuwiki\Extension\AdminPlugin;
/**
* Popularity Feedback Plugin
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Andreas Gohr <andi@splitbrain.org>
*/
class admin_plugin_popularity extends AdminPlugin
{
/** @var helper_plugin_popularity */
protected $helper;
protected $sentStatus;
/**
* admin_plugin_popularity constructor.
*/
public function __construct()
{
$this->helper = $this->loadHelper('popularity', false);
}
/**
* return prompt for admin menu
* @param $language
* @return string
*/
public function getMenuText($language)
{
return $this->getLang('name');
}
/**
* return sort order for position in admin menu
*/
public function getMenuSort()
{
return 2000;
}
/**
* Accessible for managers
*/
public function forAdminOnly()
{
return false;
}
/**
* handle user request
*/
public function handle()
{
global $INPUT;
//Send the data
if ($INPUT->has('data')) {
$this->sentStatus = $this->helper->sendData($INPUT->str('data'));
if ($this->sentStatus === '') {
//Update the last time we sent the data
touch($this->helper->popularityLastSubmitFile);
}
//Deal with the autosubmit option
$this->enableAutosubmit($INPUT->has('autosubmit'));
}
}
/**
* Enable or disable autosubmit
* @param bool $enable If TRUE, it will enable autosubmit. Else, it will disable it.
*/
protected function enableAutosubmit($enable)
{
if ($enable) {
io_saveFile($this->helper->autosubmitFile, ' ');
} else {
@unlink($this->helper->autosubmitFile);
}
}
/**
* Output HTML form
*/
public function html()
{
global $INPUT;
if (! $INPUT->has('data')) {
echo $this->locale_xhtml('intro');
//If there was an error the last time we tried to autosubmit, warn the user
if ($this->helper->isAutoSubmitEnabled()) {
if (file_exists($this->helper->autosubmitErrorFile)) {
echo $this->getLang('autosubmitError');
echo io_readFile($this->helper->autosubmitErrorFile);
}
}
flush();
echo $this->buildForm('server');
//Print the last time the data was sent
$lastSent = $this->helper->lastSentTime();
if ($lastSent !== 0) {
echo $this->getLang('lastSent') . ' ' . datetime_h($lastSent);
}
} elseif ($this->sentStatus === '') {
//If we successfully send the data
echo $this->locale_xhtml('submitted');
} else {
//If we failed to submit the data, try directly with the browser
echo $this->getLang('submissionFailed') . $this->sentStatus . '<br />';
echo $this->getLang('submitDirectly');
echo $this->buildForm('browser', $INPUT->str('data'));
}
}
/**
* Build the form which presents the data to be sent
* @param string $submissionMode How is the data supposed to be sent? (may be: 'browser' or 'server')
* @param string $data The popularity data, if it has already been computed. NULL otherwise.
* @return string The form, as an html string
*/
protected function buildForm($submissionMode, $data = null)
{
$url = ($submissionMode === 'browser' ? $this->helper->submitUrl : script());
if (is_null($data)) {
$data = $this->helper->gatherAsString();
}
$form = '<form method="post" action="' . $url . '" accept-charset="utf-8">'
. '<fieldset style="width: 60%;">'
. '<textarea class="edit" rows="10" cols="80" readonly="readonly" name="data">'
. $data
. '</textarea><br />';
//If we submit via the server, we give the opportunity to suscribe to the autosubmission option
if ($submissionMode !== 'browser') {
$form .= '<label for="autosubmit">'
. '<input type="checkbox" name="autosubmit" id="autosubmit" '
. ($this->helper->isAutosubmitEnabled() ? 'checked' : '' )
. '/> ' . $this->getLang('autosubmit') . '<br />'
. '</label>'
. '<input type="hidden" name="do" value="admin" />'
. '<input type="hidden" name="page" value="popularity" />';
}
$form .= '<button type="submit">' . $this->getLang('submit') . '</button>'
. '</fieldset>'
. '</form>';
return $form;
}
}
|