Poor man's remote start/stop from phone
Posted: Thu Dec 07, 2017 5:10 am
Here is the situation. In order for my wife to actually start ZoneMinder when she leaves home, she needs a minimal amount of navigating and waiting. And honestly, waiting on web pages to load, logging in, clicking a few links, etc. is a bit tedious for me too. So I did some brainstorming, and this is the best I could come up with, outside of some sort of X10 solution (which I may still look into). Here is what I have done:
It's definitely not perfect. It still requires several clicks to send the file, but there is no waiting for webpages to load and no logging in. If you leave the SFTP app open to the right location, it actually only requires a couple clicks to do the job. I think it might be quick enough that my wife will do it.
I am also open to other ideas. I know there is the zmNinja, which is probably more convenient to use on a mobile device than the website is, but I haven't tried it.It would be nice to be able to implement this solution through a bash script that can be launched with just a single click, but I don't think that's possible on my wife's iPhone without at least jailbreaking it, and we're not going to do that.
- Set up my ZoneMinder server to be an SSH server as well. (Actually, it was that anyway, because I normally manage it remotely.)
- Download SFTP client apps for my phone and my wife's phone.
- Create empty files called start and stop on both phones in a location where they can be quickly accessed through the app.
- Set up profiles to transfer those files to a specified location on the server via the SFTP app.
- Run the following script on the server. All it does is periodically check for the existence of the start or stop file, and if one exists, it will send the appropriate start or stop command to ZoneMinder and delete the file.
Code: Select all
#!/usr/bin/perl -w
#
# Checks if some files are present to automatically start or stop ZoneMinder.
#
use strict;
use warnings;
use ZoneMinder;
$| = 1;
# Interval between file checking cycles
my $timeout = 15;
# Start/stop files
my $startfile = "/home/backup/start";
my $stopfile = "/home/backup/stop";
# Delete if they exist to start
if ( fileExists( $startfile ) ) {
unlink( $startfile );
}
if ( fileExists( $stopfile ) ) {
unlink( $stopfile );
}
# Check if files exist and take appropriate action
while (1) {
if ( fileExists( $startfile ) ) {
my $runstate = runCommand( "zmdc.pl check" );
if ( $runstate ne "running" ) {
Info( "Starting ZoneMinder" );
runCommand( "zmpkg.pl start" );
}
unlink( $startfile );
}
elsif ( fileExists( $stopfile ) ) {
my $runstate = runCommand( "zmdc.pl check" );
if ( $runstate eq "running" ) {
Info( "Stopping ZoneMinder" );
runCommand( "zmpkg.pl stop" );
}
unlink( $stopfile );
}
sleep $timeout;
}
sub fileExists {
my $fname = shift;
open( my $fh, "<", $fname ) or return( 0 );
close( $fh );
return( 1 );
}
I am also open to other ideas. I know there is the zmNinja, which is probably more convenient to use on a mobile device than the website is, but I haven't tried it.It would be nice to be able to implement this solution through a bash script that can be launched with just a single click, but I don't think that's possible on my wife's iPhone without at least jailbreaking it, and we're not going to do that.