3 * StatusNet, the distributed open-source microblogging tool
5 * Snapshots administration panel
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Zach Copley <zach@status.net>
25 * @copyright 2010 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET')) {
39 * @author Zach Copley <zach@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41 * @link http://status.net/
44 class SnapshotadminpanelAction extends AdminPanelAction
47 * Returns the page title
49 * @return string page title
54 return _('Snapshots');
58 * Instructions for using this form.
60 * @return string instructions
63 function getInstructions()
65 return _('Manage snapshot configuration');
69 * Show the snapshots admin panel form
76 $form = new SnapshotAdminPanelForm($this);
82 * Save settings from the form
87 function saveSettings()
89 static $settings = array(
90 'snapshot' => array('run', 'reporturl', 'frequency')
95 foreach ($settings as $section => $parts) {
96 foreach ($parts as $setting) {
97 $values[$section][$setting] = $this->trimmed($setting);
101 // This throws an exception on validation errors
103 $this->validate($values);
105 // assert(all values are valid);
107 $config = new Config();
109 $config->query('BEGIN');
111 foreach ($settings as $section => $parts) {
112 foreach ($parts as $setting) {
113 Config::save($section, $setting, $values[$section][$setting]);
117 $config->query('COMMIT');
122 function validate(&$values)
124 // Validate snapshot run value
126 if (!in_array($values['snapshot']['run'], array('web', 'cron', 'never'))) {
127 $this->clientError(_('Invalid snapshot run value.'));
130 // Validate snapshot frequency value
132 if (!Validate::number($values['snapshot']['frequency'])) {
133 $this->clientError(_('Snapshot frequency must be a number.'));
136 // Validate report URL
138 if (!is_null($values['snapshot']['reporturl'])
140 $values['snapshot']['reporturl'],
141 array('allowed_schemes' => array('http', 'https')
144 $this->clientError(_('Invalid snapshot report URL.'));
149 class SnapshotAdminPanelForm extends AdminForm
154 * @return int ID of the form
159 return 'form_snapshot_admin_panel';
165 * @return string class of the form
170 return 'form_settings';
176 * @return string URL of the action
181 return common_local_url('snapshotadminpanel');
185 * Data elements of the form
192 $this->out->elementStart(
194 array('id' => 'settings_admin_snapshots')
196 $this->out->element('legend', null, _('Snapshots'));
197 $this->out->elementStart('ul', 'form_data');
200 'web' => _('Randomly during web hit'),
201 'cron' => _('In a scheduled job'),
202 'never' => _('Never')
204 $this->out->dropdown(
208 _('When to send statistical data to status.net servers'),
210 $this->value('run', 'snapshot')
218 _('Snapshots will be sent once every N web hits'),
227 _('Snapshots will be sent to this URL'),
231 $this->out->elementEnd('ul');
232 $this->out->elementEnd('fieldset');
241 function formActions()
248 _('Save snapshot settings')