############################################################### # $Id$ # # 72_FRITZBOX.pm # # (c) 2014 Torsten Poitzsch < torsten . poitzsch at gmx . de > # # This module handles the Fritz!Box router and the Fritz!Phone MT-F # # Copyright notice # # This script is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # The GNU General Public License can be found at # http://www.gnu.org/copyleft/gpl.html. # A copy is found in the text file GPL.txt and important notices to the license # from the author is found in LICENSE.txt distributed with these scripts. # # This script is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # This copyright notice MUST APPEAR in all copies of the script! # ############################################################################## # # define FRITZBOX # ############################################################################## package main; use strict; use warnings; use Blocking; my $missingModul; my $missingModulRemote; eval "use Net::Telnet;1" or $missingModulRemote .= "Net::Telnet "; eval "use URI::Escape;1" or $missingModul .= "URI::Escape "; sub FRITZBOX_Log($$$); sub FRITZBOX_Init($); sub FRITZBOX_Ring_Start($@); sub FRITZBOX_Exec($$); sub FRITZBOX_Send_Mail($@); sub FRITZBOX_SetMOH($@); sub FRITZBOX_Start_Radio($@); our $telnet; my %fonModel = ( '0x01' => "MT-D" , '0x03' => "MT-F" , '0x04' => "C3" , '0x05' => "M2" , '0x08' => "C4" ); my %ringTone = ( 0 => "HandsetDefault" , 1 => "HandsetInternalTon" , 2 => "HandsetExternalTon" , 3 => "Standard" , 4 => "Eighties" , 5 => "Alert" , 6 => "Ring" , 7 => "RingRing" , 8 => "News" , 9 => "CustomerRingTon" , 10 => "Bamboo" , 11 => "Andante" , 12 => "ChaCha" , 13 => "Budapest" , 14 => "Asia" , 15 => "Kullabaloo" , 16 => "silent" , 17 => "Comedy" , 18 => "Funky", , 19 => "Fatboy" , 20 => "Calypso" , 21 => "Pingpong" , 22 => "Melodica" , 23 => "Minimal" , 24 => "Signal" , 25 => "Blok1" , 26 => "Musicbox" , 27 => "Blok2" , 28 => "2Jazz" , 33 => "InternetRadio" , 34 => "MusicList" ); my %ringToneNumber; while (my ($key, $value) = each %ringTone) { $ringToneNumber{lc $value}=$key; } my %alarmDays = ( 1 => "Mo" , 2 => "Tu" , 4 => "We" , 8 => "Th" , 16 => "Fr" , 32 => "Sa" , 64 => "So" ); my %userType = ( 1 => "IP" , 2 => "PC User" , 3 => "Default" , 4 => "Guest" ); my @mohtype = qw(default sound customer); my %landevice = (); my $ttsCmdTemplate = 'wget -U Mozilla -O "[ZIEL]" "http://translate.google.com/translate_tts?ie=UTF-8&tl=[SPRACHE]&q=[TEXT]"'; sub ########################################## FRITZBOX_Log($$$) { my ( $hash, $loglevel, $text ) = @_; my $xline = ( caller(0) )[2]; my $xsubroutine = ( caller(1) )[3]; my $sub = ( split( ':', $xsubroutine ) )[2]; $sub =~ s/FRITZBOX_//; my $instName = ( ref($hash) eq "HASH" ) ? $hash->{NAME} : $hash; Log3 $hash, $loglevel, "FRITZBOX $instName: $sub.$xline " . $text; } ########################################## sub FRITZBOX_Initialize($) { my ($hash) = @_; $hash->{DefFn} = "FRITZBOX_Define"; $hash->{UndefFn} = "FRITZBOX_Undefine"; $hash->{SetFn} = "FRITZBOX_Set"; $hash->{GetFn} = "FRITZBOX_Get"; $hash->{AttrFn} = "FRITZBOX_Attr"; $hash->{AttrList} = "disable:0,1 " ."defaultCallerName " ."defaultUploadDir " ."fritzBoxIP " ."INTERVAL " ."pwdFile " ."ringWithIntern:0,1,2,3,4 " ."telnetUser " .$readingFnAttributes; } # end FRITZBOX_Initialize ########################################## sub FRITZBOX_Define($$) { my ($hash, $def) = @_; my @args = split("[ \t][ \t]*", $def); return "Usage: define FRITZBOX" if(@args <2 || @args >2); my $name = $args[0]; $hash->{NAME} = $name; my $msg; if ( $missingModul ) { $msg = "Cannot define a FRITZBOX device. Perl modul $missingModul is missing."; FRITZBOX_Log $hash, 1, $msg; return $msg; } # unless (qx ( [ -f /usr/bin/ctlmgr_ctl ] && echo 1 || echo 0 )) unless ( -X "/usr/bin/ctlmgr_ctl" ) { $hash->{REMOTE} = 1; FRITZBOX_Log $hash, 4, "FRITZBOX runs in remote mode"; } elsif ( $< != 0 ) { $msg = "Error - FHEM is not running under root (currently " . ( getpwuid( $< ) )[ 0 ] . ") but we need to be root"; FRITZBOX_Log $hash, 1, $msg; return $msg; } else { $hash->{REMOTE} = 0; FRITZBOX_Log $hash, 4, "FRITZBOX runs in local mode"; } $hash->{STATE} = "Initializing"; $hash->{fhem}{modulVersion} = '$Date$'; $hash->{INTERVAL} = 300; $hash->{fhem}{lastHour} = 0; $hash->{fhem}{LOCAL} = 0; RemoveInternalTimer($hash); # Get first data after 6 seconds InternalTimer(gettimeofday() + 6, "FRITZBOX_Readout_Start", $hash, 0); return undef; } #end FRITZBOX_Define sub ########################################## FRITZBOX_Undefine($$) { my ($hash, $args) = @_; RemoveInternalTimer($hash); BlockingKill( $hash->{helper}{READOUT_RUNNING_PID} ) if exists $hash->{helper}{READOUT_RUNNING_PID}; BlockingKill( $hash->{helper}{RING_RUNNING_PID} ) if exists $hash->{helper}{RING_RUNNING_PID}; return undef; } # end FRITZBOX_Undefine sub ########################################## FRITZBOX_Attr($@) { my ($cmd,$name,$aName,$aVal) = @_; # $cmd can be "del" or "set" # $name is device name # aName and aVal are Attribute name and value my $hash = $defs{$name}; if ($cmd eq "set") { if ($aName eq "fritzBoxIP" && $aVal ne "") { if ($hash->{REMOTE} == 0) { $hash->{REMOTE} = 1; FRITZBOX_Log $hash, 3, "Changed to remote access because attribute 'fritzBoxIP' is defined."; } } } return undef; } # FRITZBOX_Attr ende sub ########################################## FRITZBOX_Set($$@) { my ($hash, $name, $cmd, @val) = @_; my $resultStr = ""; my $list = "alarm" . " createPwdFile" . " customerRingTone" . " diversity" . " guestWlan:on,off" . " moh" . " ring" . " sendMail" . " startRadio" . " tam" . " update:noArg" . " wlan:on,off"; # . " convertMOH" # . " convertRingTone" if ( lc $cmd eq 'alarm') { if ( int @val == 2 && $val[0] =~ /^(1|2|3)$/ && $val[1] =~ /^(on|off)$/ ) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); my $state = $val[1]; $state =~ s/on/1/; $state =~ s/off/0/; FRITZBOX_Exec( $hash, "ctlmgr_ctl w telcfg settings/AlarmClock".( $val[0] - 1 )."/Active ".$state ); readingsSingleUpdate($hash,"alarm".$val[0]."_state",$val[1], 1); return undef; } # } elsif ( lc $cmd eq 'convertmoh') { # if (int @val > 0) # { # Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); # return FRITZBOX_ConvertMOH $hash, @val; # } # } elsif ( lc $cmd eq 'convertringtone') { # if (int @val > 0) # { # Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); # return FRITZBOX_ConvertRingTone $hash, @val; # } } elsif ( lc $cmd eq 'createpwdfile') { if (int @val > 0) { my $pwdFile = AttrVal( $name, "pwdFile", "fb_pwd.txt"); open( FILE, ">".$pwdFile) or return "Error when opening password file '$pwdFile': ".$!; print FILE join( " ", @val); close FILE or return "Error when closing password file '$pwdFile': ".$!; return "Created password file '$pwdFile'"; } } elsif ( lc $cmd eq 'customerringtone') { if (int @val > 0) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); return FRITZBOX_SetCustomerRingTone $hash, @val; } } elsif ( lc $cmd eq 'diversity') { if ( int @val == 2 && defined( $hash->{READINGS}{"diversity".$val[0]} ) && $val[1] =~ /^(on|off)$/ ) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); my $state = $val[1]; $state =~ s/on/1/; $state =~ s/off/0/; FRITZBOX_Exec( $hash, "ctlmgr_ctl w telcfg settings/Diversity".( $val[0] - 1 )."/Active ".$state ); readingsSingleUpdate($hash,"diversity".$val[0]."_state",$val[1], 1); return undef; } } elsif ( lc $cmd eq 'guestwlan') { if (int @val == 1 && $val[0] =~ /^(on|off)$/) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); my $state = $val[0]; $state =~ s/on/1/; $state =~ s/off/0/; FRITZBOX_Exec( $hash, "ctlmgr_ctl w wlan settings/guest_ap_enabled $state"); readingsSingleUpdate($hash,"box_guestWlan",$val[0], 1); return undef; } } elsif ( lc $cmd eq 'moh') { if (int @val > 0) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); $resultStr = FRITZBOX_SetMOH $hash, @val; if ($resultStr =~ /^[012]$/ ) { readingsSingleUpdate($hash,"box_guestWlan",$mohtype[$resultStr], 1); return undef; } else { return $resultStr; } } } elsif ( lc $cmd eq 'ring') { if (int @val > 0) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); FRITZBOX_Ring_Start $hash, @val; return undef; } } elsif ( lc $cmd eq 'sendmail') { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); FRITZBOX_Send_Mail $hash, @val; return undef; } elsif ( lc $cmd eq 'startradio') { if (int @val > 0) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); return FRITZBOX_Start_Radio $hash, @val; } } elsif ( lc $cmd eq 'tam') { if ( int @val == 2 && defined( $hash->{READINGS}{"tam".$val[0]} ) && $val[1] =~ /^(on|off)$/ ) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); my $state = $val[1]; $state =~ s/on/1/; $state =~ s/off/0/; FRITZBOX_Exec( $hash, "ctlmgr_ctl w tam settings/TAM".( $val[0] - 1 )."/Active ".$state ); readingsSingleUpdate($hash,"tam".$val[0]."_state",$val[1], 1); return undef; } } elsif( lc $cmd eq 'update' ) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); $hash->{fhem}{LOCAL}=1; FRITZBOX_Readout_Start($hash); $hash->{fhem}{LOCAL}=0; return undef; } elsif ( lc $cmd eq 'wlan') { if (int @val == 1 && $val[0] =~ /^(on|off)$/) { Log3 $name, 3, "FRITZBOX: set $name $cmd ".join(" ", @val); my $state = $val[0]; $state =~ s/on/1/; $state =~ s/off/0/; FRITZBOX_Exec( $hash, "ctlmgr_ctl w wlan settings/wlan_enable $state"); $hash->{fhem}{LOCAL}=2; #2 = short update without new trigger FRITZBOX_Readout_Start($hash); $hash->{fhem}{LOCAL}=0; return undef; } } return "Unknown argument $cmd or wrong parameter(s), choose one of $list"; } # end FRITZBOX_Set sub ########################################## FRITZBOX_Get($@) { my ($hash, $name, $cmd) = @_; my $returnStr; if (lc $cmd eq "ringtones") { $returnStr = "Ring tones to use with 'set ring '\n"; $returnStr .= "----------------------------------------------------------------------\n"; $returnStr .= join "\n", sort values %ringTone; return $returnStr; } my $list = "ringTones:noArg"; return "Unknown argument $cmd, choose one of $list"; } # end FRITZBOX_Get # Starts the data capturing and sets the new timer sub ########################################## FRITZBOX_Readout_Start($) { my ($hash) = @_; my $name = $hash->{NAME}; $hash->{INTERVAL} = AttrVal( $name, "INTERVAL", $hash->{INTERVAL} ); $hash->{INTERVAL} = 60 if $hash->{INTERVAL} < 60 && $hash->{INTERVAL} != 0; if(!$hash->{fhem}{LOCAL} && $hash->{INTERVAL} != 0) { RemoveInternalTimer($hash); InternalTimer(gettimeofday()+$hash->{INTERVAL}, "FRITZBOX_Readout_Start", $hash, 1); return undef if( AttrVal($name, "disable", 0 ) == 1 ); } if ( exists( $hash->{helper}{READOUT_RUNNING_PID} ) && $hash->{fhem}{LOCAL} != 1 ) { FRITZBOX_Log $hash, 1, "Old readout process still running. Killing old process ".$hash->{helper}{READOUT_RUNNING_PID}; BlockingKill( $hash->{helper}{READOUT_RUNNING_PID} ); delete($hash->{helper}{READOUT_RUNNING_PID}); } $hash->{helper}{READOUT_RUNNING_PID} = BlockingCall("FRITZBOX_Readout_Run", $name, "FRITZBOX_Readout_Done", 55, "FRITZBOX_Readout_Aborted", $hash) unless exists( $hash->{helper}{READOUT_RUNNING_PID} ); } # end FRITZBOX_Readout_Start # Starts the data capturing and sets the new timer sub ########################################## FRITZBOX_Readout_Run($) { my ($name) = @_; my $hash = $defs{$name}; my $result; my $rName; my @cmdArray; my @readoutArray; my $resultArray; my @readoutReadings; my $i; my $startTime = time(); my $slowRun = 0; if ( int(time/3600) != $hash->{fhem}{lastHour} || $hash->{fhem}{LOCAL} == 1) { push @readoutReadings, "fhem->lastHour|".int(time/3600); $slowRun = 1; FRITZBOX_Log $hash, 4, "Start update of slow changing device readings."; } else { FRITZBOX_Log $hash, 4, "Start update of fast changing device readings."; } my $returnStr = "$name|"; $result = FRITZBOX_Open_Connection( $hash ); return "$name|Error|$result" if $result; if ($slowRun == 1) { # Init and Counters push @readoutArray, ["", "ctlmgr_ctl r telcfg settings/Foncontrol" ]; push @readoutArray, ["", "ctlmgr_ctl r telcfg settings/Foncontrol/User/count" ]; push @readoutArray, ["", "ctlmgr_ctl r configd settings/WEBRADIO/count" ]; push @readoutArray, ["", "ctlmgr_ctl r user settings/user/count" ]; push @readoutArray, ["", 'echo $CONFIG_AB_COUNT']; push @readoutArray, ["", "ctlmgr_ctl r landevice settings/landevice/count" ]; push @readoutArray, ["", "ctlmgr_ctl r tam settings/TAM/count" ]; push @readoutArray, ["", "ctlmgr_ctl r telcfg settings/RefreshDiversity" ]; push @readoutArray, ["", "ctlmgr_ctl r telcfg settings/Diversity/count" ]; # Box model and firmware push @readoutArray, [ "box_model", 'echo $CONFIG_PRODUKT_NAME' ]; push @readoutArray, [ "box_fwVersion", "ctlmgr_ctl r logic status/nspver" ]; push @readoutArray, [ "box_fwUpdate", "ctlmgr_ctl r updatecheck status/update_available_hint" ]; push @readoutArray, [ "box_tr069", "ctlmgr_ctl r tr069 settings/enabled", "onoff" ]; # Execute commands $resultArray = FRITZBOX_Readout_Query( $hash, \@readoutArray, \@readoutReadings); my $dectCount = $resultArray->[1]; my $radioCount = $resultArray->[2]; my $userCount = $resultArray->[3]; my $fonCount = $resultArray->[4]; my $lanDeviceCount = $resultArray->[5]; my $tamCount = $resultArray->[6]; my $divCount = $resultArray->[8]; # Internetradioliste erzeugen $i = 0; $rName = "radio00"; while ( $i<$radioCount || defined $hash->{READINGS}{$rName} ) { push @readoutArray, [ $rName, "ctlmgr_ctl r configd settings/WEBRADIO".$i."/Name" ]; $i++; $rName = sprintf ("radio%02d",$i); } $resultArray = FRITZBOX_Readout_Query( $hash, \@readoutArray, \@readoutReadings ); # @radio = (); for (0..$radioCount-1) { if ($resultArray->[$_] ne "") { # $radio[$_] = $resultArray->[$_]; push @readoutReadings, "fhem->radio->".$_."|".$resultArray->[$_]; } } # LanDevice-Liste erzeugen if ($lanDeviceCount > 0 ) { for (0..$lanDeviceCount-1) { push @readoutArray, [ "", "ctlmgr_ctl r landevice settings/landevice".$_."/ip" ]; push @readoutArray, [ "", "ctlmgr_ctl r landevice settings/landevice".$_."/name" ]; } $resultArray = FRITZBOX_Readout_Query( $hash, \@readoutArray, \@readoutReadings ); %landevice = (); for (0..$lanDeviceCount-1) { my $offset = 2 * $_; my $dIp = $resultArray->[ $offset ]; my $dName = $resultArray->[ $offset +1]; push @readoutReadings, "fhem->landevice->$dIp|$dName"; $landevice{$dIp}=$dName; } } # Dect Phones for (610..615) { delete $hash->{fhem}{$_} if defined $hash->{fhem}{$_}; } for (1..$dectCount) { # 0 Dect-Interne Nummer push @readoutArray, [ "dect".$_."_intern", "ctlmgr_ctl r telcfg settings/Foncontrol/User".$_."/Intern" ]; # 1 Dect-Telefonname push @readoutArray, [ "dect".$_, "ctlmgr_ctl r telcfg settings/Foncontrol/User".$_."/Name" ]; # 2 Handset manufacturer push @readoutArray, [ "dect".$_."_manufacturer", "ctlmgr_ctl r dect settings/Handset".($_-1)."/Manufacturer" ]; # 3 Internal Ring Tone Name push @readoutArray, [ "dect".$_."_intRingTone", "ctlmgr_ctl r telcfg settings/Foncontrol/User".$_."/IntRingTone", "ringtone" ]; # 4 Alarm Ring Tone Name push @readoutArray, [ "dect".$_."_alarmRingTone", "ctlmgr_ctl r telcfg settings/Foncontrol/User".$_."/AlarmRingTone0", "ringtone" ]; # 5 Radio Name push @readoutArray, [ "dect".$_."_radio", "ctlmgr_ctl r telcfg settings/Foncontrol/User".$_."/RadioRingID", "radio" ]; # 6 Background image push @readoutArray, [ "dect".$_."_imagePath ", "ctlmgr_ctl r telcfg settings/Foncontrol/User".$_."/ImagePath " ]; # 7 Customer Ring Tone push @readoutArray, [ "dect".$_."_custRingTone", "ctlmgr_ctl r telcfg settings/Foncontrol/User".$_."/G722RingTone" ]; # 8 Customer Ring Tone Name push @readoutArray, [ "dect".$_."_custRingToneName", "ctlmgr_ctl r telcfg settings/Foncontrol/User".$_."/G722RingToneName" ]; # 9 Firmware Version push @readoutArray, [ "dect".$_."_fwVersion", "ctlmgr_ctl r dect settings/Handset".($_-1)."/FWVersion" ]; # 10 Phone Model push @readoutArray, [ "dect".$_."_model", "ctlmgr_ctl r dect settings/Handset".($_-1)."/Model", "model" ]; } $resultArray = FRITZBOX_Readout_Query( $hash, \@readoutArray, \@readoutReadings ); for (0..$dectCount-1) { my $offset = $_ * 11; my $intern = $resultArray->[ $offset ]; if ( $intern ) { push @readoutReadings, "fhem->$intern->name|" . $resultArray->[ $offset + 1 ]; push @readoutReadings, "fhem->$intern->brand|" . $resultArray->[ $offset + 2 ]; push @readoutReadings, "fhem->$intern->model|" . FRITZBOX_Readout_Format($hash, "model", $resultArray->[ $offset + 10 ] ); } } # Analog Fons Name for (1..$fonCount) { push @readoutArray, ["fon".$_, "ctlmgr_ctl r telcfg settings/MSN/Port".($_-1)."/Name" ]; } $resultArray = FRITZBOX_Readout_Query( $hash, \@readoutArray, \@readoutReadings ); # Analog Fons Number for (1..$fonCount) { push @readoutReadings, "fon".$_."_intern", $_ if $resultArray->[$_-1]; } # Prepare new command array # Check if TAM is displayed for (0..$tamCount-1) { push @readoutArray, [ "", "ctlmgr_ctl r tam settings/TAM".$_."/Display" ]; } # Check if user (parent control) is not completely blocked for (0..$userCount-1) { push @readoutArray, ["", "ctlmgr_ctl r user settings/user".$_."/filter_profile_UID" ]; } #!!! Execute commands !!! $resultArray = FRITZBOX_Readout_Query( $hash, \@readoutArray, \@readoutReadings ); # Prepare new command array #Get TAM readings for (0..$tamCount-1) { $rName = "tam".($_+1); if ($resultArray->[$_] == 1 || defined $hash->{READINGS}{$rName} ) { push @readoutArray, [ $rName, "ctlmgr_ctl r tam settings/TAM". $_ ."/Name" ]; push @readoutArray, [ $rName."_state", "ctlmgr_ctl r tam settings/TAM".$_."/Active", "onoff" ]; push @readoutArray, [ $rName."_newMsg", "ctlmgr_ctl r tam settings/TAM".$_."/NumNewMessages" ]; push @readoutArray, [ $rName."_oldMsg", "ctlmgr_ctl r tam settings/TAM".$_."/NumOldMessages" ]; } } # user profiles $i=0; $rName = "user01"; while ($i<$userCount || defined $hash->{READINGS}{$rName}) { # do not show data for unlimited, blocked or default access rights if ($resultArray->[$i+$tamCount] !~ /^filtprof[134]$/ || defined $hash->{READINGS}{$rName} ) { push @readoutArray, [$rName, "ctlmgr_ctl r user settings/user".$i."/name", "deviceip" ]; push @readoutArray, [$rName."_thisMonthTime", "ctlmgr_ctl r user settings/user".$i."/this_month_time", "secondsintime" ]; push @readoutArray, [$rName."_todayTime", "ctlmgr_ctl r user settings/user".$i."/today_time", "secondsintime" ]; push @readoutArray, [$rName."_todaySeconds", "ctlmgr_ctl r user settings/user".$i."/today_time" ]; push @readoutArray, [$rName."_type", "ctlmgr_ctl r user settings/user".$i."/type", "usertype" ]; } $i++; $rName = sprintf ("user%02d",$i+1); } # Diversity $i=0; $rName = "diversity1"; while ( $i < $divCount || defined $hash->{READINGS}{$rName} ) { # Diversity number push @readoutArray, [$rName, "ctlmgr_ctl r telcfg settings/Diversity".$i."/MSN" ]; # Diversity state push @readoutArray, [$rName."_state", "ctlmgr_ctl r telcfg settings/Diversity".$i."/Active", "onoff" ]; # Diversity destination push @readoutArray, [$rName."_dest", "ctlmgr_ctl r telcfg settings/Diversity".$i."/Destination"]; $i++; $rName = "diversity".($i+1); } # !!! Execute commands !!! FRITZBOX_Readout_Query( $hash, \@readoutArray, \@readoutReadings ); } # WLAN push @readoutArray, [ "box_wlan_2.4GHz", "ctlmgr_ctl r wlan settings/ap_enabled", "onoff" ]; # 2nd WLAN push @readoutArray, [ "box_wlan_5GHz", "ctlmgr_ctl r wlan settings/ap_enabled_scnd", "onoff" ]; # Gäste WLAN push @readoutArray, [ "box_guestWlan", "ctlmgr_ctl r wlan settings/guest_ap_enabled", "onoff" ]; push @readoutArray, [ "box_guestWlanRemain", "ctlmgr_ctl r wlan settings/guest_time_remain", ]; #Music on Hold push @readoutArray, [ "box_moh", "ctlmgr_ctl r telcfg settings/MOHType", "mohtype" ]; # Alarm clock for (0..2) { # Alarm clock name push @readoutArray, ["alarm".($_+1), "ctlmgr_ctl r telcfg settings/AlarmClock".$_."/Name" ]; # Alarm clock state push @readoutArray, ["alarm".($_+1)."_state", "ctlmgr_ctl r telcfg settings/AlarmClock".$_."/Active", "onoff" ]; # Alarm clock time push @readoutArray, ["alarm".($_+1)."_time", "ctlmgr_ctl r telcfg settings/AlarmClock".$_."/Time", "altime" ]; # Alarm clock number push @readoutArray, ["alarm".($_+1)."_target", "ctlmgr_ctl r telcfg settings/AlarmClock".$_."/Number", "alnumber" ]; # Alarm clock weekdays push @readoutArray, ["alarm".($_+1)."_wdays", "ctlmgr_ctl r telcfg settings/AlarmClock".$_."/Weekdays", "aldays" ]; } FRITZBOX_Readout_Query( $hash, \@readoutArray, \@readoutReadings ); $returnStr .= join('|', @readoutReadings ); $returnStr .= "|readoutTime|"; $returnStr .= sprintf "%.2f", time()-$startTime; FRITZBOX_Close_Connection ( $hash ); FRITZBOX_Log $hash, 5, "Handover: ".$returnStr; return $returnStr } # End FRITZBOX_Readout_Run sub ########################################## FRITZBOX_Readout_Done($) { my ($string) = @_; unless (defined $string) { Log3 "FRITZBOX_Readout_Done", 1, "Fatal Error: no parameter handed over"; return; } my ($name, %values) = split("\\|", $string); my $hash = $defs{$name}; # delete the marker for RUNNING_PID process delete($hash->{helper}{READOUT_RUNNING_PID}); FRITZBOX_Log $hash, 5, "Processing ". keys(%values)." readouts."; readingsBeginUpdate($hash); if ( defined $values{Error} ) { readingsBulkUpdate( $hash, "lastReadout", $values{Error} ); readingsBulkUpdate( $hash, "state", $values{Error} ); } else { my $x = 0; while (my ($rName, $rValue) = each(%values) ) { if ($rName =~ /->/) { my ($rName1,$rName2,$rName3) = split /->/, $rName; if (defined $rName3) { $hash->{$rName1}{$rName2}{$rName3} = $rValue; } else { $hash->{$rName1}{$rName2} = $rValue; } } elsif ($rName eq "box_fwVersion") { $rValue .= " (old)" if $values{box_fwUpdate} == 1; readingsBulkUpdate( $hash, $rName, $rValue ); } elsif ($rName !~ /readoutTime|box_fwUpdate/) { readingsBulkUpdate( $hash, $rName, $rValue ); } } my $msg = keys( %values )." values captured in ".$values{readoutTime}." s"; readingsBulkUpdate( $hash, "lastReadout", $msg ); FRITZBOX_Log $hash, 4, $msg; my $newState = "WLAN: "; if ( $values{"box_wlan_2.4GHz"} eq "on" ) { $newState .= "on"; } elsif ( defined $values{box_wlan_5GHz} ) { if ( $values{box_wlan_5GHz} eq "on") { $newState .= "on"; } else { $newState .= "off"; } } else { $newState .= "off"; } $newState .=" gWLAN: ".$values{box_guestWlan} ; $newState .=" (Remain: ".$values{box_guestWlanRemain}." min)" if $values{box_guestWlan} eq "on" && $values{box_guestWlanRemain} != 0; readingsBulkUpdate( $hash, "state", $newState); } readingsEndUpdate( $hash, 1 ); } sub ########################################## FRITZBOX_Readout_Aborted($) { my ($hash) = @_; delete($hash->{helper}{READOUT_RUNNING_PID}); FRITZBOX_Log $hash, 1, "Timeout when reading Fritz!Box data."; } ########################################## sub FRITZBOX_Readout_Query($$$) { my ($hash, $readoutArray, $readoutReadings) = @_; my @cmdArray; my $rValue; my $rName; my $rFormat; my $count = int @{$readoutArray} - 1; for (0..$count) { push @cmdArray, $readoutArray->[$_][1]; } my $resultArray = FRITZBOX_Exec( $hash, \@cmdArray); $count = int @{$resultArray} -1; for (0..$count) { $rValue = $resultArray->[$_]; $rFormat = $readoutArray->[$_][2]; $rFormat = "" unless defined $rFormat; $rValue = FRITZBOX_Readout_Format ($hash, $rFormat, $rValue); $rName = $readoutArray->[$_][0]; if ($rName ne "") { if ($rValue ne "") { FRITZBOX_Log $hash, 5, "$rName: $rValue"; push @{$readoutReadings}, $rName."|".$rValue; } elsif (defined $hash->{READINGS}{$rName} ) { FRITZBOX_Log $hash, 5, "Delete $rName"; delete $hash->{READINGS}{$rName}; } } } @{$readoutArray} = (); return $resultArray; } ########################################## sub FRITZBOX_Readout_Format($$$) { my ($hash, $format, $readout) = @_; return $readout unless defined $format; return $readout unless $readout ne "" && $format ne "" ; if ($format eq "aldays") { if ($readout == 0) { $readout = "once"; } elsif ($readout == 127) { $readout = "daily"; } else { my $bitStr = $readout; $readout = ""; foreach (sort {$a <=> $b} keys %alarmDays) { $readout .= (($bitStr & $_) == $_) ? $alarmDays{$_}." " : ""; } chop $readout; } } elsif ($format eq "alnumber") { my $intern = $readout; if (1 <= $readout && $readout <=2) { $readout = "FON $intern"; } elsif ($readout == 9) { $readout = "all DECT"; } elsif (60 <= $readout && $readout <=65) { $intern = $readout + 550; $readout = "DECT $intern"; } elsif ($readout == 50) { $readout = "all"; } $readout .= " (".$hash->{fhem}{$intern}{name}.")" if defined $hash->{fhem}{$intern}{name}; } elsif ($format eq "altime") { $readout =~ s/(\d\d)(\d\d)/$1:$2/; } elsif ($format eq "deviceip") { $readout = $landevice{$readout}." ($readout)" if defined $landevice{$readout}; } elsif ($format eq "model") { $readout = $fonModel{$readout} if defined $fonModel{$readout}; } elsif ($format eq "mohtype") { $readout = $mohtype[$readout] if defined $mohtype[$readout]; } elsif ($format eq "nounderline") { $readout =~ s/_/ /g; } elsif ($format eq "onoff") { $readout =~ s/0/off/; $readout =~ s/1/on/; } elsif ($format eq "radio") { $readout = $hash->{fhem}{radio}{$readout} if defined $hash->{fhem}{radio}{$readout}; } elsif ($format eq "ringtone") { $readout = $ringTone{$readout}; } elsif ($format eq "secondsintime") { if ($readout < 243600) { $readout = sprintf "%d:%02d", int $readout/3600, int( ($readout %3600) / 60); } else { $readout = sprintf "%dd %d:%02d", int $readout/24/3600, int ($readout%24*3600)/3600, int( ($readout %3600) / 60); } } elsif ($format eq "usertype") { $readout = $userType{$readout}; } $readout = "" unless defined $readout; return $readout; } sub ########################################## FRITZBOX_Ring_Start($@) { my ($hash, @val) = @_; my $name = $hash->{NAME}; $val[1] = 5 unless defined $val[1]; $val[1] = 5 unless $val[1] =~/^\d+$/; if ( exists( $hash->{helper}{RING_RUNNING_PID} ) ) { FRITZBOX_Log $hash, 1, "Old process still running. Killing old process ".$hash->{helper}{RING_RUNNING_PID}; BlockingKill( $hash->{helper}{RING_RUNNING_PID} ); delete($hash->{helper}{RING_RUNNING_PID}); } my $timeout = $val[1] + 60; my $handover = $name . "|" . join( "|", @val ); $hash->{helper}{RING_RUNNING_PID} = BlockingCall("FRITZBOX_Ring_Run", $handover, "FRITZBOX_Ring_Done", $timeout, "FRITZBOX_Ring_Aborted", $hash) unless exists $hash->{helper}{RING_RUNNING_PID}; } # end FRITZBOX_Ring_Start sub ########################################## FRITZBOX_Ring_Run($) { my ($string) = @_; my ($name, @val) = split "\\|", $string; my $hash = $defs{$name}; return "$name|0|Error: At least one parameter must be defined." unless int @val; my $result; my $curCallerName; my @cmdArray; my $duration = 5; my $intNo = $val[0]; my @FritzFons; my $ringTone; # Check if 1st parameter are comma separated numbers return $name."|0|Error: Parameter '$intNo' not a number (only commas (,) are allowed to separate numbers)" unless $intNo =~ /^[\d,]+$/; # Check if 2nd parameter is the duration shift @val; if (int @val) { if ($val[0] =~ /^\d+$/ && int $val[0] > 0) { $duration = $val[0]; shift @val; } } # Check if next parameter is a valid ring tone if (int @val) { if ($val[0] !~ /^(msg|show):/i) { $ringTone = $val[0]; $ringTone = $ringToneNumber{lc $val[0]}; return $name."|0|Error: Ring tone '".$val[0]."' not valid" unless defined $ringTone; shift @val; # Create a hash for the DECT devices whose ring tone can be changed foreach ( split( /,/, $intNo ) ) { if ("AVM" eq $hash->{fhem}{$_}{brand}) { FRITZBOX_Log $hash, 5, "Internal number $_ seems to be a Fritz!Fon."; push @FritzFons, $_ - 609 } } } } my $msg = AttrVal( $name, "defaultCallerName", "FHEM" ); if (int @val) { return $name."|0|Error: Too many parameter. Message has to start with 'show:'" if ($val[0] !~ /^(msg|show):/i); $msg = join " ", @val; $msg =~ s/^(msg|show):\s*//; $msg = substr($msg, 0, 30); } $result = FRITZBOX_Open_Connection( $hash ); return "$name|0|$result" if $result; #Preparing 1st command array @cmdArray = (); # Change ring tone of Fritz!Fons foreach (@FritzFons) { push @cmdArray, "ctlmgr_ctl r telcfg settings/Foncontrol/User$_/IntRingTone"; push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User$_/IntRingTone $ringTone"; FRITZBOX_Log $hash, 4, "Change temporarily internal ring tone of Fritz!Fon DECT $_ to $ringTone"; } # uses name of port 0-3 (dial port 1-4) to show messages on ringing phone my $ringWithIntern = AttrVal( $name, "ringWithIntern", 0 ); if ($ringWithIntern =~ /^([1-3])$/ ) { push @cmdArray, "ctlmgr_ctl r telcfg settings/MSN/Port".($ringWithIntern-1)."/Name"; push @cmdArray, "ctlmgr_ctl w telcfg settings/MSN/Port".($ringWithIntern-1)."/Name '$msg'"; FRITZBOX_Log $hash, 4, "Change temporarily name of calling number $ringWithIntern to '$msg'"; push @cmdArray, "ctlmgr_ctl w telcfg settings/DialPort $ringWithIntern" } #Execute command array $result = FRITZBOX_Exec( $hash, \@cmdArray ) if int( @cmdArray ) > 0; $intNo =~ s/,/#/g; #Preparing 2nd command array to ring and reset everything FRITZBOX_Log $hash, 3, "Ringing $intNo for $duration seconds"; push @cmdArray, "ctlmgr_ctl w telcfg command/Dial **".$intNo; push @cmdArray, "ctlmgr_ctl w telcfg settings/DialPort 50" if $ringWithIntern != 0 ; # Reset internal ring tones for the Fritz!Fons foreach (keys @FritzFons) { push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$FritzFons[$_]."/IntRingTone ".$result->[2*$_]; } # Reset name of calling number push @cmdArray, "ctlmgr_ctl w telcfg settings/MSN/Port".($ringWithIntern-1)."/Name '".$result->[2*int(@FritzFons)]."'" if $ringWithIntern =~ /^([1-4])$/; push @cmdArray, "sleep ".$duration; push @cmdArray, "ctlmgr_ctl w telcfg command/Hangup **".$intNo; # Execute command array FRITZBOX_Exec( $hash, \@cmdArray ); FRITZBOX_Close_Connection( $hash ); return $name."|1|Ringing done"; } sub ########################################## FRITZBOX_Ring_Done($) { my ($string) = @_; return unless defined $string; my ($name, $success, $result) = split("\\|", $string); my $hash = $defs{$name}; delete($hash->{helper}{RING_RUNNING_PID}); if ($success != 1) { FRITZBOX_Log $hash, 1, $result; } else { FRITZBOX_Log $hash, 4, $result; } } sub ########################################## FRITZBOX_Ring_Aborted($) { my ($hash) = @_; delete($hash->{helper}{RING_RUNNING_PID}); FRITZBOX_Log $hash, 1, "Timeout when ringing"; } ############################################ sub FRITZBOX_SetMOH($@) { my ($hash, $type, @file) = @_; my $returnStr; my @cmdArray; my $result; my $name = $hash->{NAME}; my $uploadFile = '/var/tmp/moh_upload'; my $mohFile = '/var/tmp/fx_moh'; if (lc $type eq lc $mohtype[0] || $type eq "0") { FRITZBOX_Exec ($hash, 'ctlmgr_ctl w telcfg settings/MOHType 0'); return 0; } elsif (lc $type eq lc $mohtype[1] || $type eq "1") { FRITZBOX_Exec ($hash, 'ctlmgr_ctl w telcfg settings/MOHType 1'); return 1; } return "Error: Unvalid parameter '$type'" unless lc $type eq lc $mohtype[2] || $type eq "2"; # Load customer MOH file my $inFile = join " ", @file; my $uploadDir = AttrVal( $name, "defaultUploadDir", "" ); $uploadDir .= "/" unless $uploadDir =~ /\/$|^$/; if ($inFile !~ /^say:/i) { $inFile = $uploadDir.$inFile unless $inFile =~ /^\//; return "Error: Please give a complete file path or define the attribute 'defaultUploadDir'" unless $inFile =~ /^\//; return "Error: Only MP3 files can be used for 'music on hold'." unless $inFile =~ /\.mp3$/i; } $result = FRITZBOX_Open_Connection( $hash ); return "$name|0|$result" if $result; push @cmdArray, '[ -f "'.$uploadFile.'" ] && rm "'.$uploadFile.'"'; push @cmdArray, '[ -f "'.$mohFile.'" ] && rm "'.$mohFile.'"'; if ($inFile =~ /^say:/i) { FRITZBOX_Log $hash, 4, "Converting Text2Speech"; # 'wget -U Mozilla -O "[ZIEL]" "http://translate.google.com/translate_tts?ie=UTF-8&tl=[SPRACHE]&q=[TEXT]"'; my $ttsCmd = $ttsCmdTemplate; $ttsCmd =~ s/\[ZIEL\]/$uploadFile/; my $ttsText = $inFile; $ttsText =~ s/^say:\s*//i; my $ttsLang = "de"; if ($ttsText =~ /^\((en|es|fr|nl)\)/i ) { $ttsLang = $1; $ttsText =~ s/^\($1\)\s*//i; } $ttsCmd =~ s/\[SPRACHE\]/$ttsLang/; # $ttsText = ($ttsText." ") x int(60/length($ttsText)) # if length($ttsText) < 30; $ttsText = substr($ttsText,0,70); $ttsText = uri_escape($ttsText); $ttsCmd =~ s/\[TEXT\]/$ttsText/; push @cmdArray, $ttsCmd; } elsif ($inFile =~ /^(ftp|http):\/\//) { push @cmdArray, 'wget -O "'.$uploadFile.'" "'.$inFile.'"'; } else { push @cmdArray, 'cp "'.$inFile.'" "'.$uploadFile.'"'; } push @cmdArray, '[ -f "'.$uploadFile.'" ] && echo 1 || echo 0'; # Execute command array $result = FRITZBOX_Exec ( $hash, \@cmdArray ); return "Could not access '$inFile'" unless $result->[3] == 1; #Prepare 2nd command array push @cmdArray, 'ffmpegconv -i "'.$uploadFile.'" -o "'.$mohFile.'" --limit 32 --type 7'; push @cmdArray, '[ -f "'.$mohFile.'" ] && echo 1 || echo 0'; # Execute 2nd command array $result = FRITZBOX_Exec ( $hash, \@cmdArray ); return "Could not convert '$inFile'" unless $result->[1] == 1; #Prepare 3rd command array push @cmdArray, 'cat "'.$mohFile.'" >/var/flash/fx_moh'; push @cmdArray, 'killall -sigusr1 telefon'; push @cmdArray, 'rm "'.$uploadFile.'"'; push @cmdArray, 'rm "'.$mohFile.'"'; # Execute 3rd command array $result = FRITZBOX_Exec ( $hash, \@cmdArray ); FRITZBOX_Close_Connection( $hash ); return 2; } ############################################ sub FRITZBOX_SetCustomerRingTone($@) { my ($hash, $intern, @file) = @_; my $returnStr; my $name = $hash->{NAME}; my $uploadDir = AttrVal( $name, "defaultUploadDir", "" ); $uploadDir .= "/" unless $uploadDir =~ /\/$|^$/; my $inFile = join " ", @file; $inFile = $uploadDir.$inFile unless $inFile =~ /^\//; return "Error: Please give a complete file path or the attribute 'defaultUploadDir'" unless $inFile =~ /^\//; return "Error: Only MP3 or G722 files can be uploaded to the phone." unless $inFile =~ /\.mp3$|.g722$/i; my $uploadFile = '/var/InternerSpeicher/FRITZ/fonring/'.time().'.g722'; $inFile =~ s/file:\/\///i; if ( $inFile =~ /\.mp3$/i ) { # mp3 files are converted $returnStr = FRITZBOX_Exec ($hash , 'picconv.sh "file://'.$inFile.'" "'.$uploadFile.'" ringtonemp3'); } elsif ( $inFile =~ /\.g722$/i ) { # G722 files are copied $returnStr = FRITZBOX_Exec ($hash, "cp '$inFile' '$uploadFile'"); } else { return "Error: only MP3 or G722 files can be uploaded to the phone"; } # trigger the loading of the file to the phone, file will be deleted as soon as the upload finished $returnStr .= "\n".FRITZBOX_Exec ($hash, '/usr/bin/pbd --set-ringtone-url --book="255" --id="'.$intern.'" --url="file://'.$uploadFile.'" --name="FHEM'.time().'"'); return $returnStr; } ############################################ sub FRITZBOX_ConvertMOH ($@) { my ($hash, @file) = @_; my $name = $hash->{NAME}; my $uploadDir = AttrVal( $name, "defaultUploadDir", "" ); $uploadDir .= "/" unless $uploadDir =~ /\/$|^$/; my $inFile = join " ", @file; $inFile = $uploadDir.$inFile unless $inFile =~ /^\//; return "Error: You have to give a complete file path or to set the attribute 'defaultUploadDir'" unless $inFile =~ /^\//; return "Error: only MP3 or WAV files can be converted" unless $inFile =~ /\.mp3$|.wav$/i; $inFile =~ s/file:\/\///; my $outFile = $inFile; $outFile = substr($inFile,0,-4) if ($inFile =~ /\.(mp3|wav)$/i); my $returnStr = FRITZBOX_Exec ($hash , 'ffmpegconv -i "'.$inFile.'" -o "'.$outFile.'.moh" --limit 32 --type 6'); return $returnStr; } # end FRITZBOX_ConvertMOH ############################################ sub FRITZBOX_ConvertRingTone ($@) { my ($hash, @file) = @_; my $name = $hash->{NAME}; my $uploadDir = AttrVal( $name, "defaultUploadDir", "" ); $uploadDir .= "/" unless $uploadDir =~ /\/$|^$/; my $inFile = join " ", @file; $inFile = $uploadDir.$inFile unless $inFile =~ /^\//; return "Error: You have to give a complete file path or to set the attribute 'defaultUploadDir'" unless $inFile =~ /^\//; return "Error: only MP3 or WAV files can be converted" unless $inFile =~ /\.mp3$|.wav$/i; $inFile =~ s/file:\/\///; my $outFile = $inFile; $outFile = substr($inFile,0,-4) if ($inFile =~ /\.(mp3|wav)$/i); my $returnStr = FRITZBOX_Exec ($hash , 'picconv.sh "file://'.$inFile.'" "'.$outFile.'.g722" ringtonemp3'); return $returnStr; } # end FRITZBOX_ConvertRingTone #'picconv.sh "'.$inFile.'" "'.$outFile.'.g722" ringtonemp3' #picconv.sh "file://$dir/upload.mp3" "$dir/$filename" ringtonemp3 #"ffmpegconv -i '$inFile' -o '$outFile.g722' --limit 240"); #ffmpegconv -i "${in}" -o "${out}" --limit 240 #pbd --set-image-url --book=255 --id=612 --url=/var/InternerSpeicher/FRITZ/fonring/1416431162.g722 --type=1 #pbd --set-image-url --book=255 --id=612 --url=file://var/InternerSpeicher/FRITZBOXtest.g722 --type=1 #ctlmgr_ctl r user settings/user0/bpjm_filter_enable #/usr/bin/pbd --set-ringtone-url --book="255" --id="612" --url="file:///var/InternerSpeicher/claydermann.g722" --name="Claydermann" # /usr/bin/moh_upload # Opens a Telnet Connection to an external FritzBox ############################################ sub FRITZBOX_Open_Connection($) { my ($hash) = @_; my $name = $hash->{NAME}; return undef unless $hash->{REMOTE} == 1; return "Error: Perl modul ".$missingModulRemote."is missing on this system" if $missingModulRemote; my $host = AttrVal( $name, "fritzBoxIP", "fritz.box" ); my $pwdFile = AttrVal( $name, "pwdFile", "fb_pwd.txt"); my $pwd; my $msg; my $before; my $match; FRITZBOX_Log $hash, 5, "Open password file '$pwdFile' to extract password"; if (open(IN, "<" . $pwdFile)) { $pwd = ; close(IN); FRITZBOX_Log $hash, 5, "Close password file"; } else { $msg = "Error: Cannot open password file '$pwdFile': $!"; FRITZBOX_Log $hash, 2, $msg; return $msg; } my $user = AttrVal( $name, "telnetUser", "" ); FRITZBOX_Log $hash, 4, "Open Telnet Connection to $host"; $telnet = new Net::Telnet ( Host=>$host, Port => 23, Timeout=>10, Errmode=>'return', Prompt=>'/# $/'); if (!$telnet) { $msg = "Could not open telnet connection to $host"; FRITZBOX_Log $hash, 2, $msg; $telnet = undef; return $msg; } FRITZBOX_Log $hash, 5, "Wait for user or password prompt."; unless ( ($before,$match) = $telnet->waitfor('/(user|login|password): $/i') ) { $msg = "Telnet error while waiting for user or password prompt: ".$telnet->errmsg; FRITZBOX_Log $hash, 2, $msg; $telnet->close; $telnet = undef; return $msg; } if ( $match =~ /(user|login): / && $user eq "") { $msg = "Telnet login requires user name but attribute 'telnetUser' not defined"; FRITZBOX_Log $hash, 2, $msg; $telnet->close; $telnet = undef; return $msg; } elsif ( $match =~ /(user|login): /) { FRITZBOX_Log $hash, 5, "Entering user name"; $telnet->print( $user ); FRITZBOX_Log $hash, 5, "Wait for password prompt"; unless ($telnet->waitfor( '/password: $/i' )) { $msg = "Telnet error while waiting for password prompt: ".$telnet->errmsg; FRITZBOX_Log $hash, 2, $msg; $telnet->close; $telnet = undef; return $msg; } } elsif ( $match eq "password: " && $user ne "") { FRITZBOX_Log $hash, 3, "Attribute 'telnetUser' defined but telnet login did not prompt for user name."; } FRITZBOX_Log $hash, 5, "Entering password"; $telnet->print( $pwd ); FRITZBOX_Log $hash, 5, "Wait for command prompt"; unless ($telnet->waitfor( '/# $/i' )) { $msg = "Telnet error while waiting for command prompt (perhaps wrong password): ".$telnet->errmsg; FRITZBOX_Log $hash, 2, $msg; $telnet->close; $telnet = undef; return $msg; } return undef; } # end FRITZBOX_Open_Connection # Closes a Telnet Connection to an external FritzBox ############################################ sub FRITZBOX_Close_Connection($) { my ($hash) = @_; return undef unless $hash->{REMOTE} == 1; if (defined $telnet) { FRITZBOX_Log $hash, 4, "Close Telnet connection"; $telnet->close; $telnet = undef; } else { FRITZBOX_Log $hash, 1, "Cannot close an undefined Telnet connection"; } } # end FRITZBOX_Close_Connection # Executed the command on the FritzBox Shell ############################################ sub FRITZBOX_Exec($$) { my ($hash, $cmd) = @_; my $openedTelnet = 0; if ($hash->{REMOTE} == 1) { unless (defined $telnet) { return undef if (FRITZBOX_Open_Connection($hash)); $openedTelnet = 1; } my $retVal = FRITZBOX_Exec_Remote($hash, $cmd); FRITZBOX_Close_Connection ( $hash ) if $openedTelnet; return $retVal; } else { return FRITZBOX_Exec_Local($hash, $cmd); } } # Executed the command via Telnet sub ############################################ FRITZBOX_Exec_Remote($$) { my ($hash, $cmd) = @_; my @output; my $result; if (ref \$cmd eq "SCALAR") { FRITZBOX_Log $hash, 4, "Execute '".$cmd."'"; @output=$telnet->cmd($cmd); $result = $output[0]; chomp $result; FRITZBOX_Log $hash, 4, "Result '$result'"; return $result; } elsif (ref \$cmd eq "REF") { my @resultArray = (); if ( int (@{$cmd}) > 0 ) { FRITZBOX_Log $hash, 4, "Execute " . int ( @{$cmd} ) . " command(s)"; foreach (@{$cmd}) { FRITZBOX_Log $hash, 5, "Execute '".$_."'"; unless ($_ =~ /^sleep/) { @output=$telnet->cmd($_); $result = join(" ",@output); $result =~ s/(\r\n|\n\r|\n|\r|\s)$//; } else { FRITZBOX_Log $hash, 4, "Do '$_' in perl."; eval ($_); $result = ""; } push @resultArray, $result; FRITZBOX_Log $hash, 5, "Result '$result'"; } @{$cmd} = (); FRITZBOX_Log $hash, 4, "Received ".int(@resultArray)." answer(s)"; } else { FRITZBOX_Log $hash, 4, "No shell command to execute."; } return \@resultArray; } else { FRITZBOX_Log $hash, 1, "Error: wrong perl parameter"; return undef; } } # Executed the command on the FritzBox Shell sub ############################################ FRITZBOX_Exec_Local($$) { my ($hash, $cmd) = @_; if (ref \$cmd eq "SCALAR") { FRITZBOX_Log $hash, 5, "Execute '".$cmd."'"; my $result = qx($cmd); chomp $result; FRITZBOX_Log $hash, 5, "Result '$result'"; return $result; } elsif (ref \$cmd eq "REF") { if ( int (@{$cmd}) > 0 ) { FRITZBOX_Log $hash, 4, "Execute " . int ( @{$cmd} ) . " command(s)"; FRITZBOX_Log $hash, 5, "Commands: '" . join( " | ", @{$cmd} ) . "'"; my $cmdStr = join "\necho ' |#|'\n", @{$cmd}; $cmdStr .= "\necho ' |#|'"; my $result = qx($cmdStr); $result =~ s/\n|\r//g; my @resultArray = split /\|#\|/, $result; foreach (keys @resultArray) { $resultArray[$_] =~ s/\s$//; } @{$cmd} = (); FRITZBOX_Log $hash, 4, "Received ".int(@resultArray)." answer(s)"; FRITZBOX_Log $hash, 5, "Result: '" . join (" | ", @resultArray)."'"; return \@resultArray; } else { FRITZBOX_Log $hash, 4, "No shell command to execute."; } } else { FRITZBOX_Log $hash, 1, "Error: wrong perl parameter"; } } ##################################### sub FRITZBOX_Send_Mail($@) { my ($hash,@val) = @_; my $lastField; my %field; my @cmdArray; foreach (@val) { if ($_ =~ /^(to|subject|body):/i) { $lastField = $1; $_ =~ s/^$1://; } $field{$lastField} .= $_." " if $lastField; } my $cmd = "/sbin/mailer send"; if ($field{body}) { push @cmdArray, "/bin/echo \"".$field{body}."\" > /var/tmp/fhem_nachricht.txt"; $cmd .= " -i '/var/tmp/fhem_nachricht.txt'"; } $field{subject} = "Message from FHEM" unless $field{subject}; $cmd .= " -s \"".$field{subject}."\""; $cmd .= " -t \"".$field{to}."\"" if $field{to} ne ""; push @cmdArray, $cmd; push @cmdArray, "rm /var/tmp/fhem_nachricht.txt" if $field{body}; FRITZBOX_Exec( $hash, \@cmdArray ); return undef; } sub ########################################## FRITZBOX_Start_Radio($@) { my ($hash, @val) = @_; my @cmdArray; my $name = $hash->{NAME}; my $intNo = $val[0]; my $radioStation; my $radioStationName; my $result; # Check if 1st parameter is a number return "Error: 1st Parameter '$intNo' not an internal DECT number" unless $intNo =~ /^61[012345]$/; # Check if the 1st parameter is a Fritz!Fon return "Error: Internal number $intNo does not seem to be a Fritz!Fon." unless $hash->{fhem}{$intNo}{brand} eq "AVM"; # Check if remaining parameter is an internet Radio Station shift (@val); if (@val) { $radioStationName = join (" ", @val); if ($radioStationName =~ /^\d+$/) { $radioStation = $radioStationName; $radioStationName = $hash->{fhem}{radio}{$radioStation}; return "Error: Unknown internet radio number $radioStation." unless defined $radioStationName; } else { foreach (keys %{$hash->{fhem}{radio}}) { if (lc $hash->{fhem}{radio}{$_} eq lc $radioStationName) { $radioStation = $_; last; } } return "Error: Unknown internet radio station '$radioStationName'" unless defined $radioStation; } } $result = FRITZBOX_Open_Connection( $hash ); return $result if $result; # Get current ringtone my $userNo = $intNo-609; my $curRingTone = FRITZBOX_Exec( $hash, "ctlmgr_ctl r telcfg settings/Foncontrol/User".$userNo."/IntRingTone" ); # Start Internet Radio and reset ring tone push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/IntRingTone 33"; push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/RadioRingID $radioStation"; push @cmdArray, "ctlmgr_ctl w telcfg command/Dial **".$intNo; push @cmdArray, "ctlmgr_ctl w telcfg settings/Foncontrol/User".$userNo."/IntRingTone $curRingTone"; # Execute command array FRITZBOX_Exec( $hash, \@cmdArray ); FRITZBOX_Close_Connection( $hash ); return undef; } ##################################### sub FRITZBOX_fritztris($) { my ($d) = @_; $d = "" if(!$d); return "$d is not a FRITZBOX instance
" if(!$defs{$d} || $defs{$d}{TYPE} ne "FRITZBOX"); my $returnStr = ''; $returnStr .= ''; # $returnStr .= ''; $returnStr .= ''; $returnStr .= ''; $returnStr .= ''; $returnStr .= ''; $returnStr .= ''; $returnStr .= '
FritzTris'; $returnStr .= '
Start'; $returnStr .= '
Stop
'; $returnStr .= '
'; return $returnStr; } ##################################### 1; =pod =begin html

