Difference between revisions of "Controlling DirecTV Set Top Box (STB) via Network"

From MythTV Official Wiki
Jump to: navigation, search
(Perl Script)
(Perl Script)
Line 158: Line 158:
  
 
Note:  My H24 receiver has been throwing false errors after successfully tuning, specifically "(30) Error: OK." from line 84.  It seems that the check in line 71 is comparing 'OK' with 'OK.' and failing, of course.  One could easily modify the check value to be 'OK.' as well, but I assume other boxes may be outputting 'OK' without the period.  Alternatively, one could look for both with an 'OR' statement, as in 'if($check_ok eq "OK" || $check_ok eq "OK.")' or one could trim off any and all trailing characters from the result string, as in 'if( substr( $check_ok, 0, 2 ) eq "OK" )' or even just look for "OK" as a substring: 'if( $check_ok =~ /OK/ )'.  I shall leave it for someone with a better idea of the possible range of output to decide what is best and delete this note afterward.
 
Note:  My H24 receiver has been throwing false errors after successfully tuning, specifically "(30) Error: OK." from line 84.  It seems that the check in line 71 is comparing 'OK' with 'OK.' and failing, of course.  One could easily modify the check value to be 'OK.' as well, but I assume other boxes may be outputting 'OK' without the period.  Alternatively, one could look for both with an 'OR' statement, as in 'if($check_ok eq "OK" || $check_ok eq "OK.")' or one could trim off any and all trailing characters from the result string, as in 'if( substr( $check_ok, 0, 2 ) eq "OK" )' or even just look for "OK" as a substring: 'if( $check_ok =~ /OK/ )'.  I shall leave it for someone with a better idea of the possible range of output to decide what is best and delete this note afterward.
 +
 +
 +
----
 +
 +
 +
'''Alternative Script:'''
 +
 +
Using the original directv.pl script as a blueprint, the script below was built to use all available features of the network interface. It has been tested on H20, H21, and HR21 hardware. It should work with additional models but needs further testing.
 +
 +
