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