Changeset 589 for trunk/Common


Ignore:
Timestamp:
Nov 1, 2013, 4:22:59 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Správa instalace webu přetvořena z podadresáře admin do modulu Setup. Modul setup musí být funkční i v případě nenastavené nebo nedostupné databáze, konfiguračního souboru či neinstalované nebo neaktuální databáze.
  • Přidáno: Metody Disconnect a Connected do třídy Database.
Location:
trunk/Common
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Database.php

    r571 r589  
    2828{
    2929  var $Prefix = '';
    30   var $Functions = array('NOW()', 'CURDATE()', 'CURTIME()', 'UUID()');
    31   var $Type = 'mysql';  // mysql, pgsql
     30  var $Functions;
     31  var $Type;
    3232  var $PDO;
    3333  var $Error = '';
    3434  var $insert_id;
    3535  var $LastQuery = '';
    36   var $ShowSQLError = false;
    37   var $ShowSQLQuery = false;
     36  var $ShowSQLError;
     37  var $ShowSQLQuery;
    3838 
    3939  function __construct()
    40   {   
     40  {
     41    $this->Type = 'mysql';  // mysql, pgsql
     42    $this->ShowSQLError = false;
     43    $this->ShowSQLQuery = false;
     44    $this->Functions = array('NOW()', 'CURDATE()', 'CURTIME()', 'UUID()');
    4145  }
    4246 
     
    4650      else if($this->Type == 'pgsql') $ConnectionString = 'pgsql:dbname='.$Database.';host='.$Host;
    4751      else $ConnectionString = '';
    48     $this->PDO = new PDO($ConnectionString, $User, $Password);
     52    try {
     53      $this->PDO = new PDO($ConnectionString, $User, $Password);
     54
     55    } catch (Exception $E)
     56    {
     57      unset($this->PDO);
     58      throw new Exception($E->getMessage());
     59    }
     60  }
     61 
     62  function Disconnect()
     63  {
     64    unset($this->PDO);
     65  }
     66 
     67  function Connected()
     68  {
     69    return(isset($this->PDO));
    4970  }
    5071 
  • trunk/Common/Global.php

    r582 r589  
    99if(file_exists($ConfigFileName)) include_once($ConfigFileName);
    1010include_once(dirname(__FILE__).'/Version.php');
    11 include_once(dirname(__FILE__).'/Update.php');
    1211include_once(dirname(__FILE__).'/VarDumper.php');
    1312include_once(dirname(__FILE__).'/Base.php');
  • trunk/Common/System.php

    r583 r589  
    119119    $this->Config = &$Config;
    120120   
    121     $this->Database->Connect($this->Config['Database']['Host'], $this->Config['Database']['User'],
    122       $this->Config['Database']['Password'], $this->Config['Database']['Database']);
    123     $this->Database->Prefix = $this->Config['Database']['Prefix'];
    124     $this->Database->charset($this->Config['Database']['Charset']);
    125     $this->Database->ShowSQLError = $this->Config['Web']['ShowSQLError'];
    126     $this->Database->ShowSQLQuery = $this->Config['Web']['ShowSQLQuery'];
     121    try {
     122      $this->Database->Connect($this->Config['Database']['Host'], $this->Config['Database']['User'],
     123        $this->Config['Database']['Password'], $this->Config['Database']['Database']);
     124      $this->Database->Prefix = $this->Config['Database']['Prefix'];
     125      $this->Database->charset($this->Config['Database']['Charset']);
     126      $this->Database->ShowSQLError = $this->Config['Web']['ShowSQLError'];
     127      $this->Database->ShowSQLQuery = $this->Config['Web']['ShowSQLQuery'];
     128    } catch (Exception $E) {
     129      //$Output .= 'Nelze se připojit k databázi.';
     130    }
    127131    $this->RootURLFolder = $this->Config['Web']['RootFolder'];
    128132    $this->FormManager->Root = $this->Config['Web']['RootFolder'];
    129  
    130     // Check database persistence structure
    131     $UpdateManager = new UpdateManager();
    132     $UpdateManager->Database = &$this->Database;
    133     $UpdateManager->Revision = $DatabaseRevision;
    134     if(!$UpdateManager->IsInstalled()) die('Systém vyžaduje instalaci databáze.');
    135     if(!$UpdateManager->IsUpToDate()) die('Systém vyžaduje aktualizaci databáze.');
    136133 
    137134    $Database = $this->Database;
     
    142139    $this->ModuleManager->RegisterModule(new ModuleSetup($this));
    143140    $this->ModuleManager->Modules['Setup']->Start();
    144     $this->ModuleManager->LoadModules();
    145     $this->ModuleManager->Modules['Setup']->Start();
    146     $this->ModuleManager->StartAll();
     141    if($this->ModuleManager->Modules['Setup']->CheckState())
     142    {
     143      $this->ModuleManager->LoadModules();
     144      $this->ModuleManager->Modules['Setup']->Start();
     145      $this->ModuleManager->StartAll();
     146    }
    147147    if($this->ShowPage)
    148148    {
  • trunk/Common/Version.php

    r588 r589  
    11<?php
    22
    3 $Revision = 588; // Subversion revision
     3$Revision = 589; // Subversion revision
    44$DatabaseRevision = 584; // SQL structure revision
    55$ReleaseTime = '2013-11-01';
Note: See TracChangeset for help on using the changeset viewer.