-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoicemail.php
153 lines (132 loc) · 5.49 KB
/
voicemail.php
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
<?php
$VMDIR="/var/spool/asterisk/voicemail/default"; // Directorio donde se encuentran los mensajes de voz
$URLXML="http://www.example.com/cisco;
$USER=trim($_GET[user]); // Obtenemos el usuario que queremos consultar
$msg=trim($_GET[msg]);
$call=trim($_GET[call]);
//$USER="0626"; // ESTO HABRA QUE QUITARLO CUANDO
// Obtenemos los datos y los almacenamos en la estructura
$VMDIR.="/$USER/INBOX"; // Le añadimos el usuario del voicemail
$localdir=opendir($VMDIR);
while ($cnt=readdir($localdir)){
if ($cnt[0] != "."){
if (strpos($cnt,".txt") !== false){
$listaArchivos[]=$cnt;
}
}
}
sort($listaArchivos);
for ($t=0; $t<count($listaArchivos); $t++){
$tmpfile=file($VMDIR."/".$listaArchivos[$t]);
list($mensaje[$t][archivo])=explode(".",$listaArchivos[$t]);
for ($f=0; $f<count($tmpfile); $f++){ // Parseamos todas las filas buscando los parámetros
list($campo,$valor)=explode("=",$tmpfile[$f]);
$campo=trim($campo); $valor=trim($valor);
if (($campo != "")&&($valor != "")){
$mensaje[$t][$campo]=$valor;
}
}
}
header ("content-type: text/xml");
if (($USER != "")&&($msg == "") && ($call == "")){ // Mostramos un menú básico con los mensajes que tiene por leer
echo "<CiscoIPPhoneMenu>\n";
echo "<Title>Voicemail menu</Title>\n";
echo "<Prompt>Select a message</Prompt>\n";
for ($t=0; $t<count($mensaje); $t++){
list($n,$orig)=explode("<",$mensaje[$t][callerid]);
list($orig)=explode(">",$orig);
$fecha=date("m/d g:ia",$mensaje[$t][origtime]);
$msg=trim($msg);
if (($USER != "") && ($msg == "")){
echo "<MenuItem>\n";
echo " <Name>$fecha $n ($orig)</Name>\n";
echo " <URL>$URLXML/voicemail.php?user=$USER&msg=$t</URL>\n";
echo "</MenuItem>\n";
}
}
echo "<SoftKeyItem>\n";
echo " <Name>Exit</Name>\n";
echo " <URL>Init:Services</URL>\n"; //Force application to close
echo " <Position>1</Position>\n";
echo "</SoftKeyItem>\n";
echo "<SoftKeyItem>\n";
echo " <Name>Select</Name>\n";
echo " <URL>SoftKey:Select</URL>\n";
echo " <Position>2</Position>\n";
echo "</SoftKeyItem>\n";
echo "</CiscoIPPhoneMenu>\n";
}elseif (($USER != "")&&($msg != "")&&($call == "")){ // Hemos seleccionado un mensaje, le damos los datos
echo "<CiscoIPPhoneText>\n";
echo "<Title>Menu Voicemail</Title>\n";
echo "<Prompt> </Prompt>\n";
list($n,$orig)=explode("<",$mensaje[$msg][callerid]);
list($orig)=explode(">",$orig);
$fecha=date("m/d/Y g:ia",$mensaje[$msg][origtime]);
$msg=trim($msg);
echo "<Text>Date: $fecha\n Caller: $n ($orig)\n Length: ".$mensaje[$msg][duration]." Seconds</Text> \n";
echo "<SoftKeyItem>\n";
echo " <Name>Exit</Name>\n";
echo " <URL>$URLXML/voicemail.php?user=$USER</URL>\n";
echo " <Position>1</Position>\n";
echo "</SoftKeyItem>\n";
echo "<SoftKeyItem>\n";
echo " <Name>Play</Name>\n";
echo " <URL>$URLXML/voicemail.php?user=$USER&msg=$msg&call=1</URL>\n";
echo " <Position>2</Position>\n";
echo "</SoftKeyItem>\n";
echo "<SoftKeyItem>\n";
echo " <Name>Delete</Name>\n";
echo " <URL>$URLXML/voicemail.php?user=$USER&msg=$msg&call=3</URL>\n";
echo " <Position>3</Position>\n";
echo "</SoftKeyItem>\n";
echo "</CiscoIPPhoneText>\n";
}elseif (($USER != "")&&($msg != "")&&($call == 1) ){ // Play Message
$random=rand(100,999);
$f1=fopen("/tmp/getVoiceMailMsg$random.call","w+");
//fputs($f1,"Channel: SIP/$USER\n"); If you Use FeePBX and have "Paging and Intercom" Enabled you can uncomment the following line and comment out this line to have the phone auto pickup and start playing your message
fputs($f1,"Channel: Local/*80$USER@ext-intercom\n");
fputs($f1,"Application: Playback\n");
fputs($f1,"Data: $VMDIR/".$mensaje[$msg][archivo]."");
fclose($f1);
rename("/tmp/getVoiceMailMsg$random.call","/var/spool/asterisk/outgoing/getVoiceMailMsg$random.call");
echo "<CiscoIPPhoneText>\n";
echo "<Title>Menu Voicemail</Title>\n";
echo "<Prompt> </Prompt>\n";
list($n,$orig)=explode("<",$mensaje[$msg][callerid]);
list($orig)=explode(">",$orig);
$fecha=date("m/d/Y g:ia",$mensaje[$msg][origtime]);
$msg=trim($msg);
echo "<Text>Date: $fecha\n Caller: $n ($orig)\n Length: ".$mensaje[$msg][duration]." Seconds</Text> \n";
echo "<SoftKeyItem>\n";
echo " <Name>Exit</Name>\n";
echo " <URL>$URLXML/voicemail.php?user=$USER</URL>\n";
echo " <Position>1</Position>\n";
echo "</SoftKeyItem>\n";
echo "<SoftKeyItem>\n";
echo " <Name>Play</Name>\n";
echo " <URL>$URLXML/voicemail.php?user=$USER&msg=$msg&call=1</URL>\n";
echo " <Position>2</Position>\n";
echo "</SoftKeyItem>\n";
echo "<SoftKeyItem>\n";
echo " <Name>Delete</Name>\n";
echo " <URL>$URLXML/voicemail.php?user=$USER&msg=$msg&call=3</URL>\n";
echo " <Position>3</Position>\n";
echo "</SoftKeyItem>\n";
echo "</CiscoIPPhoneText>\n";
}elseif (($USER != "")&&($msg != "")&&($call == 3) ){ // Delete Message
unlink("$VMDIR/".$mensaje[$msg][archivo].".wav");
unlink("$VMDIR/".$mensaje[$msg][archivo].".WAV");
unlink("$VMDIR/".$mensaje[$msg][archivo].".txt");
unlink("$VMDIR/".$mensaje[$msg][archivo].".gsm");
echo "<CiscoIPPhoneText>\n";
echo "<Title>Menu Voicemail</Title>\n";
echo "<Prompt> </Prompt>\n";
echo "<Text>Message Deleted</Text> \n";
echo "<SoftKeyItem>\n";
echo " <Name>Exit</Name>\n";
echo " <URL>$URLXML/voicemail.php?user=$USER</URL>\n";
echo " <Position>1</Position>\n";
echo "</SoftKeyItem>\n";
echo "</CiscoIPPhoneText>\n";
}
?>