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

Last change on this file since 887 was 887, checked in by chronos, 4 years ago
  • Added: Static types added to almost all classes, methods and function. Supported by PHP 7.4.
  • Fixed: Various found code issues.
File size: 7.1 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 DoInstall(): void
131 {
132 $this->Database->query('CREATE TABLE IF NOT EXISTS `NotifyCategory` (
133 `Id` int(11) NOT NULL AUTO_INCREMENT,
134 `Name` varchar(255) NOT NULL,
135 `SysName` varchar(255) NOT NULL,
136 PRIMARY KEY (`Id`)
137 ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;');
138
139 $this->Database->query("INSERT INTO `NotifyCategory` (`Id`, `Name`, `SysName`) VALUES
140 (1, 'Dostupnost zařízení (ping)', 'NetworkReachability'),
141 (2, 'Dostupnost URL', 'URL'),
142 (3, 'Minimální úroveň signálu', 'WirelessSignal'),
143 (4, 'Dostupnost síťového portu', 'NetworkPort'),
144 (5, 'Minimální odezva', 'NetworkLatency'),
145 (6, 'Minimální propustnost', 'NetworkBandwidth');");
146
147 $this->Database->query('
148 CREATE TABLE IF NOT EXISTS `NotifyUser` (
149 `Id` int(11) NOT NULL AUTO_INCREMENT,
150 `User` int(11) NOT NULL,
151 `Contact` int(11) NOT NULL,
152 `Period` int(11) NOT NULL,
153 PRIMARY KEY (`Id`),
154 KEY `User` (`User`),
155 KEY `Contact` (`Contact`)
156 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;');
157 $this->Database->query('ALTER TABLE `NotifyUser`
158ADD CONSTRAINT `NotifyUser_ibfk_1` FOREIGN KEY (`User`) REFERENCES `User` (`Id`),
159ADD CONSTRAINT `NotifyUser_ibfk_2` FOREIGN KEY (`Contact`) REFERENCES `Contact` (`Id`);');
160 }
161
162 function DoUninstall(): void
163 {
164 $this->Database->query('DROP TABLE `NotifyUser`');
165 $this->Database->query('DROP TABLE `NotifyCategory`');
166 }
167
168 function ShowLogRSS(): string
169 {
170 $this->ClearPage = true;
171 $this->FormatHTML = false;
172 Header('Content-Type: text/xml');
173 $Count = 100;
174
175 $Output = '';
176 $Items = array();
177 $sql = 'SELECT Title,Content, UNIX_TIMESTAMP(`Time`) AS `Time` FROM `NotifyLog`'.
178 ' ORDER BY `Time` DESC LIMIT '.$Count;
179 $DbResult = $this->System->Database->query($sql);
180 while ($Line = $DbResult->fetch_assoc())
181 {
182 $Items[] = array
183 (
184 'Title' => $Line['Title'],
185 'Link' => 'http://'.$this->System->Config['Web']['Host'].$this->System->Link('/Notify.php'),
186 'Description' => $Line['Content'],
187 'Time' => $Line['Time'],
188 );
189 }
190
191 $RSS = new RSS();
192 $RSS->Title = $this->System->Config['Web']['Title'].' - Záznamy upozornění';
193 $RSS->Link = 'http://'.$this->System->Config['Web']['Host'].'/';
194 $RSS->Description = 'Záznam upozornění '.$this->System->Config['Web']['Description'];
195 $RSS->WebmasterEmail = $this->System->Config['Web']['AdminEmail'];
196 $RSS->Items = $Items;
197 return $RSS->Generate();
198 }
199
200 static function Cast(AppModule $AppModule): ModuleNotify
201 {
202 if ($AppModule instanceof ModuleNotify)
203 {
204 return $AppModule;
205 }
206 throw new Exception('Expected ModuleNotify type but got '.gettype($AppModule));
207 }
208}
Note: See TracBrowser for help on using the repository browser.