filter out the ("duplicate") internal call on outgoing calls
authorChristian Weiske <cweiske@cweiske.de>
Thu, 2 Aug 2012 16:18:51 +0000 (18:18 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Thu, 2 Aug 2012 16:18:51 +0000 (18:18 +0200)
src/callnotifier/CallMonitor.php

index ebc9a50062828a93d974e77f64fea2a51d7cfed6..be155e12387bb81fe0eeea0f3083e1319ed24013 100644 (file)
@@ -62,6 +62,26 @@ class CallMonitor
             $this->handleParams($call, $msg);
             break;
         case EDSS1_Message::ALERTING:
+            if ($call->type == CallMonitor_Call::OUTGOING) {
+                /**
+                 * There may be two alerts: One from the telephone to the
+                 * switchboard, and one from the switchboard to the target.
+                 *
+                 * The alert from the switchboard to the target call is
+                 * sent first, so we can remove the call from the telephone
+                 * to the switchboard.
+                 */
+                $bFound = false;
+                foreach ($this->currentCalls as $otherCallId => $otherCall) {
+                    if ($otherCallId != $callId && $otherCall->to == $call->to) {
+                        $bFound = true;
+                        break;
+                    }
+                }
+                if ($bFound) {
+                    unset($this->currentCalls[$otherCallId]);
+                }
+            }
             $this->log->log('startingCall', array('call' => $call));
             break;