Basic usage: directv_http.pl ip x.x.x.x command ...
 +
 +
{{Perl|directv_http.pl|<pre>
 +
#!/usr/bin/perl
 +
#
 +
# Copyright (c) 2011 Paul Sands <usg990a at cebridge.net >
 +
#
 +
# Permission is hereby granted, free of charge, to any person obtaining a copy
 +
# of this software and associated documentation files (the "Software"), to deal
 +
# in the Software without restriction, including without limitation the rights
 +
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 +
# copies of the Software, and to permit persons to whom the Software is
 +
# furnished to do so, subject to the following conditions:
 +
#
 +
# The above copyright notice and this permission notice shall be included in
 +
# all copies or substantial portions of the Software.
 +
#
 +
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 +
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 +
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 +
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 +
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 +
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 +
# THE SOFTWARE.
 +
#
 +
# directv_http.pl: Network control of a DirecTV unit via http
 +
# Based upon the directv.pl script maintained by David Gesswein < djg at pdp8online.com >
 +
#  at http://www.pdp8online.com/directv/directv.shtml
 +
# Technical Reference: DTV-MD-0359-DIRECTV SHEF Public Beta Command Set-V1.0.pdf
 +
#
 +
# I take no responsibility for any damage this script might cause. 
 +
# Feel free to modify and redistribute this as you see fit, but please retain
 +
# the comments above.
 +
 +
use Switch;
 +
use LWP::UserAgent;
 +
use JSON;
 +
 +
# Set script version number
 +
$version = "1.1";
 +
 +
# Default to no ip provided unless explicitly set by ip subroutine
 +
$hasip = 0;
 +
 +
# Assume we don't want to return time from epoch unless given commandline override
 +
$epoch = 0;
 +
 +
# Define a new session and initialize it.
 +
$ua = LWP::UserAgent->new;
 +
$ua->agent("$0/0.1 " . $ua->agent);
 +
 +
# Set default timeout to 2 seconds (stops slow response if DirecTV Receiver is off)
 +
$ua->timeout(2);
 +
 +
# Map commands to function to execute.
 +
# last_param is handled in main routine.
 +
%cmds=("on" => \&on,
 +
      "off" => \&off,
 +
      "reboot" => \&reboot,
 +
      "ip" => \&ip,
 +
      "get_channel" => \&get_channel,
 +
      "get_signal" => \&get_signal,
 +
      "get_systemtime" => \&get_systemtime,
 +
      "get_systemversion" => \&get_systemversion,
 +
      "key" => \&key,
 +
      "serial" => \&serial,
 +
      "delay" => \&delay,
 +
      "version" => \&version,
 +
      "usage" => \&usage,
 +
      );
 +
 +
# Define the keys the script supports
 +
%keymap =
 +
        (power => "power",
 +
      poweron => "poweron",
 +
      poweroff => "poweroff",
 +
        format => "format",
 +
        pause => "pause",
 +
          rew => "rew",
 +
        replay => "replay",
 +
          stop => "stop",
 +
      advance => "advance",
 +
          ffwd => "ffwd",
 +
        record => "record",
 +
          play => "play",
 +
        guide => "guide",
 +
        active => "active",
 +
          list => "list",
 +
          exit => "exit",
 +
          back => "back",
 +
          menu => "menu",
 +
          info => "info",
 +
            up => "up",
 +
          down => "down",
 +
          left => "left",
 +
        right => "right",
 +
        select => "select",
 +
          red => "red",
 +
        green => "green",
 +
        yellow => "yellow",
 +
          blue => "blue",
 +
        ch_up => "chanup",
 +
        ch_dn => "chandown",
 +
          prev => "prev",
 +
            0 => "0",
 +
            1 => "1",
 +
            2 => "2",
 +
            3 => "3",
 +
            4 => "4",
 +
            5 => "5",
 +
            6 => "6",
 +
            7 => "7",
 +
            8 => "8",
 +
            9 => "9",
 +
          dash => "dash",
 +
          "-" => "dash",
 +
        enter => "enter"
 +
        );
 +
# Replace argument last_param with last parameter on the command line.
 +
# The last parameter is then removed.
 +
for ($i = 0; $i < $#ARGV; $i++) {
 +
  if ($ARGV[$i] eq "last_param") {
 +
      $ARGV[$i] = $ARGV[$#ARGV];
 +
      $#ARGV = $#ARGV - 1;
 +
      last;
 +
  }
 +
}
 +
 +
if ($#ARGV < 0) {
 +
  usage();
 +
}
 +
 +
# Loop through each arguement passed on the commandline
 +
while ($#ARGV >= 0) {
 +
  if (defined($sub = $cmds{$ARGV[0]})) {
 +
      shift @ARGV;
 +
      &$sub;
 +
  } else {
 +
      if ($ARGV[0] == 0) {
 +
        usage();
 +
        die "\nCommand $ARGV[0] not found\n"
 +
      }
 +
      change_channel($ARGV[0]);
 +
      shift @ARGV;
 +
  }
 +
}
 +
 +
exit 0;
 +
 +
# Give the user the syntax for using the script
 +
sub usage {
 +
  print "Usage: $0 ip x.x.x.x command ...\n";
 +
  print "Commands:\n";
 +
  print "  version        - display program version\n";
 +
  print "  ip x.x.x.x      - IP address of box - REQUIRED\n";
 +
  print "                    must be the first command\n";
 +
  print "  on              - turn box on\n";
 +
  print "  off            - turn box off\n";
 +
  print "  reboot          - hard reboot (reset) - WARNING Requires MANUAL reactivation of network control\n";
 +
  print "  delay number    - wait for number seconds. Floating point is valid \n";
 +
  print "  number{-number} - change to specified channel-subchannel\n";
 +
  print "                    must be the last command\n";
 +
  print "\n";
 +
  print "  get_channel    - print current channel\n";
 +
  print "  get_systemtime  - print date and time (add epoch to return in epoch format)\n";
 +
  print "  get_signal      - print signal strength\n";
 +
  print "  key {key}      - send key to receiver\n";
 +
  print "                          enter "; print chr(34); print"key help"; print chr(34); print " for list of available keys\n";
 +
  print "  serial          - process hex coded serial command (hex only; no need for 0x)\n";
 +
  print "\n";
 +
}
 +
 +
# Provide help text for the keys the script supports
 +
sub keyhelp {
 +
  print "Usage: $0 ip x.x.x.x key {key}\n";
 +
  print "\n";
 +
  print "                            Valid Keys:\n";
 +
  print "Receiver Power            - power, poweron, poweroff\n";
 +
  print "Change Output Format      - format\n";
 +
  print "Live TV / DVR Playback    - pause, rew, replay, stop, advance, ffwd, record, play\n";
 +
  print "Interactive TV            - guide, active, list\n";
 +
  print "Navigation                - up, down, left, right, back, menu, exit, info, select\n";
 +
  print "Favorites                  - red, green, yellow, blue\n";
 +
  print "Channel                    - chanup, chandown, prev\n";
 +
  print "Numbers                    - 0-9, dash (or -), enter\n";
 +
  print "\n";
 +
}
 +
 +
sub on {
 +
  if ($hasip == 1) {
 +
      my $url = 'http://'.$dtv_ip.':8080/remote/processKey?key=poweron';
 +
      $status = send_req($url);
 +
      #my $key_rcv = $json_text->{key} if ($status == 0);
 +
      #print "$key_rcv\n" if ($status == 0);
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub off {
 +
  if ($hasip == 1) {
 +
      my $url = 'http://'.$dtv_ip.':8080/remote/processKey?key=poweroff';
 +
      $status = send_req($url);
 +
      #my $key_rcv = $json_text->{key} if ($status == 0);
 +
      #print "$key_rcv\n" if ($status == 0);
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub reboot {
 +
  if ($hasip == 1) {
 +
      my $url = 'http://'.$dtv_ip.':8080/serial/processCommand?cmd=0xf7';
 +
      $status = send_req($url);
 +
      # Command executes with no response back to the script
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub ip {
 +
  $dtv_ip = $ARGV[0];
 +
  $hasip = 1;
 +
  shift @ARGV;
 +
}
 +
 +
sub get_channel {
 +
  if ($hasip == 1)
 +
  {
 +
      my $url = 'http://'.$dtv_ip.':8080/tv/getTuned';
 +
      $status = send_req($url);
 +
      my $chan = $json_text->{major} if ($status == 0);
 +
      print "$chan\n" if ($status == 0);
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub serial {
 +
  if ($hasip == 1) {
 +
      my $url = 'http://'.$dtv_ip.':8080/serial/processCommand?cmd=FA'.$ARGV[0];
 +
      $status = send_req($url);
 +
      my $ser = $json_text->{return}->{data} if ($status == 0);
 +
      print "$ser\n" if ($status == 0);
 +
      print "$url\n" if ($status == 1);
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub get_signal {
 +
  if ($hasip == 1) {
 +
      my $url = 'http://'.$dtv_ip.':8080/serial/processCommand?cmd=FA90';
 +
      $status = send_req($url);
 +
      my $signal = $json_text->{return}->{data}  if ($status == 0); $signal = hex($signal)  if ($status == 0);
 +
      print "$signal\n" if ($status == 0);
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub get_systemtime() {
 +
  if ($hasip == 1) {
 +
  if ($ARGV[0] eq "epoch") { $epoch=1 }
 +
      my $url = 'http://'.$dtv_ip.':8080/info/getVersion';
 +
      $status = send_req($url);
 +
      my $systime = $json_text->{systemTime}; if (!$epoch == 1 ) { $systime = scalar localtime($systime)};
 +
      print "$systime\n" if ($status == 0);
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub get_systemversion() {
 +
  if ($hasip == 1) {
 +
      my $url = 'http://'.$dtv_ip.':8080/info/getVersion';
 +
      $status = send_req($url);
 +
      my $sysversion = $json_text->{version} if ($status == 0);
 +
      print "$sysversion\n" if ($status == 0);
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub key () {
 +
  #if (shift(@ARGV) eq "help") {
 +
  if (@ARGV =~ /help/) {
 +
      keyhelp();
 +
  } else {
 +
  send_key(shift(@ARGV));
 +
  }
 +
}
 +
 +
sub delay {
 +
  select(undef, undef, undef, $ARGV[0]);
 +
  shift @ARGV;
 +
}
 +
 +
sub version {
 +
  print "Script Version $version\n";
 +
}
 +
 +
sub change_channel () {
 +
  if ($hasip == 1) {
 +
      my $url;
 +
      my ($chan_major,$chan_sub)= split /-/,@_[0];
 +
      if ($chan_sub eq "") {
 +
        $url = 'http://'.$dtv_ip.':8080/tv/tune?major='.$chan_major;
 +
      } else {
 +
        $url = 'http://'.$dtv_ip.':8080/tv/tune?major='.$chan_major.'&minor='.$chan_sub;
 +
      }
 +
      print "$url\n";
 +
      $status = send_req($url);
 +
      exit $status
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub send_key () {
 +
  if ($hasip == 1) {
 +
      my $url;
 +
      my $ky;
 +
      my @keys = split /_/,@_[0];
 +
      foreach $ky (@keys)
 +
      {
 +
        my $key = $keymap{$ky};
 +
        die "Unknown key $ky\n" if (!defined($key));
 +
        $url = 'http://'.$dtv_ip.':8080/remote/processKey?key='.$ky;
 +
        $status = send_req($url);
 +
      }
 +
  } else {
 +
      usage();
 +
      print "No IP Address given\n";
 +
  }
 +
}
 +
 +
sub send_req () {
 +
      my $parent = ( caller(1) )[3];
 +
      $parent =~ s/main:://g;
 +
      $req = HTTP::Request->new(GET => $_[0]);
 +
      $req->header('Accept' => 'text/html');
 +
      $res = $ua->request($req);
 +
      #sleep $delay_sec if ($delay > 0);
 +
      if ($res->is_success)
 +
      {
 +
        $json = new JSON;
 +
        $json_text = $json->decode($res->content);
 +
        $check_ok = $json_text->{status}->{msg};
 +
        if(($check_ok eq "OK.") || ($check_ok eq "OK"))
 +
        {
 +
    return 0;
 +
            #}
 +
        } else {
 +
            print "Failed!\n";
 +
            return 1;
 +
        }
 +
      } else {
 +
        print "Failed!\n";
 +
        return 1;
 +
      }
 +
}
 +
</pre>}}
  
 
== Documentation ==
 
== Documentation ==

Revision as of 14:47, 19 July 2011


Author Lionsnob
Description A Perl script for changing channels on DirectTV STBs using the web interface.
Supports


Summary

Some DirecTV set top boxes now allow certain operations via the DirecTV HTTP Server on port 8080. The H23 is one example. The set top box must be plugged in to the network in order for this to work.

Documentation on the internet is lacking at the moment, but it is possible currently to change the channel and to gather current (tuned) channel information. The attached perl script allows users to change the channel or gather current channel data. The DirecTV set top box always returns data in JSON.

Perl Script

Attached is my first crack at a script. I'm pretty green at perl so this is quite a hack, but it works. The script takes the following arguments:

Always list the IP address of the receiver first.
Next, type the amount of seconds to sleep after changing the channel.
Next, type "tune" to change the channel, or "getTuned" to display the JSON for the current listing
If you chose "tune", now enter the channel number

On Ubuntu, install JSON this way:

$ sudo apt-get install libjson-perl


Application-x-perl.png directtv_http.pl
#!/usr/bin/perl
use LWP::UserAgent;
use JSON;
#use strict;

# Get time for logging, if necessary
#($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(time);
#$year = $year+1900;
#$mon = $mon+1;
$ua = LWP::UserAgent->new;
$ua->agent("$0/0.1 " . $ua->agent);
# $ua->agent("Mozilla/8.0") # pretend we are very capable browser

# If you want to log results of the channel change,
# uncomment the lines that look like:
## print MYFILE ("$year...
## close (MYFILE);
# As well as the lines at the beginning of this script that look like:
# Get time for logging, if necessary
## ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(time);
## $year = $year+1900;
## $mon = $mon+1;
# As well as the file for logging below.  Change the path to something that
# makes sense...
#open (MYFILE, '>>/home/steve/Documents/dtvchangerdata.txt');

# get args
$dtv_ip = $ARGV[0];
$sleep_sec = $ARGV[1];
$arg = $ARGV[2];
$chan_num = "";
$numArgs = $#ARGV + 1;
$tune = 1;
$minor = 0;

if($numArgs == 0)
{
    print "(10) Error: no command line arguments\n";
    exit 1;
}

if($arg eq "getTuned")
{
    $tune = 0;
}
elsif($arg eq "tune")
{
    if(($ARGV[3] =~ m/-/) == 1)
    {
        @chan_arr = split(/-/, $ARGV[3]);
        $chan_num = $chan_arr[0];
        $minor = $chan_arr[1];
    }
    else
    {
        $chan_num = $ARGV[3];
    }
    $tune = 1;
}
else
{
    print "(20) Error: command line argument invalid\n";
    exit 1;
}

$url = 'http://'.$dtv_ip.':8080/tv/tune?major='.$chan_num;
if($tune == 0)
{
    $url = 'http://'.$dtv_ip.':8080/tv/getTuned';
}
if($minor != 0)
{
    $url = 'http://'.$dtv_ip.':8080/tv/tune?major='.$chan_num.'&minor='.$minor;
}
$req = HTTP::Request->new(GET => $url);
$req->header('Accept' => 'text/html');

$i = 0;

while($i < 21)
{
    # send request
    $res = $ua->request($req);

    # check the outcome
    if ($res->is_success) 
    {
        #print $res->content."\n";
        $json = new JSON;
        $json_text = $json->decode($res->content);
        $check_ok = $json_text->{status}->{msg};
        #print "OK? ".$check_ok . "\n";

	if(index($check_ok,"OK") != -1)        
	{
            if($tune == 0)
            {
                print $res->content . "\n";
            }
	    #print "Here 1\n"; 
	    sleep $sleep_sec;
	    #print "Here 2\n";         
	    #print MYFILE ("$year-$mon-$mday $hour:$min:$sec, chan $chan_num: $i failures\n");
            #close (MYFILE);
            exit 0;
        }
        else
        {
            print "(30) Error: " . $check_ok . "\n";
            #print MYFILE ("$year-$mon-$mday $hour:$min:$sec, chan $chan_num: $i failures, (30) Error ".$check_ok."\n");
            #close (MYFILE);
            exit 1;
        }
    }
    $i++; 

    if($i >= 20)
    {
        print "(40) Error: " . $res->status_line . "\n";
        #print MYFILE ("$year-$mon-$mday $hour:$min:$sec, chan $chan_num: $i failures, (40) Error ".$res->status_line."\n");
        #close (MYFILE);
        exit 1;
    }
}
#print MYFILE ("$year-$mon-$mday $hour:$min:$sec, chan $chan_num: $i failures, How did I get here?\n");
#close (MYFILE);
exit 1;

The below should now be fixed with the updated script. It now looks for "OK" as a substring.

Note: My H24 receiver has been throwing false errors after successfully tuning, specifically "(30) Error: OK." from line 84. It seems that the check in line 71 is comparing 'OK' with 'OK.' and failing, of course. One could easily modify the check value to be 'OK.' as well, but I assume other boxes may be outputting 'OK' without the period. Alternatively, one could look for both with an 'OR' statement, as in 'if($check_ok eq "OK" || $check_ok eq "OK.")' or one could trim off any and all trailing characters from the result string, as in 'if( substr( $check_ok, 0, 2 ) eq "OK" )' or even just look for "OK" as a substring: 'if( $check_ok =~ /OK/ )'. I shall leave it for someone with a better idea of the possible range of output to decide what is best and delete this note afterward.




Alternative Script:

Using the original directv.pl script as a blueprint, the script below was built to use all available features of the network interface. It has been tested on H20, H21, and HR21 hardware. It should work with additional models but needs further testing.

Basic usage: directv_http.pl ip x.x.x.x command ...


Application-x-perl.png directv_http.pl
#!/usr/bin/perl
#
# Copyright (c) 2011 Paul Sands <usg990a at cebridge.net >
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# directv_http.pl: Network control of a DirecTV unit via http
# Based upon the directv.pl script maintained by David Gesswein < djg at pdp8online.com >
#  at http://www.pdp8online.com/directv/directv.shtml
# Technical Reference: DTV-MD-0359-DIRECTV SHEF Public Beta Command Set-V1.0.pdf
#
# I take no responsibility for any damage this script might cause.  
# Feel free to modify and redistribute this as you see fit, but please retain
# the comments above.

use Switch;
use LWP::UserAgent;
use JSON;

# Set script version number
$version = "1.1";

# Default to no ip provided unless explicitly set by ip subroutine
$hasip = 0;

# Assume we don't want to return time from epoch unless given commandline override
$epoch = 0;

# Define a new session and initialize it.
$ua = LWP::UserAgent->new;
$ua->agent("$0/0.1 " . $ua->agent);

# Set default timeout to 2 seconds (stops slow response if DirecTV Receiver is off)
$ua->timeout(2);

# Map commands to function to execute.
# last_param is handled in main routine.
%cmds=("on" => \&on,
      "off" => \&off,
      "reboot" => \&reboot,
      "ip" => \&ip,
      "get_channel" => \&get_channel,
      "get_signal" => \&get_signal,
      "get_systemtime" => \&get_systemtime,
      "get_systemversion" => \&get_systemversion,
      "key" => \&key,
      "serial" => \&serial,
      "delay" => \&delay,
      "version" => \&version,
      "usage" => \&usage,
      );

# Define the keys the script supports
%keymap =
        (power => "power",
       poweron => "poweron",
      poweroff => "poweroff",
        format => "format",
         pause => "pause",
           rew => "rew",
        replay => "replay",
          stop => "stop",
       advance => "advance",
          ffwd => "ffwd",
        record => "record",
          play => "play",
         guide => "guide",
        active => "active",
          list => "list",
          exit => "exit",
          back => "back",
          menu => "menu",
          info => "info",
            up => "up",
          down => "down",
          left => "left",
         right => "right",
        select => "select",
           red => "red",
         green => "green",
        yellow => "yellow",
          blue => "blue",
         ch_up => "chanup",
         ch_dn => "chandown",
          prev => "prev",
             0 => "0",
             1 => "1",
             2 => "2",
             3 => "3",
             4 => "4",
             5 => "5",
             6 => "6",
             7 => "7",
             8 => "8",
             9 => "9",
          dash => "dash",
           "-" => "dash",
         enter => "enter"
        );
# Replace argument last_param with last parameter on the command line.
# The last parameter is then removed.
for ($i = 0; $i < $#ARGV; $i++) {
   if ($ARGV[$i] eq "last_param") {
      $ARGV[$i] = $ARGV[$#ARGV];
      $#ARGV = $#ARGV - 1;
      last;
   }
}

if ($#ARGV < 0) {
   usage();
}

# Loop through each arguement passed on the commandline
while ($#ARGV >= 0) {
   if (defined($sub = $cmds{$ARGV[0]})) {
      shift @ARGV;
      &$sub;
   } else {
      if ($ARGV[0] == 0) {
         usage();
         die "\nCommand $ARGV[0] not found\n"
      }
      change_channel($ARGV[0]);
      shift @ARGV;
   }
}

exit 0;

# Give the user the syntax for using the script
sub usage {
   print "Usage: $0 ip x.x.x.x command ...\n";
   print "Commands:\n";
   print "  version         - display program version\n";
   print "  ip x.x.x.x      - IP address of box - REQUIRED\n";
   print "                     must be the first command\n";
   print "  on              - turn box on\n";
   print "  off             - turn box off\n";
   print "  reboot          - hard reboot (reset) - WARNING Requires MANUAL reactivation of network control\n";
   print "  delay number    - wait for number seconds. Floating point is valid \n";
   print "  number{-number} - change to specified channel-subchannel\n";
   print "                     must be the last command\n";
   print "\n";
   print "  get_channel     - print current channel\n";
   print "  get_systemtime  - print date and time (add epoch to return in epoch format)\n";
   print "  get_signal      - print signal strength\n";
   print "  key {key}       - send key to receiver\n";
   print "                           enter "; print chr(34); print"key help"; print chr(34); print " for list of available keys\n";
   print "  serial          - process hex coded serial command (hex only; no need for 0x)\n";
   print "\n";
}

# Provide help text for the keys the script supports
sub keyhelp {
   print "Usage: $0 ip x.x.x.x key {key}\n";
   print "\n";
   print "                             Valid Keys:\n";
   print "Receiver Power             - power, poweron, poweroff\n";
   print "Change Output Format       - format\n";
   print "Live TV / DVR Playback     - pause, rew, replay, stop, advance, ffwd, record, play\n";
   print "Interactive TV             - guide, active, list\n";
   print "Navigation                 - up, down, left, right, back, menu, exit, info, select\n";
   print "Favorites                  - red, green, yellow, blue\n";
   print "Channel                    - chanup, chandown, prev\n";
   print "Numbers                    - 0-9, dash (or -), enter\n";
   print "\n";
}

sub on {
   if ($hasip == 1) {
      my $url = 'http://'.$dtv_ip.':8080/remote/processKey?key=poweron';
      $status = send_req($url);
      #my $key_rcv = $json_text->{key} if ($status == 0);
      #print "$key_rcv\n" if ($status == 0);
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub off {
   if ($hasip == 1) {
      my $url = 'http://'.$dtv_ip.':8080/remote/processKey?key=poweroff';
      $status = send_req($url);
      #my $key_rcv = $json_text->{key} if ($status == 0);
      #print "$key_rcv\n" if ($status == 0);
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub reboot {
   if ($hasip == 1) {
      my $url = 'http://'.$dtv_ip.':8080/serial/processCommand?cmd=0xf7';
      $status = send_req($url);
      # Command executes with no response back to the script
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub ip {
   $dtv_ip = $ARGV[0];
   $hasip = 1;
   shift @ARGV;
}

sub get_channel {
   if ($hasip == 1)
   {
      my $url = 'http://'.$dtv_ip.':8080/tv/getTuned';
      $status = send_req($url);
      my $chan = $json_text->{major} if ($status == 0);
      print "$chan\n" if ($status == 0);
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub serial {
   if ($hasip == 1) {
      my $url = 'http://'.$dtv_ip.':8080/serial/processCommand?cmd=FA'.$ARGV[0];
      $status = send_req($url);
      my $ser = $json_text->{return}->{data} if ($status == 0);
      print "$ser\n" if ($status == 0);
      print "$url\n" if ($status == 1);
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub get_signal {
   if ($hasip == 1) {
      my $url = 'http://'.$dtv_ip.':8080/serial/processCommand?cmd=FA90';
      $status = send_req($url);
      my $signal = $json_text->{return}->{data}  if ($status == 0); $signal = hex($signal)  if ($status == 0);
      print "$signal\n" if ($status == 0);
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub get_systemtime() {
   if ($hasip == 1) {
   if ($ARGV[0] eq "epoch") { $epoch=1 }
      my $url = 'http://'.$dtv_ip.':8080/info/getVersion';
      $status = send_req($url);
      my $systime = $json_text->{systemTime}; if (!$epoch == 1 ) { $systime = scalar localtime($systime)};
      print "$systime\n" if ($status == 0);
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub get_systemversion() {
   if ($hasip == 1) {
      my $url = 'http://'.$dtv_ip.':8080/info/getVersion';
      $status = send_req($url);
      my $sysversion = $json_text->{version} if ($status == 0);
      print "$sysversion\n" if ($status == 0);
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub key () {
   #if (shift(@ARGV) eq "help") {
   if (@ARGV =~ /help/) {
      keyhelp();
   } else {
   send_key(shift(@ARGV));
   }
}

sub delay {
   select(undef, undef, undef, $ARGV[0]);
   shift @ARGV;
}

sub version {
   print "Script Version $version\n"; 
}

sub change_channel () {
   if ($hasip == 1) {
      my $url;
      my ($chan_major,$chan_sub)= split /-/,@_[0];
      if ($chan_sub eq "") {
         $url = 'http://'.$dtv_ip.':8080/tv/tune?major='.$chan_major;
      } else {
         $url = 'http://'.$dtv_ip.':8080/tv/tune?major='.$chan_major.'&minor='.$chan_sub;
      }
      print "$url\n";
      $status = send_req($url);
      exit $status
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub send_key () {
   if ($hasip == 1) {
      my $url;
      my $ky;
      my @keys = split /_/,@_[0];
      foreach $ky (@keys)
      {
         my $key = $keymap{$ky};
         die "Unknown key $ky\n" if (!defined($key));
         $url = 'http://'.$dtv_ip.':8080/remote/processKey?key='.$ky;
         $status = send_req($url);
      }
   } else {
      usage();
      print "No IP Address given\n";
   }
}

sub send_req () {
      my $parent = ( caller(1) )[3];
      $parent =~ s/main:://g;
      $req = HTTP::Request->new(GET => $_[0]);
      $req->header('Accept' => 'text/html');
      $res = $ua->request($req);
      #sleep $delay_sec if ($delay > 0);
      if ($res->is_success) 
      {
         $json = new JSON;
         $json_text = $json->decode($res->content);
         $check_ok = $json_text->{status}->{msg};
         if(($check_ok eq "OK.") || ($check_ok eq "OK"))
         {
 	    return 0;
            #}
         } else {
            print "Failed!\n";
            return 1;
         }
      } else {
         print "Failed!\n";
        return 1;
      }
}

Documentation

I've found some official looking documentation in PDF form Here: http://www.sbcatest.com/TechUpdates/DTV-MD-0359-DIRECTV%20SHEF%20Public%20Beta%20Command%20Set-V1.0.pdf It includes commands and responses for DVR and TV functionality, and even a way to emulate remote control button presses.