Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 46
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
ProcessRedirect
0.00% covered (danger)
0.00%
0 / 46
0.00% covered (danger)
0.00%
0 / 4
182
0.00% covered (danger)
0.00%
0 / 1
 readResponse
0.00% covered (danger)
0.00%
0 / 18
0.00% covered (danger)
0.00%
0 / 1
2
 testProcessData
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 1
20
 testProcessAccess
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 1
20
 readValidProcess
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
20
1<?php
2
3/**
4 * @package ZMS API
5 * @copyright BerlinOnline Stadtportal GmbH & Co. KG
6 **/
7
8namespace BO\Zmsapi;
9
10use BO\Slim\Render;
11use BO\Mellon\Validator;
12use BO\Zmsdb\Process;
13use BO\Zmsdb\Process as Query;
14use BO\Zmsdb\ProcessStatusQueued;
15use BO\Zmsdb\Workstation;
16use BO\Zmsentities\Collection\RequestList;
17
18/**
19 * @SuppressWarnings(Coupling)
20 */
21class ProcessRedirect extends BaseController
22{
23    /**
24     * @SuppressWarnings(Param)
25     * @return String
26     */
27    public function readResponse(\Psr\Http\Message\RequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args)
28    {
29        $workstation = (new Helper\User($request))->checkRights();
30        $input = Validator::input()->isJson()->assertValid()->getValue();
31        $entity = new \BO\Zmsentities\Process($input);
32        $newProcess = new \BO\Zmsentities\Process($input);
33        $process = $this->readValidProcess($workstation, $entity, $input, $workstation);
34        $newProcess->requests = new RequestList();
35        $this->testProcessAccess($workstation, $process);
36        \BO\Zmsdb\Connection\Select::getWriteConnection();
37        $processStatusArchived = new \BO\Zmsdb\ProcessStatusArchived();
38        $process->status = 'finished';
39        $process = (new Query())->updateEntity($process, \App::$now, 0, 'processing', $workstation->getUseraccount());
40        (new Workstation())->writeRemovedProcess($workstation);
41        $processStatusArchived->writeEntityFinished($process, \App::$now, false);
42        $newProcess = (new \BO\Zmsdb\Process())->redirectToScope($newProcess, $process->scope, $process->queue['number'] ?? $process->id, $workstation->getUseraccount());
43        $message = Response\Message::create($request);
44        $message->data = $newProcess;
45        $response = Render::withLastModified($response, time(), '0');
46        return Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
47    }
48
49    protected function testProcessData($entity)
50    {
51        $entity->testValid();
52        $authCheck = (new Query())->readAuthKeyByProcessId($entity->id);
53        if (! $authCheck) {
54            throw new Exception\Process\ProcessNotFound();
55        } elseif ($authCheck['authKey'] != $entity->authKey && $authCheck['authName'] != $entity->authKey) {
56            throw new Exception\Process\AuthKeyMatchFailed();
57        }
58    }
59
60    protected function testProcessAccess($workstation, $process)
61    {
62        $cluster = (new \BO\Zmsdb\Cluster())->readByScopeId($workstation->scope['id'], 1);
63        $workstation->testMatchingProcessScope($workstation->getScopeList($cluster), $process);
64        if ($workstation->process && $workstation->process->hasId() && $workstation->process->id != $process->id) {
65            $exception = new Exception\Workstation\WorkstationHasAssignedProcess();
66            $exception->data = [
67                'process' => $workstation->process
68            ];
69            throw $exception;
70        }
71    }
72
73    protected function readValidProcess($workstation, $entity, $input)
74    {
75        if ($entity->hasProcessCredentials()) {
76            $this->testProcessData($entity);
77            $entity->addData($input);
78            $process = (new Query())->updateEntity($entity, \App::$now, 0, null, $workstation->getUseraccount());
79        } elseif ($entity->hasQueueNumber()) {
80        // Allow waitingnumbers over 1000 with the fourth parameter
81            $process = ProcessStatusQueued::init()
82                ->readByQueueNumberAndScope($entity['queue']['number'], $workstation->scope['id'], 0, 100000000);
83            if (! $process->id) {
84                $workstation = (new \BO\Zmsdb\Workstation())->readResolvedReferences($workstation, 1);
85                $process = (new Query())->writeNewPickup($workstation->scope, \App::$now, $entity['queue']['number'], $workstation->getUseraccount());
86            }
87            $process->testValid();
88        } else {
89            $entity->testValid();
90            throw new Exception\Process\ProcessInvalid();
91        }
92        return $process;
93    }
94}