xref: /plugin/struct/meta/SchemaEditor.php (revision d6d97f6064c3b0f90310be8341edc9585520ee54)
1ae697e1fSAndreas Gohr<?php
2ae697e1fSAndreas Gohr
3ba766201SAndreas Gohrnamespace dokuwiki\plugin\struct\meta;
4ae697e1fSAndreas Gohr
5ae697e1fSAndreas Gohruse dokuwiki\Form\Form;
6ba766201SAndreas Gohruse dokuwiki\plugin\struct\types\Text;
7ae697e1fSAndreas Gohr
845560cc7SAndreas Gohrif (!defined('JSON_PRETTY_PRINT')) define('JSON_PRETTY_PRINT', 0); // PHP 5.3 compatibility
945560cc7SAndreas Gohr
10ae697e1fSAndreas Gohr/**
11ae697e1fSAndreas Gohr * Class SchemaEditor
12ae697e1fSAndreas Gohr *
13ae697e1fSAndreas Gohr * Provides the editing interface for a given Schema as used in the admin backend. The actual modifying of the
14ae697e1fSAndreas Gohr * schema happens in the SchemaBuilder class.
15ae697e1fSAndreas Gohr *
16ba766201SAndreas Gohr * @package dokuwiki\plugin\struct\meta
17ae697e1fSAndreas Gohr */
18*d6d97f60SAnna Dabrowskaclass SchemaEditor
19*d6d97f60SAnna Dabrowska{
20ae697e1fSAndreas Gohr    /** @var Schema the schema that is edited */
21ae697e1fSAndreas Gohr    protected $schema;
22ae697e1fSAndreas Gohr
236af24d3eSAndreas Gohr    /** @var \DokuWiki_Plugin  */
246af24d3eSAndreas Gohr    protected $hlp;
256af24d3eSAndreas Gohr
26ae697e1fSAndreas Gohr    /**
27ae697e1fSAndreas Gohr     * SchemaEditor constructor.
28ae697e1fSAndreas Gohr     * @param Schema $schema
29ae697e1fSAndreas Gohr     */
30*d6d97f60SAnna Dabrowska    public function __construct(Schema $schema)
31*d6d97f60SAnna Dabrowska    {
32ae697e1fSAndreas Gohr        $this->schema = $schema;
336af24d3eSAndreas Gohr        $this->hlp = plugin_load('helper', 'struct_config');
34ae697e1fSAndreas Gohr    }
35ae697e1fSAndreas Gohr
36ae697e1fSAndreas Gohr    /**
37ae697e1fSAndreas Gohr     * Returns the Admin Form to edit the schema
38ae697e1fSAndreas Gohr     *
39ae697e1fSAndreas Gohr     * This data is processed by the SchemaBuilder class
40ae697e1fSAndreas Gohr     *
41ae697e1fSAndreas Gohr     * @return string the HTML for the editor form
42ae697e1fSAndreas Gohr     * @see SchemaBuilder
43ae697e1fSAndreas Gohr     */
44*d6d97f60SAnna Dabrowska    public function getEditor()
45*d6d97f60SAnna Dabrowska    {
465a1eab78SAndreas Gohr        $form = new Form(array('method' => 'POST', 'id' => 'plugin__struct_editor'));
47ae697e1fSAndreas Gohr        $form->setHiddenField('do', 'admin');
48dbffe06eSAndreas Gohr        $form->setHiddenField('page', 'struct_schemas');
49ae697e1fSAndreas Gohr        $form->setHiddenField('table', $this->schema->getTable());
50ae697e1fSAndreas Gohr        $form->setHiddenField('schema[id]', $this->schema->getId());
51ae697e1fSAndreas Gohr
52ae697e1fSAndreas Gohr        $form->addHTML('<table class="inline">');
536af24d3eSAndreas Gohr        $form->addHTML("<tr>
546af24d3eSAndreas Gohr            <th>{$this->hlp->getLang('editor_sort')}</th>
556af24d3eSAndreas Gohr            <th>{$this->hlp->getLang('editor_label')}</th>
566af24d3eSAndreas Gohr            <th>{$this->hlp->getLang('editor_multi')}</th>
576af24d3eSAndreas Gohr            <th>{$this->hlp->getLang('editor_conf')}</th>
586af24d3eSAndreas Gohr            <th>{$this->hlp->getLang('editor_type')}</th>
5926147f8cSAndreas Gohr            <th>{$this->hlp->getLang('editor_enabled')}</th>
606af24d3eSAndreas Gohr        </tr>");
616af24d3eSAndreas Gohr
62ae697e1fSAndreas Gohr
637fb68f9eSAndreas Gohr        foreach ($this->schema->getColumns() as $key => $col) {
647fb68f9eSAndreas Gohr            $form->addHTML($this->adminColumn($col->getColref(), $col));
65ae697e1fSAndreas Gohr        }
66ae697e1fSAndreas Gohr
67ae697e1fSAndreas Gohr        // FIXME new one needs to be added dynamically, this is just for testing
68ae697e1fSAndreas Gohr        $form->addHTML($this->adminColumn('new1', new Column($this->schema->getMaxsort() + 10, new Text()), 'new'));
69ae697e1fSAndreas Gohr
70ae697e1fSAndreas Gohr        $form->addHTML('</table>');
71e2c90eebSAndreas Gohr
72e2c90eebSAndreas Gohr        $form->addFieldsetOpen();
73127d6bacSMichael Große        $config = json_encode($this->schema->getConfig(), JSON_PRETTY_PRINT);
74127d6bacSMichael Große        $form->addHTML('<textarea name="schema[config]" id="schemaConfig" cols="45" rows="10" class="config">' . hsc($config) . '</textarea>');
75e2c90eebSAndreas Gohr        $form->addFieldsetClose();
76e2c90eebSAndreas Gohr
77e2c90eebSAndreas Gohr
78ae697e1fSAndreas Gohr        $form->addButton('save', 'Save')->attr('type', 'submit');
79a57a64a5SAndreas Gohr        return $form->toHTML() . $this->initJSONEditor();
80a57a64a5SAndreas Gohr    }
81a57a64a5SAndreas Gohr
82a57a64a5SAndreas Gohr    /**
83a57a64a5SAndreas Gohr     * Gives the code to attach the JSON editor to the config field
84a57a64a5SAndreas Gohr     *
85a57a64a5SAndreas Gohr     * We do not use the "normal" way, because this is rarely used code and there's no need to always load it.
86a57a64a5SAndreas Gohr     * @return string
87a57a64a5SAndreas Gohr     */
88*d6d97f60SAnna Dabrowska    protected function initJSONEditor()
89*d6d97f60SAnna Dabrowska    {
90a57a64a5SAndreas Gohr        $html = '';
91a57a64a5SAndreas Gohr        $html .= '<link href="' . DOKU_BASE . 'lib/plugins/struct/jsoneditor/jsoneditor.min.css" rel="stylesheet" type="text/css">';
92a57a64a5SAndreas Gohr        $html .= '<link href="' . DOKU_BASE . 'lib/plugins/struct/jsoneditor/setup.css" rel="stylesheet" type="text/css">';
93b736b2e6SAndreas Gohr        $html .= '<script src="' . DOKU_BASE . 'lib/plugins/struct/jsoneditor/jsoneditor-minimalist.min.js" defer="defer"></script>';
94b736b2e6SAndreas Gohr        $html .= '<script src="' . DOKU_BASE . 'lib/plugins/struct/jsoneditor/setup.js" defer="defer"></script>';
95a57a64a5SAndreas Gohr        return $html;
96ae697e1fSAndreas Gohr    }
97ae697e1fSAndreas Gohr
98ae697e1fSAndreas Gohr    /**
99ae697e1fSAndreas Gohr     * Returns the HTML to edit a single column definition of the schema
100ae697e1fSAndreas Gohr     *
101ae697e1fSAndreas Gohr     * @param string $column_id
102ae697e1fSAndreas Gohr     * @param Column $col
103ae697e1fSAndreas Gohr     * @param string $key The key to use in the form
104ae697e1fSAndreas Gohr     * @return string
105ae697e1fSAndreas Gohr     * @todo this should probably be reused for adding new columns via AJAX later?
106ae697e1fSAndreas Gohr     */
107*d6d97f60SAnna Dabrowska    protected function adminColumn($column_id, Column $col, $key = 'cols')
108*d6d97f60SAnna Dabrowska    {
109ae697e1fSAndreas Gohr        $base = 'schema[' . $key . '][' . $column_id . ']'; // base name for all fields
110ae697e1fSAndreas Gohr
111fd81b928SAndreas Gohr        $class = $col->isEnabled() ? '' : 'disabled';
112ae697e1fSAndreas Gohr
113fd81b928SAndreas Gohr        $html = "<tr class=\"$class\">";
114fd81b928SAndreas Gohr
115fd81b928SAndreas Gohr        $html .= '<td class="sort">';
116ae697e1fSAndreas Gohr        $html .= '<input type="text" name="' . $base . '[sort]" value="' . hsc($col->getSort()) . '" size="3">';
117ae697e1fSAndreas Gohr        $html .= '</td>';
118ae697e1fSAndreas Gohr
119fd81b928SAndreas Gohr        $html .= '<td class="label">';
120ae697e1fSAndreas Gohr        $html .= '<input type="text" name="' . $base . '[label]" value="' . hsc($col->getType()->getLabel()) . '">';
121ae697e1fSAndreas Gohr        $html .= '</td>';
122ae697e1fSAndreas Gohr
123fd81b928SAndreas Gohr        $html .= '<td class="ismulti">';
124ae697e1fSAndreas Gohr        $checked = $col->getType()->isMulti() ? 'checked="checked"' : '';
125ae697e1fSAndreas Gohr        $html .= '<input type="checkbox" name="' . $base . '[ismulti]" value="1" ' . $checked . '>';
126ae697e1fSAndreas Gohr        $html .= '</td>';
127ae697e1fSAndreas Gohr
128fd81b928SAndreas Gohr        $html .= '<td class="config">';
129ae697e1fSAndreas Gohr        $config = json_encode($col->getType()->getConfig(), JSON_PRETTY_PRINT);
130a57a64a5SAndreas Gohr        $html .= '<textarea name="' . $base . '[config]" cols="45" rows="10" class="config">' . hsc($config) . '</textarea>';
131ae697e1fSAndreas Gohr        $html .= '</td>';
132ae697e1fSAndreas Gohr
133636c8abaSAndreas Gohr        $types = array_keys(Column::allTypes());
134fd81b928SAndreas Gohr        $html .= '<td class="class">';
135ae697e1fSAndreas Gohr        $html .= '<select name="' . $base . '[class]">';
136ae697e1fSAndreas Gohr        foreach ($types as $type) {
137ae697e1fSAndreas Gohr            $selected = ($col->getType()->getClass() == $type) ? 'selected="selected"' : '';
138ae697e1fSAndreas Gohr            $html .= '<option value="' . hsc($type) . '" ' . $selected . '>' . hsc($type) . '</option>';
139ae697e1fSAndreas Gohr        }
140ae697e1fSAndreas Gohr        $html .= '</select>';
141ae697e1fSAndreas Gohr        $html .= '</td>';
142ae697e1fSAndreas Gohr
14326147f8cSAndreas Gohr
144fd81b928SAndreas Gohr        $html .= '<td class="isenabled">';
14526147f8cSAndreas Gohr        $checked = $col->isEnabled() ? 'checked="checked"' : '';
14626147f8cSAndreas Gohr        $html .= '<input type="checkbox" name="' . $base . '[isenabled]" value="1" ' . $checked . '>';
14726147f8cSAndreas Gohr        $html .= '</td>';
14826147f8cSAndreas Gohr
149ae697e1fSAndreas Gohr        $html .= '</tr>';
150ae697e1fSAndreas Gohr
151ae697e1fSAndreas Gohr        return $html;
152ae697e1fSAndreas Gohr    }
153ae697e1fSAndreas Gohr}
154