]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/Class/JobManager.php
baculum: Tweak change license statements
[bacula/bacula] / gui / baculum / protected / Class / JobManager.php
1 <?php
2 /*
3  * Bacula(R) - 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 original author of Bacula is Kern Sibbald, with contributions
10  * from many 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  * This notice must be preserved when any source code is
18  * conveyed and/or propagated.
19  *
20  * Bacula(R) is a registered trademark of Kern Sibbald.
21  */
22  
23 class JobManager extends TModule {
24
25         public function getJobs($limit) {
26                 $criteria = new TActiveRecordCriteria;
27                 $order = 'JobId';
28                 $cfg = $this->Application->getModule('configuration');
29                 $appCfg = $cfg->getApplicationConfig();
30                 if($cfg->isPostgreSQLType($appCfg['db']['type'])) {
31                     $order = strtolower($order);
32                 }
33                 $criteria->OrdersBy[$order] = 'desc';
34                 if(is_int($limit) && $limit > 0) {
35                         $criteria->Limit = $limit;
36                 }
37                 return JobRecord::finder()->findAll($criteria);
38         }
39
40         public function getJobById($id) {
41                 return JobRecord::finder()->findByjobid($id);
42         }
43
44         public function getJobByName($name) {
45                 return JobRecord::finder()->findByname($name);
46         }
47
48         public function deleteJobById($id) {
49                 return JobRecord::finder()->deleteByjobid($id);
50         }
51
52         public function getRecentJobids($jobname, $clientid) {
53                 $sql = "name='$jobname' AND clientid='$clientid' AND jobstatus IN ('T', 'W') AND level IN ('F', 'I', 'D') ORDER BY endtime DESC";
54                 $finder = JobRecord::finder();
55                 $jobs = $finder->findAll($sql);
56
57                 $jobids = array();
58                 $waitForFull = false;
59                 if(!is_null($jobs)) {
60                         foreach($jobs as $job) {
61                                 if($job->level == 'F') {
62                                         $jobids[] = $job->jobid;
63                                         break;
64                                 } elseif($job->level == 'D' && $waitForFull === false) {
65                                         $jobids[] = $job->jobid;
66                                         $waitForFull = true;
67                                 } elseif($job->level == 'I' && $waitForFull === false) {
68                                         $jobids[] = $job->jobid;
69                                 }
70                         }
71                 }
72                 return $jobids;
73         }
74 }
75 ?>