summaryrefslogblamecommitdiffstats
path: root/modules/sysconfig/addconfig.inc.php
blob: daa2cd58b8295cf3a2bc3a5741af3f6b8b375a2b (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                         































                                                                                                           
                                                                                                   


































































                                                                 
                                                


                                                                                                                 

                                                                  



                                                                                              


                                                                                          

                                                                                                              
                                                                      
                 
                                                                                                                              
                                                     
                                                       





                   
                                          


                                             
                                



                                                   
                                                



                                                                         

                                                           

                                                                         
                                                                    
                                                                                               

                                                                         
                 



                                           
                                                                                                                               
                                                         



                   
<?php

/**
 * Addconfig subpage base - makes sure
 * we have the two required methods preprocess and render
 */
abstract class AddConfig_Base
{

	/**
	 * Holds the instance for the currently executing step
	 * @var \AddConfig_Base
	 */
	private static $instance = false;

	/**
	 * 
	 * @param type $step
	 * @return \AddConfig_Base
	 */
	public static function setStep($step)
	{
		if (empty($step) || !class_exists($step) || get_parent_class($step) !== 'AddConfig_Base') {
			Message::addError('invalid-action', $step);
			Util::redirect('?do=SysConfig');
		}
		self::$instance = new $step();
	}

	protected function tmError()
	{
		Message::addError('taskmanager-error');
		Util::redirect('?do=SysConfig');
	}

	protected function taskError($status)
	{
		if (isset($status['data']['error'])) {
			$error = $status['data']['error'];
		} elseif (isset($status['statusCode'])) {
			$error = $status['statusCode'];
		} else {
			$error = Dictionary::translate('lang_unknwonTaskManager'); // TODO: No text
		}
		Message::addError('task-error', $error);
		Util::redirect('?do=SysConfig');
	}

	/**
	 * Called before any HTML rendering happens, so you can
	 * pepare stuff, validate input, and optionally redirect
	 * early if something is wrong, or you received post
	 * data etc.
	 */
	protected function preprocessInternal()
	{
		// void
	}

	/**
	 * Do page rendering.
	 */
	protected function renderInternal()
	{
		// void
	}
	
	/**
	 * Handle ajax stuff
	 */
	protected function ajaxInternal()
	{
		// void
	}
	
	public static function preprocess()
	{
		if (self::$instance === false) {
			Util::traceError('No step instance yet');
		}
		self::$instance->preprocessInternal();
	}
	
	public static function render()
	{
		if (self::$instance === false) {
			Util::traceError('No step instance yet');
		}
		self::$instance->renderInternal();
	}
	
	public static function ajax()
	{
		if (self::$instance === false) {
			Util::traceError('No step instance yet');
		}
		self::$instance->ajaxInternal();
	}

}

/**
 * Start dialog for adding config. Ask for title,
 * show selection of modules.
 */
class AddConfig_Start extends AddConfig_Base
{

	protected function renderInternal()
	{
		$mods = ConfigModule::getList();
		$res = Database::simpleQuery("SELECT moduleid, title, moduletype, filepath FROM configtgz_module"
			. " ORDER BY title ASC");
		while ($row = $res->fetch(PDO::FETCH_ASSOC)) {
			if (!isset($mods[$row['moduletype']])) {
				$mods[$row['moduletype']] = array(
					'unique' => false,
					'group' => 'Undefined moduletype in addconfig.inc.php'
				);
			}
			if (!isset($mods[$row['moduletype']]['modules'])) {
				$mods[$row['moduletype']]['modules'] = array();
				$mods[$row['moduletype']]['groupid'] = $row['moduletype'];
			}
			if (empty($row['filepath']) || !file_exists($row['filepath'])) $row['missing'] = true;
			$mods[$row['moduletype']]['modules'][] = $row;
		}
		Render::addDialog(Dictionary::translate("lang_configurationCompilation"), false, 'sysconfig/cfg-start', array(
			'step' => 'AddConfig_Finish',
			'groups' => array_values($mods)
		));
	}

}

/**
 * Success dialog if adding config worked.
 */
class AddConfig_Finish extends AddConfig_Base
{
	private $config = false;
	
	protected function preprocessInternal()
	{
		$modules = Request::post('module');
		$title = Request::post('title');
		if (!is_array($modules)) {
			Message::addError('missing-file');
			Util::redirect('?do=SysConfig&action=addconfig');
		}
		if (empty($title)) {
			Message::addError('missing-title');
			Util::redirect('?do=SysConfig&action=addconfig');
		}
		$this->config = ConfigTgz::insert($title, $modules);
		if ($this->config === false || $this->config->generate(true, 10000) !== true) {
			Message::addError('unsuccessful-action');
			Util::redirect('?do=SysConfig&action=addconfig');
		}
	}

	protected function renderInternal()
	{
		Render::addDialog(Dictionary::translate('lang_configurationCompilation'), false, 'sysconfig/cfg-finish', array(
			'configid' => $this->config->id()
		));
	}
	
}