aboutsummaryrefslogtreecommitdiff
path: root/src/callnotifier/MessageHandler.php
blob: 9e65b8138db75d50b9c02c9444ad1d871b2384c8 (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
namespace callnotifier;

class MessageHandler
{
    protected $dumpHdl;

    /**
     * Array of logger object arrays.
     * Key is the notification type, value is an array of logger objects
     * that want to get notified about the type.
     *
     * @var array
     */
    protected $logger = array(
        'msgData' => array(),
        'incomingCall' => array(),
        'edss1msg' => array(),
    );


    public function __construct($config)
    {
        $this->config = $config;
        $this->prepareDump();
    }

    /**
     * Add a logger
     *
     * @param Logger       $logger Logger object to register
     * @param array|string $types  Single notification type or array of such
     *                             types. "*" means "register for all types".
     *
     * @return self
     */
    public function addLogger(Logger $logger, $types)
    {
        if ($types == '*') {
            $types = array_keys($this->logger);
        }
        $types = (array)$types;

        foreach ($types as $type) {
            if (!isset($this->logger[$type])) {
                throw new \Exception('Unknown log type: ' . $type);
            }
            $this->logger[$type][] = $logger;
        }
    }

    public function handle($msg)
    {
        if ($this->config->dumpFile !== null) {
            $this->dump($msg);
        }
        if (substr($msg, 0, 9) != '[DKANPROT') {
            //unknown message type
            return;
        }
        $regex = '#^\\[DKANPROT-([^ ]+) ([0-9]+)\\] (.*)$#';
        if (!preg_match($regex, $msg, $matches)) {
            //message should always be that way
            return false;
        }
        list(, $type, $someid, $details) = $matches;
        $this->log(
            'msgData',
            array(
                'type' => $type,
                'id' => $someid,
                'details' => $details
            )
        );

        if ($type != 'Info') {
            $this->parseEDSS1($details);
            return;
        }
        //Vegw/Ets-Cref:[0xffef]/[0x64] - VEGW_SETUP from upper layer to internal destination: CGPN[**22]->CDPN[41], 
        $regex = '#CGPN\\[([^\\]]+)\\]->CDPN\\[([^\\]]+)\\]#';
        if (preg_match($regex, $details, $matches)) {
            list(, $from, $to) = $matches;
            $this->log('incomingCall', array('from' => $from, 'to' => $to));
        }
    }

    /**
     * Example string: "T02: 00 A3 06 0A 08 01 01 5A FF 0A"
     *
     * @param string $details Detail string of a debug message
     *
     */
    protected function parseEDSS1($details)
    {
        if ($details{0} != 'T' && $details{0} != 'N') {
            //we only want byte data
            return;
        }
        if (substr($details, 16, 4) != ' 08 ') {
            //only E-DSS-1, no other packets
            return;
        }
        
        $bytestring = substr($details, 5);
        $bytes = static::getBytesFromHexString($bytestring);

        $msgtype = $bytes{7};
        static $interestingTyps = array(
            EDSS1_Message::SETUP,
            EDSS1_Message::CONNECT,
            EDSS1_Message::INFORMATION
        );
        if (!in_array($msgtype, $interestingTyps)) {
            //return;
        }

        $mp = new EDSS1_Parser();
        $msg = $mp->parse($bytes);

        $this->log('edss1msg', array('msg' => $msg));
    }

    protected function log($type, $arData)
    {
        if (!isset($this->logger[$type])) {
            throw new \Exception('Unknown log type: ' . $type);
        }
        
        if (count($this->logger[$type])) {
            foreach ($this->logger[$type] as $logger) {
                $logger->log($type, $arData);
            }
        }
    }

    public static function getBytesFromHexString($bytestring)
    {
        $bytes = '';
        foreach (explode(' ', $bytestring) as $strbyte) {
            $bytes .= chr(hexdec($strbyte));
        }
        return $bytes;
    }

    protected function prepareDump()
    {
        if ($this->config->dumpFile === null) {
            return;
        }
        $this->dumpHdl = fopen($this->config->dumpFile, 'w');
        if (!$this->dumpHdl) {
            throw new Exception('Cannot open replay file for reading');
        }
    }

    protected function dump($msg)
    {
        fwrite($this->dumpHdl, $msg . "\n");
    }
}

?>