]> git.zerfleddert.de Git - snom-frontend/blob - snom.pl
97b8e9937dca9ad06a5cf44b9d41b18e388b124a
[snom-frontend] / snom.pl
1 #!/bin/sh
2 #$Id: snom.pl,v 1.43 2006-05-23 19:14:09 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 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/command.htm?number=${number}");
73 $ua->request($req);
74 }
75
76 sub 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 '_') {
91 if($key=~m/^ARROWS(.*)$/) {
92 $g_key{$key} = Gtk2::Button->new;
93 $g_key{$key}->add($g_arrows{"${1}"});
94 } else {
95 $g_key{$key} = Gtk2::Button->new("${key}");
96 }
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
109 my $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; });
113 my $kphandler = $window->signal_connect(key_press_event => \&KBDInput);
114 $window->set_border_width(15);
115 $window->set_resizable(FALSE);
116
117 my $keypad = gen_table(4, 3, TRUE, 2, 2, [1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#']);
118
119 my $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
123 my $pkeys = gen_table(6, 2, TRUE, 2, 2, ['P1', 'P7', 'P2', 'P8', 'P3', 'P9', 'P4',
124 'P10', 'P5', 'P11', 'P6', 'P12']);
125
126 my $softkeys = gen_table(1, 4, FALSE, 0, 6, ['F1', 'F2', 'F3', 'F4']);
127
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
137 my $navi = gen_table(3, 5, FALSE, 0, 0,
138 ['_', '_', 'ARROWSup', '_', '_', 'X', 'ARROWSleft', '_', 'ARROWSright', 'OK', '_', '_', 'ARROWSdown', '_', '_']);
139
140 my $output = gen_table(2, 3, FALSE, 2, 2, ['-', '+', '_', '_Mute', '_Speaker', '_Headset']);
141
142 my $special = gen_table(1, 2, FALSE, 0, 2, ['Record', 'Retrieve']);
143
144 my $display = Gtk2::Entry->new();
145 $display->signal_connect(activate => \&DialNumber);
146 my $kph_blocked = FALSE;
147 $display->signal_connect(enter_notify_event => \&DisplayMouseOver, TRUE);
148 $display->signal_connect(leave_notify_event => \&DisplayMouseOver, FALSE);
149 $display->show();
150
151 my $dispbox = Gtk2::VBox->new(0, 5);
152 $dispbox->pack_start($display, 0, 0, 0);
153 $dispbox->pack_start($softkeys, 0, 0, 0);
154 $dispbox->pack_start($navi, 0, 0, 0);
155 $dispbox->show();
156
157 my $outbox = Gtk2::VBox->new(0, 0);
158 $outbox->pack_start($g_host, 0, 0, 0);
159 $outbox->pack_end($output, 0, 0, 0);
160 $outbox->show();
161
162 my $specialbox = Gtk2::VBox->new(0, 0);
163 $specialbox->pack_start($g_identity, 0, 0, 0);
164 $specialbox->pack_end($special, 0, 0, 0);
165 $specialbox->show();
166
167 my $ubox = Gtk2::HBox->new(0, 30);
168 $ubox->pack_start($outbox, 0, 0, 0);
169 $ubox->pack_start($dispbox, 0, 0, 0);
170 $ubox->pack_start($specialbox, 0, 0, 0);
171 $ubox->show();
172
173
174 my $kbbox = Gtk2::HBox->new(0, 30);
175 $kbbox->pack_start($keypad, 1, 1, 0);
176 $kbbox->pack_start($fkeys, 0, 0, 0);
177 $kbbox->show();
178
179 my $kvbox = Gtk2::VBox->new(0, 5);
180 $kvbox->pack_end($kbbox, 0, 0, 0);
181 $kvbox->show();
182
183 my $lbox = Gtk2::HBox->new(0, 30);
184 $lbox->pack_start($kvbox, 1, 1, 0);
185 $lbox->pack_start($pkeys, 0, 0, 0);
186 $lbox->show();
187
188 my $mainbox = Gtk2::VBox->new(0,5);
189 $mainbox->pack_start($ubox, 0, 0, 0);
190 $mainbox->pack_start($lbox, 0, 0, 0);
191 $mainbox->show();
192
193 $window->add($mainbox);
194 $window->show();
195
196 $g_key{OK}->grab_focus();
197
198 # Gtk2 event loop
199 Gtk2->main;
200
201 # Should never get here
202 exit( 0 );
203
204
205 sub KeyPressed
206 {
207 my ($button, $text) = @_;
208 $text=~ s/_//g;
209 foreach my $i (1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#',
210 'F1', 'F2', 'F3', 'F4',
211 'P1', 'P2', 'P3', 'P4', 'P5', 'P6',
212 'P7', 'P8', 'P9', 'P10', 'P11', 'P12') {
213 if ($i eq $text) {
214 snom_key($i);
215 return TRUE;
216 }
217 }
218
219 snom_key("REDIAL") if ( $text eq "Redial" );
220 snom_key("SETTINGS") if ( $text eq "Settings" );
221 snom_key("F_ADR_BOOK") if ( $text eq "Directory" );
222 snom_key("HELP") if ( $text eq "Help" );
223 snom_key("MENU") if ( $text eq "Menu" );
224 snom_key("SNOM") if ( $text eq "snom" );
225 snom_key("CONFERENCE") if ( $text eq "Conference" );
226 snom_key("TRANSFER") if ( $text eq "Transfer" );
227 snom_key("F_R") if ( $text eq "Hold" );
228 snom_key("DND") if ( $text eq "DND" );
229
230 snom_key("MUTE") if ( $text eq "Mute" );
231 snom_key("SPEAKER") if ( $text eq "Speaker" );
232 snom_key("HEADSET") if ( $text eq "Headset" );
233
234 snom_key("CANCEL") if ( $text eq "X" );
235 snom_key("ENTER") if ( $text eq "OK" );
236 snom_key("UP") if ( $text eq "ARROWSup" );
237 snom_key("DOWN") if ( $text eq "ARROWSdown" );
238 snom_key("LEFT") if ( $text eq "ARROWSleft" );
239 snom_key("RIGHT") if ( $text eq "ARROWSright" );
240
241 snom_key("F_REC") if ( $text eq "Record" );
242 snom_key("F_RETRIEVE") if ( $text eq "Retrieve" );
243
244 snom_key("VOLUME_UP") if ( $text eq "+" );
245 snom_key("VOLUME_DOWN") if ( $text eq "-" );
246 return TRUE;
247 }
248
249 sub DialNumber
250 {
251 my ($entry) = @_;
252
253 snom_number($entry->get_text());
254 return TRUE;
255 }
256
257 sub DisplayMouseOver
258 {
259 my ($widget, $event, $active) = @_;
260
261 if ($active) {
262 $widget->grab_focus();
263 if (!$kph_blocked) {
264 $window->signal_handler_block($kphandler);
265 $kph_blocked=TRUE;
266 }
267 } else {
268 $g_key{OK}->grab_focus();
269 if ($kph_blocked) {
270 $window->signal_handler_unblock($kphandler);
271 $kph_blocked=FALSE;
272 }
273 }
274
275 return TRUE;
276 }
277
278 sub KBDInput
279 {
280 my ($widget, $event) = @_;
281
282 my $keyval = $event->keyval;
283
284 for (my $i=0; $i<10; $i++) {
285 if ($keyval == $Gtk2::Gdk::Keysyms{$i} || $keyval == $Gtk2::Gdk::Keysyms{"KP_${i}"}) {
286 snom_key($i);
287 return TRUE;
288 }
289 }
290
291 if (!$event->state || $event->state eq 'shift-mask') {
292 if ($keyval == $Gtk2::Gdk::Keysyms{asterisk}) {snom_key('*'); return TRUE;}
293 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Multiply}) {snom_key('*'); return TRUE;}
294 if ($keyval == $Gtk2::Gdk::Keysyms{numbersign}) {snom_key('#'); return TRUE;}
295 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Add}) {snom_key('VOLUME_UP'); return TRUE;}
296 if ($keyval == $Gtk2::Gdk::Keysyms{plus}) {snom_key('VOLUME_UP'); return TRUE;}
297 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Subtract}) {snom_key('VOLUME_DOWN'); return TRUE;}
298 if ($keyval == $Gtk2::Gdk::Keysyms{minus}) {snom_key('VOLUME_DOWN'); return TRUE;}
299 if ($keyval == $Gtk2::Gdk::Keysyms{Return}) {snom_key("ENTER"); return TRUE;}
300 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Enter}) {snom_key("ENTER"); return TRUE;}
301 if ($keyval == $Gtk2::Gdk::Keysyms{Escape}) {snom_key("CANCEL"); return TRUE;}
302 if ($keyval == $Gtk2::Gdk::Keysyms{Left}) {snom_key("LEFT"); return TRUE;}
303 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Left}) {snom_key("LEFT"); return TRUE;}
304 if ($keyval == $Gtk2::Gdk::Keysyms{Right}) {snom_key("RIGHT"); return TRUE;}
305 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Right}) {snom_key("RIGHT"); return TRUE;}
306 if ($keyval == $Gtk2::Gdk::Keysyms{Up}) {snom_key("UP"); return TRUE;}
307 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Up}) {snom_key("UP"); return TRUE;}
308 if ($keyval == $Gtk2::Gdk::Keysyms{Down}) {snom_key("DOWN"); return TRUE;}
309 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Down}) {snom_key("DOWN"); return TRUE;}
310 if ($keyval == $Gtk2::Gdk::Keysyms{M}) {snom_key('MUTE'); return TRUE;}
311 if ($keyval == $Gtk2::Gdk::Keysyms{m}) {snom_key('MUTE'); return TRUE;}
312 if ($keyval == $Gtk2::Gdk::Keysyms{S}) {snom_key('SPEAKER'); return TRUE;}
313 if ($keyval == $Gtk2::Gdk::Keysyms{s}) {snom_key('SPEAKER'); return TRUE;}
314 if ($keyval == $Gtk2::Gdk::Keysyms{H}) {snom_key('HEADSET'); return TRUE;}
315 if ($keyval == $Gtk2::Gdk::Keysyms{h}) {snom_key('HEADSET'); return TRUE;}
316 if ($keyval == $Gtk2::Gdk::Keysyms{C}) {snom_key('CONFERENCE'); return TRUE;}
317 if ($keyval == $Gtk2::Gdk::Keysyms{c}) {snom_key('CONFERENCE'); return TRUE;}
318 if ($keyval == $Gtk2::Gdk::Keysyms{T}) {snom_key('TRANSFER'); return TRUE;}
319 if ($keyval == $Gtk2::Gdk::Keysyms{t}) {snom_key('TRANSFER'); return TRUE;}
320 if ($keyval == $Gtk2::Gdk::Keysyms{O}) {snom_key('F_R'); return TRUE;}
321 if ($keyval == $Gtk2::Gdk::Keysyms{o}) {snom_key('F_R'); return TRUE;}
322 if ($keyval == $Gtk2::Gdk::Keysyms{D}) {snom_key('DND'); return TRUE;}
323 if ($keyval == $Gtk2::Gdk::Keysyms{d}) {snom_key('DND'); return TRUE;}
324 if ($keyval == $Gtk2::Gdk::Keysyms{R}) {snom_key('REDIAL'); return TRUE;}
325 if ($keyval == $Gtk2::Gdk::Keysyms{r}) {snom_key('REDIAL'); return TRUE;}
326 if ($keyval == $Gtk2::Gdk::Keysyms{E}) {snom_key('SETTINGS'); return TRUE;}
327 if ($keyval == $Gtk2::Gdk::Keysyms{e}) {snom_key('SETTINGS'); return TRUE;}
328 if ($keyval == $Gtk2::Gdk::Keysyms{Y}) {snom_key('F_ADR_BOOK'); return TRUE;}
329 if ($keyval == $Gtk2::Gdk::Keysyms{y}) {snom_key('F_ADR_BOOK'); return TRUE;}
330 if ($keyval == $Gtk2::Gdk::Keysyms{P}) {snom_key('HELP'); return TRUE;}
331 if ($keyval == $Gtk2::Gdk::Keysyms{p}) {snom_key('HELP'); return TRUE;}
332 if ($keyval == $Gtk2::Gdk::Keysyms{U}) {snom_key('MENU'); return TRUE;}
333 if ($keyval == $Gtk2::Gdk::Keysyms{u}) {snom_key('MENU'); return TRUE;}
334 }
335
336 if (!$event->state) {
337 for (my $i=1; $i<5; $i++) {
338 if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
339 snom_key("F${i}");
340 return TRUE;
341 }
342 }
343 } else {
344 if ($event->state eq 'mod1-mask') {
345 for (my $i=1; $i<13; $i++) {
346 if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
347 snom_key("P${i}");
348 return TRUE;
349 }
350 }
351 }
352 }
353
354 print "Unhandled: Modifier: ".$event->state.", Key: ";
355 foreach my $key (keys(%Gtk2::Gdk::Keysyms)) {
356 if ($keyval == $Gtk2::Gdk::Keysyms{$key}) {
357 print "${key}\n";
358 return TRUE;
359 }
360 }
361 print "ERR\n";
362 return FALSE;
363 }
364
365 sub UpdatePhoneInfo
366 {
367 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/");
368 my $response = $ua->request($req);
369
370 $g_identity->set_active(0);
371 while($g_identity->get_active() == 0) {
372 $g_identity->remove_text(0);
373 $g_identity->set_active(0);
374 }
375 my @lines=split("\n", $response->content());
376 my $num = 0;
377 foreach (@lines) {
378 chomp;
379 #<option value="1" selected>51@stargate.gernoth.loc</option>
380 #<option value="2">89@asterix.ear-projekt.de</option>
381 #<option value="3">41@grumpy.gernoth.loc</option>
382 if (m/^\<option value=\"(.+)\"( selected)?\>([^<\@]*)\@([^<]*)\<\/option\>$/) {
383 my $line = $3;
384 $g_identity->append_text("${3}");
385 $g_identity->set_active(${1}-1) if(defined($2));
386 $num++;
387 }
388 }
389 if ($num > 1) {
390 $g_identity->show;
391 } else {
392 $g_identity->hide;
393 }
394 }
395
396 sub SwitchIdentity
397 {
398 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));
399 $ua->request($req);
400 }
401
402 sub CloseAppWindow
403 {
404 $window->destroy;
405 return TRUE;
406 }
Impressum, Datenschutz