187fdbc6bSMichael Große<?php 2d6d97f60SAnna Dabrowska 387fdbc6bSMichael Große/** 487fdbc6bSMichael Große * DokuWiki Plugin struct (Admin Component) 587fdbc6bSMichael Große * 687fdbc6bSMichael Große * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 787fdbc6bSMichael Große * @author Andreas Gohr, Michael Große <dokuwiki@cosmocode.de> 887fdbc6bSMichael Große */ 987fdbc6bSMichael Große 1087fdbc6bSMichael Großeuse dokuwiki\Form\Form; 11f36cc634SAndreas Gohruse dokuwiki\plugin\struct\meta\CSVExporter; 121fc2361fSSzymon Olewniczakuse dokuwiki\plugin\struct\meta\CSVLookupImporter; 131fc2361fSSzymon Olewniczakuse dokuwiki\plugin\struct\meta\CSVPageImporter; 14ba766201SAndreas Gohruse dokuwiki\plugin\struct\meta\Schema; 15ba766201SAndreas Gohruse dokuwiki\plugin\struct\meta\SchemaBuilder; 16ba766201SAndreas Gohruse dokuwiki\plugin\struct\meta\SchemaEditor; 17ba766201SAndreas Gohruse dokuwiki\plugin\struct\meta\SchemaImporter; 18ba766201SAndreas Gohruse dokuwiki\plugin\struct\meta\StructException; 1987fdbc6bSMichael Große 20d6d97f60SAnna Dabrowskaclass admin_plugin_struct_schemas extends DokuWiki_Admin_Plugin 21d6d97f60SAnna Dabrowska{ 2287fdbc6bSMichael Große 2387fdbc6bSMichael Große /** 2487fdbc6bSMichael Große * @return int sort number in admin menu 2587fdbc6bSMichael Große */ 26d6d97f60SAnna Dabrowska public function getMenuSort() 27d6d97f60SAnna Dabrowska { 2887fdbc6bSMichael Große return 500; 2987fdbc6bSMichael Große } 3087fdbc6bSMichael Große 3187fdbc6bSMichael Große /** 3287fdbc6bSMichael Große * @return bool true if only access for superuser, false is for superusers and moderators 3387fdbc6bSMichael Große */ 34d6d97f60SAnna Dabrowska public function forAdminOnly() 35d6d97f60SAnna Dabrowska { 364d220607SAndreas Gohr return false; 3787fdbc6bSMichael Große } 3887fdbc6bSMichael Große 3987fdbc6bSMichael Große /** 4087fdbc6bSMichael Große * Should carry out any processing required by the plugin. 4187fdbc6bSMichael Große */ 42d6d97f60SAnna Dabrowska public function handle() 43d6d97f60SAnna Dabrowska { 4487fdbc6bSMichael Große global $INPUT; 45d5a1a6dcSAndreas Gohr global $ID; 46e33460e2SMichael Grosse global $config_cascade; 47e33460e2SMichael Grosse $config_file_path = end($config_cascade['main']['local']); 4887fdbc6bSMichael Große 498ddf87afSAndreas Gohr // form submit 5087fdbc6bSMichael Große $table = Schema::cleanTableName($INPUT->str('table')); 5187fdbc6bSMichael Große if ($table && $INPUT->bool('save') && checkSecurityToken()) { 52d5a1a6dcSAndreas Gohr $builder = new SchemaBuilder($table, $INPUT->arr('schema')); 5387fdbc6bSMichael Große if (!$builder->build()) { 5487fdbc6bSMichael Große msg('something went wrong while saving', -1); 5587fdbc6bSMichael Große } 56ae5c46faSAndreas Gohr touch(action_plugin_struct_cache::getSchemaRefreshFile()); 5787fdbc6bSMichael Große } 588ddf87afSAndreas Gohr // export 59d486d6d7SAndreas Gohr if ($table && $INPUT->bool('export')) { 60d5a1a6dcSAndreas Gohr $builder = new Schema($table); 61d486d6d7SAndreas Gohr header('Content-Type: application/json'); 62d486d6d7SAndreas Gohr header("Content-Disposition: attachment; filename=$table.struct.json"); 63d486d6d7SAndreas Gohr echo $builder->toJSON(); 64d486d6d7SAndreas Gohr exit; 65d486d6d7SAndreas Gohr } 668ddf87afSAndreas Gohr // import 678ddf87afSAndreas Gohr if ($table && $INPUT->bool('import')) { 688ddf87afSAndreas Gohr if (isset($_FILES['schemafile']['tmp_name'])) { 698ddf87afSAndreas Gohr $json = io_readFile($_FILES['schemafile']['tmp_name'], false); 708ddf87afSAndreas Gohr if (!$json) { 718ddf87afSAndreas Gohr msg('Something went wrong with the upload', -1); 728ddf87afSAndreas Gohr } else { 730845722bSAndreas Gohr $builder = new SchemaImporter($table, $json, $INPUT->bool('lookup')); 748ddf87afSAndreas Gohr if (!$builder->build()) { 758ddf87afSAndreas Gohr msg('something went wrong while saving', -1); 768ddf87afSAndreas Gohr } 77ae5c46faSAndreas Gohr touch(action_plugin_struct_cache::getSchemaRefreshFile()); 788ddf87afSAndreas Gohr } 798ddf87afSAndreas Gohr } 808ddf87afSAndreas Gohr } 81a0b3799eSAndreas Gohr 82a0b3799eSAndreas Gohr // import CSV 83a0b3799eSAndreas Gohr if ($table && $INPUT->bool('importcsv')) { 84a0b3799eSAndreas Gohr if (isset($_FILES['csvfile']['tmp_name'])) { 85a0b3799eSAndreas Gohr try { 861fc2361fSSzymon Olewniczak if ($INPUT->bool('lookup')) { 871fc2361fSSzymon Olewniczak $csvImporter = new CSVLookupImporter($table, $_FILES['csvfile']['tmp_name']); 881fc2361fSSzymon Olewniczak } else { 891fc2361fSSzymon Olewniczak $csvImporter = new CSVPageImporter($table, $_FILES['csvfile']['tmp_name']); 901fc2361fSSzymon Olewniczak } 911fc2361fSSzymon Olewniczak $csvImporter->import(); 921fc2361fSSzymon Olewniczak 936d2df532SAndreas Gohr msg($this->getLang('admin_csvdone'), 1); 94a0b3799eSAndreas Gohr } catch (StructException $e) { 95a0b3799eSAndreas Gohr msg(hsc($e->getMessage()), -1); 96a0b3799eSAndreas Gohr } 97a0b3799eSAndreas Gohr } 98a0b3799eSAndreas Gohr } 99a0b3799eSAndreas Gohr 100f36cc634SAndreas Gohr // export CSV 101f36cc634SAndreas Gohr if ($table && $INPUT->bool('exportcsv')) { 102f36cc634SAndreas Gohr header('Content-Type: text/csv'); 103f36cc634SAndreas Gohr header('Content-Disposition: attachment; filename="' . $table . '.csv";'); 104f36cc634SAndreas Gohr new CSVExporter($table); 105f36cc634SAndreas Gohr exit(); 106f36cc634SAndreas Gohr } 107f36cc634SAndreas Gohr 108d5a1a6dcSAndreas Gohr // delete 109d5a1a6dcSAndreas Gohr if ($table && $INPUT->bool('delete')) { 110d5a1a6dcSAndreas Gohr if ($table != $INPUT->str('confirm')) { 111d5a1a6dcSAndreas Gohr msg($this->getLang('del_fail'), -1); 112d5a1a6dcSAndreas Gohr } else { 113d5a1a6dcSAndreas Gohr try { 114d5a1a6dcSAndreas Gohr $schema = new Schema($table); 115d5a1a6dcSAndreas Gohr $schema->delete(); 116d5a1a6dcSAndreas Gohr msg($this->getLang('del_ok'), 1); 117ae5c46faSAndreas Gohr touch(action_plugin_struct_cache::getSchemaRefreshFile()); 118d5a1a6dcSAndreas Gohr send_redirect(wl($ID, array('do' => 'admin', 'page' => 'struct_schemas'), true, '&')); 119d5a1a6dcSAndreas Gohr } catch (StructException $e) { 120d5a1a6dcSAndreas Gohr msg(hsc($e->getMessage()), -1); 121d5a1a6dcSAndreas Gohr } 122d5a1a6dcSAndreas Gohr } 123d5a1a6dcSAndreas Gohr } 124d5a1a6dcSAndreas Gohr 12579c83e06SMichael Große // clear 12679c83e06SMichael Große if ($table && $INPUT->bool('clear')) { 12779c83e06SMichael Große if ($table != $INPUT->str('confirm_clear')) { 12879c83e06SMichael Große msg($this->getLang('clear_fail'), -1); 12979c83e06SMichael Große } else { 13079c83e06SMichael Große try { 13179c83e06SMichael Große $schema = new Schema($table); 13279c83e06SMichael Große $schema->clear(); 13379c83e06SMichael Große msg($this->getLang('clear_ok'), 1); 13479c83e06SMichael Große touch(action_plugin_struct_cache::getSchemaRefreshFile()); 13579c83e06SMichael Große send_redirect(wl($ID, array('do' => 'admin', 'page' => 'struct_schemas'), true, '&')); 13679c83e06SMichael Große } catch (StructException $e) { 13779c83e06SMichael Große msg(hsc($e->getMessage()), -1); 13879c83e06SMichael Große } 13979c83e06SMichael Große } 14079c83e06SMichael Große } 14187fdbc6bSMichael Große } 14287fdbc6bSMichael Große 14387fdbc6bSMichael Große /** 14487fdbc6bSMichael Große * Render HTML output, e.g. helpful text and a form 14587fdbc6bSMichael Große */ 146d6d97f60SAnna Dabrowska public function html() 147d6d97f60SAnna Dabrowska { 14887fdbc6bSMichael Große global $INPUT; 14987fdbc6bSMichael Große 15087fdbc6bSMichael Große $table = Schema::cleanTableName($INPUT->str('table')); 15187fdbc6bSMichael Große if ($table) { 1520ceefd5cSAnna Dabrowska $schema = new Schema($table, 0); 1537c080d69SAndreas Gohr 1546af24d3eSAndreas Gohr echo $this->locale_xhtml('editor_edit'); 1550ceefd5cSAnna Dabrowska echo '<h2>' . sprintf($this->getLang('edithl'), hsc($table)) . '</h2>'; 1568ddf87afSAndreas Gohr 1578ddf87afSAndreas Gohr echo '<ul class="tabs" id="plugin__struct_tabs">'; 1588ddf87afSAndreas Gohr /** @noinspection HtmlUnknownAnchorTarget */ 1598ddf87afSAndreas Gohr echo '<li class="active"><a href="#plugin__struct_editor">' . $this->getLang('tab_edit') . '</a></li>'; 1608ddf87afSAndreas Gohr /** @noinspection HtmlUnknownAnchorTarget */ 1618ddf87afSAndreas Gohr echo '<li><a href="#plugin__struct_json">' . $this->getLang('tab_export') . '</a></li>'; 162d5a1a6dcSAndreas Gohr /** @noinspection HtmlUnknownAnchorTarget */ 163d5a1a6dcSAndreas Gohr echo '<li><a href="#plugin__struct_delete">' . $this->getLang('tab_delete') . '</a></li>'; 1648ddf87afSAndreas Gohr echo '</ul>'; 1658ddf87afSAndreas Gohr echo '<div class="panelHeader"></div>'; 1668ddf87afSAndreas Gohr 1677c080d69SAndreas Gohr $editor = new SchemaEditor($schema); 16887fdbc6bSMichael Große echo $editor->getEditor(); 169*748e747fSAnna Dabrowska echo $this->htmlJson($schema); 170*748e747fSAnna Dabrowska echo $this->htmlDelete($schema); 17187fdbc6bSMichael Große } else { 1726af24d3eSAndreas Gohr echo $this->locale_xhtml('editor_intro'); 173*748e747fSAnna Dabrowska echo $this->htmlNewschema(); 17487fdbc6bSMichael Große } 17587fdbc6bSMichael Große } 17687fdbc6bSMichael Große 17787fdbc6bSMichael Große /** 1788ddf87afSAndreas Gohr * Form for handling import/export from/to JSON 1790845722bSAndreas Gohr * 1800845722bSAndreas Gohr * @param Schema $schema 1818ddf87afSAndreas Gohr * @return string 1828ddf87afSAndreas Gohr */ 183*748e747fSAnna Dabrowska protected function htmlJson(Schema $schema) 184d6d97f60SAnna Dabrowska { 1858ddf87afSAndreas Gohr $form = new Form(array('enctype' => 'multipart/form-data', 'id' => 'plugin__struct_json')); 1868ddf87afSAndreas Gohr $form->setHiddenField('do', 'admin'); 1878ddf87afSAndreas Gohr $form->setHiddenField('page', 'struct_schemas'); 1880845722bSAndreas Gohr $form->setHiddenField('table', $schema->getTable()); 1898ddf87afSAndreas Gohr 1908ddf87afSAndreas Gohr $form->addFieldsetOpen($this->getLang('export')); 1918ddf87afSAndreas Gohr $form->addButton('export', $this->getLang('btn_export')); 1928ddf87afSAndreas Gohr $form->addFieldsetClose(); 1938ddf87afSAndreas Gohr 1948ddf87afSAndreas Gohr $form->addFieldsetOpen($this->getLang('import')); 1950bd068beSMichael Große $form->addElement(new \dokuwiki\Form\InputElement('file', 'schemafile'))->attr('accept', '.json'); 1968ddf87afSAndreas Gohr $form->addButton('import', $this->getLang('btn_import')); 1978ddf87afSAndreas Gohr $form->addHTML('<p>' . $this->getLang('import_warning') . '</p>'); 1988ddf87afSAndreas Gohr $form->addFieldsetClose(); 199a0b3799eSAndreas Gohr 2006d2df532SAndreas Gohr $form->addFieldsetOpen($this->getLang('admin_csvexport')); 201f36cc634SAndreas Gohr $form->addButton('exportcsv', $this->getLang('btn_export')); 202f36cc634SAndreas Gohr $form->addFieldsetClose(); 203f36cc634SAndreas Gohr 2046d2df532SAndreas Gohr $form->addFieldsetOpen($this->getLang('admin_csvimport')); 2050bd068beSMichael Große $form->addElement(new \dokuwiki\Form\InputElement('file', 'csvfile'))->attr('accept', '.csv'); 206a0b3799eSAndreas Gohr $form->addButton('importcsv', $this->getLang('btn_import')); 207a22f2592SMichael Große $form->addCheckbox('createPage', 'Create missing pages')->addClass('block edit'); 2086d2df532SAndreas Gohr $form->addHTML('<p><a href="https://www.dokuwiki.org/plugin:struct:csvimport">' . $this->getLang('admin_csvhelp') . '</a></p>'); 209a0b3799eSAndreas Gohr $form->addFieldsetClose(); 210a0b3799eSAndreas Gohr 2118ddf87afSAndreas Gohr return $form->toHTML(); 2128ddf87afSAndreas Gohr } 2138ddf87afSAndreas Gohr 2148ddf87afSAndreas Gohr /** 215d5a1a6dcSAndreas Gohr * Form for deleting schemas 2160845722bSAndreas Gohr * 2170845722bSAndreas Gohr * @param Schema $schema 218d5a1a6dcSAndreas Gohr * @return string 219d5a1a6dcSAndreas Gohr */ 220*748e747fSAnna Dabrowska protected function htmlDelete(Schema $schema) 221d6d97f60SAnna Dabrowska { 222d5a1a6dcSAndreas Gohr $form = new Form(array('id' => 'plugin__struct_delete')); 223d5a1a6dcSAndreas Gohr $form->setHiddenField('do', 'admin'); 224d5a1a6dcSAndreas Gohr $form->setHiddenField('page', 'struct_schemas'); 2250845722bSAndreas Gohr $form->setHiddenField('table', $schema->getTable()); 226d5a1a6dcSAndreas Gohr 22779c83e06SMichael Große $form->addFieldsetOpen($this->getLang('btn_delete')); 228d5a1a6dcSAndreas Gohr $form->addHTML($this->locale_xhtml('delete_intro')); 229d5a1a6dcSAndreas Gohr $form->addTextInput('confirm', $this->getLang('del_confirm')); 230d5a1a6dcSAndreas Gohr $form->addButton('delete', $this->getLang('btn_delete')); 231d5a1a6dcSAndreas Gohr $form->addFieldsetClose(); 23279c83e06SMichael Große 23379c83e06SMichael Große $form->addFieldsetOpen($this->getLang('btn_clear')); 23479c83e06SMichael Große $form->addHTML($this->locale_xhtml('clear_intro')); 23579c83e06SMichael Große $form->addTextInput('confirm_clear', $this->getLang('clear_confirm')); 23679c83e06SMichael Große $form->addButton('clear', $this->getLang('btn_clear')); 23779c83e06SMichael Große $form->addFieldsetClose(); 23879c83e06SMichael Große 239d5a1a6dcSAndreas Gohr return $form->toHTML(); 240d5a1a6dcSAndreas Gohr } 241d5a1a6dcSAndreas Gohr 242d5a1a6dcSAndreas Gohr /** 24387fdbc6bSMichael Große * Form to add a new schema 2448ddf87afSAndreas Gohr * 2458ddf87afSAndreas Gohr * @return string 24687fdbc6bSMichael Große */ 247*748e747fSAnna Dabrowska protected function htmlNewschema() 248d6d97f60SAnna Dabrowska { 24987fdbc6bSMichael Große $form = new Form(); 2504e427bd5SAndreas Gohr $form->addClass('struct_newschema'); 25187fdbc6bSMichael Große $form->addFieldsetOpen($this->getLang('create')); 25287fdbc6bSMichael Große $form->setHiddenField('do', 'admin'); 253dbffe06eSAndreas Gohr $form->setHiddenField('page', 'struct_schemas'); 25487fdbc6bSMichael Große $form->addTextInput('table', $this->getLang('schemaname')); 25587fdbc6bSMichael Große $form->addButton('', $this->getLang('save')); 25687fdbc6bSMichael Große $form->addHTML('<p>' . $this->getLang('createhint') . '</p>'); // FIXME is that true? we probably could 25787fdbc6bSMichael Große $form->addFieldsetClose(); 2588ddf87afSAndreas Gohr return $form->toHTML(); 25987fdbc6bSMichael Große } 26087fdbc6bSMichael Große 26187fdbc6bSMichael Große /** 26287fdbc6bSMichael Große * Adds all available schemas to the Table of Contents 26387fdbc6bSMichael Große * 26487fdbc6bSMichael Große * @return array 26587fdbc6bSMichael Große */ 266d6d97f60SAnna Dabrowska public function getTOC() 267d6d97f60SAnna Dabrowska { 26887fdbc6bSMichael Große global $ID; 26987fdbc6bSMichael Große 27087fdbc6bSMichael Große $toc = array(); 2718ddf87afSAndreas Gohr $link = wl( 272d6d97f60SAnna Dabrowska $ID, 273d6d97f60SAnna Dabrowska array( 27487fdbc6bSMichael Große 'do' => 'admin', 275dbffe06eSAndreas Gohr 'page' => 'struct_assignments' 2768ddf87afSAndreas Gohr ) 2778ddf87afSAndreas Gohr ); 278dbffe06eSAndreas Gohr $toc[] = html_mktocitem($link, $this->getLang('menu_assignments'), 0, ''); 2797c080d69SAndreas Gohr $slink = wl( 280d6d97f60SAnna Dabrowska $ID, 281d6d97f60SAnna Dabrowska array( 282dbffe06eSAndreas Gohr 'do' => 'admin', 283dbffe06eSAndreas Gohr 'page' => 'struct_schemas' 2848ddf87afSAndreas Gohr ) 2858ddf87afSAndreas Gohr ); 2867c080d69SAndreas Gohr $toc[] = html_mktocitem($slink, $this->getLang('menu'), 0, ''); 28787fdbc6bSMichael Große 2880ceefd5cSAnna Dabrowska $tables = Schema::getAll(); 2897c080d69SAndreas Gohr if ($tables) { 290097f4a53SAndreas Gohr foreach ($tables as $table) { 2918ddf87afSAndreas Gohr $link = wl( 292d6d97f60SAnna Dabrowska $ID, 293d6d97f60SAnna Dabrowska array( 29487fdbc6bSMichael Große 'do' => 'admin', 295dbffe06eSAndreas Gohr 'page' => 'struct_schemas', 296097f4a53SAndreas Gohr 'table' => $table 2978ddf87afSAndreas Gohr ) 2988ddf87afSAndreas Gohr ); 29987fdbc6bSMichael Große 3000ceefd5cSAnna Dabrowska $toc[] = html_mktocitem($link, hsc($table), 1, ''); 3017c080d69SAndreas Gohr } 3027c080d69SAndreas Gohr } 3037c080d69SAndreas Gohr 30487fdbc6bSMichael Große return $toc; 30587fdbc6bSMichael Große } 30687fdbc6bSMichael Große} 30787fdbc6bSMichael Große 30887fdbc6bSMichael Große// vim:ts=4:sw=4:et: 309