]> git.zerfleddert.de Git - snom-frontend/blobdiff - snom.pl
Fixe problem when calling from different path
[snom-frontend] / snom.pl
diff --git a/snom.pl b/snom.pl
index 45dfe5cfe88e4ff49b70d980df498dfd98e24bcb..93b1eee690a6e581d842b2c0974d4366cb161513 100755 (executable)
--- a/snom.pl
+++ b/snom.pl
 #!/bin/sh
-#$Id: snom.pl,v 1.10 2006-05-21 13:26:27 simigern Exp $
 
 PATH=/opt/csw/bin:/opt/local/bin:/usr/bin:/bin exec perl -w -x "$0" "$@"
 
 #!perl
 
+use strict;
+use warnings FATAL => 'all';
+
 use Glib qw/TRUE FALSE/;
 use Gtk2 '-init';
 use Gtk2::Gdk::Keysyms;
-use strict;
-
 use LWP::UserAgent;
+use FindBin qw($Bin);
+
+
+my %g_key = ();
+my %g_arrows;
+my $g_host = Gtk2::ComboBox->new_text();
+my $g_identity = Gtk2::ComboBox->new_text();
 my $ua = LWP::UserAgent->new;
-#$ua->credentials("${ARGV[0]}:80","snom","root","geheim");
+
+open(INIFILE,"<$ENV{HOME}/.snomrc") || die("can't open config: $ENV{HOME}/.snomrc: $!");
+my %Config = ();
+my @sections = ();
+while(<INIFILE>) {
+       chomp;
+
+       next if (m/^#/);
+       
+       if (m/^\s*\[(.*)\]\s*$/) {
+               push @sections, $1;
+               next;
+       }
+
+       if (@sections) {
+               if (m/^\s*(.+)\s*=\s*(.*)\s*$/) {
+                       ${$Config{$sections[$#sections]}}{$1} = $2;
+               }
+       }
+}
+close(INIFILE);
+
+for my $section (@sections) {
+       if (defined(${$Config{$section}}{host})) {
+               $g_host->append_text($section);
+               if (defined(${$Config{$section}}{login}) &&
+                       defined(${$Config{$section}}{password})) {
+                       $ua->credentials(${$Config{$section}}{host}.":80",
+                               "snom",
+                               ${$Config{$section}}{login},
+                               ${$Config{$section}}{password});
+               }
+       }
+}
+$g_host->set_active(0);
+UpdatePhoneInfo();
+$g_host->signal_connect(changed => \&UpdatePhoneInfo);
+$g_host->show() if($#sections);
+$g_identity->signal_connect(changed => \&SwitchIdentity);
 
 set_locale Gtk2;
 
-sub snom_key(@) {
-       (my $key) = @_;
+sub snom_key {
+       my $key = shift;
        $key='%23' if ($key eq '#');
-       my $req = HTTP::Request->new(GET => "http://${ARGV[0]}/command.htm?key=${key}");
+       my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/command.htm?key=${key}");
        $ua->request($req);
 }
 
-sub snom_number(@) {
-       (my $number) = @_;
-       my $req = HTTP::Request->new(GET => "http://${ARGV[0]}/command.htm?number=${number}");
+sub snom_number {
+       my $number = shift;
+       $number =~ s/[^\d]//g;
+       my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/command.htm?number=${number}");
        $ua->request($req);
 }
 
-if (!defined($ARGV[0])) {
-       print STDERR "Usage: ${0} snom.phone.address\n";
-       exit 1
+sub gen_table {
+       my $rows = shift;
+       my $cols = shift;
+       my $homogeneous = shift;
+       my $row_spacing = shift;
+       my $col_spacing = shift;
+       my $keys = shift;
+
+       my $table = Gtk2::Table->new($rows, $cols, $homogeneous);
+       $table->set_row_spacings($row_spacing);
+       $table->set_col_spacings($col_spacing);
+
+       my $n = 0;
+       foreach my $key (@$keys) {
+               if ($key ne '_') {
+                       if($key=~m/^ARROWS(.*)$/) {
+                               $g_key{$key} = Gtk2::Button->new;
+                               $g_key{$key}->add($g_arrows{"${1}"});
+                       } else {
+                               $g_key{$key} = Gtk2::Button->new("${key}");
+                       }
+                       $g_key{$key}->signal_connect(clicked => \&KeyPressed, $key);
+                       $table->attach_defaults($g_key{$key}, (($n)%$cols), (($n)%$cols)+1, int(($n)/$cols), int((($n)/$cols)+1));
+                       $g_key{$key}->show();
+               }
+               $n++;
+       }
+
+       $table->show();
+
+       $table;
 }
 
 my $window = Gtk2::Window->new('toplevel');
@@ -42,99 +116,32 @@ my $kphandler = $window->signal_connect(key_press_event => \&KBDInput);
 $window->set_border_width(15);
 $window->set_resizable(FALSE);
 
-my $keypad = Gtk2::Table->new(4, 3, 1);
-$keypad->set_row_spacings(2);
-$keypad->set_col_spacings(2);
-my %key = ();
-my $n = 0;
-foreach my $i (1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#') {
-       $key{$i} = Gtk2::Button->new("  ${i}  ");
-       $key{$i}->signal_connect(clicked => \&KeyPressed, $i);
-       $keypad->attach_defaults($key{$i}, (($n)%3), (($n)%3)+1, int(($n)/3), int((($n)/3)+1));
-       $key{$i}->show();
-       $n++;
-}
-$keypad->show();
-
-my $fkeys = Gtk2::Table->new(6, 2, 1);
-$fkeys->set_row_spacings(2);
-$fkeys->set_col_spacings(2);
-$n = 0;
-foreach my $i qw(Redial Settings Directory Help Menu snom _ _ _Conference _Transfer H_old _DND) {
-       if ($i ne '_') {
-               $key{$i} = Gtk2::Button->new("${i}");
-               $key{$i}->signal_connect(clicked => \&KeyPressed, $i);
-               $fkeys->attach_defaults($key{$i}, (($n)%2), (($n)%2)+1, int(($n)/2), int((($n)/2)+1));
-               $key{$i}->show();
-       }
-       $n++;
-}
-$fkeys->show();
-
-my $pkeys = Gtk2::Table->new(6, 2, 1);
-$pkeys->set_row_spacings(2);
-$pkeys->set_col_spacings(2);
-$n = 0;
-foreach my $i qw(P7 P1 P8 P2 P9 P3 P10 P4 P11 P5 P12 P6) {
-       $key{$i} = Gtk2::Button->new("${i}");
-       $key{$i}->signal_connect(clicked => \&KeyPressed, $i);
-       $pkeys->attach_defaults($key{$i}, (($n+1)%2), (($n+1)%2)+1, int($n/2), int($n/2)+1);
-       $key{$i}->show();
-       $n++;
-}
-$pkeys->show();
-
-my $softkeys = Gtk2::Table->new(1, 4);
-$softkeys->set_col_spacings(6);
-$n = 0;
-foreach my $i qw(F1 F2 F3 F4) {
-       $key{$i} = Gtk2::Button->new("${i}");
-       $key{$i}->signal_connect(clicked => \&KeyPressed, $i);
-       $softkeys->attach_defaults($key{$i}, $n, $n+1, 0, 1);
-       $key{$i}->show();
-       $n++;
-}
-$softkeys->show();
-
-my $navi = Gtk2::Table->new(3, 5);
-$n = 0;
-foreach my $i qw(_ _ ^ _  _ X < _ > OK _ _ V _ _) {
-       if ( $i ne '_' ) {
-               $key{$i} = Gtk2::Button->new("${i}");
-               $key{$i}->signal_connect(clicked => \&KeyPressed, $i);
-               $navi->attach_defaults($key{$i}, (($n)%5), (($n)%5)+1, int(($n)/5), int((($n)/5)+1));
-               $key{$i}->show();
-       }
-       $n++;
-}
-$navi->show();
-
-my $output = Gtk2::Table->new(2, 3);
-$output->set_row_spacings(2);
-$output->set_col_spacings(2);
-$n = 0;
-foreach my $i qw(- + _ _Mute _Speaker _Headset) {
-       if ( $i ne '_' ) {
-               $key{$i} = Gtk2::Button->new("${i}");
-               $key{$i}->signal_connect(clicked => \&KeyPressed, $i);
-               $output->attach_defaults($key{$i}, (($n)%3), (($n)%3)+1, int(($n)/3), int((($n)/3)+1));
-               $key{$i}->show();
-       }
-       $n++;
-}
-$output->show();
-
-my $special= Gtk2::Table->new(1, 2);
-$special->set_col_spacings(2);
-$n = 0;
-foreach my $i qw(Record Retrieve) {
-       $key{$i} = Gtk2::Button->new("${i}");
-       $key{$i}->signal_connect(clicked => \&KeyPressed, $i);
-       $special->attach_defaults($key{$i}, $n, $n+1, 0, 1);
-       $key{$i}->show();
-       $n++;
-}
-$special->show();
+my $keypad = gen_table(4, 3, TRUE, 2, 2, [1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#']);
+
+my $fkeys = gen_table(6, 2, TRUE, 2, 2, 
+       ['_Redial', 'S_ettings', 'Director_y', 'Hel_p', 'Men_u', 'snom', '_', '_',
+       '_Conference', '_Transfer', 'H_old', '_DND']);
+
+my $pkeys = gen_table(6, 2, TRUE, 2, 2, ['P1', 'P7', 'P2', 'P8', 'P3', 'P9', 'P4',
+       'P10', 'P5', 'P11', 'P6', 'P12']);
+
+my $softkeys = gen_table(1, 4, FALSE, 0, 6, ['F1', 'F2', 'F3', 'F4']);
+
+$g_arrows{up} = Gtk2::Arrow->new('up', 'none');
+$g_arrows{up}->show();
+$g_arrows{down} = Gtk2::Arrow->new('down', 'none');
+$g_arrows{down}->show();
+$g_arrows{left} = Gtk2::Arrow->new('left', 'none');
+$g_arrows{left}->show();
+$g_arrows{right} = Gtk2::Arrow->new('right', 'none');
+$g_arrows{right}->show();
+
+my $navi = gen_table(3, 5, FALSE, 0, 0,
+       ['_', '_', 'ARROWSup', '_', '_', 'X', 'ARROWSleft', '_', 'ARROWSright', 'OK', '_', '_', 'ARROWSdown', '_', '_']);
+
+my $output = gen_table(2, 3, FALSE, 2, 2, ['-', '+', '_', '_Mute', '_Speaker', '_Headset']);
+
+my $special = gen_table(1, 2, FALSE, 0, 2, ['Record', 'Retrieve']);
 
 my $display = Gtk2::Entry->new();
 $display->signal_connect(activate => \&DialNumber);
@@ -143,17 +150,27 @@ $display->signal_connect(enter_notify_event => \&DisplayMouseOver, TRUE);
 $display->signal_connect(leave_notify_event => \&DisplayMouseOver, FALSE);
 $display->show();
 
+my $cbextern = Gtk2::CheckButton->new("extern");
+$cbextern->show();
+
+my $dialbox = Gtk2::HBox->new(0, 30);
+$dialbox->pack_start($display, 0, 0, 0);
+$dialbox->pack_start($cbextern, 0, 0, 0);
+$dialbox->show();
+
 my $dispbox = Gtk2::VBox->new(0, 5);
-$dispbox->pack_start($display, 0, 0, 0);
+$dispbox->pack_start($dialbox, 0, 0, 0);
 $dispbox->pack_start($softkeys, 0, 0, 0);
 $dispbox->pack_start($navi, 0, 0, 0);
 $dispbox->show();
 
 my $outbox = Gtk2::VBox->new(0, 0);
+$outbox->pack_start($g_host, 0, 0, 0);
 $outbox->pack_end($output, 0, 0, 0);
 $outbox->show();
 
 my $specialbox = Gtk2::VBox->new(0, 0);
+$specialbox->pack_start($g_identity, 0, 0, 0);
 $specialbox->pack_end($special, 0, 0, 0);
 $specialbox->show();
 
@@ -183,10 +200,60 @@ $mainbox->pack_start($ubox, 0, 0, 0);
 $mainbox->pack_start($lbox, 0, 0, 0);
 $mainbox->show();
 
+
+
+#########################################################
+#
+#     Tray Icon
+#
+#########################################################
+sub quit_cb {
+   my ($widget, $status_icon) = @_;
+   $status_icon->set_visible(0) if $status_icon;
+   Gtk2->main_quit();
+}
+
+sub popup_menu_cb {
+   my ($widget, $button, $time, $menu) = @_;
+
+   if ($button == 3) {
+         my ($x, $y, $push_in)
+         = Gtk2::StatusIcon::position_menu($menu, $widget);
+
+       $menu->show_all();
+       $menu->popup( undef, undef,
+             sub{return ($x,$y,0)} ,
+             undef, 0, $time );
+   }
+}
+
+sub activate_icon_cb {
+       if ($window->visible){
+               $window->hide();
+       } else {
+               $window->show();
+       }
+}
+
+my $status_icon = Gtk2::StatusIcon->new_from_file($Bin.'/snom.ico');
+my $menu = Gtk2::Menu->new();
+
+my $menuItem = Gtk2::ImageMenuItem->new_from_stock('gtk-quit');
+$menuItem->signal_connect('activate', \&quit_cb, $status_icon);
+$menu->append($menuItem);
+
+$status_icon->set_tooltip('Snom Tray');
+$status_icon->signal_connect('activate', \&activate_icon_cb);
+$status_icon->signal_connect('popup-menu', \&popup_menu_cb, $menu);
+$status_icon->set_visible(1);
+########################################################################333
+
 $window->add($mainbox);
+$window->set_icon_from_file($Bin.'/snom.ico');
 $window->show();
 
-$key{OK}->grab_focus();
+$g_key{OK}->grab_focus();
 
 # Gtk2 event loop
 Gtk2->main;
@@ -226,10 +293,10 @@ sub KeyPressed
 
        snom_key("CANCEL") if ( $text eq "X" );
        snom_key("ENTER") if ( $text eq "OK" );
-       snom_key("UP") if ( $text eq "^" );
-       snom_key("DOWN") if ( $text eq "V" );
-       snom_key("LEFT") if ( $text eq "<" );
-       snom_key("RIGHT") if ( $text eq ">" );
+       snom_key("UP") if ( $text eq "ARROWSup" );
+       snom_key("DOWN") if ( $text eq "ARROWSdown" );
+       snom_key("LEFT") if ( $text eq "ARROWSleft" );
+       snom_key("RIGHT") if ( $text eq "ARROWSright" );
 
        snom_key("F_REC") if ( $text eq "Record" );
        snom_key("F_RETRIEVE") if ( $text eq "Retrieve" );
@@ -242,8 +309,12 @@ sub KeyPressed
 sub DialNumber
 {
        my ($entry) = @_;
-
-       snom_number($entry->get_text());
+       my ($num) = $entry->get_text();
+       if ($cbextern->get_active){
+        snom_number("09".$num)
+       } else {
+        snom_number($num);
+       }       
        return TRUE;
 }
 
@@ -258,7 +329,7 @@ sub DisplayMouseOver
                        $kph_blocked=TRUE;
                }
        } else {
-               $key{OK}->grab_focus();
+               $g_key{OK}->grab_focus();
                if ($kph_blocked) {
                        $window->signal_handler_unblock($kphandler);
                        $kph_blocked=FALSE;
@@ -281,7 +352,7 @@ sub KBDInput
                }
        }
 
-       if (!$event->state || $event->state eq 'shift-mask') {
+       if (!$event->state || !($event->state & "control-mask" || $event->state & "mod1-mask")) {
                if ($keyval == $Gtk2::Gdk::Keysyms{asterisk}) {snom_key('*'); return TRUE;}
                if ($keyval == $Gtk2::Gdk::Keysyms{KP_Multiply}) {snom_key('*'); return TRUE;}
                if ($keyval == $Gtk2::Gdk::Keysyms{numbersign}) {snom_key('#'); return TRUE;}
@@ -314,6 +385,16 @@ sub KBDInput
                if ($keyval == $Gtk2::Gdk::Keysyms{o}) {snom_key('F_R'); return TRUE;}
                if ($keyval == $Gtk2::Gdk::Keysyms{D}) {snom_key('DND'); return TRUE;}
                if ($keyval == $Gtk2::Gdk::Keysyms{d}) {snom_key('DND'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{R}) {snom_key('REDIAL'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{r}) {snom_key('REDIAL'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{E}) {snom_key('SETTINGS'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{e}) {snom_key('SETTINGS'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{Y}) {snom_key('F_ADR_BOOK'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{y}) {snom_key('F_ADR_BOOK'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{P}) {snom_key('HELP'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{p}) {snom_key('HELP'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{U}) {snom_key('MENU'); return TRUE;}
+               if ($keyval == $Gtk2::Gdk::Keysyms{u}) {snom_key('MENU'); return TRUE;}
        }
 
        if (!$event->state) {
@@ -324,7 +405,7 @@ sub KBDInput
                        }
                }
        } else {
-               if ($event->state eq 'mod1-mask') {
+               if ($event->state & "mod1-mask") {
                        for (my $i=1; $i<13; $i++) {
                                if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
                                        snom_key("P${i}");
@@ -345,6 +426,49 @@ sub KBDInput
        return FALSE;
 }
 
+sub UpdatePhoneInfo
+{
+       my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/");
+       my $response = $ua->request($req);
+       
+       $g_identity->set_active(0);
+       while($g_identity->get_active() == 0) {
+               $g_identity->remove_text(0);
+               $g_identity->set_active(0);
+       }
+       my @lines=split("\n", $response->content());
+       my $num = 0;
+       my $activated = 0;
+
+       foreach (@lines) {
+               chomp;
+               #<option value="1" selected>51@stargate.gernoth.loc</option>
+               #<option value="2">89@asterix.ear-projekt.de</option>
+               #<option value="3">41@grumpy.gernoth.loc</option>
+               if (m/^\<option value=\"(.+)\"( selected)?\>([^<\@]*)\@([^<]*)\<\/option\>\s*$/) {
+                       my $line = $3;
+                       $g_identity->append_text("${3}");
+                       if (defined($2)) {
+                               $g_identity->set_active(${1}-1);
+                               $activated=1;
+                       }
+                       $num++;
+               }
+       }
+       $g_identity->set_active(0) if (!$activated);
+       if ($num > 1) {
+               $g_identity->show;
+       } else {
+               $g_identity->hide;
+       }
+}
+
+sub SwitchIdentity
+{
+       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));
+       $ua->request($req);
+}
+
 sub CloseAppWindow
 {
        $window->destroy;
Impressum, Datenschutz