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