ImportController.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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://rbs06/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 (count($rec) < 5) continue;
  96. if (count($rec) < 6) {
  97. $rec[] = "";
  98. }
  99. $attachments = $this->getAttachments($m, @$this->customers[$rec[0]]);
  100. $rec[] = $attachments['fehlerbericht'];
  101. $rec[4] += $this->currentErrorCount;
  102. /** @noinspection SqlInsertValues */
  103. $insertQuery = "INSERT INTO status_meldung (kunde, start, ende, datum, anzahl, aufgabe, fehlerbericht) VALUES ('" . implode("','", $rec) . "')";
  104. $c = $this->dbh->query($insertQuery);
  105. if ($c) {
  106. imap_delete($this->imap['connect'], $m);
  107. } else {
  108. if (strtotime($header->MailDate) < strtotime("-5 days")) {
  109. imap_delete($this->imap['connect'], $m);
  110. }
  111. print_r($this->dbh->errorInfo());
  112. }
  113. if (!isset($customers[$rec[0]])) {
  114. $this->dbh->query("INSERT INTO kunden (kunde, start_soll, ende_soll, erster_status, system) VALUES ('{$rec[0]}', '{$rec[1]}', '{$rec[2]}', '{$rec[3]}', '?')");
  115. $customers[$rec[0]] = array();
  116. }
  117. $ver = "";
  118. if (preg_match("/Version:\s*(\d{4}-\d{2}-\d{2})_?(\w*)?/", $attachments['fehlerbericht'], $ver) && (!isset($version[$rec[0]]) || $version[$rec[0]] != $ver[1])) {
  119. $beta = ($ver[2] == "beta") ? '1' : '0';
  120. $this->dbh->query("UPDATE kunden SET version = '{$ver[1]}', beta_version = '{$beta}' WHERE kunde = '{$rec[0]}'");
  121. }
  122. if ($attachments['info']) {
  123. $q = $this->dbh->query("SELECT * FROM kunden_config WHERE kunde = '{$rec[0]}' ORDER BY datum DESC LIMIT 1");
  124. $last = ($q && $q->rowCount() == 1) ? $q->fetch(PDO::FETCH_ASSOC) : false;
  125. if (!$last || addslashes($last['info']) != $attachments['info']) {
  126. $this->dbh->query("INSERT INTO kunden_config (kunde, datum, info) VALUES ('{$rec[0]}', '{$rec[3]}', '{$attachments['info']}')");
  127. }
  128. }
  129. if ($attachments['starter']) {
  130. $q = $this->dbh->query("SELECT * FROM kunden_gcstarter WHERE kunde = '{$rec[0]}' ORDER BY datum DESC LIMIT 1");
  131. $last = ($q && $q->rowCount() == 1) ? $q->fetch(PDO::FETCH_ASSOC) : false;
  132. if (!$last || addslashes($last['gcstarter']) != $attachments['starter']) {
  133. $this->dbh->query("INSERT INTO kunden_gcstarter (kunde, datum, gcstarter) VALUES ('{$rec[0]}', '{$rec[3]}', '{$attachments['starter']}')");
  134. }
  135. }
  136. if ($attachments['struct']) {
  137. $q = $this->dbh->query("SELECT * FROM kunden_gcstruct WHERE kunde = '{$rec[0]}' ORDER BY datum DESC LIMIT 1");
  138. $last = ($q && $q->rowCount() == 1) ? $q->fetch(PDO::FETCH_ASSOC) : false;
  139. if (!$last || addslashes($last['gcstruct']) != $attachments['struct']) {
  140. $this->dbh->query("INSERT INTO kunden_gcstruct (kunde, datum, gcstruct) VALUES ('{$rec[0]}', '{$rec[3]}', '{$attachments['struct']}')");
  141. }
  142. }
  143. }
  144. }
  145. private function closeConnection () {
  146. imap_expunge($this->imap['connect']);
  147. imap_close($this->imap['connect']);
  148. }
  149. private function getAttachments ($m, $customer = null)
  150. {
  151. $structure = imap_fetchstructure($this->imap['connect'], $m);
  152. $attachments = array();
  153. if (isset($structure->parts) && count($structure->parts)) {
  154. for ($i = 0; $i < count($structure->parts); $i++) {
  155. $attachments[$i] = array(
  156. 'is_attachment' => false,
  157. 'filename' => '',
  158. 'name' => '',
  159. 'attachment' => ''
  160. );
  161. if ($structure->parts[$i]->ifdparameters) {
  162. foreach ($structure->parts[$i]->dparameters as $object) {
  163. if (strtolower($object->attribute) == 'filename') {
  164. $attachments[$i]['is_attachment'] = true;
  165. $attachments[$i]['filename'] = $object->value;
  166. }
  167. }
  168. }
  169. if ($structure->parts[$i]->ifparameters) {
  170. foreach ($structure->parts[$i]->parameters as $object) {
  171. if (strtolower($object->attribute) == 'name') {
  172. $attachments[$i]['is_attachment'] = true;
  173. $attachments[$i]['name'] = $object->value;
  174. }
  175. }
  176. }
  177. if ($attachments[$i]['is_attachment']) {
  178. $attachments[$i]['attachment'] = imap_fetchbody($this->imap['connect'], $m, $i + 1);
  179. if ($structure->parts[$i]->encoding == 3) { // 3 = BASE64
  180. $attachments[$i]['attachment'] = base64_decode($attachments[$i]['attachment']);
  181. } elseif ($structure->parts[$i]->encoding == 4) { // 4 = QUOTED-PRINTABLE
  182. $attachments[$i]['attachment'] = quoted_printable_decode($attachments[$i]['attachment']);
  183. }
  184. }
  185. }
  186. }
  187. $result = array(
  188. 'fehlerbericht' => 0,
  189. 'info' => 0,
  190. 'starter' => 0,
  191. 'struct' => 0
  192. );
  193. $result['fehlerbericht'] = addslashes(trim(imap_fetchbody($this->imap['connect'], $m, '1')));
  194. foreach ($attachments as $key => $attachment) {
  195. if ($attachment['is_attachment']) {
  196. if ($attachment['filename'] == "info.json") {
  197. $result['info'] = addslashes($attachment['attachment']);
  198. }
  199. if ($attachment['filename'] == "gcstarter.json") {
  200. $result['starter'] = addslashes($attachment['attachment']);
  201. }
  202. if ($attachment['filename'] == "gcstruct.json") {
  203. $result['struct'] = addslashes($attachment['attachment']);
  204. }
  205. if ($attachment['filename'] == "fehlerbericht.json") {
  206. $result['fehlerbericht'] = $this->findAdditionalErrors($attachment['attachment'], $customer);
  207. }
  208. }
  209. }
  210. return $result;
  211. }
  212. }