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