src/Diplix/KMGBundle/Controller/IndexController.php line 108

Open in your IDE?
  1. <?php
  2. namespace Diplix\KMGBundle\Controller;
  3. use Diplix\KMGBundle\Entity\Accounting\CoopMember;
  4. use Diplix\KMGBundle\Entity\Accounting\Job;
  5. use Diplix\KMGBundle\Entity\Accounting\JobCalcItem;
  6. use Diplix\KMGBundle\Entity\Customer;
  7. use Diplix\KMGBundle\Entity\Dispatching\DispatchQueueItem;
  8. use Diplix\KMGBundle\Entity\Order;
  9. use Diplix\KMGBundle\Entity\Role;
  10. use Diplix\KMGBundle\Entity\User;
  11. use Diplix\KMGBundle\Helper\AesTool;
  12. use Diplix\KMGBundle\Helper\ClientConfigProvider;
  13. use Diplix\KMGBundle\PdfGeneration\OrderConfirmationPdf;
  14. use Diplix\KMGBundle\Service\Notifier;
  15. use Symfony\Component\HttpFoundation\Request;
  16. use Symfony\Component\HttpFoundation\Response;
  17. use GuzzleHttp;
  18. use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
  19. use Twig\Environment;
  20. class IndexController extends BaseController
  21. {
  22.     public function __construct(
  23.         protected ClientConfigProvider $ccp,
  24.         protected Environment $templating,
  25.         private readonly \Doctrine\Persistence\ManagerRegistry $managerRegistry
  26.     )
  27.     {
  28.     }
  29.     protected function tryRender($view$params=[])
  30.     {
  31.         if ($this->templating->getLoader()->exists($view))
  32.         {
  33.             return $this->render($view,$params);
  34.         }
  35.         return new Response('Configuration incomplete. Unable to find '$view);
  36.     }
  37.     protected function notInSync()
  38.     {
  39.         $or $this->managerRegistry->getRepository(Order::class);
  40.         $notInSync null;
  41.         if ($this->hasUserRole(Role::SUPER_ADMIN))
  42.         {
  43.             $notInSync $or->findOpenNotInSyncWithTami();
  44.         }
  45.         return $notInSync;
  46.     }
  47.     protected function lastCronRun()
  48.     {
  49.         if (! ($this->hasUserRole(Role::SUPER_ADMIN) || ($this->hasUserRole(Role::DISPO))  ))
  50.         {
  51.             return null;
  52.         }
  53.         $lastRunFile $this->getParameter('dx.temp_dir')."cron.lastrun";
  54.         if (!file_exists($lastRunFile))
  55.         {
  56.             return "(noch nie)";
  57.         }
  58.         $mt filemtime$lastRunFile);
  59.         if ( (date("U")-$mt) >  60*60*4)
  60.         {
  61.             return date("d.m.Y H:i",$mt);
  62.         }
  63.         return null;
  64.     }
  65.     protected function memberDashboad(Request $request)
  66.     {
  67.         return $this->tryRender'@DiplixKMG/'$this->getParameter('kmg.custom.pages.folder') .'/dashboard_member.html.twig' , [
  68.             "user" => $this->getCurrentUser(),
  69.             "notInSync" => $this->notInSync(),
  70.             "remoteStatusMap" => Order::$remoteStatusMap,
  71.         ] );
  72.     }
  73.     protected function customerDashboard(Request $request)
  74.     {
  75.         $userRepo $this->managerRegistry->getRepository(User::class);
  76.         $substList $userRepo->findUsersISubstitute($this->getCurrentUser());
  77.         $rateList = [];
  78.         $c $this->getCustomerContextFromSession();
  79.         if ( ($c !==null)&&($c->getShowRating()) )
  80.         {
  81.             $orderRepo $this->managerRegistry->getRepository(Order::class);
  82.             $rateList $orderRepo->findUnrated($c->getId(),null,7);
  83.         }
  84.         return $this->tryRender'@DiplixKMG/'$this->getParameter('kmg.custom.pages.folder') .'/dashboard.html.twig' , [
  85.             "user"=>$this->getCurrentUser(),
  86.             "substList"=>$substList,
  87.             "rateList"=>$rateList,
  88.             "remoteStatusMap" => Order::$remoteStatusMap,
  89.             "lastCronRun"=>$this->lastCronRun(),
  90.             "customerContext" => $this->getCustomerContextFromSession(),
  91.             "platformSetup"=>$this->ccp
  92.             ] );
  93.     }
  94.     public function indexAction(Request $request)
  95.     {
  96.         /*
  97.         $loc = $request->getSession()->get('_locale', "nope");
  98.         $this->addFlash("info","session: " .$loc);
  99.         $this->addFlash("info","req: ".$request->getLocale());
  100.         */
  101.         /*
  102.         if ($this->isGranted('IS_AUTHENTICATED_FULLY')) echo "FULLY";
  103.         if ($this->isGranted('IS_AUTHENTICATED_REMEMBERED')) echo "REMEMBERED";
  104.         */
  105.         if ($this->getCurrentUser()->getMember()!==null)
  106.         {
  107.             return $this->memberDashboad($request);
  108.         }
  109.         else
  110.         {
  111.            return $this->customerDashboard($request);
  112.         }
  113.     }
  114.     public function setupBrandingAction(Request $request,$slug)
  115.     {
  116.         $repo $this->managerRegistry->getManager()->getRepository(Customer::class);
  117.         $customer $repo->findOneBy(array("customSlug"=>$slug));
  118.         if (is_object($customer))
  119.         {
  120.             $sp $this->getSessionParameters();
  121.             $sp->customTitle $customer->getCustomTitle();
  122.             $this->saveSessionParameters();
  123.             $request->getSession()->set('_locale'$customer->getDefaultLocale());
  124.         }
  125.         return $this->redirectToRoute("sys-login");
  126.     }
  127.     protected $chkMap;
  128.     protected function fixItemJobCalcItem $it)
  129.     {
  130.         if ($it->vat == 0.19)
  131.         {
  132.             $it->vat 0.16;
  133.             $this->chkMap[]=[$it->name $it->totalNet19$it->vat];
  134.         }
  135.         else
  136.         if ($it->vat == 0.07)
  137.         {
  138.             $it->vat 0.05;
  139.             $this->chkMap[]=[$it->name $it->totalNet7$it->vat];
  140.         }
  141.     }
  142.     protected function processItems($items)
  143.     {
  144.         /** @var JobCalcItem $it */
  145.         foreach ($items as $it)
  146.         {
  147.             $this->fixItem($it);
  148.         }
  149.         return $items;
  150.     }
  151.     protected function correctItemsForVat()
  152.     {
  153.         $repo $this->managerRegistry->getRepository(Job::class);
  154.         $from = new \DateTime('2020-07-01 00:00:00');
  155.         $until = new \DateTime('2020-07-31 23:59:59');
  156.         $qb $repo->createQueryBuilder('A');
  157.         $qb->andWhere('A.orderTime >= :from')
  158.                 ->setParameter('from'$from->format('Y-m-d H:i'));
  159.         $qb->andWhere('A.orderTime <= :until')
  160.                 ->setParameter('until',$until->format('Y-m-d H:i'));
  161.         $qb->addOrderBy('A.orderTime','DESC');
  162.         $jobs $qb->getQuery()->getResult();
  163.         /** @var Job $job */
  164.         $jc 0;
  165.         $changes = [];
  166.         $txt '';
  167.         foreach ($jobs as $job)
  168.         {
  169.             $job->setMemberCalculationItems$this->processItems($job->getMemberCalculationItems()) );
  170.             $job->setCustomerCalculationItems$this->processItems($job->getCustomerCalculationItems()));
  171.             $changes[$job->getId()] = $this->chkMap;
  172.             $this->chkMap = [];
  173.             $txt.= sprintf('<h1>%s %s %s</h1>',$job->getId(),$job->getOrderTime()->format('d.m.Y'),$job->getOrderNumber());
  174.             $txt.= '<pre>'.print_r($changes[$job->getId()],true).'</pre>';
  175.             if (count(  $changes[$job->getId()]  )  > $jc++;
  176.         }
  177.         //$repo->flush();
  178.         return new Response('<html><body>'.$txt.'<br>'.(sprintf('Korrigierte Jobs: %d',$jc)).'</body></html>');
  179.     }
  180.     public function testAction(Request $request)
  181.     {
  182.         $this->ensureUserHasRole(Role::SUPER_ADMIN);
  183.         $tx 'superkalifragelistigexpialigetisch';
  184.         $k1 = (AesTool::deriveKey('wurst'));
  185.         $k2 = (AesTool::deriveKey('wurst'));
  186.         echo $k1 "<br>";
  187.         echo $k2 "<br>";
  188.         $enc AesTool::encrypt($tx,$k1);
  189.         $dec AesTool::decrypt($enc,$k2);
  190.         echo $enc."<br>";
  191.         echo $dec."<br>";
  192.         echo "....<br><br>";
  193.         $kek AesTool::randomKey();
  194.         $wrapped AesTool::wrapKey($k1,$kek);
  195.         $unwrapped AesTool::unwrapKey($wrapped,$kek);
  196.         echo $k1 "<br>";
  197.         echo $wrapped "<br>";
  198.         echo $unwrapped."<br>";
  199.         return new Response("");
  200. //
  201. //        $imap =  $this->get('secit.imap')->get('kmg_dispo');
  202. //        try {
  203. //            $isConnectable = $this->get('secit.imap')->testConnection('kmg_dispo', true);
  204. //            $info = $imap->getMailboxInfo();
  205. //            var_dump($info);
  206. //        } catch (\Exception $exception) {
  207. //            echo $exception->getMessage();
  208. //        }
  209. //        return new Response('ok');
  210. //        $mn = $this->get('diplix.mobile.notifier');
  211. //        $order = $this->getDoctrine()->getManager()->find(Order::class,176);
  212. //        $member = $this->getDoctrine()->getManager()->find(CoopMember::class,2);
  213. //
  214. //        echo "Order: ".$order->getId();
  215. //        echo "Member: ".$member->getId();
  216. //
  217. //        $it = $mn->queue(DispatchQueueItem::create($order,$member,DispatchQueueItem::ACT_TAKE_OVER_ORDER));
  218. //        $mn->dispatchSingle($it);
  219. //        return new Response('ok');
  220. //
  221. //
  222. //
  223. //
  224. //        $fcmClient = $this->get('redjan_ym_fcm.client');
  225. //        $tokens= [
  226. //            //'cJOH-6zERkg:APA91bEb9IpuMxI3Ww3PObDIWtuNbE_KgJqU6kHGRvZW59o8OG08I08lIhn2voF9wylwY8iCWy52dmEH3Q0UU8cPz0F3i5PZeQMQxbz0roizG8sOgHa18sLFcceO79FJGcRLu_vavQSj'
  227. //            //'dPJUZXXeOL4:APA91bHAYrZsOe25tSxugiY3GntwOFUgUrjUrXC-nUotHP5dWgIxXgechitFn1yiPrOuFHm3fkgYEXSLf6tv2JFuh24z3CfwMrhrglRlBaYkwptmq4pgeFoMWXGNfVctih_TJhOl-dEw'
  228. //            'c_STXPpzSsOX7tGYxMzrbL:APA91bHVP00ceDmZjUOKH08ZvV0kdLlOxVsuUV-ks35RW-3pyWZ_9FYyX7BTjP8fzu11PQsGg6bAtTIvFcqO7sLvXFTUMWrjrR2uSBirpZNY08W2OKIqRZOqBRFDpRDdS0JY5T7hfmdv'
  229. //        ];
  230. //
  231. //
  232. //
  233. //        /*
  234. //        $notification = $fcmClient->createDeviceNotification(
  235. //            sprintf('Bestellung %s',"blahblubb"),
  236. //            'Blah blubb blubber',
  237. //            $tokens
  238. //        );
  239. //        //$notification->setData([]);
  240. //        //$notification->setContentAvailable(true); // to silence the message
  241. //*/
  242. //
  243. //        $notification = $fcmClient->createDeviceNotification(
  244. //            null,null,
  245. //            $tokens
  246. //        );
  247. //        $notification->setData([
  248. //            'click_action' => 'FLUTTER_NOTIFICATION_CLICK', // has to equal intent-filter in app
  249. //            'code'=>Notifier::M_CONFIRMATION_REQUIRED,
  250. //            'message'=> sprintf('Bestellung %s wurde geändert/aktualisiert.',1234556),
  251. //            'data' => [ 'orderId'=> 164 ] ]);
  252. //        $notification->setContentAvailable(true); //
  253. //
  254. //
  255. //
  256. //
  257. //        $notification->setPriority('high');
  258. //
  259. //
  260. //
  261. //
  262. //
  263. //        $resp = $fcmClient->sendNotification($notification);
  264. //
  265. //        return new Response(print_r($resp,true));
  266.         /*
  267.          *
  268.          return $this->correctItemsForVat();
  269.             */
  270.         /*
  271.         $tempPath = $this->getParameter("dx.temp_dir");
  272.         $order = $this->getDoctrine()->getManager()->getRepository("DiplixKMGBundle:Order")->findOneBy(array("id"=>60));
  273.         $pdf = new OrderConfirmationPdf();
  274.         $pdf->renderConfirmation($order);
  275.         $pdfFile = sprintf("confirm_%s_%s.pdf",$order->getOrderId(), date("Y-m-d_H_i_s"));
  276.         $pdf->Output($tempPath.$pdfFile);
  277.         return new Response($pdfFile);
  278. */
  279. //
  280. /*        $xml = '<?xml version="1.0" encoding="utf-8" ?><ePay Result="2" TimeStamp="20180926161550" ClientTAID="0" ePayTAID="3533592" ><Display><Line>Zugriff verweigert.</Line><Line>Bitte 040 8900 5916 anrufen.</Line></Display><Print><Line>26.09.2018 16:15</Line><Line>Zugriff verweigert.</Line><Line>Bitte 040 8900 5916 anrufen.</Line><Line></Line><Line></Line></Print></ePay>';*/
  281. //        $root = simplexml_load_string($xml);
  282. //        $epa = $root->attributes(); // root element is the <ePay> element
  283. //        $display = "";
  284. //        foreach ( $root->{"Display"}->children() as $node)
  285. //        {
  286. //            $display .= $node->__toString() ."\n";
  287. //        }
  288. //        $print = "";
  289. //        foreach ( $root->{"Print"}->children() as $node)
  290. //        {
  291. //            $print .= $node->__toString() ."\n";
  292. //        }
  293. //
  294. //        var_dump($display);
  295. //        var_dump($print);
  296. //
  297. //        return new Response("");
  298.         //return $this->mapSpecialPriceList($request);
  299.          //return $this->testPdf($request);
  300.         // return $this->oneTimePriceListConversation($request);
  301.         // return $this->testGoogle($request);
  302.     }
  303.     public function switchCustomerAction(Request $request$customerId)
  304.     {
  305.         // ensure the user is allowed to switch to the selected customer
  306.         $cid = ($this->getCurrentUser()->getCustomer()!==null $this->getCurrentUser()->getCustomer()->getId() : -);
  307.         if ($cid != $customerId)
  308.         {
  309.             if (!$this->hasUserRole(Role::GLOBAL_ORDER_ADMIN))
  310.             {
  311.                 throw new AccessDeniedHttpException("You are not allowed to switch the customer context.");
  312.             }
  313.         }
  314.         $evRep $this->managerRegistry->getManager()->getRepository(Customer::class);
  315.         $cust $evRep->findOneBy(array("id"=>$customerId));
  316.         if (is_object($cust)) $this->managerRegistry->getManager()->detach($cust);
  317.         $this->getSessionParameters()->selectedCustomer $cust;
  318.         $this->saveSessionParameters();
  319.         $ref $request->headers->get("referer");
  320.         if ($request->get("referTo","")!="")
  321.         {
  322.             $ref $request->get("referTo","");
  323.         }
  324.         return $this->redirect($ref);
  325.     }
  326. }
  327. //protected function oneTimePriceListConversation(Request $request)
  328. //    {
  329. //        die("disabled");
  330. //        $repo = $this->getDoctrine()->getRepository("DiplixKMGBundle:Customer");
  331. //        $all = $repo->findAll();
  332. //        $cnt = 0;
  333. //        /** @var Customer $row */
  334. //        foreach ($all as $row)
  335. //        {
  336. //            if (is_object($row->priceList))
  337. //            {
  338. //                if ($row->getPriceLists()->count() < 1 )
  339. //                {
  340. //                    $row->getPriceLists()->add($row->priceList);
  341. //                    $cnt++;
  342. //                }
  343. //            }
  344. //        }
  345. //        $this->getDoctrine()->getManager()->flush();
  346. //        return new Response(sprintf("%d Entries converted",$cnt));
  347. //    }
  348. //
  349. //protected function testPdf(Request $request)
  350. //{
  351. //    $this->ensureUserHasRole(Role::SUPER_ADMIN);
  352. //    $tempPath = $this->getParameter("dx.temp_dir");
  353. //    $order = $this->getDoctrine()->getManager()->getRepository("DiplixKMGBundle:Order")->findOneBy(array("id"=>60));
  354. //    $pdf = new OrderConfirmationPdf();
  355. //    $pdf->renderConfirmation($order);
  356. //    $pdfFile = sprintf("confirm_%s_%s.pdf",$order->getOrderId(), date("Y-m-d_H_i_s"));
  357. //    $pdf->Output($tempPath.$pdfFile);
  358. //    return new Response($pdfFile);
  359. //}
  360. //
  361. //    protected function testGoogle(Request $request)
  362. //    {
  363. //        $client = new GuzzleHttp\Client();
  364. //        $url = "https://maps.googleapis.com/maps/api/distancematrix/json";
  365. //        $params = array(
  366. //            "key"=>$this->getParameter('google.maps.apikey'),
  367. //            "mode"=>"driving",
  368. //            "language"=>"de",
  369. //            "region"=>"de", // bias results to germany
  370. //            "units"=>"metric",
  371. //            "origins"=>"Lemaitrestr.14, Mannheim, Germany|Frankfurt",
  372. //            "destinations"=>"Frankfurt|Leharstr. 21, Bammental, Germany",
  373. //        );
  374. //
  375. //        /*
  376. //        $url = "https://maps.googleapis.com/maps/api/directions/json";
  377. //        $params = array(
  378. //            "key"=>$this->getParameter('google.maps.apikey'),
  379. //            "mode"=>"driving",
  380. //            "language"=>"de",
  381. //            "region"=>"de", // bias results to germany
  382. //            "units"=>"metric",
  383. //            "origin"=>"Lemaitrestr.14, Mannheim, Germany",
  384. //            "via"=>"Frankfurt|Offenbach",
  385. //            "destination"=>"Leharstr. 21, Bammental, Germany",
  386. //        );
  387. //            */
  388. //        //print_r($params);
  389. //
  390. //        $res = $client->get($url, array("query"=>$params, 'verify' => false)); // we do not care if the cert is valid or not
  391. //        $json = $res->getBody();
  392. //        $data = json_decode($json);
  393. //        $out = array( "status"=>$data->{"status"},
  394. //                      "message"=> (  isset($data->{"error_message"}) ? $data->{"error_message"} : ""),
  395. //                        );
  396. //        $out["source"] = $data;
  397. //
  398. //        return $this->getJsonResponse($request,$out);
  399. //    }
  400. //
  401. //    protected function mapSpecialPriceList(Request $request)
  402. //    {
  403. //        $in = "
  404. //67308        ALBISHEIM                   4
  405. //67482    ALTDORF    4
  406. //67317        ALTLEININGEN                4
  407. //67122        ALTRIP                      3
  408. //67346        ANGELHOF I U. II            3
  409. //67098        BAD DÜRKHEIM                3
  410. //67271        BATTENBERG                  4
  411. //67259        BEINDERSHEIM                2
  412. //67435        BENJENTAL                   4
  413. //64625    BENSHEIM    2
  414. //67308        BIEDESHEIM                  4
  415. //67134        BIRKENHEIDE                 3
  416. //67281        BISSERSHEIM                 3
  417. //67273        BOBENHEIM  am Berg                 4
  418. //67240        BOBENHEIM-ROXHEIM           2
  419. //67482    BÖBINGEN    4
  420. //67278        BOCKENHEIM                  3
  421. //67459        BÖHL-IGGELHEIM              4
  422. //67281        BRUCHMÜHLE                  3
  423. //68782        BRÜHL                       2
  424. //67308        BUBENHEIM                   4
  425. //67316        CARLSBERG                   4
  426. //67273        DACKENHEIM                  3
  427. //67125        DANNSTADT-SCHAUERNHEIM      3
  428. //67146        DEIDESHEIM                  4
  429. //67246        DIRMSTEIN                   3
  430. //69221    DOSSENHEIM    2
  431. //67373        DUDENHOFEN                  4
  432. //67280        EBERTSHEIM                  4
  433. //67480    EDENKOBEN    4
  434. //67483    EDESHEIM    4
  435. //68535    EDINGEN/NECKARHAUSEN    2
  436. //67308        EINSELTHUM                  4
  437. //67304        EISENBERG                   4
  438. //67158        ELLERSTADT                  3
  439. //69214    EPPELHEIM    2
  440. //67167        ERPOLZHEIM                  3
  441. //67147        FORST                       3
  442. //67227        FRANKENTHAL                 2
  443. //67482    FREIMERSHEIM    4
  444. //67251        FREINSHEIM                  3
  445. //67361    FREISBACH    4
  446. //67159        FRIEDELSHEIM                3
  447. //67136        FUßGÖNHEIM                  2
  448. //67229        GEROLSHEIM                  3
  449. //67377    GOMMERSHEIM    4
  450. //67161        GÖNNHEIM                    3
  451. //67483    GROßFISCHLINGEN    4
  452. //67229        GROßKARLBACH                3
  453. //67259        GROßNIEDESHEIM              2
  454. //67269        GRÜNSTADT                   4
  455. //67374        HANHOFEN                    4
  456. //67376        HARTHAUSEN                  4
  457. //67454        HAßLOCH                     4
  458. //68542    HEDDESHEIM    2
  459. //69117    HEIDELBERG    3
  460. //67273        HERXHEIM                    3
  461. //67258        HEßHEIM                     2
  462. //67310        HETTENLEIDELHEIM            4
  463. //67259        HEUCHELHEIM                 2
  464. //69493    HIRSCHBERG    2
  465. //67126        HOCHDORF-ASSENHEIM          3
  466. //68766    HOCKENHEIM    4
  467. //67591        HOHEN-SÜLZEN                3
  468. //68549    ILVESHEIM                   2
  469. //67308        IMMESHEIM                   3
  470. //67316        JUNGHOF                     3
  471. //67169        KALLSTADT                   3
  472. //67304        KERZENHEIM                  4
  473. //68775        KETSCH                      3
  474. //67271        KINDENHEIM                  4
  475. //67281        KIRCHHEIM                   3
  476. //67489    KIRRWEILER    4
  477. //67483    KLEINFISCHLINGEN    4
  478. //67271        KLEINKARLBACH               4
  479. //67308        KLEINMÜHLE                  4
  480. //67259        KLEINNIEDESHEIM             2
  481. //68526    LADENBURG    2
  482. //67245        LAMBSHEIM                   2
  483. //68623    LAMPERTHEIM    2
  484. //67319        LAUBERHOF                   4
  485. //67229        LAUMERSHEIM                 3
  486. //67308        LAUTERSHEIM                 4
  487. //69181    LEIMEN    4
  488. //67117        LIMBURGERHOF                2
  489. //67098        LINDEMANNSRUHE              4
  490. //67360    LINGENFELD    4
  491. //67435        LOOGANLAGE                  4
  492. //67...     LUDWIGSHAFEN                1
  493. //67317        MAIHOF                      4
  494. //67487    MAIKAMMER    4
  495. //68….     MANNHEIM                    2
  496. //67133        MAXDORF                     2
  497. //67149        MECKENHEIM                  4
  498. //67271        MERTESHEIM                  4
  499. //67591        MÖLSHEIM                    3
  500. //67590        MONSHEIM                    3
  501. //67591        MÖRSTADT                    3
  502. //67112        MUTTERSTADT                 2
  503. //69142    NECKARGEMÜND    4
  504. //67316        NEUHOF                      4
  505. //67141        NEUHOFEN                    2
  506. //67271        NEULEININGEN                4
  507. //67435        NEUSTADT an der Weinstraße    4
  508. //67316        NEUWOOG                     4
  509. //67150        NIEDERKIRCHEN               3
  510. //69226    NUSSLOCH    4
  511. //67271        OBERSÜLZEN                  4
  512. //67283        OBRIGHEIM                   4
  513. //67591        OFFSTEIN                    4
  514. //68723        OFTERSHEIM                  3
  515. //67308        OTTERSHEIM                  4
  516. //67166        OTTERSTADT                  3
  517. //68723    PLANKSTADT                  2
  518. //67280        QUIRNHEIM                   4
  519. //69469    RITSCHWEIER    3
  520. //67127        RÖDERSHEIM-GRONAU           3
  521. //67354        RÖMERBERG                   4
  522. //67071    RUCHHEIM    2
  523. //67152        RUPPERTSBERG                3
  524. //67105        SCHIFFERSTADT               3
  525. //69198    SCHRIESHEIM    2
  526. //67365    SCHWEGENHEIM    4
  527. //68723    SCHWETZINGEN                3
  528. //64342    SEEHEIM-JUGENDHEIM    2
  529. //67346        SPEYER                      4
  530. //67487    ST. MARTIN    4
  531. //67311        TIEFENTHAL                  4
  532. //67482    VENNINGEN    4
  533. //67157        WACHENHEIM        a.d.Weinstr.          3
  534. //67591        WACHENHEIM                  4
  535. //67165        WALDSEE                     3
  536. //67319        WATTENHEIM                  4
  537. //69469    WEINHEIM    2
  538. //67366    WEINGARTEN    4
  539. //67273    WEISENHEIM              am Berg    4
  540. //67256        WEISENHEIM              am Sand    3
  541. //67551        WORMS                       3
  542. //67308        ZELLERTAL                   4
  543. //
  544. //    ";
  545. //        $out  = array();
  546. //        $ignored = array();
  547. //        foreach (explode("\n",$in) as $row)
  548. //        {
  549. //            $items = explode("\t",$row);
  550. //            if (count($items)>2)
  551. //            {
  552. //                $new = (object)array("zip"=>$items[0],"city"=>$items[1],"zone"=>$items[2]);
  553. //                $out[]=$new;
  554. //            }
  555. //            else
  556. //            {
  557. //                $ignored []= $row;
  558. //            }
  559. //        }
  560. //
  561. //        return new Response(json_encode($out)."\n\n\n----\nIgnored:".print_r($ignored,true));
  562. //    }