change password storage to new Password Util package
This commit is contained in:
parent
1e3a666830
commit
d38e26c8e0
@ -57,47 +57,39 @@ package FHEM::TeslaPowerwall2AC;
|
||||
use strict;
|
||||
use warnings;
|
||||
use FHEM::Meta;
|
||||
use GPUtils qw(GP_Import GP_Export);
|
||||
use GPUtils qw(GP_Export);
|
||||
|
||||
require FHEM::Tesla::Powerwall;
|
||||
|
||||
## Import der FHEM Funktionen
|
||||
#-- Run before package compilation
|
||||
BEGIN {
|
||||
|
||||
# Import from main context
|
||||
GP_Import(
|
||||
#-- Export to main context with different name
|
||||
GP_Export(
|
||||
qw(
|
||||
readingFnAttributes
|
||||
)
|
||||
Initialize
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
#-- Export to main context with different name
|
||||
GP_Export(
|
||||
qw(
|
||||
Initialize
|
||||
)
|
||||
);
|
||||
|
||||
sub Initialize {
|
||||
|
||||
my $hash = shift;
|
||||
|
||||
$hash->{GetFn} = 'FHEM::Tesla::Powerwall::Get';
|
||||
$hash->{SetFn} = 'FHEM::Tesla::Powerwall::Set';
|
||||
$hash->{DefFn} = 'FHEM::Tesla::Powerwall::Define';
|
||||
$hash->{UndefFn} = 'FHEM::Tesla::Powerwall::Undef';
|
||||
$hash->{NotifyFn} = 'FHEM::Tesla::Powerwall::Notify';
|
||||
$hash->{RenameFn} = 'FHEM::Tesla::Powerwall::Rename';
|
||||
$hash->{GetFn} = \&FHEM::Tesla::Powerwall::Get;
|
||||
$hash->{SetFn} = \&FHEM::Tesla::Powerwall::Set;
|
||||
$hash->{DefFn} = \&FHEM::Tesla::Powerwall::Define;
|
||||
$hash->{UndefFn} = \&FHEM::Tesla::Powerwall::Undef;
|
||||
$hash->{NotifyFn} = \&FHEM::Tesla::Powerwall::Notify;
|
||||
$hash->{RenameFn} = \&FHEM::Tesla::Powerwall::Rename;
|
||||
|
||||
$hash->{AttrFn} = 'FHEM::Tesla::Powerwall::Attr';
|
||||
$hash->{AttrFn} = \&FHEM::Tesla::Powerwall::Attr;
|
||||
$hash->{AttrList} =
|
||||
'interval '
|
||||
. 'disable:1 '
|
||||
. 'devel:1 '
|
||||
. 'emailaddr '
|
||||
. $readingFnAttributes;
|
||||
. $::readingFnAttributes;
|
||||
|
||||
$hash->{parseParams} = 1;
|
||||
|
||||
@ -207,7 +199,7 @@ sub Initialize {
|
||||
],
|
||||
"release_status": "stable",
|
||||
"license": "GPL_2",
|
||||
"version": "v1.2.0",
|
||||
"version": "v1.2.1",
|
||||
"author": [
|
||||
"Marko Oldenburg <leongaultier@gmail.com>"
|
||||
],
|
||||
|
@ -1,2 +1,2 @@
|
||||
UPD 2021-03-27_18:40:42 6992 FHEM/46_TeslaPowerwall2AC.pm
|
||||
UPD 2021-03-27_23:17:06 28859 lib/FHEM/Tesla/Powerwall.pm
|
||||
UPD 2021-04-20_21:40:31 6866 FHEM/46_TeslaPowerwall2AC.pm
|
||||
UPD 2021-04-20_21:40:44 30162 lib/FHEM/Tesla/Powerwall.pm
|
||||
|
@ -30,9 +30,9 @@
|
||||
# $data = eval{decode_json($data)};
|
||||
#
|
||||
# if($@){
|
||||
# Log3($SELF, 2, "$TYPE ($SELF) - error while request: $@");
|
||||
# ::Log3($SELF, 2, "$TYPE ($SELF) - error while request: $@");
|
||||
#
|
||||
# readingsSingleUpdate($hash, "state", "error", 1);
|
||||
# ::readingsSingleUpdate($hash, "state", "error", 1);
|
||||
#
|
||||
# return;
|
||||
# }
|
||||
@ -56,8 +56,10 @@ package FHEM::Tesla::Powerwall;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use GPUtils qw(GP_Import GP_Export);
|
||||
use GPUtils qw(GP_Export);
|
||||
use HttpUtils;
|
||||
use FHEM::Core::Password::Utils qw(:ALL);
|
||||
|
||||
use Data::Dumper;
|
||||
|
||||
# try to use JSON::MaybeXS wrapper
|
||||
@ -135,30 +137,13 @@ if ($@) {
|
||||
#-- Run before package compilation
|
||||
BEGIN {
|
||||
|
||||
# Import from main context
|
||||
GP_Import(
|
||||
#-- Export to main context with different name
|
||||
GP_Export(
|
||||
qw(
|
||||
readingsSingleUpdate
|
||||
readingsBulkUpdate
|
||||
readingsBulkUpdateIfChanged
|
||||
readingsBeginUpdate
|
||||
readingsEndUpdate
|
||||
setKeyValue
|
||||
getKeyValue
|
||||
getUniqueId
|
||||
CommandAttr
|
||||
defs
|
||||
Log3
|
||||
readingFnAttributes
|
||||
HttpUtils_NonblockingGet
|
||||
AttrVal
|
||||
ReadingsVal
|
||||
IsDisabled
|
||||
deviceEvents
|
||||
init_done
|
||||
gettimeofday
|
||||
InternalTimer
|
||||
RemoveInternalTimer)
|
||||
Initialize
|
||||
Timer_GetData
|
||||
Write
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@ -209,11 +194,31 @@ sub Define {
|
||||
$hash->{NOTIFYDEV} = qq(global,${name});
|
||||
$hash->{actionQueue} = [];
|
||||
|
||||
CommandAttr( undef, $name . q{ room Tesla} )
|
||||
if ( AttrVal( $name, 'room', 'none' ) eq 'none' );
|
||||
Log3($name, 3,
|
||||
::CommandAttr( undef, $name . q{ room Tesla} )
|
||||
if ( ::AttrVal( $name, 'room', 'none' ) eq 'none' );
|
||||
::Log3($name, 3,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - defined TeslaPowerwall2AC Device with Host ${host} and Interval $hash->{INTERVAL}));
|
||||
|
||||
### create password object to handle pass keystore
|
||||
$hash->{helper}->{passObj} = FHEM::Core::Password::Utils->new();
|
||||
|
||||
if ( defined( ReadPassword( $hash, $name ) ) ) {
|
||||
my ($passResp,$passErr);
|
||||
($passResp,$passErr) = $hash->{helper}->{passObj}->setStorePassword($name,ReadPassword( $hash, $name ));
|
||||
|
||||
::Log3($name, 1,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - error while saving the password - $passErr)
|
||||
if ( !defined($passResp)
|
||||
and defined($passErr) );
|
||||
|
||||
::Log3($name, 1,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - password successfully saved)
|
||||
if ( defined($passResp)
|
||||
and !defined($passErr) );
|
||||
|
||||
DeletePassword($hash);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@ -221,25 +226,25 @@ sub Undef {
|
||||
my $hash = shift;
|
||||
my $name = shift;
|
||||
|
||||
RemoveInternalTimer($hash);
|
||||
Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - Device ${name} deleted));
|
||||
::RemoveInternalTimer($hash);
|
||||
::Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - Device ${name} deleted));
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
sub Attr {
|
||||
my ( $cmd, $name, $attrName, $attrVal ) = @_;
|
||||
my $hash = $defs{$name};
|
||||
my $hash = $$::defs{$name};
|
||||
|
||||
if ( $attrName eq 'disable' ) {
|
||||
if ( $cmd eq 'set' && $attrVal eq '1' ) {
|
||||
RemoveInternalTimer($hash);
|
||||
readingsSingleUpdate( $hash, 'state', 'disabled', 1 );
|
||||
Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - disabled));
|
||||
::RemoveInternalTimer($hash);
|
||||
::readingsSingleUpdate( $hash, 'state', 'disabled', 1 );
|
||||
::Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - disabled));
|
||||
|
||||
}
|
||||
elsif ( $cmd eq 'del' ) {
|
||||
Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - enabled));
|
||||
::Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - enabled));
|
||||
}
|
||||
}
|
||||
|
||||
@ -248,37 +253,37 @@ sub Attr {
|
||||
return
|
||||
'check disabledForIntervals Syntax HH:MM-HH:MM or \'HH:MM-HH:MM HH:MM-HH:MM ...\''
|
||||
unless ( $attrVal =~ /^((\d{2}:\d{2})-(\d{2}:\d{2})\s?)+$/ );
|
||||
Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - disabledForIntervals));
|
||||
readingsSingleUpdate( $hash, 'state', 'disabled', 1 );
|
||||
::Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - disabledForIntervals));
|
||||
::readingsSingleUpdate( $hash, 'state', 'disabled', 1 );
|
||||
|
||||
}
|
||||
elsif ( $cmd eq 'del' ) {
|
||||
Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - enabled));
|
||||
readingsSingleUpdate( $hash, 'state', 'active', 1 );
|
||||
::Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - enabled));
|
||||
::readingsSingleUpdate( $hash, 'state', 'active', 1 );
|
||||
}
|
||||
}
|
||||
|
||||
if ( $attrName eq 'interval' ) {
|
||||
if ( $cmd eq 'set' ) {
|
||||
if ( $attrVal < 60 ) {
|
||||
Log3($name, 3,
|
||||
::Log3($name, 3,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - interval too small, please use something >= 60 (sec), default is 300 (sec)));
|
||||
return
|
||||
q{interval too small, please use something >= 60 (sec), default is 300 (sec)};
|
||||
|
||||
}
|
||||
else {
|
||||
RemoveInternalTimer($hash);
|
||||
::RemoveInternalTimer($hash);
|
||||
$hash->{INTERVAL} = $attrVal;
|
||||
Log3($name, 3,
|
||||
::Log3($name, 3,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - set interval to ${attrVal}));
|
||||
Timer_GetData($hash);
|
||||
}
|
||||
}
|
||||
elsif ( $cmd eq 'del' ) {
|
||||
RemoveInternalTimer($hash);
|
||||
::RemoveInternalTimer($hash);
|
||||
$hash->{INTERVAL} = 300;
|
||||
Log3($name, 3,
|
||||
::Log3($name, 3,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - set interval to default));
|
||||
Timer_GetData($hash);
|
||||
}
|
||||
@ -292,11 +297,11 @@ sub Notify {
|
||||
my $dev = shift;
|
||||
|
||||
my $name = $hash->{NAME};
|
||||
return if ( IsDisabled($name) );
|
||||
return if ( ::IsDisabled($name) );
|
||||
|
||||
my $devname = $dev->{NAME};
|
||||
my $devtype = $dev->{TYPE};
|
||||
my $events = deviceEvents( $dev, 1 );
|
||||
my $events = ::deviceEvents( $dev, 1 );
|
||||
return if ( !$events );
|
||||
|
||||
Timer_GetData($hash)
|
||||
@ -306,7 +311,7 @@ sub Notify {
|
||||
or grep /^DELETEATTR.$name.disable$/, @{$events}
|
||||
or grep /^DELETEATTR.$name.interval$/, @{$events}
|
||||
or grep /^DEFINED.$name$/, @{$events} )
|
||||
and $init_done
|
||||
and $::init_done
|
||||
);
|
||||
return;
|
||||
}
|
||||
@ -359,7 +364,7 @@ sub Get {
|
||||
my $list = '';
|
||||
$list .=
|
||||
'statusSOE:noArg aggregates:noArg siteinfo:noArg sitemaster:noArg powerwalls:noArg registration:noArg status:noArg'
|
||||
if( AttrVal($name,'emailaddr','none') ne 'none'
|
||||
if( ::AttrVal($name,'emailaddr','none') ne 'none'
|
||||
&& defined(ReadPassword($hash, $name))
|
||||
&& defined($hash->{TOKEN}) );
|
||||
|
||||
@ -391,25 +396,49 @@ sub Set {
|
||||
}
|
||||
elsif ( lc $cmd eq 'setpassword' ) {
|
||||
return q{please set Attribut emailaddr first}
|
||||
if ( AttrVal( $name, 'emailaddr', 'none' ) eq 'none' );
|
||||
if ( ::AttrVal( $name, 'emailaddr', 'none' ) eq 'none' );
|
||||
return qq(usage: ${cmd} pass=<password>) if ( scalar( @{$aArg} ) != 0
|
||||
|| scalar(keys %{$hArg}) != 1 );
|
||||
my ($passResp,$passErr);
|
||||
($passResp,$passErr) = $hash->{helper}->{passObj}->setStorePassword($name,$hArg->{'pass'});
|
||||
|
||||
return qq{error while saving the password - $passErr}
|
||||
if ( !defined($passResp)
|
||||
and defined($passErr) );
|
||||
|
||||
return q{password successfully saved}
|
||||
if ( defined($passResp)
|
||||
and !defined($passErr) );
|
||||
|
||||
StorePassword( $hash, $name, $hArg->{'pass'} );
|
||||
return Timer_GetData($hash);
|
||||
}
|
||||
elsif ( lc $cmd eq 'removepassword' ) {
|
||||
return "usage: $cmd" if ( scalar( @{$aArg} ) != 0 );
|
||||
|
||||
DeletePassword($hash);
|
||||
return Timer_GetData($hash);
|
||||
my ($passResp,$passErr);
|
||||
($passResp,$passErr) = $hash->{helper}->{passObj}->setStorePassword($name);
|
||||
|
||||
return qq{error while saving the password - $passErr}
|
||||
if ( !defined($passResp)
|
||||
and defined($passErr) );
|
||||
|
||||
return q{password successfully removed}
|
||||
if ( defined($passResp)
|
||||
and !defined($passErr) );
|
||||
}
|
||||
else {
|
||||
|
||||
my $list = ( defined(ReadPassword($hash, $name)) ? 'removePassword:noArg ' : 'setPassword ');
|
||||
my $list = ( exists($hash->{helper}->{passObj})
|
||||
&& exists($hash->{helper}->{passObj})
|
||||
&& defined($hash->{helper}->{passObj}->getReadPassword($name))
|
||||
? 'removePassword:noArg '
|
||||
: 'setPassword ');
|
||||
|
||||
$list .= 'powerwalls:run,stop'
|
||||
if ( AttrVal( $name, 'devel', 0 ) == 1
|
||||
&& defined(ReadPassword($hash, $name))
|
||||
if ( ::AttrVal( $name, 'devel', 0 ) == 1
|
||||
exists($hash->{helper}->{passObj})
|
||||
&& exists($hash->{helper}->{passObj})
|
||||
&& defined($hash->{helper}->{passObj}->getReadPassword($name))
|
||||
&& defined($hash->{TOKEN}) );
|
||||
|
||||
return 'Unknown argument ' . $cmd . ', choose one of ' . $list;
|
||||
@ -425,18 +454,22 @@ sub Timer_GetData {
|
||||
my $hash = shift;
|
||||
my $name = $hash->{NAME};
|
||||
|
||||
RemoveInternalTimer($hash);
|
||||
::RemoveInternalTimer($hash);
|
||||
|
||||
if ( defined( $hash->{actionQueue} )
|
||||
&& scalar( @{ $hash->{actionQueue} } ) == 0 )
|
||||
{
|
||||
if ( !IsDisabled($name) ) {
|
||||
return readingsSingleUpdate( $hash, 'state',
|
||||
if ( !::IsDisabled($name) ) {
|
||||
return ::readingsSingleUpdate( $hash, 'state',
|
||||
'please set Attribut emailaddr first', 1 )
|
||||
if ( AttrVal( $name, 'emailaddr', 'none' ) eq 'none' );
|
||||
return readingsSingleUpdate( $hash, 'state',
|
||||
if ( ::AttrVal( $name, 'emailaddr', 'none' ) eq 'none' );
|
||||
return ::readingsSingleUpdate( $hash, 'state',
|
||||
'please set password first', 1 )
|
||||
if ( !defined( ReadPassword( $hash, $name ) ) );
|
||||
if ( !exists($hash->{helper}->{passObj})
|
||||
|| ( exists($hash->{helper}->{passObj})
|
||||
&& !defined($hash->{helper}->{passObj}->getReadPassword($name))
|
||||
)
|
||||
);
|
||||
|
||||
if ( !defined( $hash->{TOKEN}) ) {
|
||||
unshift( @{ $hash->{actionQueue} }, 'login' );
|
||||
@ -450,14 +483,14 @@ sub Timer_GetData {
|
||||
Write($hash);
|
||||
}
|
||||
else {
|
||||
return readingsSingleUpdate( $hash, 'state', 'disabled', 1 );
|
||||
return ::readingsSingleUpdate( $hash, 'state', 'disabled', 1 );
|
||||
}
|
||||
}
|
||||
|
||||
InternalTimer( gettimeofday() + $hash->{INTERVAL},
|
||||
::InternalTimer( ::gettimeofday() + $hash->{INTERVAL},
|
||||
'Powerwall_Timer_GetData', $hash );
|
||||
Log3($name, 4,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - Call InternalTimer Timer_GetData));
|
||||
::Log3($name, 4,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - Call ::InternalTimer Timer_GetData));
|
||||
}
|
||||
|
||||
sub Write {
|
||||
@ -467,7 +500,7 @@ sub Write {
|
||||
my ( $uri, $method, $header, $data, $path ) =
|
||||
CreateUri( $hash, pop( @{ $hash->{actionQueue} } ) );
|
||||
|
||||
readingsSingleUpdate(
|
||||
::readingsSingleUpdate(
|
||||
$hash,
|
||||
'state',
|
||||
'fetch data - '
|
||||
@ -476,7 +509,7 @@ sub Write {
|
||||
1
|
||||
);
|
||||
|
||||
HttpUtils_NonblockingGet(
|
||||
::HttpUtils_NonblockingGet(
|
||||
{
|
||||
url => 'https://' . $uri,
|
||||
timeout => 5,
|
||||
@ -490,7 +523,7 @@ sub Write {
|
||||
}
|
||||
);
|
||||
|
||||
Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - Send with URI: https://${uri}));
|
||||
::Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - Send with URI: https://${uri}));
|
||||
}
|
||||
|
||||
sub ErrorHandling {
|
||||
@ -506,12 +539,12 @@ sub ErrorHandling {
|
||||
if ( defined($err) ) {
|
||||
if ( $err ne '' ) {
|
||||
|
||||
readingsBeginUpdate($hash);
|
||||
readingsBulkUpdate( $hash, 'state', $err, 1 );
|
||||
readingsBulkUpdate( $hash, 'lastRequestError', $err, 1 );
|
||||
readingsEndUpdate( $hash, 1 );
|
||||
::readingsBeginUpdate($hash);
|
||||
::readingsBulkUpdate( $hash, 'state', $err, 1 );
|
||||
::readingsBulkUpdate( $hash, 'lastRequestError', $err, 1 );
|
||||
::readingsEndUpdate( $hash, 1 );
|
||||
|
||||
Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - RequestERROR: ${err}));
|
||||
::Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - RequestERROR: ${err}));
|
||||
|
||||
$hash->{actionQueue} = [];
|
||||
return;
|
||||
@ -523,17 +556,17 @@ sub ErrorHandling {
|
||||
&& $param->{code} != 200 )
|
||||
{
|
||||
|
||||
readingsBeginUpdate($hash);
|
||||
readingsBulkUpdate( $hash, 'state', $param->{code}, 1 );
|
||||
::readingsBeginUpdate($hash);
|
||||
::readingsBulkUpdate( $hash, 'state', $param->{code}, 1 );
|
||||
|
||||
readingsBulkUpdate( $hash, 'lastRequestError', $param->{code}, 1 );
|
||||
::readingsBulkUpdate( $hash, 'lastRequestError', $param->{code}, 1 );
|
||||
|
||||
Log3($name, 3,
|
||||
::Log3($name, 3,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - RequestERROR: " . $param->{code}));
|
||||
|
||||
readingsEndUpdate( $hash, 1 );
|
||||
::readingsEndUpdate( $hash, 1 );
|
||||
|
||||
Log3($name, 5,
|
||||
::Log3($name, 5,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - RequestERROR: received http code "
|
||||
. $param->{code}
|
||||
. " without any data after requesting));
|
||||
@ -544,10 +577,10 @@ sub ErrorHandling {
|
||||
|
||||
if ( $data =~ m#{"code":(\d+),"error":"(.+)","message":"(.+)"}$# ) {
|
||||
|
||||
readingsBeginUpdate($hash);
|
||||
::readingsBeginUpdate($hash);
|
||||
|
||||
readingsBulkUpdate( $hash, 'state', $1, 1 );
|
||||
readingsBulkUpdate(
|
||||
::readingsBulkUpdate( $hash, 'state', $1, 1 );
|
||||
::readingsBulkUpdate(
|
||||
$hash,
|
||||
'lastRequestError',
|
||||
'Path: '
|
||||
@ -560,15 +593,15 @@ sub ErrorHandling {
|
||||
1
|
||||
);
|
||||
|
||||
readingsEndUpdate( $hash, 1 );
|
||||
::readingsEndUpdate( $hash, 1 );
|
||||
}
|
||||
#### End Error Handling
|
||||
|
||||
InternalTimer( gettimeofday() + 3, 'Powerwall_Write', $hash )
|
||||
::InternalTimer( ::gettimeofday() + 3, 'Powerwall_Write', $hash )
|
||||
if ( defined( $hash->{actionQueue} )
|
||||
&& scalar( @{ $hash->{actionQueue} } ) > 0 );
|
||||
|
||||
Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - Recieve JSON data: ${data}));
|
||||
::Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - Recieve JSON data: ${data}));
|
||||
|
||||
ResponseProcessing( $hash, $param->{setCmd}, $data );
|
||||
}
|
||||
@ -584,11 +617,11 @@ sub ResponseProcessing {
|
||||
|
||||
$decode_json = eval { decode_json($json) };
|
||||
if ($@) {
|
||||
Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - error while request: $@));
|
||||
readingsBeginUpdate($hash);
|
||||
readingsBulkUpdate( $hash, 'JSON Error', $@ );
|
||||
readingsBulkUpdate( $hash, 'state', 'JSON error' );
|
||||
readingsEndUpdate( $hash, 1 );
|
||||
::Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - error while request: $@));
|
||||
::readingsBeginUpdate($hash);
|
||||
::readingsBulkUpdate( $hash, 'JSON Error', $@ );
|
||||
::readingsBulkUpdate( $hash, 'state', 'JSON error' );
|
||||
::readingsEndUpdate( $hash, 1 );
|
||||
return;
|
||||
}
|
||||
|
||||
@ -631,31 +664,31 @@ sub WriteReadings {
|
||||
|
||||
my $name = $hash->{NAME};
|
||||
|
||||
Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - Write Readings));
|
||||
::Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - Write Readings));
|
||||
|
||||
readingsBeginUpdate($hash);
|
||||
::readingsBeginUpdate($hash);
|
||||
while ( my ( $r, $v ) = each %{$readings} ) {
|
||||
readingsBulkUpdate( $hash, $path . '-' . $r, $v );
|
||||
::readingsBulkUpdate( $hash, $path . '-' . $r, $v );
|
||||
}
|
||||
|
||||
readingsBulkUpdate( $hash, 'batteryLevel',
|
||||
::readingsBulkUpdate( $hash, 'batteryLevel',
|
||||
sprintf( "%.1f", $readings->{percentage} ) )
|
||||
if ( defined( $readings->{percentage} ) );
|
||||
readingsBulkUpdate(
|
||||
::readingsBulkUpdate(
|
||||
$hash,
|
||||
'batteryPower',
|
||||
sprintf(
|
||||
"%.1f",
|
||||
(
|
||||
ReadingsVal( $name, 'siteinfo-nominal_system_energy_kWh', 0 ) /
|
||||
::ReadingsVal( $name, 'siteinfo-nominal_system_energy_kWh', 0 ) /
|
||||
100
|
||||
) * ReadingsVal( $name, 'statussoe-percentage', 0 )
|
||||
) * ::ReadingsVal( $name, 'statussoe-percentage', 0 )
|
||||
)
|
||||
);
|
||||
|
||||
readingsBulkUpdateIfChanged( $hash, 'actionQueue',
|
||||
::readingsBulkUpdateIfChanged( $hash, 'actionQueue',
|
||||
scalar( @{ $hash->{actionQueue} } ) . ' entries in the Queue' );
|
||||
readingsBulkUpdateIfChanged(
|
||||
::readingsBulkUpdateIfChanged(
|
||||
$hash, 'state',
|
||||
(
|
||||
defined( $hash->{actionQueue} )
|
||||
@ -667,7 +700,7 @@ sub WriteReadings {
|
||||
)
|
||||
);
|
||||
|
||||
readingsEndUpdate( $hash, 1 );
|
||||
::readingsEndUpdate( $hash, 1 );
|
||||
}
|
||||
|
||||
sub ReadingsProcessing_Aggregates {
|
||||
@ -891,9 +924,9 @@ sub CreateUri {
|
||||
$header = 'Content-Type: application/json';
|
||||
$data =
|
||||
'{"username":"customer","password":"'
|
||||
. ReadPassword( $hash, $name )
|
||||
. $hash->{helper}->{passObj}->getReadPassword($name)
|
||||
. '","email":"'
|
||||
. AttrVal($name,'emailaddr','test@test.de')
|
||||
. ::AttrVal($name,'emailaddr','test@test.de')
|
||||
. '","force_sm_off":false}'
|
||||
}
|
||||
elsif ( $path eq 'powerwallsstop'
|
||||
@ -911,7 +944,7 @@ sub StorePassword {
|
||||
my $password = shift;
|
||||
|
||||
my $index = $hash->{TYPE} . q{_} . $name . q{_passwd};
|
||||
my $key = getUniqueId() . $index;
|
||||
my $key = ::getUniqueId() . $index;
|
||||
my $enc_pwd = q{};
|
||||
|
||||
if ( eval qq(use Digest::MD5;1) ) {
|
||||
@ -927,7 +960,7 @@ sub StorePassword {
|
||||
$key = $encode . $key;
|
||||
}
|
||||
|
||||
my $err = setKeyValue( $index, $enc_pwd );
|
||||
my $err = ::setKeyValue( $index, $enc_pwd );
|
||||
return qq(error while saving the password - ${err})
|
||||
if ( defined($err) );
|
||||
|
||||
@ -939,16 +972,16 @@ sub ReadPassword {
|
||||
my $name = shift;
|
||||
|
||||
my $index = $hash->{TYPE} . q{_} . $name . q{_passwd};
|
||||
my $key = getUniqueId() . $index;
|
||||
my $key = ::getUniqueId() . $index;
|
||||
my ( $password, $err );
|
||||
|
||||
Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - Read password from file));
|
||||
::Log3($name, 4, qq(TeslaPowerwall2AC \(${name}\) - Read password from file));
|
||||
|
||||
( $err, $password ) = getKeyValue($index);
|
||||
( $err, $password ) = ::getKeyValue($index);
|
||||
|
||||
if ( defined($err) ) {
|
||||
|
||||
Log3($name, 3,
|
||||
::Log3($name, 3,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - unable to read password from file: ${err}));
|
||||
return;
|
||||
|
||||
@ -975,7 +1008,7 @@ qq(TeslaPowerwall2AC \(${name}\) - unable to read password from file: ${err}));
|
||||
}
|
||||
else {
|
||||
|
||||
Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - No password in file));
|
||||
::Log3($name, 3, qq(TeslaPowerwall2AC \(${name}\) - No password in file));
|
||||
return;
|
||||
}
|
||||
|
||||
@ -987,7 +1020,7 @@ qq(TeslaPowerwall2AC \(${name}\) - unable to read password from file: ${err}));
|
||||
sub DeletePassword {
|
||||
my $hash = shift;
|
||||
|
||||
setKeyValue( $hash->{TYPE} . q{_} . $hash->{NAME} . q{_passwd}, undef );
|
||||
::setKeyValue( $hash->{TYPE} . q{_} . $hash->{NAME} . q{_passwd}, undef );
|
||||
|
||||
return;
|
||||
}
|
||||
@ -996,39 +1029,21 @@ sub Rename {
|
||||
my $new = shift;
|
||||
my $old = shift;
|
||||
|
||||
my $hash = $defs{$new};
|
||||
my ($passResp,$passErr);
|
||||
($passResp,$passErr) = $hash->{helper}->{passObj}->setRename($new,$old);
|
||||
|
||||
::Log3($name, 1,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - error while change the password hash after rename - $passErr)
|
||||
if ( !defined($passResp)
|
||||
and defined($passErr) );
|
||||
|
||||
StorePassword( $hash, $new, ReadPassword( $hash, $old ) );
|
||||
setKeyValue( $hash->{TYPE} . q{_} . $old . q{_passwd}, undef );
|
||||
::Log3($name, 1,
|
||||
qq(TeslaPowerwall2AC \(${name}\) - change password hash after rename successfully)
|
||||
if ( defined($passResp)
|
||||
and !defined($passErr) );
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
# My little Helpers
|
||||
sub PathTimestamp {
|
||||
my $hash = shift;
|
||||
my $path = shift // return;
|
||||
|
||||
$hash->{helper}->{pathTimestamp}->{$path}->{TIME} =
|
||||
gettimeofday();
|
||||
}
|
||||
|
||||
sub PathTimeAge {
|
||||
my $hash = shift;
|
||||
my $path = shift;
|
||||
|
||||
$hash->{helper}{updateTimeCallBattery} = 0
|
||||
if ( not defined( $hash->{helper}{updateTimeCallBattery} ) );
|
||||
my $UpdateTimeAge = gettimeofday() - $hash->{helper}{updateTimeCallBattery};
|
||||
|
||||
return $UpdateTimeAge;
|
||||
}
|
||||
|
||||
sub IsPathTimeAgeToOld {
|
||||
my $hash = shift;
|
||||
my $maxAge = shift;
|
||||
|
||||
return ( CallBattery_UpdateTimeAge($hash) > $maxAge ? 1 : 0 );
|
||||
}
|
||||
|
||||
1;
|
||||
|
Loading…
Reference in New Issue
Block a user