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