]> git.zerfleddert.de Git - snom-frontend/blame - snom.pl
added extern (adds 09) to number, removes all non-digits from number
[snom-frontend] / snom.pl
CommitLineData
a3855c1d 1#!/bin/sh
3cb02741 2#$Id: snom.pl,v 1.44 2006/05/24 14:31:16 michael Exp $
a3855c1d 3
4PATH=/opt/csw/bin:/opt/local/bin:/usr/bin:/bin exec perl -w -x "$0" "$@"
5
6#!perl
7
a3855c1d 8use strict;
65d9cda1 9use warnings FATAL => 'all';
a3855c1d 10
7628eb77 11use Glib qw/TRUE FALSE/;
12use Gtk2 '-init';
13use Gtk2::Gdk::Keysyms;
a3855c1d 14use LWP::UserAgent;
7628eb77 15
2b56e19b 16my %g_key = ();
2c2eba10 17my %g_arrows;
f0fad26d 18my $g_host = Gtk2::ComboBox->new_text();
d98c0205 19my $g_identity = Gtk2::ComboBox->new_text();
a3855c1d 20my $ua = LWP::UserAgent->new;
2b56e19b 21
bf11a1ac 22open(INIFILE,"<$ENV{HOME}/.snomrc") || die("can't open config: $ENV{HOME}/.snomrc: $!");
23my %Config = ();
049eedbe 24my @sections = ();
bf11a1ac 25while(<INIFILE>) {
26 chomp;
5803d770 27
28 next if (m/^#/);
29
bf11a1ac 30 if (m/^\s*\[(.*)\]\s*$/) {
31 push @sections, $1;
32 next;
33 }
34
0a33b26b 35 if (@sections) {
4529f8a6 36 if (m/^\s*(.+)\s*=\s*(.*)\s*$/) {
37 ${$Config{$sections[$#sections]}}{$1} = $2;
bf11a1ac 38 }
39 }
40}
41close(INIFILE);
049eedbe 42
bf11a1ac 43for my $section (@sections) {
f0fad26d 44 if (defined(${$Config{$section}}{host})) {
45 $g_host->append_text($section);
46 if (defined(${$Config{$section}}{login}) &&
47 defined(${$Config{$section}}{password})) {
48 $ua->credentials(${$Config{$section}}{host}.":80",
49 "snom",
50 ${$Config{$section}}{login},
51 ${$Config{$section}}{password});
4529f8a6 52 }
bf11a1ac 53 }
2b56e19b 54}
f0fad26d 55$g_host->set_active(0);
73968c99 56UpdatePhoneInfo();
57$g_host->signal_connect(changed => \&UpdatePhoneInfo);
76d5a918 58$g_host->show() if($#sections);
810d7a53 59$g_identity->signal_connect(changed => \&SwitchIdentity);
a3855c1d 60
ee7ae952 61set_locale Gtk2;
a3855c1d 62
561ea20b 63sub snom_key {
64 my $key = shift;
a3855c1d 65 $key='%23' if ($key eq '#');
f0fad26d 66 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/command.htm?key=${key}");
a3855c1d 67 $ua->request($req);
68}
69
561ea20b 70sub snom_number {
71 my $number = shift;
3cb02741 72 $number =~ s/[^\d]//g;
f0fad26d 73 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/command.htm?number=${number}");
a3855c1d 74 $ua->request($req);
75}
76
561ea20b 77sub gen_table {
78 my $rows = shift;
79 my $cols = shift;
80 my $homogeneous = shift;
81 my $row_spacing = shift;
82 my $col_spacing = shift;
83 my $keys = shift;
84
85 my $table = Gtk2::Table->new($rows, $cols, $homogeneous);
86 $table->set_row_spacings($row_spacing);
87 $table->set_col_spacings($col_spacing);
88
89 my $n = 0;
90 foreach my $key (@$keys) {
91 if ($key ne '_') {
6ee33adc 92 if($key=~m/^ARROWS(.*)$/) {
93 $g_key{$key} = Gtk2::Button->new;
2c2eba10 94 $g_key{$key}->add($g_arrows{"${1}"});
6ee33adc 95 } else {
96 $g_key{$key} = Gtk2::Button->new("${key}");
97 }
561ea20b 98 $g_key{$key}->signal_connect(clicked => \&KeyPressed, $key);
99 $table->attach_defaults($g_key{$key}, (($n)%$cols), (($n)%$cols)+1, int(($n)/$cols), int((($n)/$cols)+1));
100 $g_key{$key}->show();
101 }
102 $n++;
103 }
104
105 $table->show();
106
107 $table;
108}
109
a3855c1d 110my $window = Gtk2::Window->new('toplevel');
111$window->set_title("snom");
112$window->signal_connect(delete_event => \&CloseAppWindow);
113$window->signal_connect(destroy => sub { Gtk2->main_quit; });
114my $kphandler = $window->signal_connect(key_press_event => \&KBDInput);
115$window->set_border_width(15);
116$window->set_resizable(FALSE);
117
561ea20b 118my $keypad = gen_table(4, 3, TRUE, 2, 2, [1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#']);
119
120my $fkeys = gen_table(6, 2, TRUE, 2, 2,
121 ['_Redial', 'S_ettings', 'Director_y', 'Hel_p', 'Men_u', 'snom', '_', '_',
122 '_Conference', '_Transfer', 'H_old', '_DND']);
123
124my $pkeys = gen_table(6, 2, TRUE, 2, 2, ['P1', 'P7', 'P2', 'P8', 'P3', 'P9', 'P4',
125 'P10', 'P5', 'P11', 'P6', 'P12']);
126
127my $softkeys = gen_table(1, 4, FALSE, 0, 6, ['F1', 'F2', 'F3', 'F4']);
128
2c2eba10 129$g_arrows{up} = Gtk2::Arrow->new('up', 'none');
130$g_arrows{up}->show();
131$g_arrows{down} = Gtk2::Arrow->new('down', 'none');
132$g_arrows{down}->show();
133$g_arrows{left} = Gtk2::Arrow->new('left', 'none');
134$g_arrows{left}->show();
135$g_arrows{right} = Gtk2::Arrow->new('right', 'none');
136$g_arrows{right}->show();
137
561ea20b 138my $navi = gen_table(3, 5, FALSE, 0, 0,
6ee33adc 139 ['_', '_', 'ARROWSup', '_', '_', 'X', 'ARROWSleft', '_', 'ARROWSright', 'OK', '_', '_', 'ARROWSdown', '_', '_']);
561ea20b 140
141my $output = gen_table(2, 3, FALSE, 2, 2, ['-', '+', '_', '_Mute', '_Speaker', '_Headset']);
142
143my $special = gen_table(1, 2, FALSE, 0, 2, ['Record', 'Retrieve']);
a3855c1d 144
145my $display = Gtk2::Entry->new();
146$display->signal_connect(activate => \&DialNumber);
147my $kph_blocked = FALSE;
a3855c1d 148$display->signal_connect(enter_notify_event => \&DisplayMouseOver, TRUE);
a3855c1d 149$display->signal_connect(leave_notify_event => \&DisplayMouseOver, FALSE);
150$display->show();
151
3cb02741 152my $cbextern = Gtk2::CheckButton->new("extern");
153$cbextern->show();
154
155my $dialbox = Gtk2::HBox->new(0, 30);
156$dialbox->pack_start($display, 0, 0, 0);
157$dialbox->pack_start($cbextern, 0, 0, 0);
158$dialbox->show();
159
a3855c1d 160my $dispbox = Gtk2::VBox->new(0, 5);
3cb02741 161$dispbox->pack_start($dialbox, 0, 0, 0);
a3855c1d 162$dispbox->pack_start($softkeys, 0, 0, 0);
163$dispbox->pack_start($navi, 0, 0, 0);
164$dispbox->show();
165
166my $outbox = Gtk2::VBox->new(0, 0);
f0fad26d 167$outbox->pack_start($g_host, 0, 0, 0);
a3855c1d 168$outbox->pack_end($output, 0, 0, 0);
169$outbox->show();
170
171my $specialbox = Gtk2::VBox->new(0, 0);
d98c0205 172$specialbox->pack_start($g_identity, 0, 0, 0);
a3855c1d 173$specialbox->pack_end($special, 0, 0, 0);
174$specialbox->show();
175
176my $ubox = Gtk2::HBox->new(0, 30);
177$ubox->pack_start($outbox, 0, 0, 0);
178$ubox->pack_start($dispbox, 0, 0, 0);
179$ubox->pack_start($specialbox, 0, 0, 0);
180$ubox->show();
181
182
183my $kbbox = Gtk2::HBox->new(0, 30);
184$kbbox->pack_start($keypad, 1, 1, 0);
185$kbbox->pack_start($fkeys, 0, 0, 0);
186$kbbox->show();
187
188my $kvbox = Gtk2::VBox->new(0, 5);
189$kvbox->pack_end($kbbox, 0, 0, 0);
190$kvbox->show();
191
192my $lbox = Gtk2::HBox->new(0, 30);
193$lbox->pack_start($kvbox, 1, 1, 0);
194$lbox->pack_start($pkeys, 0, 0, 0);
195$lbox->show();
196
197my $mainbox = Gtk2::VBox->new(0,5);
198$mainbox->pack_start($ubox, 0, 0, 0);
199$mainbox->pack_start($lbox, 0, 0, 0);
200$mainbox->show();
201
3cb02741 202
203
a3855c1d 204$window->add($mainbox);
205$window->show();
206
561ea20b 207$g_key{OK}->grab_focus();
bfe77af1 208
a3855c1d 209# Gtk2 event loop
210Gtk2->main;
211
212# Should never get here
213exit( 0 );
214
215
216sub KeyPressed
217{
218 my ($button, $text) = @_;
7829dff4 219 $text=~ s/_//g;
a3855c1d 220 foreach my $i (1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#',
221 'F1', 'F2', 'F3', 'F4',
222 'P1', 'P2', 'P3', 'P4', 'P5', 'P6',
223 'P7', 'P8', 'P9', 'P10', 'P11', 'P12') {
224 if ($i eq $text) {
225 snom_key($i);
f73d9f87 226 return TRUE;
a3855c1d 227 }
228 }
229
230 snom_key("REDIAL") if ( $text eq "Redial" );
231 snom_key("SETTINGS") if ( $text eq "Settings" );
232 snom_key("F_ADR_BOOK") if ( $text eq "Directory" );
233 snom_key("HELP") if ( $text eq "Help" );
234 snom_key("MENU") if ( $text eq "Menu" );
235 snom_key("SNOM") if ( $text eq "snom" );
236 snom_key("CONFERENCE") if ( $text eq "Conference" );
237 snom_key("TRANSFER") if ( $text eq "Transfer" );
238 snom_key("F_R") if ( $text eq "Hold" );
239 snom_key("DND") if ( $text eq "DND" );
240
241 snom_key("MUTE") if ( $text eq "Mute" );
242 snom_key("SPEAKER") if ( $text eq "Speaker" );
243 snom_key("HEADSET") if ( $text eq "Headset" );
244
245 snom_key("CANCEL") if ( $text eq "X" );
246 snom_key("ENTER") if ( $text eq "OK" );
6ee33adc 247 snom_key("UP") if ( $text eq "ARROWSup" );
248 snom_key("DOWN") if ( $text eq "ARROWSdown" );
249 snom_key("LEFT") if ( $text eq "ARROWSleft" );
250 snom_key("RIGHT") if ( $text eq "ARROWSright" );
a3855c1d 251
252 snom_key("F_REC") if ( $text eq "Record" );
253 snom_key("F_RETRIEVE") if ( $text eq "Retrieve" );
254
255 snom_key("VOLUME_UP") if ( $text eq "+" );
256 snom_key("VOLUME_DOWN") if ( $text eq "-" );
f73d9f87 257 return TRUE;
a3855c1d 258}
259
260sub DialNumber
261{
262 my ($entry) = @_;
3cb02741 263 my ($num) = $entry->get_text();
264 if ($cbextern->get_active){
265 snom_number("09".$num)
266 } else {
267 snom_number($num);
268 }
f73d9f87 269 return TRUE;
a3855c1d 270}
271
272sub DisplayMouseOver
273{
274 my ($widget, $event, $active) = @_;
275
276 if ($active) {
277 $widget->grab_focus();
278 if (!$kph_blocked) {
279 $window->signal_handler_block($kphandler);
280 $kph_blocked=TRUE;
281 }
282 } else {
561ea20b 283 $g_key{OK}->grab_focus();
a3855c1d 284 if ($kph_blocked) {
285 $window->signal_handler_unblock($kphandler);
286 $kph_blocked=FALSE;
287 }
288 }
289
290 return TRUE;
291}
292
293sub KBDInput
294{
295 my ($widget, $event) = @_;
296
297 my $keyval = $event->keyval;
824f34a5 298
a0365ad7 299 for (my $i=0; $i<10; $i++) {
190de48a 300 if ($keyval == $Gtk2::Gdk::Keysyms{$i} || $keyval == $Gtk2::Gdk::Keysyms{"KP_${i}"}) {
a3855c1d 301 snom_key($i);
302 return TRUE;
303 }
304 }
305
5e67f822 306 if (!$event->state || !($event->state & "control-mask" || $event->state & "mod1-mask")) {
7829dff4 307 if ($keyval == $Gtk2::Gdk::Keysyms{asterisk}) {snom_key('*'); return TRUE;}
308 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Multiply}) {snom_key('*'); return TRUE;}
309 if ($keyval == $Gtk2::Gdk::Keysyms{numbersign}) {snom_key('#'); return TRUE;}
310 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Add}) {snom_key('VOLUME_UP'); return TRUE;}
311 if ($keyval == $Gtk2::Gdk::Keysyms{plus}) {snom_key('VOLUME_UP'); return TRUE;}
312 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Subtract}) {snom_key('VOLUME_DOWN'); return TRUE;}
313 if ($keyval == $Gtk2::Gdk::Keysyms{minus}) {snom_key('VOLUME_DOWN'); return TRUE;}
314 if ($keyval == $Gtk2::Gdk::Keysyms{Return}) {snom_key("ENTER"); return TRUE;}
315 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Enter}) {snom_key("ENTER"); return TRUE;}
316 if ($keyval == $Gtk2::Gdk::Keysyms{Escape}) {snom_key("CANCEL"); return TRUE;}
317 if ($keyval == $Gtk2::Gdk::Keysyms{Left}) {snom_key("LEFT"); return TRUE;}
318 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Left}) {snom_key("LEFT"); return TRUE;}
319 if ($keyval == $Gtk2::Gdk::Keysyms{Right}) {snom_key("RIGHT"); return TRUE;}
320 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Right}) {snom_key("RIGHT"); return TRUE;}
321 if ($keyval == $Gtk2::Gdk::Keysyms{Up}) {snom_key("UP"); return TRUE;}
322 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Up}) {snom_key("UP"); return TRUE;}
323 if ($keyval == $Gtk2::Gdk::Keysyms{Down}) {snom_key("DOWN"); return TRUE;}
324 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Down}) {snom_key("DOWN"); return TRUE;}
325 if ($keyval == $Gtk2::Gdk::Keysyms{M}) {snom_key('MUTE'); return TRUE;}
326 if ($keyval == $Gtk2::Gdk::Keysyms{m}) {snom_key('MUTE'); return TRUE;}
327 if ($keyval == $Gtk2::Gdk::Keysyms{S}) {snom_key('SPEAKER'); return TRUE;}
328 if ($keyval == $Gtk2::Gdk::Keysyms{s}) {snom_key('SPEAKER'); return TRUE;}
329 if ($keyval == $Gtk2::Gdk::Keysyms{H}) {snom_key('HEADSET'); return TRUE;}
330 if ($keyval == $Gtk2::Gdk::Keysyms{h}) {snom_key('HEADSET'); return TRUE;}
331 if ($keyval == $Gtk2::Gdk::Keysyms{C}) {snom_key('CONFERENCE'); return TRUE;}
332 if ($keyval == $Gtk2::Gdk::Keysyms{c}) {snom_key('CONFERENCE'); return TRUE;}
333 if ($keyval == $Gtk2::Gdk::Keysyms{T}) {snom_key('TRANSFER'); return TRUE;}
334 if ($keyval == $Gtk2::Gdk::Keysyms{t}) {snom_key('TRANSFER'); return TRUE;}
335 if ($keyval == $Gtk2::Gdk::Keysyms{O}) {snom_key('F_R'); return TRUE;}
336 if ($keyval == $Gtk2::Gdk::Keysyms{o}) {snom_key('F_R'); return TRUE;}
337 if ($keyval == $Gtk2::Gdk::Keysyms{D}) {snom_key('DND'); return TRUE;}
338 if ($keyval == $Gtk2::Gdk::Keysyms{d}) {snom_key('DND'); return TRUE;}
d625d09e 339 if ($keyval == $Gtk2::Gdk::Keysyms{R}) {snom_key('REDIAL'); return TRUE;}
340 if ($keyval == $Gtk2::Gdk::Keysyms{r}) {snom_key('REDIAL'); return TRUE;}
341 if ($keyval == $Gtk2::Gdk::Keysyms{E}) {snom_key('SETTINGS'); return TRUE;}
342 if ($keyval == $Gtk2::Gdk::Keysyms{e}) {snom_key('SETTINGS'); return TRUE;}
343 if ($keyval == $Gtk2::Gdk::Keysyms{Y}) {snom_key('F_ADR_BOOK'); return TRUE;}
344 if ($keyval == $Gtk2::Gdk::Keysyms{y}) {snom_key('F_ADR_BOOK'); return TRUE;}
345 if ($keyval == $Gtk2::Gdk::Keysyms{P}) {snom_key('HELP'); return TRUE;}
346 if ($keyval == $Gtk2::Gdk::Keysyms{p}) {snom_key('HELP'); return TRUE;}
347 if ($keyval == $Gtk2::Gdk::Keysyms{U}) {snom_key('MENU'); return TRUE;}
348 if ($keyval == $Gtk2::Gdk::Keysyms{u}) {snom_key('MENU'); return TRUE;}
7829dff4 349 }
190de48a 350
351 if (!$event->state) {
352 for (my $i=1; $i<5; $i++) {
353 if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
354 snom_key("F${i}");
355 return TRUE;
356 }
357 }
358 } else {
5e67f822 359 if ($event->state & "mod1-mask") {
190de48a 360 for (my $i=1; $i<13; $i++) {
361 if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
362 snom_key("P${i}");
363 return TRUE;
364 }
365 }
366 }
367 }
368
369 print "Unhandled: Modifier: ".$event->state.", Key: ";
370 foreach my $key (keys(%Gtk2::Gdk::Keysyms)) {
371 if ($keyval == $Gtk2::Gdk::Keysyms{$key}) {
372 print "${key}\n";
373 return TRUE;
374 }
375 }
376 print "ERR\n";
377 return FALSE;
a3855c1d 378}
379
73968c99 380sub UpdatePhoneInfo
381{
b78d620f 382 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/");
c4ce2c54 383 my $response = $ua->request($req);
6c95c85a 384
10c97493 385 $g_identity->set_active(0);
e43da30d 386 while($g_identity->get_active() == 0) {
10c97493 387 $g_identity->remove_text(0);
388 $g_identity->set_active(0);
389 }
6c95c85a 390 my @lines=split("\n", $response->content());
76d5a918 391 my $num = 0;
6c95c85a 392 foreach (@lines) {
393 chomp;
394 #<option value="1" selected>51@stargate.gernoth.loc</option>
395 #<option value="2">89@asterix.ear-projekt.de</option>
396 #<option value="3">41@grumpy.gernoth.loc</option>
3cb02741 397 if (m/^\<option value=\"(.+)\"( selected)?\>([^<\@]*)\@([^<]*)\<\/option\>$/) {
19c75534 398 my $line = $3;
249f964a 399 $g_identity->append_text("${3}");
3cb02741 400 $g_identity->set_active(${1}-1) if(defined($2));
76d5a918 401 $num++;
6c95c85a 402 }
403 }
76d5a918 404 if ($num > 1) {
405 $g_identity->show;
406 } else {
407 $g_identity->hide;
408 }
73968c99 409}
410
ab877a99 411sub SwitchIdentity
412{
c78daee5 413 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/dummy.htm?SETTINGS=Set&active_line=".($g_identity->get_active+1));
414 $ua->request($req);
ab877a99 415}
416
a3855c1d 417sub CloseAppWindow
418{
419 $window->destroy;
420 return TRUE;
421}
Impressum, Datenschutz