ajax.php
author Dan
Sun, 23 Mar 2008 22:44:52 -0400
changeset 5 9b96265b5918
parent 3 e7447a6044ec
child 6 5f35ebc4f9bb
permissions -rw-r--r--
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.

<?php

/**
 * Action servlet (play, pause, etc.)
 *
 * Web control interface script for Amarok
 * Copyright (C) 2008 Dan Fuhry
 *
 * This program is Free Software; you can redistribute 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.
 *
 * This program 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 details.
 */

status('initializing Services_JSON');
$json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);

// keep track of playlist refresh
$playlist_last_refresh = time();

/**
 * Terminate a request with an error string formatted as JSON.
 * @param string Error message
 */

function json_die($msg)
{
  global $json;
  echo $json->encode(array(
      'mode' => 'error',
      'error' => $msg
    ));
  return true;
}

function ajax_request_handler($httpd)
{
  global $playlist, $mime_types, $json, $allowcontrol;
  
  // Set content type
  $httpd->header("Content-type: {$mime_types['js']}");
  
  // get PATH_INFO
  $pathinfo = @substr(@substr($_SERVER['REQUEST_URI'], 1), @strpos(@substr($_SERVER['REQUEST_URI'], 1), '/')+1);
  if ( empty($pathinfo) )
  {
    return json_die('No action specified on URI');
  }
  
  $params = explode('/', $pathinfo);
  $action =& $params[0];
  switch ( $action )
  {
    case 'stop':
    case 'next':
    case 'prev':
      if ( !$allowcontrol )
        return false;
      echo dcop_action('player', $action);
      break;
    case 'play':
      if ( !$allowcontrol )
        return false;
      echo dcop_action('player', 'playPause');
      break;
    case 'jump':
      if ( !$allowcontrol )
        return false;
      $tid =& $params[1];
      if ( !preg_match('/^[0-9]+$/', $tid) )
      {
        return die_json('Invalid track ID');
      }
      $tid = intval($tid);
      dcop_action('playlist', "playByIndex $tid");
      $return = array(
        'current_track_length' => $playlist[$tid]['length_int'],
        'current_track_pos' => 0
      );
      echo $json->encode($return);
      break;
    case 'volume':
      if ( !$allowcontrol )
        return false;
      $volume =& $params[1];
      if ( !preg_match('/^[0-9]+$/', $volume) )
      {
        return die_json('Invalid track ID');
      }
      $volume = intval($volume);
      dcop_action('player', "setVolume $volume");
      $return = array(
        'volume' => $volume
        );
      echo $json->encode($return);
      break;
    case 'refresh':
      global $playlist_last_refresh, $playlist, $playlist_last_md5;
      if ( $playlist_last_refresh + 60 < time() )
      {
        rebuild_playlist();
      }
      $current_track = dcop_action('playlist', 'getActiveIndex');
      $return = array(
          'is_playing' => dcop_action('player', 'isPlaying'),
          'current_track' => $current_track,
          'volume' => dcop_action('player', 'getVolume'),
          // include the MD5 of the playlist so that if it changes, the
          // client can refresh (otherwise things get madly corrupted)
          'playlist_hash' => $playlist_last_md5
        );
      if ( isset($playlist[$current_track]) )
      {
        $return['current_track_length'] = $playlist[$current_track]['length_int'];
        $return['current_track_pos'] = dcop_action('player', 'trackCurrentTime');
      }
      echo $json->encode($return);
      break;
    default:
      return json_die("Undefined action: $action");
  }
}