[svn-commits] qwell: trunk r64030 - in /trunk: channels/ configs/
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Fri May 11 15:52:36 MST 2007
Author: qwell
Date: Fri May 11 17:52:36 2007
New Revision: 64030
URL: http://svn.digium.com/view/asterisk?view=rev&rev=64030
Log:
Add/fix support for Redial, Speeddial, and Messages buttons.
Combined effort by DEA and mvanbaak.
Modified:
trunk/channels/chan_skinny.c
trunk/configs/skinny.conf.sample
Modified: trunk/channels/chan_skinny.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_skinny.c?view=diff&rev=64030&r1=64029&r2=64030
==============================================================================
--- trunk/channels/chan_skinny.c (original)
+++ trunk/channels/chan_skinny.c Fri May 11 17:52:36 2007
@@ -99,6 +99,7 @@
#define SKINNY_MAX_PACKET 1000
static int keep_alive = 120;
+static char vmexten[AST_MAX_EXTENSION]; /* Voicemail pilot number */
static char date_format[6] = "D-M-Y";
static char version_id[16] = "P002F202";
@@ -938,6 +939,7 @@
char lastcallerid[AST_MAX_EXTENSION]; /* Last Caller*ID */
char call_forward[AST_MAX_EXTENSION];
char mailbox[AST_MAX_EXTENSION];
+ char vmexten[AST_MAX_EXTENSION];
char mohinterpret[MAX_MUSICCLASS];
char mohsuggest[MAX_MUSICCLASS];
char lastnumberdialed[AST_MAX_EXTENSION]; /* Last number that was dialed - used for redial */
@@ -1767,25 +1769,22 @@
return 0;
}
-/*
static int has_voicemail(struct skinny_line *l)
{
return ast_app_has_voicemail(l->mailbox, NULL);
}
-*/
static void do_housekeeping(struct skinnysession *s)
{
-/*
int new;
int old;
+ int device_lamp = 0;
struct skinny_device *d = s->device;
struct skinny_line *l;
-*/
transmit_displaymessage(s, NULL);
-/*
+ /* Set MWI on individual lines */
for (l = d->lines; l; l = l->next) {
if (has_voicemail(l)) {
if (skinnydebug)
@@ -1794,11 +1793,16 @@
if (skinnydebug)
ast_verbose("Skinny %s@%s has voicemail!\n", l->name, d->name);
transmit_lamp_indication(s, STIMULUS_VOICEMAIL, l->instance, l->mwiblink?SKINNY_LAMP_BLINK:SKINNY_LAMP_ON);
+ device_lamp++;
} else {
transmit_lamp_indication(s, STIMULUS_VOICEMAIL, l->instance, SKINNY_LAMP_OFF);
}
}
-*/
+ /* If at least one line has VM, turn the device level lamp on */
+ if (device_lamp)
+ transmit_lamp_indication(s, STIMULUS_VOICEMAIL, 0, SKINNY_LAMP_ON);
+ else
+ transmit_lamp_indication(s, STIMULUS_VOICEMAIL, 0, SKINNY_LAMP_OFF);
}
/* I do not believe skinny can deal with video.
@@ -2101,6 +2105,7 @@
struct skinny_line *l;
struct skinny_speeddial *sd;
struct skinny_addon *a;
+ char device_vmexten[AST_MAX_EXTENSION];
int lineInstance = 1;
int speeddialInstance = 1;
int y = 0;
@@ -2112,6 +2117,8 @@
d->lastlineinstance = 1;
d->capability = default_capability;
d->prefs = default_prefs;
+ if (!ast_strlen_zero(vmexten))
+ ast_copy_string(device_vmexten, vmexten, sizeof(device_vmexten));
while(v) {
if (!strcasecmp(v->name, "host")) {
if (ast_get_ip(&d->addr, v->value)) {
@@ -2124,6 +2131,8 @@
ast_copy_string(d->id, v->value, sizeof(d->id));
} else if (!strcasecmp(v->name, "permit") || !strcasecmp(v->name, "deny")) {
d->ha = ast_append_ha(v->name, v->value, d->ha, NULL);
+ } else if (!strcasecmp(v->name, "vmexten")) {
+ ast_copy_string(device_vmexten, v->value, sizeof(device_vmexten));
} else if (!strcasecmp(v->name, "context")) {
ast_copy_string(context, v->value, sizeof(context));
} else if (!strcasecmp(v->name, "allow")) {
@@ -2238,6 +2247,8 @@
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Setting mailbox '%s' on %s@%s\n", mailbox, d->name, l->name);
}
+ if (!ast_strlen_zero(device_vmexten))
+ ast_copy_string(l->vmexten, device_vmexten, sizeof(vmexten));
l->msgstate = -1;
l->capability = d->capability;
l->prefs = d->prefs;
@@ -2373,8 +2384,10 @@
if (res < 0) {
if (skinnydebug)
ast_verbose("Skinny(%s@%s): waitfordigit returned < 0\n", l->name, d->name);
- ast_indicate(c, -1);
- ast_hangup(c);
+ if (sub->owner) {
+ ast_indicate(c, -1);
+ ast_hangup(c);
+ }
return NULL;
} else if (res) {
exten[len++]=res;
@@ -2417,7 +2430,10 @@
if (option_debug)
ast_log(LOG_DEBUG, "Not enough digits (and no ambiguous match)...\n");
transmit_tone(s, SKINNY_REORDER);
- ast_hangup(c);
+ if (sub->owner && sub->owner->_state != AST_STATE_UP) {
+ ast_indicate(c, -1);
+ ast_hangup(c);
+ }
return NULL;
} else if (!ast_canmatch_extension(c, c->context, exten, 1, c->cid.cid_num) &&
((exten[0] != '*') || (!ast_strlen_zero(exten) > 2))) {
@@ -2434,7 +2450,8 @@
ast_indicate(c, -1);
}
}
- ast_hangup(c);
+ if (c)
+ ast_hangup(c);
return NULL;
}
@@ -3117,13 +3134,16 @@
if (skinnydebug)
ast_verbose("Received Stimulus: Redial(%d)\n", instance);
-#if 0
c = skinny_new(l, AST_STATE_DOWN);
- if(!c) {
+ if (!c) {
ast_log(LOG_WARNING, "Unable to create channel for %s@%s\n", l->name, d->name);
} else {
sub = c->tech_pvt;
- transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ l = sub->parent;
+ if (l->hookstate == SKINNY_ONHOOK) {
+ l->hookstate = SKINNY_OFFHOOK;
+ transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ }
if (skinnydebug)
ast_verbose("Attempting to Clear display on Skinny %s@%s\n", l->name, d->name);
transmit_displaymessage(s, NULL); /* clear display */
@@ -3142,22 +3162,31 @@
ast_hangup(c);
}
}
-#endif
break;
case STIMULUS_SPEEDDIAL:
if (skinnydebug)
ast_verbose("Received Stimulus: SpeedDial(%d)\n", instance);
-#if 0
+ struct skinny_speeddial *sd;
if (!(sd = find_speeddial_by_instance(d, instance, 0))) {
return 0;
}
- c = skinny_new(l, AST_STATE_DOWN);
- if(c) {
+ if (!sub || !sub->owner)
+ c = skinny_new(l, AST_STATE_DOWN);
+ else
+ c = sub->owner;
+
+ if (!c) {
+ ast_log(LOG_WARNING, "Unable to create channel for %s@%s\n", l->name, d->name);
+ } else {
sub = c->tech_pvt;
l = sub->parent;
- transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ if (l->hookstate == SKINNY_ONHOOK) {
+ l->hookstate = SKINNY_OFFHOOK;
+ transmit_speaker_mode(s, SKINNY_SPEAKERON);
+ transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ }
if (skinnydebug)
ast_verbose("Attempting to Clear display on Skinny %s@%s\n", l->name, d->name);
transmit_displaymessage(s, NULL); /* clear display */
@@ -3167,17 +3196,16 @@
transmit_tone(s, SKINNY_SILENCE);
}
if (ast_exists_extension(c, c->context, sd->exten, 1, l->cid_num)) {
- if (!ast_matchmore_extension(c, c->context, sd->exten, 1, l->cid_num)) {
- ast_copy_string(c->exten, sd->exten, sizeof(c->exten));
- ast_copy_string(l->lastnumberdialed, sd->exten, sizeof(l->lastnumberdialed));
- skinny_newcall(c);
- break;
+ ast_copy_string(c->exten, sd->exten, sizeof(c->exten));
+ ast_copy_string(l->lastnumberdialed, sd->exten, sizeof(l->lastnumberdialed));
+
+ if (ast_pthread_create(&t, NULL, skinny_newcall, c)) {
+ ast_log(LOG_WARNING, "Unable to create new call thread: %s\n", strerror(errno));
+ ast_hangup(c);
}
+ break;
}
- } else {
- ast_log(LOG_WARNING, "Unable to create channel for %s@%s\n", l->name, d->name);
- }
-#endif
+ }
break;
case STIMULUS_HOLD:
if (skinnydebug)
@@ -3207,7 +3235,47 @@
case STIMULUS_VOICEMAIL:
if (skinnydebug)
ast_verbose("Received Stimulus: Voicemail(%d)\n", instance);
- /* XXX Find and dial voicemail extension */
+
+ if (!sub || !sub->owner) {
+ c = skinny_new(l, AST_STATE_DOWN);
+ } else {
+ c = sub->owner;
+ }
+ if (!c) {
+ ast_log(LOG_WARNING, "Unable to create channel for %s@%s\n", l->name, d->name);
+ } else {
+ sub = c->tech_pvt;
+ l = sub->parent;
+
+ if (ast_strlen_zero(l->vmexten)) /* Exit the call if no VM pilot */
+ break;
+
+ if (l->hookstate == SKINNY_ONHOOK){
+ l->hookstate = SKINNY_OFFHOOK;
+ transmit_speaker_mode(s, SKINNY_SPEAKERON);
+ transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ }
+
+ if (skinnydebug)
+ ast_verbose("Attempting to Clear display on Skinny %s@%s\n", l->name, d->name);
+
+ transmit_displaymessage(s, NULL); /* clear display */
+ transmit_tone(s, SKINNY_DIALTONE);
+
+ if (!ast_ignore_pattern(c->context, vmexten)) {
+ transmit_tone(s, SKINNY_SILENCE);
+ }
+
+ if (ast_exists_extension(c, c->context, l->vmexten, 1, l->cid_num)) {
+ ast_copy_string(c->exten, l->vmexten, sizeof(c->exten));
+ ast_copy_string(l->lastnumberdialed, l->vmexten, sizeof(l->lastnumberdialed));
+ if (ast_pthread_create(&t, NULL, skinny_newcall, c)) {
+ ast_log(LOG_WARNING, "Unable to create new call thread: %s\n", strerror(errno));
+ ast_hangup(c);
+ }
+ break;
+ }
+ }
break;
case STIMULUS_CALLPARK:
if (skinnydebug)
@@ -3284,7 +3352,7 @@
ast_log(LOG_DEBUG, "Current subchannel [%s] already has owner\n", sub->owner->name);
} else {
c = skinny_new(l, AST_STATE_DOWN);
- if(c) {
+ if (c) {
sub = c->tech_pvt;
transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
if (skinnydebug)
@@ -3364,7 +3432,7 @@
ast_log(LOG_DEBUG, "Current sub [%s] already has owner\n", sub->owner->name);
} else {
c = skinny_new(l, AST_STATE_DOWN);
- if(c) {
+ if (c) {
sub = c->tech_pvt;
transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
if (skinnydebug)
@@ -3892,18 +3960,21 @@
if (skinnydebug)
ast_verbose("Received Softkey Event: Redial(%d)\n", instance);
-#if 0
if (!sub || !sub->owner) {
c = skinny_new(l, AST_STATE_DOWN);
} else {
c = sub->owner;
}
- if(!c) {
+ if (!c) {
ast_log(LOG_WARNING, "Unable to create channel for %s@%s\n", l->name, d->name);
} else {
sub = c->tech_pvt;
- transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ if (l->hookstate == SKINNY_ONHOOK) {
+ l->hookstate = SKINNY_OFFHOOK;
+ transmit_speaker_mode(s, SKINNY_SPEAKERON);
+ transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ }
if (skinnydebug)
ast_verbose("Attempting to Clear display on Skinny %s@%s\n", l->name, d->name);
transmit_displaymessage(s, NULL); /* clear display */
@@ -3922,34 +3993,42 @@
ast_hangup(c);
}
}
-#endif
- break;
- case SOFTKEY_NEWCALL:
- /* XXX Untested */
+ break;
+ case SOFTKEY_NEWCALL: /* Actually the DIAL softkey */
if (skinnydebug)
ast_verbose("Received Softkey Event: New Call(%d)\n", instance);
- transmit_ringer_mode(s,SKINNY_RING_OFF);
- transmit_lamp_indication(s, STIMULUS_LINE, l->instance, SKINNY_LAMP_ON);
-
- l->hookstate = SKINNY_OFFHOOK;
-
- if (sub) {
- transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ if (!sub || !sub->owner) {
+ c = skinny_new(l, AST_STATE_DOWN);
+ } else {
+ c = sub->owner;
+ }
+
+ /* transmit_ringer_mode(s,SKINNY_RING_OFF);
+ transmit_lamp_indication(s, STIMULUS_LINE, l->instance, SKINNY_LAMP_ON); */
+
+ /* l->hookstate = SKINNY_OFFHOOK; */
+
+ if (!c) {
+ ast_log(LOG_WARNING, "Unable to create channel for %s@%s\n", l->name, d->name);
+ } else {
+ sub = c->tech_pvt;
+ if (l->hookstate == SKINNY_ONHOOK) {
+ l->hookstate = SKINNY_OFFHOOK;
+ transmit_speaker_mode(s, SKINNY_SPEAKERON);
+ transmit_callstate(s, l->instance, SKINNY_OFFHOOK, sub->callid);
+ }
+
if (skinnydebug)
ast_verbose("Attempting to Clear display on Skinny %s@%s\n", l->name, d->name);
transmit_displaymessage(s, NULL); /* clear display */
transmit_tone(s, SKINNY_DIALTONE);
transmit_selectsoftkeys(s, l->instance, sub->callid, KEYDEF_OFFHOOK);
- c = skinny_new(l, AST_STATE_DOWN);
- if(c) {
- /* start the switch thread */
- if (ast_pthread_create(&t, NULL, skinny_ss, c)) {
- ast_log(LOG_WARNING, "Unable to create switch thread: %s\n", strerror(errno));
- ast_hangup(c);
- }
- } else {
- ast_log(LOG_WARNING, "Unable to create channel for %s@%s\n", l->name, d->name);
+
+ /* start the switch thread */
+ if (ast_pthread_create(&t, NULL, skinny_ss, c)) {
+ ast_log(LOG_WARNING, "Unable to create switch thread: %s\n", strerror(errno));
+ ast_hangup(c);
}
}
break;
@@ -4645,6 +4724,8 @@
}
} else if (!strcasecmp(v->name, "keepalive")) {
keep_alive = atoi(v->value);
+ } else if (!strcasecmp(v->name, "vmexten")) {
+ ast_copy_string(vmexten, v->value, sizeof(vmexten));
} else if (!strcasecmp(v->name, "dateformat")) {
ast_copy_string(date_format, v->value, sizeof(date_format));
} else if (!strcasecmp(v->name, "allow")) {
Modified: trunk/configs/skinny.conf.sample
URL: http://svn.digium.com/view/asterisk/trunk/configs/skinny.conf.sample?view=diff&rev=64030&r1=64029&r2=64030
==============================================================================
--- trunk/configs/skinny.conf.sample (original)
+++ trunk/configs/skinny.conf.sample Fri May 11 17:52:36 2007
@@ -6,6 +6,10 @@
bindport=2000 ; Port to bind to, default tcp/2000
dateformat=M-D-Y ; M,D,Y in any order (5 chars max)
keepalive=120
+
+;vmexten=8500 ; Systemwide voicemailmain pilot number
+ ; It must be in the same context as the calling
+ ; device/line
;allow=all ; see doc/rtp-packetization for framing options
;disallow=
@@ -74,6 +78,7 @@
;nat=yes
;callerid="Customer Support" <810-234-1212>
;mailbox=100
+;vmexten=8500 ; Device level voicemailmain pilot number
;context=inbound
;linelabel="Support Line" ; Displays next to the line
; button on 7940's and 7960s
More information about the svn-commits
mailing list