Marius Cramer
2015-08-06 37b29231e47a0c4458dc1c15d98588f16f07e1e2
commit | author | age
5de2af 1 <?php
M 2
3 /*
4 Copyright (c) 2013, Marius Cramer, pixcept KG
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without modification,
8 are permitted provided that the following conditions are met:
9
10     * Redistributions of source code must retain the above copyright notice,
11       this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright notice,
13       this list of conditions and the following disclaimer in the documentation
14       and/or other materials provided with the distribution.
15     * Neither the name of ISPConfig nor the names of its contributors
16       may be used to endorse or promote products derived from this software without
17       specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 class cronjob_monitor_mail_log extends cronjob {
b1a6a5 32
MC 33     // job schedule
34     protected $_schedule = '*/5 * * * *';
35     protected $_run_at_new = true;
36
37     private $_tools = null;
38
39     /* this function is optional if it contains no custom code */
40     public function onPrepare() {
41         global $app;
42
43         parent::onPrepare();
44     }
45
46     /* this function is optional if it contains no custom code */
47     public function onBeforeRun() {
48         global $app;
49
50         return parent::onBeforeRun();
51     }
52
53     public function onRunJob() {
54         global $app, $conf;
55
56         /* used for all monitor cronjobs */
57         $app->load('monitor_tools');
58         $this->_tools = new monitor_tools();
59         /* end global section for monitor cronjobs */
60
5de2af 61         /* the id of the server as int */
M 62         $server_id = intval($conf['server_id']);
63
64         /** The type of the data */
b1a6a5 65
MC 66
5de2af 67         $type = 'log_mail';
M 68
69         /* Get the data of the log */
70         $data = $this->_tools->_getLogData($type);
71
72         /*
73          * actually this info has no state.
74          * maybe someone knows better...???...
75          */
76         $state = 'no_state';
77
78         /*
79          * Return the Result
80          */
b1a6a5 81         $res = array();
5de2af 82         $res['server_id'] = $server_id;
M 83         $res['type'] = $type;
84         $res['data'] = $data;
85         $res['state'] = $state;
86
87         /*
88          * Insert the data into the database
89          */
90         $sql = 'REPLACE INTO monitor_data (server_id, type, created, data, state) ' .
cc7a82 91             'VALUES (?, ?, UNIX_TIMESTAMP(), ?, ?)';
MC 92         $app->dbmaster->query($sql, $res['server_id'], $res['type'], serialize($res['data']), $res['state']);
5de2af 93
M 94         /* The new data is written, now we can delete the old one */
95         $this->_tools->delOldRecords($res['type'], $res['server_id']);
96
97         /** The type of the data */
98         $type = 'log_mail_warn';
99
100         /* Get the data of the log */
101         $data = $this->_tools->_getLogData($type);
102
103         /*
104          * actually this info has no state.
105          * maybe someone knows better...???...
106          */
107         $state = 'no_state';
108
109         $res = array();
110         $res['server_id'] = $server_id;
111         $res['type'] = $type;
112         $res['data'] = $data;
113         $res['state'] = $state;
114
115         /*
116          * Insert the data into the database
117          */
118         $sql = 'REPLACE INTO monitor_data (server_id, type, created, data, state) ' .
cc7a82 119             'VALUES (?, ?, UNIX_TIMESTAMP(), ?, ?)';
MC 120         $app->dbmaster->query($sql, $res['server_id'], $res['type'], serialize($res['data']), $res['state']);
5de2af 121
M 122         /* The new data is written, now we can delete the old one */
123         $this->_tools->delOldRecords($res['type'], $res['server_id']);
124
125         /** The type of the data */
126         $type = 'log_mail_err';
127
128         /* Get the data of the log */
129         $data = $this->_tools->_getLogData($type);
130
131         /*
132          * actually this info has no state.
133          * maybe someone knows better...???...
134          */
135         $state = 'no_state';
136
137         $res = array();
138         $res['server_id'] = $server_id;
139         $res['type'] = $type;
140         $res['data'] = $data;
141         $res['state'] = $state;
142
143         /*
144          * Insert the data into the database
145          */
146         $sql = 'REPLACE INTO monitor_data (server_id, type, created, data, state) ' .
cc7a82 147             'VALUES (?, ?, UNIX_TIMESTAMP(), ?, ?)';
MC 148         $app->dbmaster->query($sql, $res['server_id'], $res['type'], serialize($res['data']), $res['state']);
5de2af 149
M 150         /* The new data is written, now we can delete the old one */
151         $this->_tools->delOldRecords($res['type'], $res['server_id']);
b1a6a5 152
MC 153         parent::onRunJob();
154     }
155
156     /* this function is optional if it contains no custom code */
157     public function onAfterRun() {
158         global $app;
159
160         parent::onAfterRun();
161     }
5de2af 162
M 163 }
164
165 ?>