Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
 * Whoops - php errors for cool kids
 * @author Filipe Dobreira <http://github.com/filp>
 */

namespace Whoops\Handler;


/**
 * Catches an exception and converts it to an Soap XML
 * response.
 *
 * @author Markus Staab <http://github.com/staabm>
 */
class SoapResponseHandler extends Handler
{
    /**
     * @return int
     */
    public function handle()
    {
        $exception = $this->getException();

        echo $this->toXml($exception);

        return Handler::QUIT;
    }

    /**
     * Converts a Exception into a SoapFault XML
     */
    private function toXml(\Exception $exception)
    {
        $xml = '';
        $xml .= '<?xml version="1.0" encoding="UTF-8"?>';
        $xml .= '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">';
        $xml .= '  <SOAP-ENV:Body>';
        $xml .= '    <SOAP-ENV:Fault>';
        $xml .= '      <faultcode>'. htmlspecialchars($exception->getCode()) .'</faultcode>';
        $xml .= '      <faultstring>'. htmlspecialchars($exception->getMessage()) .'</faultstring>';
        $xml .= '      <detail><trace>'. htmlspecialchars($exception->getTraceAsString()) .'</trace></detail>';
        $xml .= '    </SOAP-ENV:Fault>';
        $xml .= '  </SOAP-ENV:Body>';
        $xml .= '</SOAP-ENV:Envelope>';

        return $xml;
    }
}

Commits for Nextrek/Aiba_backup/vendor/filp/whoops/src/Whoops/Handler/SoapResponseHandler.php

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000