Conditions | 2 |
Paths | 2 |
Total Lines | 24 |
Code Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Tests | 14 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | 8 | public function fromStr(string $reference): XmlInjectable |
|
19 | { |
||
20 | 8 | $parts = explode('/', $reference); |
|
21 | 8 | if (count($parts) !== 6) { |
|
22 | 1 | throw new \Exception('Could not extract service parameters. Invalid format.'); |
|
23 | } |
||
24 | |||
25 | $fragment = <<<EOD |
||
26 | <xrd:service id:objectType="SERVICE" |
||
27 | xmlns:xrd="http://x-road.eu/xsd/xroad.xsd" |
||
28 | xmlns:id="http://x-road.eu/xsd/identifiers"> |
||
29 | 7 | <id:xRoadInstance>{$parts[0]}</id:xRoadInstance> |
|
30 | 7 | <id:memberClass>{$parts[1]}</id:memberClass> |
|
31 | 7 | <id:memberCode>{$parts[2]}</id:memberCode> |
|
32 | 7 | <id:subsystemCode>{$parts[3]}</id:subsystemCode> |
|
33 | 7 | <id:serviceCode>{$parts[4]}</id:serviceCode> |
|
34 | 7 | <id:serviceVersion>{$parts[5]}</id:serviceVersion> |
|
35 | </xrd:service> |
||
36 | EOD; |
||
37 | |||
38 | 7 | return new FragmentInjection( |
|
39 | 7 | 'http://schemas.xmlsoap.org/soap/envelope/', |
|
40 | 7 | 'Header', |
|
41 | 7 | $fragment |
|
42 | ); |
||
45 |