]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/Pages/Home.php
84097554c6e19133120b19a44cccef155d66e134
[bacula/bacula] / gui / baculum / protected / Pages / Home.php
1 <?php
2 /**
3  * Bacula® - The Network Backup Solution
4  * Baculum - Bacula web interface
5  *
6  * Copyright (C) 2013-2015 Marcin Haba
7  *
8  * The main author of Baculum is Marcin Haba.
9  * The main author of Bacula is Kern Sibbald, with contributions from many
10  * others, a complete list can be found in the file AUTHORS.
11  *
12  * You may use this file and others of this release according to the
13  * license defined in the LICENSE file, which includes the Affero General
14  * Public License, v3.0 ("AGPLv3") and some additional permissions and
15  * terms pursuant to its AGPLv3 Section 7.
16  *
17  * Bacula® is a registered trademark of Kern Sibbald.
18  */
19  
20 Prado::using('System.Web.UI.ActiveControls.TActiveButton');
21 Prado::using('System.Web.UI.ActiveControls.TActivePanel');
22 Prado::using('System.Web.UI.ActiveControls.TActiveDropDownList');
23 Prado::using('System.Web.UI.ActiveControls.TActiveCheckBox');
24 Prado::using('System.Web.UI.ActiveControls.TActiveLinkButton');
25
26 class Home extends BaculumPage
27 {
28         public $jobs;
29
30         public function onInit($param) {
31                 parent::onInit($param);
32                 $isConfigExists = $this->getModule('configuration')->isApplicationConfig();
33                 if($isConfigExists === false) {
34                         $this->goToPage('ConfigurationWizard');
35                 }
36
37                 $appConfig = $this->getModule('configuration')->getApplicationConfig();
38
39                 $this->SettingsWizardBtn->Visible = $this->User->getIsAdmin();
40                 $this->MediaBtn->Visible = $this->User->getIsAdmin();
41                 $this->ClearBvfsCache->Visible = $this->User->getIsAdmin();
42                 $this->Logging->Visible = $this->User->getIsAdmin();
43
44                 if(!$this->IsPostBack && !$this->IsCallBack) {
45                         $this->Logging->Checked = $this->getModule('logging')->isDebugOn();
46                 }
47
48                 if(!$this->IsPostBack && !$this->IsCallBack) {
49                         $directors = $this->getModule('api')->get(array('directors'))->output;
50                         if(!array_key_exists('director', $_SESSION)) {
51                                 $_SESSION['director'] = $directors[0];
52                         }
53                         $this->Director->dataSource = array_combine($directors, $directors);
54                         $this->Director->SelectedValue = $_SESSION['director'];
55                         $this->Director->dataBind();
56                         $this->setJobs();
57                         $this->setClients();
58                 }
59         }
60
61         public function restore($sender, $param) {
62                 $this->goToPage('RestoreWizard');
63         }
64
65         public function configuration($sender, $param) {
66                 $this->goToPage('ConfigurationWizard');
67         }
68
69         public function director($sender, $param) {
70                 $_SESSION['director'] = $this->Director->SelectedValue;
71         }
72
73         public function setDebug($sender, $param) {
74                 if($this->User->getIsAdmin() === true) {
75                         $this->getModule('logging')->enableDebug($this->Logging->Checked);
76                 }
77         }
78
79         public function clearBvfsCache($sender, $param) {
80                 if($this->User->getIsAdmin() === true) {
81                         $this->getModule('api')->set(array('bvfs', 'clear'), array());
82                 }
83         }
84
85         public function getJobs() {
86                 return json_encode($this->jobs);
87         }
88
89         public function setJobs() {
90                 $this->jobs = $this->getModule('api')->get(array('jobs'));
91                 $jobs = array('@' => Prado::localize('select job'));
92                 foreach($this->jobs->output as $key => $job) {
93                         $jobs[$job->name] = $job->name;
94                 }
95                 $this->Jobs->dataSource = $jobs;
96                 $this->Jobs->dataBind();
97         }
98
99         public function setClients() {
100                 $clients_obj = $this->getModule('api')->get(array('clients'));
101                 $clients = array('@' => Prado::localize('select client'));
102                 foreach($clients_obj->output as $key => $client) {
103                         $clients[$client->clientid] = $client->name;
104                 }
105                 $this->Clients->dataSource = $clients;
106                 $this->Clients->dataBind();
107
108         }
109 }
110 ?>