* @author David Norman * @author Luke Last * * Database definition: * @code CREATE TABLE video ( nid int(10) unsigned NOT NULL default '0', vidfile text NOT NULL default '', videox smallint(4) unsigned NOT NULL default '0', videoy smallint(4) unsigned NOT NULL default '0', size bigint(13) unsigned default NULL, download_counter int(10) unsigned NOT NULL default '0', play_counter int(10) unsigned NOT NULL default '0', video_bitrate int(11) unsigned default NULL, audio_bitrate int(11) unsigned default NULL, audio_sampling_rate int(11) unsigned default NULL, audio_channels enum('','5.1','stereo','mono') default NULL, playtime_seconds int(11) unsigned default NULL, download_folder varchar(255) NULL default NULL, disable_multidownload tinyint(1) unsigned NOT NULL default '0', use_play_folder tinyint(1) unsigned NOT NULL default '0', custom_field_1 varchar(255) NULL default NULL, custom_field_2 varchar(255) NULL default NULL, custom_field_3 varchar(255) NULL default NULL, custom_field_4 varchar(255) NULL default NULL, custom_field_5 text NULL default NULL, custom_field_6 text NULL default NULL, PRIMARY KEY (nid) ) TYPE=MyISAM COMMENT='size is in bytes'; * @endcode */ /* Database Update from v1.8 schema. ALTER TABLE `video` CHANGE `clicks` `download_counter` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0'; ALTER TABLE `video` CHANGE `audio_channels` `audio_channels` ENUM( '', '5.1', 'stereo', 'mono' ) NULL DEFAULT NULL; ALTER TABLE video ADD play_counter int(10) unsigned NOT NULL default '0'; ALTER TABLE video ADD download_folder varchar(255) NULL default NULL; ALTER TABLE video ADD disable_multidownload tinyint(1) unsigned NOT NULL default '0'; ALTER TABLE video ADD use_play_folder tinyint(1) unsigned NOT NULL default '0'; ALTER TABLE video ADD custom_field_1 varchar(255) NULL default NULL; ALTER TABLE video ADD custom_field_2 varchar(255) NULL default NULL; ALTER TABLE video ADD custom_field_3 varchar(255) NULL default NULL; ALTER TABLE video ADD custom_field_4 varchar(255) NULL default NULL; ALTER TABLE video ADD custom_field_5 text NULL default NULL; ALTER TABLE video ADD custom_field_6 text NULL default NULL; */ /******************************************************************** * General Hooks ********************************************************************/ /** * Help hook * * @param $section * string of the area of Drupal where help was requested * * @return * string of help information */ function video_help($section = 'admin/help#video') { switch ($section) { case 'admin/help#video': $output = '

' . t('The video module (4.7 or with backport patch to 4.6) allows users to post video content to their site. The emergence of portable phones with video capture capabilities has made video capture ubiquitous. Video logging, or vlogging as a medium for personal video broadcasting has proven to be popular and is following the blogging, and podcasting phenomena\'s. Videos are useful for creative collaboration among community members. If community members can not meet in person videos of meetings are valuable for enhancing the interaction between community members.', array('%elink-en-wikipedia-org' => 'http://en.wikipedia.org/wiki/Vlog')) . '

'; $output .= '

' . t('The video module can be administered to flash player settings. There are a number of page and menu links which can be added to play and download video content on the site. Other configurable options include play and download counters. Multi-file downloads can also be configured under settings. There are also up to six custom fields and a group name which can be added.') . '

'; $output .= t('

You can:

', array('%admin-block' => url('admin/block'), '%node-add-video' => url('node/add/video'), '%admin-settings-video' => url('admin/settings/video'))); $output .= '

'. t('For more information please read the configuration and customization handbook Video page.', array('%video' => 'http://www.drupal.org/handbook/modules/video/')) .'

'; return $output; case 'admin/modules#description': return t('Allows video nodes.'); case 'node/add#video': return t('Allows you to insert videos as nodes'); case 'video/help': $help = ''; $help .= '

' . t('Video File Field') . '

'; $help .= '

' . t('This is the field where you enter the video file information. The Video module currently supports these file types:') . '

'; $help .= ''; $help .= '

' . t('Multi-file Dowload Help') . '

'; $help .= '

' . t('If enabled, this group holds all the settings for multi-file downloads. Multi-file downloads allows you to have a list of any number of files on the download page. These files are usually scanned from a folder. This allows the listing of multiple sizes and video types for visitors to choose from, you can even zip the files up.') . '

'; $help .= ''; return $help; } } /** * Implementation of hook_menu(). * * @param $may_cache * boolean indicating whether cacheable menu items should be returned * * @return * array of menu information */ function video_menu($may_cache) { if ($may_cache) { $items[] = array( 'path' => 'video', 'title' => t('videos'), 'callback' => 'video_page', 'access' => user_access('access video'), 'type' => MENU_SUGGESTED_ITEM); $items[] = array( 'path' => 'node/add/video', 'title' => t('video'), 'access' => user_access('create video')); $items[] = array( //This is not currently used. 'path' => 'video/goto', 'callback' => '_video_page_goto', 'type' => MENU_CALLBACK, 'callback arguments' => arg(3), 'access' => user_access('access video')); } else { //If $may_cache is false. if (arg(0) == 'node' && is_numeric(arg(1))) { $node = node_load(array('nid' => arg(1))); if ($node->type == 'video') { if (variable_get('video_displayplaymenutab', 1) == 1) { $items[] = array('path' => 'node/'. arg(1) .'/play', 'title' => t('play'), 'callback' => 'video_play', 'access' => user_access('access video'), 'weight' => 3, 'type' => MENU_LOCAL_TASK); } //If the video is of type youtube and multi-file downloads aren't turned on don't show the download tab. if (variable_get('video_displaydownloadmenutab', 1) == 1 and (_video_get_filetype($node->vidfile) != 'youtube' or $node->disable_multidownload == 0)) { $items[] = array('path' => 'node/'.arg(1).'/download', 'title' => t('download'), 'callback' => 'video_download', 'access' => user_access('access video'), 'weight' => 5, 'type' => MENU_LOCAL_TASK); } } } } return $items; } /** * Internal Drupal links hook * * @param $type * string type of link to show * * @param $node * object of node information * * @return * array of link information */ function video_link($type, $node = NULL) { $links = array(); // Node links for a video if ($type == 'node' && $node->type == 'video' && $node->vidfile && user_access('access video')) { $display_play_link = variable_get('video_displayplaylink', 1); $display_download_link = variable_get('video_displaydownloadlink', 1); $display_playtime = variable_get('video_displayplaytime', 1); $display_filesize = variable_get('video_displayfilesize', 1); //If the video is of type youtube and multi-file downloads aren't turned on don't show the download link. if (_video_get_filetype($node->vidfile) == 'youtube' and $node->disable_multidownload == 1) { $display_download_link = 0; } $link = ''; if ($display_play_link == 1) { $link .= l(t('play'), "node/$node->nid/play", array('class' => 'outgoing', 'title' => t('play %link', array('%link' => $node->title)))); $link .= ($display_download_link == 1) ? ' ' . t('or') . ' ' : ' | '; } if ($display_download_link == 1) { $link .= l(t('download'), "node/$node->nid/download", array('class' => 'outgoing', 'title' => t('download %link', array('%link' => $node->title)))); $link .= ' | '; } if ($display_playtime == 1) { $link .= format_interval($node->playtime_seconds); $link .= ' | '; } if ($display_filesize == 1 and $node->size != 0) { $link .= format_size($node->size); $link .= ' | '; } if (variable_get('video_playcounter', 1) and user_access('view play counter')) { $link .= $node->play_counter . ' plays | '; } if (variable_get('video_downloadcounter', 1) and user_access('view download counter')) { $link .= $node->download_counter . ' downloads | '; } $link = substr($link, 0, -3); //Trim the last " | " off. } return $links[] = $link; } /** * Displays a Drupal page containing recently added videos * * @return * string HTML output */ function video_page() { $output = ''; if (arg(1) != 'help') { //We are not reading help so output a list of recent video nodes. $result = pager_query(db_rewrite_sql("SELECT n.nid, n.created FROM {node} n WHERE n.type = 'video' AND n.status = 1 ORDER BY n.created DESC"), variable_get('default_nodes_main', 10)); while ($node = db_fetch_object($result)) { $output .= node_view(node_load(array('nid' => $node->nid)), 1); } $output .= theme('pager', NULL, variable_get('default_nodes_main', 10)); } print theme('page', $output); } /** * Permissions hook * * @return * array of permissions */ function video_perm() { $array = array('create video', 'access video', 'administer video', 'view play counter', 'view download counter'); if (variable_get('video_multidownload', '0')) { //Only display permission if turned on in settings. $array[] = 'create multi-file downloads'; } return $array; } /** * Settings Hook * * @return * string of form content or error message */ function video_settings() { // only administrators can access this module if (!user_access('administer video')) { return message_access(); } $output .= form_textfield(t('Location of Flash player skin'), 'video_flvplayerskin', variable_get('video_flvplayerskin', 'modules/video/FLVPlayer_Skin.swf'), 40, 200, t('The location of the Shockwave skin for player controls on the Flash video. It should be a path relative to the Drupal root directory')); $output .= form_textfield(t('Filename of Flash loader'), 'video_flvplayerloader', variable_get('video_flvplayerloader', 'Player.swf'), 40, 200, t('The name of the Shockwave file that manages loading the FLV movie')); /* This will only be required to get video comments and other info using xml requests. So until that feature is added this is not needed. $output .= form_textfield(t('YouTube Developer ID'), 'video_utdevid', variable_get('video_utdevid', ''), 11, 12, t('Used for getting information about youtube videos from the youtube.com site. Get an ID from youtube.com. If left blank the additional information will not be gathered.')); */ $output .= form_radios(t('Display play menu tab'), 'video_displayplaymenutab', variable_get('video_displayplaymenutab', 1), array(0 => 'No', 1 => 'Yes'), t('Toggle display of menu link to play video from the node page')); $output .= form_radios(t('Display download menu tab'), 'video_displaydownloadmenutab', variable_get('video_displaydownloadmenutab', 1), array(0 => 'No', 1 => 'Yes'), t('Toggle display of menu link to download video from the node page')); $output .= form_radios(t('Display play link'), 'video_displayplaylink', variable_get('video_displayplaylink', 1), array(0 => 'No', 1 => 'Yes'), t('Toggle display of "play" link (below the node content in most themes)')); $output .= form_radios(t('Display download link'), 'video_displaydownloadlink', variable_get('video_displaydownloadlink', 1), array(0 => 'No', 1 => 'Yes'), t('Toggle display of "download" link (below the node content in most themes)')); $output .= form_radios(t('Display playtime'), 'video_displayplaytime', variable_get('video_displayplaytime', 1), array(0 => 'No', 1 => 'Yes'), t('Toggle the display of the playtime for a video')); $output .= form_radios(t('Display filesize'), 'video_displayfilesize', variable_get('video_displayfilesize', 1), array(0 => 'No', 1 => 'Yes'), t('Toggle the display of the filesize for a video')); $output .= form_radios(t('Count play hits'), 'video_playcounter', variable_get('video_playcounter', 1), array(1 => 'On', 0 => 'Off'), t('Counts a hit everytime someone views the play page. To allow users to view counter visit: ') . l(t('access control'), 'admin/access')); $output .= form_radios(t('Count downloads'), 'video_downloadcounter', variable_get('video_downloadcounter', 1), array(1 => 'On', 0 => 'Off'), t('Counts a hit everytime someone downloads a video. To allow users to view counter visit: ') . l(t('access control'), 'admin/access')); $output .= form_radios(t('Allow Multi-file Downloads'), 'video_multidownload', variable_get('video_multidownload', 0), array(0 => 'No', 1 => 'Yes'), t('Allows a list of files to be shown on the download page. The list is usually gotten from a specified folder. This ability is useful for providing different sizes and video types for download. This can be disabled separately for each node. If turned on make sure you set the permissions so users can use it.') . ' ' . l(t('access control'), 'admin/access')); $output .= form_textfield(t('File extensions to show'), 'video_download_ext', variable_get('video_download_ext', 'mov,wmv,rm,flv,avi,divx,mpg,mpeg,mp4,zip'), 60, 250, t('The extensions of files to list from the multi-file download folder on the download page. Extensions should be comma seperated with no spaces, for example (mov,wmv,rm).')); $group = form_textfield(t('Custom field group title'), 'video_customfieldtitle', variable_get('video_customfieldtitle', ''), 40, 200, t('Title of the group of all custom fields.')); $group .= form_radios(t('Start group initially collapsed'), 'video_customgroupcollapsed', variable_get('video_customgroupcollapsed', 1), array(0 => 'No', 1 => 'Yes'), t('Should the custom fields group be initially collapsed when creating and editing video pages?')); $group .= form_textfield(t('Custom field 1 title'), 'video_customfield1', variable_get('video_customfield1', ''), 50, 200); $group .= form_textfield(t('Custom field 2 title'), 'video_customfield2', variable_get('video_customfield2', ''), 50, 200); $group .= form_textfield(t('Custom field 3 title'), 'video_customfield3', variable_get('video_customfield3', ''), 50, 200); $group .= form_textfield(t('Custom field 4 title'), 'video_customfield4', variable_get('video_customfield4', ''), 50, 200); $group .= form_textfield(t('Custom field 5 title'), 'video_customfield5', variable_get('video_customfield5', ''), 50, 200); $group .= form_textfield(t('Custom field 6 title'), 'video_customfield6', variable_get('video_customfield6', ''), 50, 200); $output .= form_group_collapsible(t('Custom Fields'), $group, TRUE, t('Creates custom fields. Fields only show up if you give them a name.')); return $output; } /****************************************************************************** * Node Hooks ******************************************************************************/ /** * Implementation of _node_info(). * * @return * array */ function video_node_info() { return array('video' => array('name' => t('video'), 'base' => 'video')); } /** * access hook */ function video_access($op, $node) { switch($op) { case 'view': return $node->status; // see book.module for reference case 'create': return user_access('create video'); } } /** * Implementation of hook_nodeapi(). * We use this to append tags to the RSS feeds Drupal generates. */ function video_nodeapi($node, $op, $arg) { switch ($op) { case 'rss item': if ($node->type == 'video') { $attributes['url'] = _video_get_fileurl($node->vidfile) . basename($node->vidfile); $attributes['length'] = $node->size; $mime_type = _video_get_mime_type($node); if ($mime_type) { $attributes['type'] = $mime_type; } return array(array('key' => 'enclosure', 'attributes' => $attributes)); } } } /** * Hook, displays the contents of the node form page for creating and editing nodes. * * @param $node * object * * @return * string value of form content */ function video_form($node) { $output = ''; $output .= form_textfield(t('Video File'), 'vidfile', $node->vidfile, 60, 65535, t('Put here the video file path. You can use either relative to the drupal root directory (something/video.mov) or absolute (http://www.example.com/videos/videos.mov). Windows Media currently requires a fully qualified URL to function. Flash movies may not play with spaces in the path or filename. To add youtube.com videos enter the video ID. If your video was at (http://www.youtube.com/watch.php?v=aBM4QYXPf-s) you would enter (aBM4QYXPf-s). ') . l(t('More information.'), 'video/help#videofile') . ($error['vidfile'] ? $error['vidfile'] : ''), NULL, TRUE); $output .= form_textfield(t('Video Size x'), 'videox', $node->videox, 4, 4, t('Horizontal video pixel size.'), null, true); $output .= form_textfield(t('Video Size y'), 'videoy', $node->videoy, 4, 4, t('Vertical video pixel size.'), null, true); if (variable_get('video_multidownload', 0) and user_access('create multi-file downloads')) { //If multi-file downloading is turned on display settings group. $group = form_checkbox(t('Disable multi-file downloads'), 'disable_multidownload', 1, $node->disable_multidownload, t('Disables multi-file downloads for this video only.')); $group .= form_textfield(t('Multi-file download folder'), 'download_folder', $node->download_folder, 25, 255, t('Enter the folder containing your videos. It must be relative from the drupal directory. If the absolute path is "C:\inetpub\drupal\videos\projectfolder\" or "/usr/htdocs/drupal/videos/projectfolder/" then enter something like "videos/projectfolder/".')); $group .= form_checkbox(t('Show files in "play" folder'), 'use_play_folder', 1, $node->use_play_folder, t('Display videos in the same directory as the "play" video. If folder above is entered this will be in addition.')); $output .= form_group_collapsible(t('Multiple files in download tab'), $group, TRUE, t('These options allow you to have multiple files shown on the download page. This is useful for allowing users to download different file sizes and video formats. ') . l(t('More information.'), 'video/help#multi-download')); } $group = form_textfield(t('Size'), 'size', $node->size, 12, 12, t('If the video is on the local server the size will be set automatically. Otherwise enter a value. Entering 0 will turn the display off. Must be less than 2GB.'), null, true); $group .= form_select(NULL, 'size_format', 'B', array('B' => t('bytes'), 'Kb' => t('Kilobits'), 'KB' => t('KiloBytes'), 'Mb' => t('Megabits'), 'MB' => t('MegaBytes'), 'Gb' => t('Gigabits'), 'GB' => t('GigaBytes')), 'size units', null, null, true); $output .= form_group(t('Filesize'), $group); $playtime = _video_sec2hms($node->playtime_seconds); $group = form_textfield(t('Hours'), 'playtime_hours', $playtime['hours'], 11, 11, t('Integer of hours'), null, true); $group .= form_textfield(t('Minutes'), 'playtime_minutes', $playtime['minutes'], 11, 11, t('Integer of minutes'), null, true); $group .= form_textfield(t('Seconds'), 'playtime_seconds', $playtime['seconds'], 11, 11, t('Integer of seconds'), null, true); $output .= form_group(t('Playtime'), $group, t('Values may be entered in excess of their normal "clock maximum" (the seconds field may be 3600 to represent 1 hour), however each value will be summed for a total of all three.')); $group = ''; //If the custom field title is not blank, then display it. if (variable_get('video_customfield1', '') != '') { $group .= form_textfield(variable_get('video_customfield1', 'Field 1'), 'custom_field_1', $node->custom_field_1, 40, 255, t('')); } if (variable_get('video_customfield2', '') != '') { $group .= form_textfield(variable_get('video_customfield2', 'Field 2'), 'custom_field_2', $node->custom_field_2, 40, 255, t('')); } if (variable_get('video_customfield3', '') != '') { $group .= form_textfield(variable_get('video_customfield3', 'Field 3'), 'custom_field_3', $node->custom_field_3, 40, 255, t('')); } if (variable_get('video_customfield4', '') != '') { $group .= form_textfield(variable_get('video_customfield4', 'Field 4'), 'custom_field_4', $node->custom_field_4, 40, 255, t('')); } if (variable_get('video_customfield5', '') != '') { $group .= form_textarea(variable_get('video_customfield5', 'Field 5'), 'custom_field_5', $node->custom_field_5, 60, 4, t('')); } if (variable_get('video_customfield6', '') != '') { $group .= form_textarea(variable_get('video_customfield6', 'Field 6'), 'custom_field_6', $node->custom_field_6, 60, 4, t('')); } if ($group != '') { //Only display the group if it has fields. $output .= form_group_collapsible(variable_get('video_customfieldtitle', 'Custom Fields'), $group, variable_get('video_customgroupcollapsed', '0'), t('')); } $group = form_textfield(t('Video Bitrate'), 'video_bitrate', ($node->video_bitrate == 0) ? '' : $node->video_bitrate, 11, 11, t('Integer value of video bitrate')); $group .= form_textfield(t('Audio Bitrate'), 'audio_bitrate', ($node->audio_bitrate == 0) ? '' : $node->audio_bitrate, 11, 11, t('Integer value of audio bitrate')); $group .= form_textfield(t('Audio Sampling Rate'), 'audio_sampling_rate', ($node->audio_sampling_rate == 0) ? '' : $node->audio_sampling_rate, 11, 11, t('Integer value of audio sampling rate in Hz')); $group .= form_select(t('Audio Channels'), 'audio_channels', $node->audio_channels, array('' => '', '5.1' => t('5.1'), 'stereo' => t('Stereo'), 'mono' => t('Mono'))); $output .= form_group_collapsible(t('Optional Metadata'), $group, TRUE, t('Metadata entered here will not be displayed. It is currently for administrative reference only.')); if (function_exists('taxonomy_node_form')) { $output .= implode('', taxonomy_node_form('video', $node)); } $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, t('Textual description of the video.') . ($error['body'] ? $error['body'] : '')); $output .= filter_form('format', $node->format); return $output; } /** * Hook: Create video record in video table * * @return * TRUE on success, FALSE on error */ function video_insert(&$node) { $node->size = _video_size2bytes($node); return db_query("INSERT INTO {video} (nid, vidfile, size, videox, videoy, video_bitrate, audio_bitrate, audio_sampling_rate, audio_channels, playtime_seconds, disable_multidownload, download_folder, use_play_folder, custom_field_1, custom_field_2, custom_field_3, custom_field_4, custom_field_5, custom_field_6) VALUES ('%d', '%s', '%d', '%d', '%d', '%d', '%d', '%d', '%s', '%d', '%d', '%s', '%d', '%s', '%s', '%s', '%s', '%s', '%s')", $node->nid, $node->vidfile, $node->size, $node->videox, $node->videoy, $node->video_bitrate, $node->audio_bitrate, $node->audio_sampling_rate, $node->audio_channels, $node->playtime_seconds, $node->disable_multidownload, $node->download_folder, $node->use_play_folder, $node->custom_field_1, $node->custom_field_2, $node->custom_field_3, $node->custom_field_4, $node->custom_field_5, $node->custom_field_6); } /** * Hook * * @return * TRUE on success, FALSE on error */ function video_update(&$node) { $node->size = _video_size2bytes($node); return db_query("UPDATE {video} SET vidfile='%s', size='%d', videox='%d', videoy='%d', video_bitrate='%d', audio_bitrate='%d', audio_sampling_rate='%d', audio_channels='%s', playtime_seconds='%d', disable_multidownload='%d', download_folder='%s', use_play_folder='%d', custom_field_1='%s', custom_field_2='%s', custom_field_3='%s', custom_field_4='%s', custom_field_5='%s', custom_field_6='%s' WHERE nid = '%d'", $node->vidfile, $node->size, $node->videox, $node->videoy, $node->video_bitrate, $node->audio_bitrate, $node->audio_sampling_rate, $node->audio_channels, $node->playtime_seconds, $node->disable_multidownload, $node->download_folder, $node->use_play_folder, $node->custom_field_1, $node->custom_field_2, $node->custom_field_3, $node->custom_field_4, $node->custom_field_5, $node->custom_field_6, $node->nid); } /** * Hook * * @param $node * object */ function video_delete($node) { db_query("DELETE FROM {video} WHERE nid = '%s'", $node->nid); cache_clear_all("video:blogmarks:block"); } /** * Hook to see if every video field has been filled * and contains a valid value. * * @param $node * object */ function video_validate(&$node) { if (isset($node->vidfile)) { if ($node->vidfile == '') { form_set_error('vidfile', t('You have to insert a valid file path for this video')); } else { //let's see if we have it yet $result = db_query("SELECT * from {video} WHERE vidfile = '%s' and nid <> '%d'", $node->vidfile, $node->nid); if (db_num_rows($result) > 0) { $video = db_fetch_object($result); $othernode = node_load(array('nid' => $video->nid)); form_set_error('vidfile', t('A video %link-to-existing using that link already exists', array("%link-to-existing" => l($othernode->title, 'node/' . $othernode->nid . '/edit')))); } } } if (_video_get_filetype($node->vidfile) != 'youtube') { //If video is of type youtube don't check size. if (isset($node->videox) && $node->videox <= 0) { form_set_error('videox', t('You have to insert a valid horizontal pixel size for this video')); } if (isset($node->videoy) && $node->videoy <= 0) { form_set_error('videoy', t('You have to insert a valid vertical pixel size for this video')); } } //If file is on the local server get size, otherwise make sure a number is entered. $path = getcwd() . '/' . $node->vidfile; //Local path to video file. if (isset($node->size) and is_file($path)) { //If file exists locally set size. $node->size = filesize($path); } elseif (isset($node->size) && !is_numeric($node->size)) { //If size field is not a number. form_set_error('size', t('You have to insert a valid file size for this video')); } if (user_access('create multi-file downloads')) { //Make sure the user has permission. //Checks to make sure either multi-downloads are disabled, or a valid folder is given, or use_play_folder is checked. if (isset($node->disable_multidownload) and $node->disable_multidownload == 0) { if (isset($node->download_folder) and !is_dir(getcwd() . '/' . $node->download_folder) and $node->use_play_folder == 0) { form_set_error('disable_multidownload', t("If you don't select a multi-file download option you must disable the feature.")); form_set_error('download_folder', t('Download directory does not exist. Make sure it has a trailing forward slash "/".')); form_set_error('use_play_folder', t('You must either use the folder of the "play" video or enter a folder.')); } } } else { //If the user doesn't have permission to use multi-download then disable it for the node. $node->disable_multidownload = 1; } //Calculate the time in seconds. $node->playtime_seconds += intval($node->playtime_hours * 3600) + intval($node->playtime_minutes * 60); //Makes sure the total time is greater than 0. if ((isset($node->playtime_minutes) and isset($node->playtime_hours) and isset($node->playtime_seconds)) and $node->playtime_seconds == 0) { form_set_error('playtime_seconds', t('You have to insert valid playtime informations for this video.')); } } /** * Hook * * @param $node * object or boolean FALSE on error */ function video_load($node) { if (is_numeric($node->nid)) { return db_fetch_object(db_query("SELECT * FROM {video} WHERE nid = '%d'", $node->nid)); } else { return false; } } /******************************************************************** * Block display functions ********************************************************************/ /** * Hook block. Does all the interaction with the drupal block system. Uses video_block_list() for DB queries. * * @param $op * string type of block * * @param $delta * integer 0 for latest, 1 for played+downloaded, 2 for most played, 3 for most downloaded. * * @param $edit * array holds the data submitted by the configure forms. * * @return * array */ function video_block($op = 'list', $delta = 0, $edit = array()) { if ($op == 'list') { $blocks[0]['info'] = t('Latest videos'); $blocks[1]['info'] = t('Top videos'); $blocks[2]['info'] = t('Most played videos'); $blocks[3]['info'] = t('Most downloaded'); return $blocks; } elseif ($op == 'view') { switch ($delta) { case 0: return array( 'subject' => variable_get('video_block_title_0', t('Latest videos')), 'content' => video_block_list($delta) ); case 1: return array( 'subject' => variable_get('video_block_title_1', t('Top videos')), 'content' => video_block_list($delta) ); case 2: return array( 'subject' => variable_get('video_block_title_2', t('Most played videos')), 'content' => video_block_list($delta) ); case 3: return array( 'subject' => variable_get('video_block_title_3', t('Most downloaded')), 'content' => video_block_list($delta) ); } } elseif ($op == 'configure') { switch ($delta) { //Get the default title of the block incase the variable is not set yet. case 0: $default_title = t('Latest videos'); break; case 1: $default_title = t('Top videos'); break; case 2: $default_title = t('Most played videos'); break; case 3: $default_title = t('Most downloaded'); } $output = form_textfield(t('Block display title'), 'video_block_title', variable_get("video_block_title_$delta", $default_title), 20, 40); $output .= form_select(t('Number of videos to list in block'), 'video_block_limit', variable_get("video_block_limit_$delta", 10), drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))); return $output; } elseif ($op == 'save') { variable_set("video_block_title_$delta", $edit['video_block_title']); variable_set("video_block_limit_$delta", $edit['video_block_limit']); } } /** * Query DB for block content * * @param $delta * int 0, 1, 2, or 3. Determines which type of block is being accessed. * * @return * string HTML content for a block */ function video_block_list($delta = 0) { switch ($delta) { case 0: $orderby = 'n.created'; break; case 1: $orderby = 'v.download_counter + v.play_counter'; break; case 2: $orderby = 'v.play_counter'; break; case 3: $orderby = 'v.download_counter'; } return node_title_list(db_query_range(db_rewrite_sql("SELECT n.nid, n.title FROM {node} n, {video} v WHERE n.nid = v.nid AND n.type = 'video' AND n.status = 1 AND n.moderate = 0 ORDER BY $orderby DESC"),0, variable_get("video_block_limit_$delta", 10))); } /** * Either redirects to download the video file. * Or displays a list of files to download. */ function video_download() { if ($node = node_load(array('nid' => arg(1)))) { if (variable_get("video_multidownload", 0) == 0 or $node->disable_multidownload == 1) { if (_video_get_filetype($node->vidfile) != 'youtube') { //Make sure the video type is not youtube before downloading. _video_download_goto($node->vidfile, $node->nid); } else { //If video is type youtube then it can't be downloaded. drupal_set_message(t('There are no files to download for this video.'), 'error'); print theme('page', ''); } } elseif (arg(3) != '') { //If we are passed an encoded URL redirect to the downloader. _video_download_goto(arg(3), $node->nid, TRUE); } else { //Multiple file downloads is turned on. $node->download_error = FALSE; $node->file_array = array(); //Initialize the final file array. global $base_url; $full_download_folder = getcwd() . '/' . $node->download_folder; //Get absolute path to folder. //If the download folder is set and valid scan it for files. if ($node->download_folder != '' and file_exists($full_download_folder)) { $scan_download_folder = _video_scandir($full_download_folder); //Get array of file names in the directory. $scan_download_folder['local_dir'] = $full_download_folder; //For getting filesize. $scan_download_folder['dir_stub'] = $node->download_folder; //To put in the URL. $folder_array[] = $scan_download_folder; } //If option is set to use "play" folder and it exists, scan it for files. $play_dir_stub = str_replace(basename($node->vidfile), "", $node->vidfile); //Remove the filename from the play file to get directory. $play_dir = getcwd() . '/' . $play_dir_stub; //Get the local directory path where the file is kept. if ($node->use_play_folder == 1 and file_exists($play_dir) and $play_dir_stub != '/') { //Make sure play stub won't allow scanning base drupal directory. $scan_play_folder = _video_scandir($play_dir); $scan_play_folder['local_dir'] = $play_dir; //For getting filesize. $scan_play_folder['dir_stub'] = $play_dir_stub; //To put in the URL. $folder_array[] = $scan_play_folder; } $node->play_dir_stub = $play_dir_stub; //Allows view value in dev info. Not required. if (count($folder_array) > 0) { //Make sure we have a folder to scan. foreach ($folder_array as $dir_scan) { //Scan through one or both folders results. foreach ($dir_scan as $file) { //Go through each file in the directory. if (is_file($dir_scan['local_dir'] . "/" . $file)) { //Make sure it's a valid file. //Checks the new file with the files already in the array to eliminate dupes. $match = false; foreach ($node->file_array as $file_array_file) { if ($file_array_file['file'] == $file) { //If the file is already in the array. $match = TRUE; } } //If we get here with $match still set FALSE we don't have a dupe. $file_ext = substr($file, strrpos($file, '.') + 1); //Get the file extension. $ext_array = explode(',', variable_get('video_download_ext', 'mov,wmv,avi')); if (!$match and in_array($file_ext, $ext_array)) { //Only add file if it's not already in the array and it's extension shouldn't be hidden. $file_array_size[] = filesize($dir_scan['local_dir'] . $file); //Create an array of the file sizes for sorting. global $base_url; $file_url = $base_url . '/' . $dir_scan['dir_stub'] . $file; //Generate absolute URL to video. $file_url = str_replace(' ', '%20', $file_url); //Replace any spaces in filename. $encoded_url = base64_encode($file_url); //Encode URL to base64 MIME value so it can be passed in URL. $encoded_url = str_replace('/', '-', $encoded_url); //Replace "/" with "-" so it doesn't mess up the URL. $node->file_array[] = array( 'file' => $file , 'type' => $file_ext , 'size' => filesize($dir_scan['local_dir'] . $file) , 'encoded_url' => $encoded_url ); } } //Close the valid file check. } //Close the directory scan. } //Close scan location array. if (count($node->file_array) > 0) { //Make sure atleast 1 file was found. array_multisort($file_array_size, SORT_ASC, $node->file_array); //Sort based of file size. } else { //Else if no files were found in the directory. $node->download_error = TRUE; } } else { //Else if we have no valid folders to scan. $node->download_error = TRUE; } print theme('video_download', $node); //Print to the screen from the theme_video_download function. } //Close multi-file downloads is turned on. } else { drupal_not_found(); } } /** * Implements play callback function from node menu */ function video_play() { if ($node = node_load(array('nid' => arg(1)))) { drupal_set_title(t('Playing').' '.$node->title); switch (_video_get_filetype($node->vidfile)) { case 'mov': print theme('video_play_quicktime', $node); break; case 'rm': print theme('video_play_realmedia', $node); break; case 'flv': print theme('video_play_flash', $node); break; case 'wmv': print theme('video_play_windowsmedia', $node); break; case 'youtube': print theme('video_play_youtube', $node); break; default: drupal_set_message('Video type not supported', 'error'); drupal_goto("node/$node->nid"); break; } if (variable_get('video_playcounter', 1)) { db_query("UPDATE {video} SET play_counter = play_counter + 1 where nid = '%d'", $node->nid); //Increment play counter. } } else { drupal_not_found(); } } /** * Implementation of hook_view(). * In addition to standard uses, it adds the 6 custom fields to the body of the node. * * @return * Nothing, modifies $node which is passed by reference. */ function video_view(&$node, $teaser = FALSE, $page = FALSE) { //Run the body through the standard filters. $node = node_prepare($node, $teaser); //Add the HTML formatted output of the custom fields to the bottom. if ($teaser == FALSE) { $node->body .= theme('video_view', $node); } } /********************************************************************* * Themeable functions for playing videos. * It prints a page with a player embedded * linked to the file record of the node. *********************************************************************/ /** * Play videos from in Flash video format * * @param $node * object with node information * * @return * string of content to display */ function theme_video_play_flash($node) { $loader_location = variable_get('video_flvplayerloader', 'Player.swf'); $skin_location = variable_get('video_flvplayerskin', 'modules/video/FLVPlayer_Skin.swf'); $skin_location = substr($skin_location, 0, strlen($skin_location) - 4); $file = basename($node->vidfile); $url = _video_get_fileurl($node->vidfile); //print($file.'
'.$url); //Remove once fully tested. $output = ' '; $output = _theme_video_format_play($output, t('http://www.macromedia.com/go/getflashplayer'), t('Link to Macromedia Flash Player Download Page'), t('Download latest Flash Player')); return theme('page', $output); } /** * Play videos from in Quicktime format * * @param $node * object with node information * * @return * string of content to display */ function theme_video_play_quicktime($node) { $height = $node->videoy + 16; //Increase the height to accommodate the player controls on the bottom. $output = ' '; $output = _theme_video_format_play($output, t('http://www.apple.com/quicktime/download'), t('Link to QuickTime Download Page'), t('Download latest Quicktime Player')); return theme('page', $output); } /** * Play videos from in Realmedia format * * @param $node * object with node information * * @return * string of content to display */ function theme_video_play_realmedia(&$node) { // Real's embeded player includes the controls // in the height $node->videoy += 40; $output = ' '; $output = _theme_video_format_play($output, t('http://www.real.com/'), t('Link to Real'), t('Download latest Realmedia Player')); return theme('page', $output); } /** * Play videos from in WindowsMediaVideo format * * @param $node * object with node information * * @return * string of content to display */ function theme_video_play_windowsmedia($node) { // Windows Media's embeded player includes the controls in the height $node->videoy += 68; $vidfile = _video_get_fileurl($node->vidfile) . basename($node->vidfile); $output = ' '; $output = _theme_video_format_play($output, t('http://windowsupdate.microsoft.com/'), t('Link to Windows Update'), t('Download latest Windows Media Player')); return theme('page', $output); } /** * Play videos hosted on youtube.com * Allows users to host videos on youtube.com and then use the video ID to post it in the module. * In the future it could also use the youtube developer API to get info and comments of the video. * * @param $node * object with node information * * @return * string of content to display */ function theme_video_play_youtube($node) { $output = ' '; $output = _theme_video_format_play($output, t('http://www.youtube.com/help.php'), t('Link to youtube.com'), t('youtube.com')); return theme('page', $output); } /** * Cut down on redundant link text * * @param $url * string URL to link to * * @param $title * string title of link to show on mouseover * * @param $link_text * string text of the link * * @return * string HTML link */ function _theme_video_format_play(&$output, $url, $title, $link_text) { $output = "\n
\n" . $output; $output .= "

\n". t('Problems viewing videos?'); $output .= "
\n$link_text"; return $output ."\n

\n
\n"; } /** * Display custom fields on the view page. * * @param $node * object with node information * * @return * string of content to display */ function theme_video_view($node) { //Adds the custom fields. $group_title = variable_get('video_customfieldtitle', ''); //Title of the custom fields. $title1 = variable_get('video_customfield1', ''); $title2 = variable_get('video_customfield2', ''); $title3 = variable_get('video_customfield3', ''); $title4 = variable_get('video_customfield4', ''); $title5 = variable_get('video_customfield5', ''); $title6 = variable_get('video_customfield6', ''); //Run the fields through the input filter set for the node, then remove paragraphs. //Removes the

and

tags from the filter pass return. This allows each field to be on one line. //A better system might be to remove only the first and last

tags. $field1 = str_replace(array('

', '

'), '', check_markup($node->custom_field_1, $node->format, FALSE)); $field2 = str_replace(array('

', '

'), '', check_markup($node->custom_field_2, $node->format, FALSE)); $field3 = str_replace(array('

', '

'), '', check_markup($node->custom_field_3, $node->format, FALSE)); $field4 = str_replace(array('

', '

'), '', check_markup($node->custom_field_4, $node->format, FALSE)); $field5 = str_replace(array('

', '

'), '', check_markup($node->custom_field_5, $node->format, FALSE)); $field6 = str_replace(array('

', '

'), '', check_markup($node->custom_field_6, $node->format, FALSE)); //Make sure all the titles and fields are not blank, if not then display them. if (($title1 . $title2 . $title3 . $title4 . $title5 . $title6) != '' and ($field1 . $field2 . $field3 . $field4 . $field5 . $field6) != '') { $output .= '
'; //Enclose all output in "videofields" div class. if ($group_title != '') { $output .= '

' . $group_title . '

'; } if ($title1 != '' and $node->custom_field_1 != '') { $output .= '
' . $title1 . ' '; $output .= $field1 . '
'; } if ($title2 != '' and $node->custom_field_2 != '') { $output .= '
' . $title2 . ' '; $output .= $field2 . '
'; } if ($title3 != '' and $node->custom_field_3 != '') { $output .= '
' . $title3 . ' '; $output .= $field3 . '
'; } if ($title4 != '' and $node->custom_field_4 != '') { $output .= '
' . $title4 . ' '; $output .= $field4 . '
'; } if ($title5 != '' and $node->custom_field_5 != '') { $output .= '
' . $title5 . ' '; $output .= $field5 . '
'; } if ($title6 != '' and $node->custom_field_6 != '') { $output .= '
' . $title6 . ' '; $output .= $field6 . '
'; } $output .= '

'; //Close the "videofields" class div. } return $output; } /** * Outputs the HTML for the download page when multi-file download are turned on. * * @param $node * object with node information * * @return * string of content to display */ function theme_video_download(&$node) { $output = ''; if (!$node->download_error) { //Replace some common file types with full name and links. $find = array('mov', 'wmv', 'rm', 'avi', 'zip', 'divx', 'flv'); $replace = array('' . t('Quicktime') . '' , '' . t('Windows Media') . '' , '' . t('Real Media') . '' , '' . t('AVI') . '' , '' . t('ZIP') . '' , '' . t('DIVX') . '' , '' .t('Flash FLV') . '' ); $output .= '
'; //Enclose all HTML in "videodownload" class. foreach($node->file_array as $file) { //Goes through the array of video files and gets them ready for display. $file_type = str_replace($find, $replace, $file['type']); //Match and replace common file types. $link = l($file['file'], "node/$node->nid/download/" . $file['encoded_url']); //Create link to download file. $file_array_table[] = array($link, format_size($file['size']), $file_type); //Create table row. } $headers = array(t('File Link'), t('File Size'), t('File Type')); $output .= theme_table($headers, $file_array_table); //Create the table of files. $output .= '
'; //Close the "videodownload" class. } else { //If there is an error. drupal_set_message(t('There are no files to download for this video.'), 'error'); drupal_goto("node/$node->nid"); //Redirect back to view page. } //Adds a breadcrumb back to view on the download page. This may not be needed but some better breadcrumbs are. $breadcrumb = drupal_get_breadcrumb(); $breadcrumb[] = l(t('View'), "node/$node->nid"); drupal_set_breadcrumb($breadcrumb); drupal_set_title(t('Downloading').' '.$node->title); return theme("page", $output); } /****************************************************************************** * End theme functions ****************************************************************************** * Start private functions created for this module. ******************************************************************************/ /** * Pull the file extension from a filename * * @param $vidfile * string filename to get the filetype from. * * @return * string value of file type or boolean FALSE on error */ function _video_get_filetype($vidfile) { //If the filename doesn't contain a ".", "/", or "\" and is exactly 11 characters then consider it a youtube video ID. if (!strpos($vidfile, '.') and !strpos($vidfile, '/') and !strpos($vidfile, '\\') and strlen($vidfile) == 11) { $file_type = 'youtube'; } elseif (strstr($vidfile, '.')) { //If file contains a "." then get the file extension after the "." $file_type = substr($vidfile, strrpos($vidfile, '.') + 1); } else { $file_type = FALSE; } return $file_type; } /** * Forward user directly to the file for downloading * * @param $input_url * string should be either a base64 encoded absolute URL, relative URL, or absolute URL. * * @param $nid * string node ID of the node to have it's download counter updated. * * @param $base64_encoded * boolean value determines whether the $input is base64 encoded. * * @return * Nothing */ function _video_download_goto($input_url, $nid, $base64_encoded = FALSE) { if ($base64_encoded) { $encoded_url = str_replace('-', '/', $input_url); //Replace "-" to "/" for MIME base64. $location = base64_decode($encoded_url); } else { //$input URL is not base64 encoded. $location = _video_get_fileurl($input_url) . basename($input_url); } if (variable_get('video_downloadcounter', 1)) { db_query("UPDATE {video} SET download_counter = download_counter + 1 where nid = '%d'", $nid); //Increment download counter. } header("Location: $location"); //Redirect to the video files URL. } /** * Scans a directory and returns an array of all the filenames in the directory. * This function is only necessary to maintain PHP 4 support. * * @param $dir * The directory. Can be an absolute path or relative from the current working directory. * * @return * array of filenames. */ function _video_scandir($dir) { //Try a few different ways to open the directory. if (is_dir($dir)) { $dir_open = opendir($dir); } else if (is_dir($new_dir = getcwd() . $dir)) { $dir_open = opendir($new_dir); } else if (is_dir($new_dir = getcwd() . '/' . $dir)) { $dir_open = opendir($new_dir); } else { //If directory does not exist. return FALSE; } if (!$dir_open) { //If opendir returned false then return false. return FALSE; } //If it makes it this far $dir_open should be valid. while (($dir_content = readdir($dir_open)) !== FALSE) { $files[] = $dir_content; } return $files; } /** * Convert filesize to bytes * * @return * integer bytes */ function _video_size2bytes($node) { if (!empty($node->size)) { switch ($node->size_format) { case 'Kb': // KiloBits return intval($node->size * 128); break; case 'KB': // KiloBytes return intval($node->size * 1024); break; case 'Mb': // MegaBits return intval($node->size * 131072); break; case 'MB': // MegaBytes return intval($node->size * 1048576); break; case 'Gb': // GigaBits return intval($node->size * 134217728); break; case 'GB': // GigaBytes return intval($node->size * 1073741824); break; default: return (int)$node->size; break; } } else { return 0; } } /** * Convert seconds to hours, minutes, and seconds. * Derived from h:m:s example by Jon Haworth * * @link * http://www.laughing-buddha.net/jon/php/sec2hms/ * * @param $sec * integer value of seconds. * * @return * array associative with key values of hours, minutes, and seconds. */ function _video_sec2hms($sec = 0) { $hms = array(); // 3600 seconds in an hour and trash remainder $hms['hours'] = intval(intval($sec) / 3600); // dividing the total seconds by 60 will give us // the number of minutes, but we're interested in // minutes past the hour: to get that, we need to // divide by 60 again and keep the remainder $hms['minutes'] = intval(($sec / 60) % 60); $hms['seconds'] = intval($sec % 60); //keep the remainder. return $hms; } /** * Returns an absolute url which references * to the folder containing the video file * * @param $video_file * string containing absolute or relative URL to video. * * @return * string containing absolute URL path to video without the filename. */ function _video_get_fileurl($video_file) { global $base_url; //removing filename from path $video_path = rtrim($video_file, basename($video_file)); //creation of absolute url if (! preg_match("/^(ht|f)tp(s?):\/\//", $video_path)) { //If path is not absolute. $video_path = $base_url . '/' . $video_path; } return $video_path; } /** * Forward user directly to the file for downloading. * This function has been replaced with _video_download_goto and should be deleted. * * @param $id * integer node id * * @param $type * string type of file to go to. defaults to video. * * @return * boolean FALSE on error */ function _video_page_goto($id, $type = 'video') { global $base_url; if (in_array($type, array('video', 'feed')) && is_numeric($id)) { $result = db_query(db_rewrite_sql("SELECT n.nid, n.vidfile FROM {video} n WHERE n.nid = '%d'"), $id); $wl = db_fetch_object($result); $type = 'vidfile'; if ($wl->$type != '') { if (variable_get('video_downloadcounter', 1)) { db_query("UPDATE {video} SET download_counter = download_counter + 1 where nid = '%d'", $id); } // Didn't this use to work? header("HTTP/1.0 301 Moved Permanently"); } if (preg_match("/^(ht|f)tp(s?):\/\//", $wl->$type)) { header('Location: ' . $wl->$type); } else { header("Location: $base_url/" . $wl->$type); } } return false; } /** * Returns the correct mime-type for the video. Returns false if the * mime-type cannot be detected. */ function _video_get_mime_type($node) { switch (_video_get_filetype($node->vidfile)) { case 'mov': return 'video/quicktime'; break; case 'rm': return 'application/vnd.rn-realmedia'; break; case 'flv': return 'flv-application/octet-stream'; break; case 'wmv': return 'video/x-ms-wmv'; break; case 'youtube': // We can't support this properly, so return false. return false; break; default: // We couldn't detect the mime-type, so return false. return false; break; } }