source: trunk/Modules/Notify/Notify.php@ 893

Last change on this file since 893 was 893, checked in by chronos, 4 years ago
  • Modified: More work on modules models initialization.
File size: 6.6 KB
Line 
1<?php
2
3define('CONTACT_CATEGORY_EMAIL', 4);
4
5class ModuleNotify extends AppModule
6{
7 public array $Checks;
8
9 function __construct(System $System)
10 {
11 parent::__construct($System);
12 $this->Name = 'Notify';
13 $this->Version = '1.0';
14 $this->Creator = 'Chronos';
15 $this->License = 'GNU/GPL';
16 $this->Description = 'Send notification messages to selected users';
17 $this->Dependencies = array('User', 'RSS');
18 $this->Checks = array();
19 }
20
21 function DoStart(): void
22 {
23 $this->System->FormManager->RegisterClass('NotifyUser', array(
24 'Title' => 'Upozornění uživatelé',
25 'Table' => 'NotifyUser',
26 'Items' => array(
27 'User' => array('Type' => 'TUser', 'Caption' => 'Uživatel', 'Default' => ''),
28 'Contact' => array('Type' => 'TContact', 'Caption' => 'Kontakt', 'Default' => ''),
29 'Period' => array('Type' => 'Integer', 'Caption' => 'Interval', 'Default' => '60'),
30 ),
31 ));
32 $this->System->FormManager->RegisterClass('NotifyCategory', array(
33 'Title' => 'Kategorie upozornění',
34 'Table' => 'NotifyCategory',
35 'Items' => array(
36 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
37 'SysName' => array('Type' => 'String', 'Caption' => 'Systémové jméno', 'Default' => ''),
38 ),
39 ));
40 $this->System->RegisterCommandLine('notify', 'Perform notifications processing.', array($this, 'RunCheck'));
41 ModuleRSS::Cast($this->System->GetModule('RSS'))->RegisterRSS(array('Title' => 'Notify log',
42 'Channel' => 'notifylog', 'Callback' => array($this, 'ShowLogRSS'),
43 'Permission' => array('Module' => 'Notify', 'Operation' => 'RSS')));
44 }
45
46 function RegisterCheck(string $Name, callable $Callback): void
47 {
48 if (array_key_exists($Name, $this->Checks))
49 throw new Exception('Check function "'.$Name.'" already registered.');
50 $this->Checks[$Name] = array('Callback' => $Callback);
51 }
52
53 function UnregisterCheck(string $Name): void
54 {
55 if (!array_key_exists($Name, $this->Checks))
56 throw new Exception('Check function "'.$Name.'" not registered.');
57 unset($this->Checks[$Name]);
58 }
59
60 function Check(): string
61 {
62 $Output = '';
63 $Content = '';
64 $Title = '';
65
66 // Get output from checks
67 $DbResult2 = $this->Database->query('SELECT `Id`, `Name`, `SysName` FROM `NotifyCategory`');
68 while ($Category = $DbResult2->fetch_assoc())
69 {
70 if (array_key_exists($Category['SysName'], $this->Checks))
71 {
72 $Status = call_user_func($this->Checks[$Category['SysName']]['Callback']);
73 if ($Status['Report'] != '')
74 {
75 $Output .= 'Kategorie: '.$Category['Name'].":\n";
76 $Content .= 'Kategorie: '.$Category['Name']."<br>\n";
77 $Content .= $Status['Report'];
78 }
79 if (strlen($Title) > 0) $Title .= ', ';
80 $Title .= $Status['ShortTitle'].':'.$Status['Count'];
81 }
82 }
83
84 $Time = time();
85
86 // Send content to users
87 $DbResult = $this->Database->query('SELECT `NotifyUser`.`Id`, `NotifyUser`.`LastTime`, `User`.`Name`, `Contact`.`Value`, `Contact`.`Category` FROM `NotifyUser` '.
88 'LEFT JOIN `User` ON `User`.`Id` = `NotifyUser`.`User` '.
89 'LEFT JOIN `Contact` ON `Contact`.`Id` = `NotifyUser`.`Contact`');
90 while ($User = $DbResult->fetch_assoc())
91 {
92 $Output .= 'User '.$User['Name'].'<br/>';
93
94 $this->Database->update('NotifyUser', '`Id`='.$User['Id'], array('LastTime' => TimeToMysqlDateTime($Time)));
95
96 if (($User['Category'] == CONTACT_CATEGORY_EMAIL) and ($Content != ''))
97 {
98 $Mail = new Mail();
99 $Mail->Subject = $Title;
100 $Mail->AddTo($User['Value'], $User['Name']);
101 $Mail->AddBody(strip_tags($Content), 'text/plain');
102 $Mail->AddBody('<style>
103table { border-collapse: collapse; }
104table, th, td { border: 1px solid black; }
105td { padding: 5px; }
106 </style>'.$Content, 'text/html');
107 $Mail->Send();
108 $Output .= 'Sent email to '.$User['Value'].' ('.$User['Name'].')<br/>';
109 $Output .= strip_tags(str_replace("</", " </", str_replace('<br/>', "\n", $Content)));
110 }
111 }
112
113 if ($Content != '')
114 {
115 $this->Database->insert('NotifyLog', array(
116 'Time' => TimeToMysqlDateTime($Time),
117 'Title' => $Title,
118 'Content' => $Content)
119 );
120 }
121
122 return $Output;
123 }
124
125 function RunCheck(array $Parameters): void
126 {
127 RepeatFunction(30, array($this, 'Check'));
128 }
129
130 function GetModels(): array
131 {
132 return array('NotifyCategory', 'NotifyUser');
133 }
134
135 function DoInstall(): void
136 {
137 $this->Database->query("INSERT INTO `NotifyCategory` (`Id`, `Name`, `SysName`) VALUES
138 (1, 'Dostupnost zařízení (ping)', 'NetworkReachability'),
139 (2, 'Dostupnost URL', 'URL'),
140 (3, 'Minimální úroveň signálu', 'WirelessSignal'),
141 (4, 'Dostupnost síťového portu', 'NetworkPort'),
142 (5, 'Minimální odezva', 'NetworkLatency'),
143 (6, 'Minimální propustnost', 'NetworkBandwidth');");
144 }
145
146 function ShowLogRSS(): string
147 {
148 $this->ClearPage = true;
149 $this->FormatHTML = false;
150 Header('Content-Type: text/xml');
151 $Count = 100;
152
153 $Output = '';
154 $Items = array();
155 $sql = 'SELECT Title,Content, UNIX_TIMESTAMP(`Time`) AS `Time` FROM `NotifyLog`'.
156 ' ORDER BY `Time` DESC LIMIT '.$Count;
157 $DbResult = $this->System->Database->query($sql);
158 while ($Line = $DbResult->fetch_assoc())
159 {
160 $Items[] = array
161 (
162 'Title' => $Line['Title'],
163 'Link' => 'http://'.$this->System->Config['Web']['Host'].$this->System->Link('/Notify.php'),
164 'Description' => $Line['Content'],
165 'Time' => $Line['Time'],
166 );
167 }
168
169 $RSS = new RSS();
170 $RSS->Title = $this->System->Config['Web']['Title'].' - Záznamy upozornění';
171 $RSS->Link = 'http://'.$this->System->Config['Web']['Host'].'/';
172 $RSS->Description = 'Záznam upozornění '.$this->System->Config['Web']['Description'];
173 $RSS->WebmasterEmail = $this->System->Config['Web']['AdminEmail'];
174 $RSS->Items = $Items;
175 return $RSS->Generate();
176 }
177
178 static function Cast(AppModule $AppModule): ModuleNotify
179 {
180 if ($AppModule instanceof ModuleNotify)
181 {
182 return $AppModule;
183 }
184 throw new Exception('Expected ModuleNotify type but got '.gettype($AppModule));
185 }
186}
187
188class NotifyCategory extends Model
189{
190 static function GetDesc(): ModelDesc
191 {
192 $Desc = new ModelDesc('NotifyCategory');
193 $Desc->AddString('Name');
194 $Desc->AddString('SysName');
195 return $Desc;
196 }
197}
198
199class NotifyUser extends Model
200{
201 static function GetDesc(): ModelDesc
202 {
203 $Desc = new ModelDesc('NotifyUser');
204 $Desc->AddReference('User', 'User');
205 $Desc->AddReference('Contact', 'Contact');
206 $Desc->AddInteger('Period');
207 return $Desc;
208 }
209}
Note: See TracBrowser for help on using the repository browser.