]> git.zerfleddert.de Git - snom-frontend/blob - snom.pl
aba0d35f150a0bc8dd55c2c310a1d22aa16e3b79
[snom-frontend] / snom.pl
1 #!/bin/sh
2 #$Id: snom.pl,v 1.32 2006-05-22 12:03:37 sithglan Exp $
3
4 # http://developer.gnome.org/doc/API/2.2/gtk/gtk-migrating-GtkComboBox.html
5
6 PATH=/opt/csw/bin:/opt/local/bin:/usr/bin:/bin exec perl -w -x "$0" "$@"
7
8 #!perl
9
10 use strict;
11 use warnings FATAL => 'all';
12
13 use Glib qw/TRUE FALSE/;
14 use Gtk2 '-init';
15 use Gtk2::Gdk::Keysyms;
16 use LWP::UserAgent;
17
18 my %g_key = ();
19 my $g_host = Gtk2::ComboBox->new_text();
20 my $g_identity = Gtk2::ComboBox->new_text();
21 my $ua = LWP::UserAgent->new;
22
23 open(INIFILE,"<$ENV{HOME}/.snomrc") || die("can't open config: $ENV{HOME}/.snomrc: $!");
24 my %Config = ();
25 my @sections = ();
26 while(<INIFILE>) {
27 chomp;
28
29 next if (m/^#/);
30
31 if (m/^\s*\[(.*)\]\s*$/) {
32 push @sections, $1;
33 next;
34 }
35
36 if (@sections) {
37 if (m/^\s*(.+)\s*=\s*(.*)\s*$/) {
38 ${$Config{$sections[$#sections]}}{$1} = $2;
39 }
40 }
41 }
42 close(INIFILE);
43
44 for my $section (@sections) {
45 if (defined(${$Config{$section}}{host})) {
46 $g_host->append_text($section);
47 if (defined(${$Config{$section}}{login}) &&
48 defined(${$Config{$section}}{password})) {
49 $ua->credentials(${$Config{$section}}{host}.":80",
50 "snom",
51 ${$Config{$section}}{login},
52 ${$Config{$section}}{password});
53 }
54 }
55 }
56 $g_host->set_active(0);
57 UpdatePhoneInfo();
58 $g_host->signal_connect(changed => \&UpdatePhoneInfo);
59 $g_host->show();
60 $g_host->signal_connect(changed => \&SwitchIdentity);
61 $g_identity->show();
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 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/command.htm?number=${number}");
75 $ua->request($req);
76 }
77
78 sub gen_table {
79 my $rows = shift;
80 my $cols = shift;
81 my $homogeneous = shift;
82 my $row_spacing = shift;
83 my $col_spacing = shift;
84 my $keys = shift;
85
86 my $table = Gtk2::Table->new($rows, $cols, $homogeneous);
87 $table->set_row_spacings($row_spacing);
88 $table->set_col_spacings($col_spacing);
89
90 my $n = 0;
91 foreach my $key (@$keys) {
92 if ($key ne '_') {
93 $g_key{$key} = Gtk2::Button->new("${key}");
94 $g_key{$key}->signal_connect(clicked => \&KeyPressed, $key);
95 $table->attach_defaults($g_key{$key}, (($n)%$cols), (($n)%$cols)+1, int(($n)/$cols), int((($n)/$cols)+1));
96 $g_key{$key}->show();
97 }
98 $n++;
99 }
100
101 $table->show();
102
103 $table;
104 }
105
106 my $window = Gtk2::Window->new('toplevel');
107 $window->set_title("snom");
108 $window->signal_connect(delete_event => \&CloseAppWindow);
109 $window->signal_connect(destroy => sub { Gtk2->main_quit; });
110 my $kphandler = $window->signal_connect(key_press_event => \&KBDInput);
111 $window->set_border_width(15);
112 $window->set_resizable(FALSE);
113
114 my $keypad = gen_table(4, 3, TRUE, 2, 2, [1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#']);
115
116 my $fkeys = gen_table(6, 2, TRUE, 2, 2,
117 ['_Redial', 'S_ettings', 'Director_y', 'Hel_p', 'Men_u', 'snom', '_', '_',
118 '_Conference', '_Transfer', 'H_old', '_DND']);
119
120 my $pkeys = gen_table(6, 2, TRUE, 2, 2, ['P1', 'P7', 'P2', 'P8', 'P3', 'P9', 'P4',
121 'P10', 'P5', 'P11', 'P6', 'P12']);
122
123 my $softkeys = gen_table(1, 4, FALSE, 0, 6, ['F1', 'F2', 'F3', 'F4']);
124
125 my $navi = gen_table(3, 5, FALSE, 0, 0,
126 ['_', '_', '^', '_', '_', 'X', '<', '_', '>', 'OK', '_', '_', 'V', '_', '_']);
127
128 my $output = gen_table(2, 3, FALSE, 2, 2, ['-', '+', '_', '_Mute', '_Speaker', '_Headset']);
129
130 my $special = gen_table(1, 2, FALSE, 0, 2, ['Record', 'Retrieve']);
131
132 my $display = Gtk2::Entry->new();
133 $display->signal_connect(activate => \&DialNumber);
134 my $kph_blocked = FALSE;
135 $display->signal_connect(enter_notify_event => \&DisplayMouseOver, TRUE);
136 $display->signal_connect(leave_notify_event => \&DisplayMouseOver, FALSE);
137 $display->show();
138
139 my $dispbox = Gtk2::VBox->new(0, 5);
140 $dispbox->pack_start($display, 0, 0, 0);
141 $dispbox->pack_start($softkeys, 0, 0, 0);
142 $dispbox->pack_start($navi, 0, 0, 0);
143 $dispbox->show();
144
145 my $outbox = Gtk2::VBox->new(0, 0);
146 $outbox->pack_start($g_host, 0, 0, 0);
147 $outbox->pack_end($output, 0, 0, 0);
148 $outbox->show();
149
150 my $specialbox = Gtk2::VBox->new(0, 0);
151 $specialbox->pack_start($g_identity, 0, 0, 0);
152 $specialbox->pack_end($special, 0, 0, 0);
153 $specialbox->show();
154
155 my $ubox = Gtk2::HBox->new(0, 30);
156 $ubox->pack_start($outbox, 0, 0, 0);
157 $ubox->pack_start($dispbox, 0, 0, 0);
158 $ubox->pack_start($specialbox, 0, 0, 0);
159 $ubox->show();
160
161
162 my $kbbox = Gtk2::HBox->new(0, 30);
163 $kbbox->pack_start($keypad, 1, 1, 0);
164 $kbbox->pack_start($fkeys, 0, 0, 0);
165 $kbbox->show();
166
167 my $kvbox = Gtk2::VBox->new(0, 5);
168 $kvbox->pack_end($kbbox, 0, 0, 0);
169 $kvbox->show();
170
171 my $lbox = Gtk2::HBox->new(0, 30);
172 $lbox->pack_start($kvbox, 1, 1, 0);
173 $lbox->pack_start($pkeys, 0, 0, 0);
174 $lbox->show();
175
176 my $mainbox = Gtk2::VBox->new(0,5);
177 $mainbox->pack_start($ubox, 0, 0, 0);
178 $mainbox->pack_start($lbox, 0, 0, 0);
179 $mainbox->show();
180
181 $window->add($mainbox);
182 $window->show();
183
184 $g_key{OK}->grab_focus();
185
186 # Gtk2 event loop
187 Gtk2->main;
188
189 # Should never get here
190 exit( 0 );
191
192
193 sub KeyPressed
194 {
195 my ($button, $text) = @_;
196 $text=~ s/_//g;
197 foreach my $i (1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#',
198 'F1', 'F2', 'F3', 'F4',
199 'P1', 'P2', 'P3', 'P4', 'P5', 'P6',
200 'P7', 'P8', 'P9', 'P10', 'P11', 'P12') {
201 if ($i eq $text) {
202 snom_key($i);
203 return TRUE;
204 }
205 }
206
207 snom_key("REDIAL") if ( $text eq "Redial" );
208 snom_key("SETTINGS") if ( $text eq "Settings" );
209 snom_key("F_ADR_BOOK") if ( $text eq "Directory" );
210 snom_key("HELP") if ( $text eq "Help" );
211 snom_key("MENU") if ( $text eq "Menu" );
212 snom_key("SNOM") if ( $text eq "snom" );
213 snom_key("CONFERENCE") if ( $text eq "Conference" );
214 snom_key("TRANSFER") if ( $text eq "Transfer" );
215 snom_key("F_R") if ( $text eq "Hold" );
216 snom_key("DND") if ( $text eq "DND" );
217
218 snom_key("MUTE") if ( $text eq "Mute" );
219 snom_key("SPEAKER") if ( $text eq "Speaker" );
220 snom_key("HEADSET") if ( $text eq "Headset" );
221
222 snom_key("CANCEL") if ( $text eq "X" );
223 snom_key("ENTER") if ( $text eq "OK" );
224 snom_key("UP") if ( $text eq "^" );
225 snom_key("DOWN") if ( $text eq "V" );
226 snom_key("LEFT") if ( $text eq "<" );
227 snom_key("RIGHT") if ( $text eq ">" );
228
229 snom_key("F_REC") if ( $text eq "Record" );
230 snom_key("F_RETRIEVE") if ( $text eq "Retrieve" );
231
232 snom_key("VOLUME_UP") if ( $text eq "+" );
233 snom_key("VOLUME_DOWN") if ( $text eq "-" );
234 return TRUE;
235 }
236
237 sub DialNumber
238 {
239 my ($entry) = @_;
240
241 snom_number($entry->get_text());
242 return TRUE;
243 }
244
245 sub DisplayMouseOver
246 {
247 my ($widget, $event, $active) = @_;
248
249 if ($active) {
250 $widget->grab_focus();
251 if (!$kph_blocked) {
252 $window->signal_handler_block($kphandler);
253 $kph_blocked=TRUE;
254 }
255 } else {
256 $g_key{OK}->grab_focus();
257 if ($kph_blocked) {
258 $window->signal_handler_unblock($kphandler);
259 $kph_blocked=FALSE;
260 }
261 }
262
263 return TRUE;
264 }
265
266 sub KBDInput
267 {
268 my ($widget, $event) = @_;
269
270 my $keyval = $event->keyval;
271
272 for (my $i=0; $i<10; $i++) {
273 if ($keyval == $Gtk2::Gdk::Keysyms{$i} || $keyval == $Gtk2::Gdk::Keysyms{"KP_${i}"}) {
274 snom_key($i);
275 return TRUE;
276 }
277 }
278
279 if (!$event->state || $event->state eq 'shift-mask') {
280 if ($keyval == $Gtk2::Gdk::Keysyms{asterisk}) {snom_key('*'); return TRUE;}
281 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Multiply}) {snom_key('*'); return TRUE;}
282 if ($keyval == $Gtk2::Gdk::Keysyms{numbersign}) {snom_key('#'); return TRUE;}
283 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Add}) {snom_key('VOLUME_UP'); return TRUE;}
284 if ($keyval == $Gtk2::Gdk::Keysyms{plus}) {snom_key('VOLUME_UP'); return TRUE;}
285 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Subtract}) {snom_key('VOLUME_DOWN'); return TRUE;}
286 if ($keyval == $Gtk2::Gdk::Keysyms{minus}) {snom_key('VOLUME_DOWN'); return TRUE;}
287 if ($keyval == $Gtk2::Gdk::Keysyms{Return}) {snom_key("ENTER"); return TRUE;}
288 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Enter}) {snom_key("ENTER"); return TRUE;}
289 if ($keyval == $Gtk2::Gdk::Keysyms{Escape}) {snom_key("CANCEL"); return TRUE;}
290 if ($keyval == $Gtk2::Gdk::Keysyms{Left}) {snom_key("LEFT"); return TRUE;}
291 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Left}) {snom_key("LEFT"); return TRUE;}
292 if ($keyval == $Gtk2::Gdk::Keysyms{Right}) {snom_key("RIGHT"); return TRUE;}
293 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Right}) {snom_key("RIGHT"); return TRUE;}
294 if ($keyval == $Gtk2::Gdk::Keysyms{Up}) {snom_key("UP"); return TRUE;}
295 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Up}) {snom_key("UP"); return TRUE;}
296 if ($keyval == $Gtk2::Gdk::Keysyms{Down}) {snom_key("DOWN"); return TRUE;}
297 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Down}) {snom_key("DOWN"); return TRUE;}
298 if ($keyval == $Gtk2::Gdk::Keysyms{M}) {snom_key('MUTE'); return TRUE;}
299 if ($keyval == $Gtk2::Gdk::Keysyms{m}) {snom_key('MUTE'); return TRUE;}
300 if ($keyval == $Gtk2::Gdk::Keysyms{S}) {snom_key('SPEAKER'); return TRUE;}
301 if ($keyval == $Gtk2::Gdk::Keysyms{s}) {snom_key('SPEAKER'); return TRUE;}
302 if ($keyval == $Gtk2::Gdk::Keysyms{H}) {snom_key('HEADSET'); return TRUE;}
303 if ($keyval == $Gtk2::Gdk::Keysyms{h}) {snom_key('HEADSET'); return TRUE;}
304 if ($keyval == $Gtk2::Gdk::Keysyms{C}) {snom_key('CONFERENCE'); return TRUE;}
305 if ($keyval == $Gtk2::Gdk::Keysyms{c}) {snom_key('CONFERENCE'); return TRUE;}
306 if ($keyval == $Gtk2::Gdk::Keysyms{T}) {snom_key('TRANSFER'); return TRUE;}
307 if ($keyval == $Gtk2::Gdk::Keysyms{t}) {snom_key('TRANSFER'); return TRUE;}
308 if ($keyval == $Gtk2::Gdk::Keysyms{O}) {snom_key('F_R'); return TRUE;}
309 if ($keyval == $Gtk2::Gdk::Keysyms{o}) {snom_key('F_R'); return TRUE;}
310 if ($keyval == $Gtk2::Gdk::Keysyms{D}) {snom_key('DND'); return TRUE;}
311 if ($keyval == $Gtk2::Gdk::Keysyms{d}) {snom_key('DND'); return TRUE;}
312 if ($keyval == $Gtk2::Gdk::Keysyms{R}) {snom_key('REDIAL'); return TRUE;}
313 if ($keyval == $Gtk2::Gdk::Keysyms{r}) {snom_key('REDIAL'); return TRUE;}
314 if ($keyval == $Gtk2::Gdk::Keysyms{E}) {snom_key('SETTINGS'); return TRUE;}
315 if ($keyval == $Gtk2::Gdk::Keysyms{e}) {snom_key('SETTINGS'); return TRUE;}
316 if ($keyval == $Gtk2::Gdk::Keysyms{Y}) {snom_key('F_ADR_BOOK'); return TRUE;}
317 if ($keyval == $Gtk2::Gdk::Keysyms{y}) {snom_key('F_ADR_BOOK'); return TRUE;}
318 if ($keyval == $Gtk2::Gdk::Keysyms{P}) {snom_key('HELP'); return TRUE;}
319 if ($keyval == $Gtk2::Gdk::Keysyms{p}) {snom_key('HELP'); return TRUE;}
320 if ($keyval == $Gtk2::Gdk::Keysyms{U}) {snom_key('MENU'); return TRUE;}
321 if ($keyval == $Gtk2::Gdk::Keysyms{u}) {snom_key('MENU'); return TRUE;}
322 }
323
324 if (!$event->state) {
325 for (my $i=1; $i<5; $i++) {
326 if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
327 snom_key("F${i}");
328 return TRUE;
329 }
330 }
331 } else {
332 if ($event->state eq 'mod1-mask') {
333 for (my $i=1; $i<13; $i++) {
334 if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
335 snom_key("P${i}");
336 return TRUE;
337 }
338 }
339 }
340 }
341
342 print "Unhandled: Modifier: ".$event->state.", Key: ";
343 foreach my $key (keys(%Gtk2::Gdk::Keysyms)) {
344 if ($keyval == $Gtk2::Gdk::Keysyms{$key}) {
345 print "${key}\n";
346 return TRUE;
347 }
348 }
349 print "ERR\n";
350 return FALSE;
351 }
352
353 sub UpdatePhoneInfo
354 {
355 print "TODO: Update PhoneInfo from <".${$Config{$sections[$g_host->get_active]}}{host}."> here!\n";
356 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/");
357 $ua->request($req);
358 if (! $ua->success) {
359 die("Can't retrieve line information: ", $ua->response->status_line);
360 }
361
362 print $req->response->content()."\n";
363 $g_identity->append_text("\@line1");
364 $g_identity->set_active(0);
365 }
366
367 sub SwitchIdentity
368 {
369 print "TODO: Switch Identity on <".${$Config{$sections[$g_host->get_active]}}{host}."> to ".$g_identity->get_active."!\n";
370 }
371
372 sub CloseAppWindow
373 {
374 $window->destroy;
375 return TRUE;
376 }
Impressum, Datenschutz