summaryrefslogtreecommitdiff
path: root/lib/plugins/config/settings/extra.class.php
blob: f6adf1c1897f31f77c282d2fb2880ccc8236925a (plain)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?php
/**
 * additional setting classes specific to these settings
 *
 * @author    Chris Smith <chris@jalakai.co.uk>
 */

if (!class_exists('setting_sepchar')) {
  class setting_sepchar extends setting_multichoice {

    function setting_sepchar($key,$param=NULL) {
        $str = '_-.';
        for ($i=0;$i<strlen($str);$i++) $this->_choices[] = $str{$i};

        // call foundation class constructor
        $this->setting($key,$param);
    }
  }
}

if (!class_exists('setting_savedir')) {
  class setting_savedir extends setting_string {

    function update($input) {
        if ($this->is_protected()) return false;

        $value = is_null($this->_local) ? $this->_default : $this->_local;
        if ($value == $input) return false;

        if (!init_path($input)) {
          $this->_error = true;
          $this->_input = $input;
          return false;
        }

        $this->_local = $input;
        return true;
    }
  }
}

if (!class_exists('setting_authtype')) {
  class setting_authtype extends setting_multichoice {

    function initialize($default,$local,$protected) {
	  global $plugin_controller;

      // retrive auth types provided by plugins
      foreach ($plugin_controller->getList('auth') as $plugin) {
      	$this->_choices[] = $plugin;
      }

      parent::initialize($default,$local,$protected);
    }

    function update($input) {
    	global $plugin_controller;

		// is an update posible?
    	$mayUpdate = parent::update($input);

    	// is it an auth plugin?
    	if (in_array($input, $plugin_controller->getList('auth'))) {
    		// reject disabled plugins
    		if ($plugin_controller->isdisabled($input)) {
	    		$this->_error = true;
	    		msg('Auth type ' . $input . ' is disabled.');
	    		return false;
    		}

    		// load the plugin
	    	$auth_plugin = $plugin_controller->load('auth', $input);

	    	// @TODO: throw an error in plugin controller instead of returning null
	    	if (is_null($auth_plugin)) {
	    		$this->_error = true;
	    		msg('Cannot load Auth Plugin "' . $input . '"');
	    		return false;
	    	}

	    	// verify proper instanciation (is this really a plugin?) @TODO use instanceof? impement interface?
	    	if (is_object($auth_plugin) && !method_exists($auth_plugin, 'getPluginName')) {
	    		$this->_error = true;
				msg('Cannot create Auth Plugin "' . $input . '"');
	    		return false;
	    	}
    	}

    	msg('Successfully changed auth system. Please re-login.');
    	auth_logoff();

    	return true;
    }
  }
}

if (!class_exists('setting_im_convert')) {
  class setting_im_convert extends setting_string {

    function update($input) {
        if ($this->is_protected()) return false;

        $input = trim($input);

        $value = is_null($this->_local) ? $this->_default : $this->_local;
        if ($value == $input) return false;

        if ($input && !@file_exists($input)) {
          $this->_error = true;
          $this->_input = $input;
          return false;
        }

        $this->_local = $input;
        return true;
    }
  }
}

if (!class_exists('setting_disableactions')) {
  class setting_disableactions extends setting_multicheckbox {

    function html(&$plugin, $echo=false) {
        global $lang;

        // make some language adjustments (there must be a better way)
        // transfer some DokuWiki language strings to the plugin
        if (!$plugin->localised) $this->setupLocale();
        $plugin->lang[$this->_key.'_revisions'] = $lang['btn_revs'];

        foreach ($this->_choices as $choice)
          if (isset($lang['btn_'.$choice])) $plugin->lang[$this->_key.'_'.$choice] = $lang['btn_'.$choice];

        return parent::html($plugin, $echo);
    }
  }
}

if (!class_exists('setting_compression')) {
  class setting_compression extends setting_multichoice {

    var $_choices = array('0');      // 0 = no compression, always supported

    function initialize($default,$local,$protected) {

      // populate _choices with the compression methods supported by this php installation
      if (function_exists('gzopen')) $this->_choices[] = 'gz';
      if (function_exists('bzopen')) $this->_choices[] = 'bz2';

      parent::initialize($default,$local,$protected);
    }
  }
}

if (!class_exists('setting_license')) {
  class setting_license extends setting_multichoice {

    var $_choices = array('');      // none choosen

    function initialize($default,$local,$protected) {
      global $license;

      foreach($license as $key => $data){
        $this->_choices[] = $key;
        $this->lang[$this->_key.'_o_'.$key] = $data['name'];
      }

      parent::initialize($default,$local,$protected);
    }
  }
}


if (!class_exists('setting_renderer')) {
  class setting_renderer extends setting_multichoice {
    var $_prompts = array();

    function initialize($default,$local,$protected) {
      $format = $this->_format;

      foreach (plugin_list('renderer') as $plugin) {
        $renderer =& plugin_load('renderer',$plugin);
        if (method_exists($renderer,'canRender') && $renderer->canRender($format)) {
          $this->_choices[] = $plugin;

          $info = $renderer->getInfo();
          $this->_prompts[$plugin] = $info['name'];
        }
      }

      parent::initialize($default,$local,$protected);
    }

    function html(&$plugin, $echo=false) {

      // make some language adjustments (there must be a better way)
      // transfer some plugin names to the config plugin
      if (!$plugin->localised) $this->setupLocale();

      foreach ($this->_choices as $choice) {
        if (!isset($plugin->lang[$this->_key.'_o_'.$choice])) {
          if (!isset($this->_prompts[$choice])) {
            $plugin->lang[$this->_key.'_o_'.$choice] = sprintf($plugin->lang['renderer__core'],$choice);
          } else {
            $plugin->lang[$this->_key.'_o_'.$choice] = sprintf($plugin->lang['renderer__plugin'],$this->_prompts[$choice]);
          }
        }
      }
      return parent::html($plugin, $echo);
    }
  }
}