<?php

/**
 * @file media_ted/media_ted.module
 *
 * Media: Ted provides a stream wrapper and formatters for videos provided
 * by Ted, available at http://ted.com/.
 *
 * @TODO:
 * Tie in Ted API.
 * Allow editors to search for videos to display on the browser.
 * Allow editors to put in a ted username to display on the browser.
 * Allow editors to log in w/ their credentials.
 * Allow editors to upload videos to Ted.
 */

// A registry of variable_get defaults.
include_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'media_ted') . '/includes/media_ted.variables.inc';

// Hooks and callbacks for integrating with Styles module for display.
// @todo Can save a little overhead for people without Styles module by wrapping
//   this inside a module_exists('styles'). However, is that safe to do in
//   global context? If not, is there any down side to doing it in hook_init()?
include_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'media_ted') . '/includes/media_ted.styles.inc';

// Hooks and callbacks for integrating with File Entity module for display.
include_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'media_ted') . '/includes/media_ted.formatters.inc';

/**
 * Implements hook_media_internet_providers().
 */
function media_ted_media_internet_providers() {
  $path = drupal_get_path('module', 'media_ted');
  return array(
    'MediaInternetTedHandler' => array(
      'title' => t('TED'),
      'image' => $path . '/images/stream-ted.png'
    ),
  );
}

/**
 * Implements hook_stream_wrappers().
 */
function media_ted_stream_wrappers() {
  return array(
    'ted' => array(
      'name' => t('TED videos'),
      'class' => 'MediaTedStreamWrapper',
      'description' => t('Videos provided by TED.'),
      'type' => STREAM_WRAPPERS_READ_VISIBLE,
    ),
  );
}

/**
 * Implements hook_theme().
 */
function media_ted_theme($existing, $type, $theme, $path) {
  return array(
    'media_ted_preview_style' => array(
      'variables' => array('style_name' => NULL),
      'file' => 'media_ted.theme.inc',
      'path' => $path . '/includes/themes',
    ),
    'media_ted_field_formatter_styles' => array(
      'variables' => array('element' => NULL, 'style' => NULL),
      'file' => 'media_ted.theme.inc',
      'path' => $path . '/includes/themes',
    ),
    // Note that all the variables after options are now deprecated.
    'media_ted_video' => array(
      'variables' => array('uri' => NULL, 'options' => array(), 'width' => NULL, 'height' => NULL, 'autoplay' => NULL, 'fullscreen' => NULL, 'related' => NULL),
      'file' => 'media_ted.theme.inc',
      'path' => $path . '/includes/themes',
      'template' => 'media-ted-video',
    ),
    'media_ted_embed' => array(
      'variables' => array('style_name' => NULL, 'uri' => NULL, 'alt' => NULL, 'title' => NULL),
      'file' => 'media_ted.theme.inc',
      'path' => $path . '/includes/themes',
    ),
    'media_ted_styles' => array(
      'variables' => array('element' => NULL, 'style' => NULL),
      'file' => 'media_ted.theme.inc',
      'path' => $path . '/includes/themes',
    ),
  );
}

/**
 * Implements hook_media_parse().
 *
 * @todo This hook should be deprecated. Refactor Media module to not call it
 *   any more, since media_internet should be able to automatically route to the
 *   appropriate handler.
 */
function media_ted_media_parse($embed_code) {
  $handler = new MediaInternetTedHandler($embed_code);
  return $handler->parse($embed_code);
}

/**
 * Implements hook_media_format_form_prepare_alter().
 */
function media_ted_media_format_form_prepare_alter(&$form, &$form_state, $media) {
  $settings = array('autosubmit' => ($media->type == "video"));
  drupal_add_js(array('media_format_form' => $settings), 'setting');
}

/**
 * Implements hook_ctools_plugin_api().
 */
function media_ted_ctools_plugin_api($owner, $api) {
  static $api_versions = array(
    'file_entity' => array(
      'file_default_displays' => 1,
    ),
  );
  if (isset($api_versions[$owner][$api])) {
    return array('version' => $api_versions[$owner][$api]);
  }
}