FRITZBOX

(en | de)
    Controls some features of a Fritz!Box router. Connected Fritz!Fon's (MT-F, MT-D, C3, C4) can be used as signaling devices. MP3 files can be played as ring tone or when calling phones.

    The modul switches in local mode if FHEM runs on a Fritz!Box (as root user!). Otherwise, it tries to open a telnet connection to "fritz.box", so telnet (#96*7*) has to be enabled on the Fritz!Box. For remote access the password must be stored in the file 'fb_pwd.txt' in the root directory of FHEM.

    Check also the other Fritz!Box moduls: SYSMON and FB_CALLMONITOR.
    So fare, the module has been tested on Fritz!Box 7390 and 7490 and Fritz!Fon MT-F and C4.
    The modul uses the Perl modul 'Net::Telnet' for remote access.

    Define

      define <name> FRITZBOX

      Example: define Fritzbox FRITZBOX

      The FritzOS has a hidden function (easter egg).
      define MyEasterEgg weblink htmlCode { FRITZBOX_fritztris("Fritzbox") }

    Set

    • set <name> alarm <number> <on|off>
      Switches the alarm number (1, 2 or 3) on or off.

    • set <name> convertRingTone <fullFilePath>
      Converts the mp3-file fullFilePath to the G722 format and puts it in the same path.
      The file has to be placed on the file system of the Fritz!Box.

    • set <name> convertMusicOnHold <fullFilePath>
      Not implemented yet. Converts the mp3-file fullFilePath to a format that can be used for "Music on Hold".
      The file has to be placed on the file system of the fritzbox.

    • set <name> createPwdFile <password>
      Creates a file that contains the telnet password. The file name corresponds to the one used for remote telnet access.

    • set <name> customerRingTone <internalNumber> <fullFilePath>
      Uploads the file fullFilePath on the given handset. Only mp3 or G722 format is allowed.
      The file has to be placed on the file system of the fritzbox.
      The upload takes about one minute before the tone is available.

    • set <name> diversity <number> <on|off>
      Switches the call diversity number (1, 2 ...) on or off. A call diversity for an incoming number has to be created with the Fritz!Box web interface.
      Note! The Fritz!Box allows also forwarding in accordance to the calling number. This is not included in this feature.

    • set <name> guestWLAN <on|off>
      Switches the guest WLAN on or off.

    • set <name> moh <default|sound|customer> [<MP3FileIncludingPath|say:Text>]
      Example: set fritzbox moh customer say:Die Wanne ist voll
      set fritzbox moh customer /var/InternerSpeicher/warnung.mp3
      Changes the 'music on hold' of the Box. The parameter 'customer' allows to upload a mp3 file. Alternatively a text can be spoken with "say:". The music on hold has a maximal length of 8 s. It is played during the broking of calls or if the modul rings a phone and the call is taken. So, it can be used to transmit little messages of 8 s.

    • set <name> ring <internalNumbers> [duration [ringTone]] [show:yourMessage]
      Example: set fritzbox ring 611,612 5 Budapest show:It is raining
      Rings the internal numbers for "duration" seconds and (on Fritz!Fons) with the given "ring tone" name. Different internal numbers have to be separated by a comma (without spaces).
      Default duration is 5 seconds. Default ring tone is the internal ring tone of the device. Ring tone will be ignored for collected calls (9 or 50).
      If the attribute 'ringWithIntern' is specified, the text behind 'show:' will be shown as the callers name. Maximal 30 characters are allowed.
      If the call is taken the callee hears the "music on hold" which can be used to transmit messages.

    • set <name> sendMail [to:<Address>] [subject:<Subject>] [body:<Text>]
      Sends an email via the email notification service that is configured in push service of the Fritz!Box. All parameters can be omitted. Make sure the messages are not classified as junk by your email client.

    • set <name> startRadio <internalNumber> [name or number]
      Plays the internet radio on the given Fritz!Fon. Default is the current station of the phone. An available internet radio can be selected by its name or (reading) number.

    • set <name> tam <number> <on|off>
      Switches the answering machine number (1, 2 ...) on or off. The answering machine has to be created on the Fritz!Box web interface.

    • set <name> update
      Starts an update of the device readings.

    • set <name> wlan <on|off>
      Switches WLAN on or off.

    Get

    • get <name> ringTones
      Shows the list of ring tones that can be used.

    Attributes

    • defaultCallerName
      The default text to show on the ringing phone as 'caller'.
      This is done by temporarily changing the name of the calling internal number during the ring.
      Maximal 30 characters are allowed. The attribute "ringWithIntern" must also be specified.

    • defaultUploadDir <fritzBoxPath>
      This is the default path that will be used if a file name does not start with / (slash).
      It needs to be the name of the path on the Fritz!Box. So, it should start with /var/InternerSpeicher if it equals in Windows \\ip-address\fritz.nas

    • fritzBoxIP
      IP address or URL of the Fritz!Box for remote telnet access. Default is "fritz.box".

    • pwdFile <fileName>
      File that contains the password for telnet access. Default is 'fb_pwd.txt' in the root directory of FHEM.

    • telnetUser <user name>
      User name that is used for telnet access. By default no user name is required to login.
      If the Fritz!Box is configured differently, the user name has to be defined with this attribute.

    • ringWithIntern <1 | 2 | 3>
      To ring a fon a caller must always be specified. Default of this modul is 50 "ISDN:Wählhilfe".
      To show a message (default: "FHEM") during a ring the internal phone numbers 1-3 can be specified here. The concerned analog phone socket must exist.

    • readingFnAttributes

    Readings

    • alarm1 - Name of the alarm clock 1
    • alarm1_state - Current state of the alarm clock 1
    • alarm1_target - Internal number of the alarm clock 1
    • alarm1_time - Alarm time of the alarm clock 1
    • alarm1_wdays - Weekdays of the alarm clock 1
    • box_fwVersion - Firmware version of the box, if outdated then '(old)' is appended
    • box_guestWlan - Current state of the guest WLAN
    • box_guestWlanRemain - Remaining time until the guest WLAN is switched off
    • box_model - Fritz!Box model
    • box_moh - music-on-hold setting
    • box_tr069 - provider remote access TR069 (safety issue!)
    • box_wlan_2.4GHz - Current state of the 2.4 GHz WLAN
    • box_wlan_5GHz - Current state of the 5 GHz WLAN
    • dect1 - Name of the DECT device 1
    • dect1_alarmRingTone - Alarm ring tone of the DECT device 1
    • dect1_custRingTone - Customer ring tone of the DECT device 1
    • dect1_fwVersion - Firmware Version of the DECT device 1
    • dect1_intern - Internal number of the DECT device 1
    • dect1_intRingTone - Internal ring tone of the DECT device 1
    • dect1_manufacturer - Manufacturer of the DECT device 1
    • dect1_model - Model of the DECT device 1
    • dect1_radio - Current internet radio station of the DECT device 1
    • fon1 - Internal name of the analog FON connection 1
    • fon1_intern - Internal number of the analog FON connection 1
    • diversity1 - Own (incoming) phone number of the call diversity 1
    • diversity1_dest - Destination of the call diversity 1
    • diversity1_state - Current state of the call diversity 1
    • radio01 - Name of the internet radio station 01
    • tam1 - Name of the answering machine 1
    • tam1_newMsg - New messages on the answering machine 1
    • tam1_oldMsg - Old messages on the answering machine 1
    • tam1_state - Current state of the answering machine 1
    • user01 - Name of user/IP 1 that is under parental control
    • user01_thisMonthTime - this month internet usage of user/IP 1 (parental control)
    • user01_todaySeconds - today's internet usage in seconds of user/IP 1 (parental control)
    • user01_todayTime - today's internet usage of user/IP 1 (parental control)

=end html =begin html_DE

FRITZBOX

(en | de)
    Steuert gewisse Funktionen eines Fritz!Box Routers. Verbundene Fritz!Fon's (MT-F, MT-D, C3, C4) können als Signalgeräte genutzt werden. MP3-Dateien können als Klingelton oder einem angerufenen Telefon abgespielt werden.

    Das Modul schaltet in den lokalen Modus, wenn FHEM auf einer Fritz!Box läuft (als root-Benutzer!). Ansonsten versucht es eine Telnet Verbindung zu "fritz.box" zu öffnen. D.h. Telnet (#96*7*) muss auf der Fritz!Box erlaubt sein. Für diesen Fernzugriff muss das Passwort in der Datei 'fb_pwd.txt' im Wurzelverzeichnis von FHEM gespeichert sein.

    Bitte auch die anderen Fritz!Box-Module beachten: SYSMON und FB_CALLMONITOR.
    Bisher wurde das Modul auf einer Fritz!Box 7390 und 7490 und auf den Fritz!Fon MT-F und C4 getestet.
    Das Modul nutzt das Perlmodule 'Net::Telnet' für den Fernzugriff.

    Define

      define <name> FRITZBOX

      Beispiel: define Fritzbox FRITZBOX

      Das FritzOS hat eine versteckte Funktion (Osterei).
      define MyEasterEgg weblink htmlCode { FRITZBOX_fritztris("Fritzbox") }

    Set

    • set <name> alarm <number> <on|off>
      Schaltet den Weckruf Nummer 1, 2 oder 3 an oder aus.

    • set <name> convertRingTone <fullFilePath>
      Konvertiert die mp3-Datei fullFilePath in das G722-Format und legt es im selben Pfad ab.
      Die Datei muss im Dateisystem der Fritz!Box liegen.

    • set <name> convertMusicOnHold <fullFilePath>
      Not implemented yet. Converts the mp3-file fullFilePath to a format that can be used for "Music on Hold".
      The file has to be placed on the file system of the fritzbox.

    • set <name> createPwdFile <password>
      Erzeugt eine Datei welche das Telnet-Passwort enthält. Der Dateiname entspricht demjenigen, der für den Telnetzugriff genutzt wird.

    • set <name> customerRingTone <internalNumber> <MP3DateiInklusivePfad>
      Lädt die MP3-Datei als Klingelton auf das angegebene Telefon. Die Datei muss im Dateisystem der Fritzbox liegen.
      Das Hochladen dauert etwa eine Minute bis der Klingelton verfü,gbar ist.

    • set <name> diversity <number> <on|off>
      Schaltet die Rufumleitung (Nummer 1, 2 ...) an oder aus. Die Rufumleitung muss zuvor auf der Fritz!Box eingerichtet werden.
      Achtung! Die Fritz!Box ermöglicht auch eine Weiterleitung in Abhängigkeit von der anrufenden Nummer. Diese Art der Weiterleitung kann hiermit nicht geschaltet werden.

    • set <name> guestWLAN <on|off>
      Schaltet das Gäste-WLAN an oder aus.

    • set <name> moh <default|sound|customer> [<MP3DateiInklusivePfad|say:Text>]
      Beispiel: set fritzbox moh customer say:Die Wanne ist voll
      set fritzbox moh customer /var/InternerSpeicher/warnung.mp3
      Ändert die Wartemusik ('music on hold') der Box. Mit dem Parameter 'customer' kann eine eigene MP3-Datei aufgespielt werden. Alternativ kann mit "say:" auch ein Text gesprochen werden. Die Wartemusik hat eine maximale Länge von 8,13 s. Sie wird während des Makelns von Gesprächen aber auch bei Nutzung der internen Wählhilfe bis zum Abheben des rufenden Telefons abgespielt. Dadurch können über FHEM dem Angerufenen 8s-Nachrichten vorgespielt werden.

    • set <name> ring <interneNummern> [Dauer [Klingelton]] [show:Nachricht] Beispiel: set fritzbox ring 611,612 5 Budapest show:Es regnet
      Lässt die internen Nummern für "Dauer" Sekunden und (auf Fritz!Fons) mit dem angegebenen "Klingelton" klingeln. Mehrere interne Nummern müssen durch ein Komma (ohne Leerzeichen) getrennt werden.
      Standard-Dauer ist 5 Sekunden. Standard-Klingelton ist der interne Klingelton des Gerätes. Der Klingelton wird für Rundrufe (9 oder 50) ignoriert.
      Wenn das Attribut 'ringWithIntern' existiert, wird der Text hinter 'show:' als Name des Anrufers angezeigt. Er darf maximal 30 Zeichen lang sein.
      Wenn der Anruf angenommen wird, hört der Angerufene die Wartemusik (music on hold), welche zur Nachrichtenübermittlung genutzt werden kann.

    • set <name> sendMail [to:<Address>] [subject:<Subject>] [body:<Text>]
      Sendet eine Email über den Emailbenachrichtigungsservice der als Push Service auf der Fritz!Box konfiguriert wurde. Alle Parameter können ausgelassen werden. Bitte kontrolliert, dass die Email nicht im Junk-Verzeichnis landet.

    • set <name> startRadio <internalNumber> [Name oder Nummer]
      Startet das Internetradio auf dem angegebenen Fritz!Fon. Ein verfügbare Radiostation kann über den Namen oder die (Gerätewert)Nummer ausgewählt werden. Ansonsten wird die aktuell eingestellte genommen.

    • set <name> tam <number> <on|off>
      Schaltet den Anrufbeantworter (Nummer 1, 2 ...) an oder aus. Der Anrufbeantworter muss zuvor auf der Fritz!Box eingerichtet werden.

    • set <name> update
      Startet eine Aktualisierung der Gerätewerte.

    • set <name> wlan <on|off>
      Schaltet WLAN an oder aus.

    Get

    • get <name> ringTones
      Zeigt die Liste der Klingeltöne, die benutzt werden können.

    Attributes

    • defaultCallerName
      Standard-Text, der auf dem angerufenen internen Telefon als "Anrufer" gezeigt wird.
      Dies erfolgt, indem während des Klingelns kurzzeitig der Name der internen anrufenden Nummer geändert wird.
      Es ist maximal 30 Zeichen erlaubt. Das Attribute "ringWithIntern" muss ebenfalls spezifiziert sein.

    • defaultUploadDir <fritzBoxPath>
      Dies ist der Standard-Pfad der für Dateinamen benutzt wird, die nicht mit einem / (Schrägstrich) beginnen.
      Es muss ein Pfad auf der Fritz!Box sein. D.h., er sollte mit /var/InternerSpeicher starten, wenn es in Windows unter \\ip-address\fritz.nas erreichbar ist.

    • fritzBoxIP
      IP Adresse oder ULR der Fritz!Box für Fernzugriff per Telnet. Standard ist "fritz.box".

    • pwdFile <fileName>
      Damit kann die Datei geündert werden, welche das Passwort für den Telnetzugang enthält. Der Standard ist 'fb_pwd.txt' im Wurzelverzeichnis von FHEM.

    • telnetUser <user name>
      Benutzername für den Telnetzugang. Normalerweise wird keine Benutzername für das Login benötigt. Wenn die Fritz!Box anders konfiguriert ist, kann der Nutzer über dieses Attribut definiert werden.

    • ringWithIntern <1 | 2 | 3>
      Um ein Telefon klingeln zu lassen, muss eine Anrufer spezifiziert werden. Normalerweise ist dies die Nummer 50 "ISDN:Wählhilfe".
      Um während des Klingelns eine Nachricht (Standard: "FHEM") anzuzeigen, kann hier die interne Nummer 1-3 angegeben werden. Der entsprechende analoge Telefonanschluss muss vorhanden sein.

    • readingFnAttributes

    Readings

    • alarm1 - Name des Weckrufs 1
    • alarm1_state - Aktueller Status des Weckrufs 1
    • alarm1_target - Interne Nummer des Weckrufs 1
    • alarm1_time - Weckzeit des Weckrufs 1
    • alarm1_wdays - Wochentage des Weckrufs 1
    • box_fwVersion - Firmware-Version der Box, wenn veraltet dann wird '(old)' angehangen
    • box_guestWlan - Aktueller Status des Gäste-WLAN
    • box_guestWlanRemain - Verbleibende Zeit bis zum Ausschalten des Gäste-WLAN
    • box_model - Fritz!Box-Modell
    • box_moh - Wartemusik-Einstellung
    • box_tr069 - Provider-Fernwartung TR069 (sicherheitsrelevant!)
    • box_wlan_2.4GHz - Aktueller Status des 2.4-GHz-WLAN
    • box_wlan_5GHz - Aktueller Status des 5-GHz-WLAN
    • dect1 - Name des DECT Telefons 1
    • dect1_alarmRingTone - Klingelton beim Wecken über das DECT Telefon 1
    • dect1_custRingTone - Benutzerspezifischer Klingelton des DECT Telefons 1
    • dect1_fwVersion - Firmware-Version des DECT Telefons 1
    • dect1_intern - Interne Nummer des DECT Telefons 1
    • dect1_intRingTone - Interner Klingelton des DECT Telefons 1
    • dect1_manufacturer - Hersteller des DECT Telefons 1
    • dect1_model - Modell des DECT Telefons 1
    • dect1_radio - aktuelle Internet Radio Station des DECT Telefons 1
    • fon1 - Name des analogen Telefonanschlusses 1 an der Fritz!Box
    • fon1_intern - Interne Nummer des analogen Telefonanschlusses 1
    • diversity1 - Eigene Rufnummer der Rufumleitung 1
    • diversity1_dest - Zielnummer der Rufumleitung 1
    • diversity1_state - Aktueller Status der Rufumleitung 1
    • radio01 - Name der Internetradiostation 01
    • tam1 - Name des Anrufbeantworters 1
    • tam1_newMsg - Anzahl neuer Nachrichten auf dem Anrufbeantworter 1
    • tam1_oldMsg - Anzahl alter Nachrichten auf dem Anrufbeantworter 1
    • tam1_state - Aktueller Status des Anrufbeantworters 1
    • user01 - Name von Nutzer/IP 1 für den eine Zugangsbeschränkung (Kindersicherung) eingerichtet ist
    • user01_thisMonthTime - Internetnutzung des Nutzers/IP 1 im aktuellen Monat (Kindersicherung)
    • user01_todaySeconds - heutige Internetnutzung des Nutzers/IP 1 in Sekunden (Kindersicherung)
    • user01_todayTime - heutige Internetnutzung des Nutzers/IP 1 (Kindersicherung)

=end html_DE =cut-