ImportController.php 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <?php
  2. class ImportController
  3. {
  4. public $fail;
  5. private $dbh;
  6. private $imap;
  7. private $customers;
  8. private $version;
  9. private $currentErrorCount;
  10. public function __construct ($database, $imap)
  11. {
  12. $this->dbh = new PDO($database['connect'], $database['user'], $database['password']);
  13. $this->dbh->setAttribute(PDO::ATTR_CASE, PDO::CASE_LOWER);
  14. $this->imap = $imap;
  15. $this->loadCustomers();
  16. }
  17. public function Workflow ()
  18. {
  19. $this->connectToServer();
  20. $this->importMails();
  21. $this->closeConnection();
  22. }
  23. private function findAdditionalErrors ($fb, $whiteList)
  24. {
  25. $fb = str_replace("\r\`", "`", str_replace("\r\"", "\"", str_replace("\r\n", "", $fb)));
  26. $report = json_decode($fb, true);
  27. if (!$report) {
  28. return addslashes($fb);
  29. }
  30. if ($whiteList) {
  31. if (!isset($whiteList['Layer'])) $whiteList['Layer'] = array();
  32. if (!isset($whiteList['Report'])) $whiteList['Report'] = array();
  33. if (!isset($whiteList['User'])) $whiteList['User'] = array();
  34. }
  35. foreach ($report as $i => $log) {
  36. if (preg_match("/\.bat$/", $log['Name'])) {
  37. $report[$i]['Errors'][0] = htmlentities($report[$i]['Errors'][0]);
  38. $report[$i]['Errors'][0] = preg_replace("/!! Bitte E-Mailadresse fuer Statusbericht angeben !!/im", "! Bitte E-Mailadresse fuer Statusbericht angeben !", $report[$i]['Errors'][0]);
  39. $report[$i]['Errors'][0] = preg_replace("/!! SMTP-Konfiguration bitte anpassen !!/im", "! SMTP-Konfiguration bitte anpassen !", $report[$i]['Errors'][0]);
  40. $count = 0;
  41. $report[$i]['Errors'][0] = preg_replace("/(!![^\n]*!!)/im", "<b>$1</b>", $report[$i]['Errors'][0], -1, $count);
  42. $count2 = 0;
  43. $report[$i]['Errors'][0] = preg_replace("/\((\w{2}\d{4})\)( [^\r]*)/im", "<b><a href='http://gc-server1/wiki/$1' target='_blank'>($1)</a>$2</b>", $report[$i]['Errors'][0], -1, $count2);
  44. //die(print($log['Errors'][0]));
  45. if ($count > 0 || $count2 > 0) {
  46. $report[$i]['ErrorLevel'] = 2;
  47. for ($j = 1; $j < $count; $j++) {
  48. $report[$i]['Errors'][] = "";
  49. }
  50. $this->currentErrorCount += 1;
  51. }
  52. } else if ($whiteList && count($report[$i]['Errors']) > 0 && ($report[$i]['Type'] == 'Versand' || $report[$i]['Type'] == 'Portal')) {
  53. $report[$i]['Errors2'] = array();
  54. foreach ($report[$i]['Errors'] as $j => $e) {
  55. if (in_array($e['Layer'], $whiteList['Layer']) || in_array($e['Report'], $whiteList['Report']) || in_array($e['User'], $whiteList['User'])) {
  56. $report[$i]['Errors2'][] = $report[$i]['Errors'][$j];
  57. unset($report[$i]['Errors'][$j]);
  58. }
  59. }
  60. if (count($report[$i]['Errors']) == 0) {
  61. $report[$i]['ErrorLevel'] = 3;
  62. $this->currentErrorCount -= 1;
  63. }
  64. }
  65. }
  66. return addslashes(json_encode($report));
  67. }
  68. private function loadCustomers ()
  69. {
  70. $q = $this->dbh->query("SELECT kunde, whitelist, version FROM kunden");
  71. $customerQuery = $q->fetchAll(PDO::FETCH_ASSOC);
  72. $this->customers = array();
  73. $this->version = array();
  74. foreach ($customerQuery as $c) {
  75. $this->customers[$c['kunde']] = json_decode(stripslashes($c['whitelist']), true);
  76. $this->version[$c['kunde']] = $c['version'];
  77. }
  78. }
  79. private function connectToServer ()
  80. {
  81. $this->fail = false;
  82. $this->imap['connect'] = imap_open($this->imap['server'], $this->imap['user'], $this->imap['password']) or die("Could not open Mailbox - try again later!");
  83. $this->imap['message_count'] = imap_num_msg($this->imap['connect']);
  84. if ($this->imap['message_count'] > 40) {
  85. $this->imap['message_count'] = 40;
  86. $this->fail = true;
  87. }
  88. }
  89. private function importMails ()
  90. {
  91. for ($m = 1; $m <= $this->imap['message_count']; $m++) {
  92. $this->currentErrorCount = 0;
  93. $header = imap_headerinfo($this->imap['connect'], $m);
  94. $rec = explode(";", $header->Subject);
  95. if ($rec[0] == "=?iso-8859-1?Q?L=B3ckenotto") {
  96. $rec[0] = "Lueckenotto";
  97. }
  98. if (count($rec) < 5) continue;
  99. if (count($rec) < 6) {
  100. $rec[] = "";
  101. }
  102. $attachments = $this->getAttachments($m, @$this->customers[$rec[0]]);
  103. $rec[] = $attachments['fehlerbericht'];
  104. $rec[4] += $this->currentErrorCount;
  105. /** @noinspection SqlInsertValues */
  106. $insertQuery = "INSERT INTO status_meldung (kunde, start, ende, datum, anzahl, aufgabe, fehlerbericht) VALUES ('" . implode("','", $rec) . "')";
  107. $c = $this->dbh->query($insertQuery);
  108. if ($c) {
  109. imap_delete($this->imap['connect'], $m);
  110. } else {
  111. if (strtotime($header->MailDate) < strtotime("-5 days")) {
  112. imap_delete($this->imap['connect'], $m);
  113. }
  114. $error = $this->dbh->errorInfo();
  115. if ($error[0] != "23000") {
  116. print_r($error);
  117. }
  118. }
  119. if (!isset($this->customers[$rec[0]])) {
  120. $this->dbh->query("INSERT INTO kunden (kunde) VALUES ('{$rec[0]}')");
  121. $this->customers[$rec[0]] = array();
  122. }
  123. if (substr($rec[5], -4) == ".bat" && !isset($this->customers[$rec[0]][$rec[5]])) {
  124. $this->dbh->query("INSERT INTO kunden_aufgabe (kunde,aufgabe,start_soll,ende_soll,erster_status)
  125. VALUES ('{$rec[0]}', '{$rec[5]}', '{$rec[1]}', '{$rec[2]}', '{$rec[3]}')");
  126. $this->customers[$rec[0]][$rec[5]]['whitelist'] = false;
  127. }
  128. $ver = "";
  129. if (preg_match("/Version:\s*(\d{4}-\d{2}-\d{2})_?(\w*)?/", $attachments['fehlerbericht'], $ver) && (!isset($version[$rec[0]]) || $version[$rec[0]] != $ver[1])) {
  130. $beta = ($ver[2] == "beta") ? '1' : '0';
  131. $this->dbh->query("UPDATE kunden SET version = '{$ver[1]}', beta_version = '{$beta}' WHERE kunde = '{$rec[0]}'");
  132. }
  133. if ($attachments['info']) {
  134. $q = $this->dbh->query("SELECT * FROM kunden_config WHERE kunde = '{$rec[0]}' ORDER BY datum DESC LIMIT 1");
  135. $last = ($q && $q->rowCount() == 1) ? $q->fetch(PDO::FETCH_ASSOC) : false;
  136. if (!$last || addslashes($last['info']) != $attachments['info']) {
  137. $this->dbh->query("INSERT INTO kunden_config (kunde, datum, info) VALUES ('{$rec[0]}', '{$rec[3]}', '{$attachments['info']}')");
  138. }
  139. }
  140. if ($attachments['starter']) {
  141. $q = $this->dbh->query("SELECT * FROM kunden_gcstarter WHERE kunde = '{$rec[0]}' ORDER BY datum DESC LIMIT 1");
  142. $last = ($q && $q->rowCount() == 1) ? $q->fetch(PDO::FETCH_ASSOC) : false;
  143. if (!$last || addslashes($last['gcstarter']) != $attachments['starter']) {
  144. $this->dbh->query("INSERT INTO kunden_gcstarter (kunde, datum, gcstarter) VALUES ('{$rec[0]}', '{$rec[3]}', '{$attachments['starter']}')");
  145. }
  146. }
  147. if ($attachments['struct']) {
  148. $q = $this->dbh->query("SELECT * FROM kunden_gcstruct WHERE kunde = '{$rec[0]}' ORDER BY datum DESC LIMIT 1");
  149. $last = ($q && $q->rowCount() == 1) ? $q->fetch(PDO::FETCH_ASSOC) : false;
  150. if (!$last || addslashes($last['gcstruct']) != $attachments['struct']) {
  151. $this->dbh->query("INSERT INTO kunden_gcstruct (kunde, datum, gcstruct) VALUES ('{$rec[0]}', '{$rec[3]}', '{$attachments['struct']}')");
  152. }
  153. }
  154. }
  155. }
  156. private function closeConnection () {
  157. imap_expunge($this->imap['connect']);
  158. imap_close($this->imap['connect']);
  159. }
  160. private function getAttachments ($m, $customer = null)
  161. {
  162. $structure = imap_fetchstructure($this->imap['connect'], $m);
  163. $attachments = array();
  164. if (isset($structure->parts) && count($structure->parts)) {
  165. for ($i = 0; $i < count($structure->parts); $i++) {
  166. $attachments[$i] = array(
  167. 'is_attachment' => false,
  168. 'filename' => '',
  169. 'name' => '',
  170. 'attachment' => ''
  171. );
  172. if ($structure->parts[$i]->ifdparameters) {
  173. foreach ($structure->parts[$i]->dparameters as $object) {
  174. if (strtolower($object->attribute) == 'filename') {
  175. $attachments[$i]['is_attachment'] = true;
  176. $attachments[$i]['filename'] = $object->value;
  177. }
  178. }
  179. }
  180. if ($structure->parts[$i]->ifparameters) {
  181. foreach ($structure->parts[$i]->parameters as $object) {
  182. if (strtolower($object->attribute) == 'name') {
  183. $attachments[$i]['is_attachment'] = true;
  184. $attachments[$i]['name'] = $object->value;
  185. }
  186. }
  187. }
  188. if ($attachments[$i]['is_attachment']) {
  189. $attachments[$i]['attachment'] = imap_fetchbody($this->imap['connect'], $m, $i + 1);
  190. if ($structure->parts[$i]->encoding == 3) { // 3 = BASE64
  191. $attachments[$i]['attachment'] = base64_decode($attachments[$i]['attachment']);
  192. } elseif ($structure->parts[$i]->encoding == 4) { // 4 = QUOTED-PRINTABLE
  193. $attachments[$i]['attachment'] = quoted_printable_decode($attachments[$i]['attachment']);
  194. }
  195. }
  196. }
  197. }
  198. $result = array(
  199. 'fehlerbericht' => 0,
  200. 'info' => 0,
  201. 'starter' => 0,
  202. 'struct' => 0
  203. );
  204. $result['fehlerbericht'] = addslashes(trim(imap_fetchbody($this->imap['connect'], $m, '1')));
  205. foreach ($attachments as $key => $attachment) {
  206. if ($attachment['is_attachment']) {
  207. if ($attachment['filename'] == "info.json") {
  208. $result['info'] = addslashes($attachment['attachment']);
  209. }
  210. if ($attachment['filename'] == "gcstarter.json") {
  211. $result['starter'] = addslashes($attachment['attachment']);
  212. }
  213. if ($attachment['filename'] == "gcstruct.json") {
  214. $result['struct'] = addslashes($attachment['attachment']);
  215. }
  216. if ($attachment['filename'] == "fehlerbericht.json") {
  217. $result['fehlerbericht'] = $this->findAdditionalErrors($attachment['attachment'], $customer);
  218. }
  219. }
  220. }
  221. return $result;
  222. }
  223. }