Skip to content
videos.php 5.54 KiB
Newer Older
Seblu's avatar
Seblu committed
<?

define('DEFAULT_YEAR', '2010');

Seblu's avatar
Seblu committed
function dispVideos() {

(isset($_GET['year_page'])) ? ($curyear = " ".$_GET['year_page']) : ($curyear = " ".DEFAULT_YEAR);
Seblu's avatar
Seblu committed

$str = '
	<!-- main body -->
    <div id="main_body">
    	<div id="left_side">
            <div id="newsbox">
                <h1><img alt="" src="images/puce.png" /> <strong>Videos'. $curyear .'</strong></h1>
                <ul>';
Seblu's avatar
Seblu committed
	$str .= dispVideosYear();

	$str .= '
            </ul></div>
	    </div>

        <div id="right_side">
            <div class="rightbox">
                <h1><img alt="" src="images/puce.png" /> <strong>Ann&eacute;es</strong></h1>
                ';

	$str .= dispVideosMenu();
Seblu's avatar
Seblu committed

	$str .= '
            </div>
        </div>
        <div class="clr">&nbsp;</div>
    </div>
';


echo $str;
}

function dispVideosMenu(){
  $str = '<ul>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2010" class="texte_link">2010</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2009" class="texte_link">2009</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2008" class="texte_link">2008</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2007" class="texte_link">2007</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2006" class="texte_link">2006</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2005" class="texte_link">2005</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2004" class="texte_link">2004</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2003" class="texte_link">2003</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2002" class="texte_link">2002</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2001" class="texte_link">2001</a></li>';
  $str .= '<li><a href="index.php?section=Videos&year_page=2000" class="texte_link">avant</a></li>';
  $str .= '</ul>';
  return $str;
Seblu's avatar
Seblu committed
}


function dispVideosYear(){
  if ($_GET['year_page'])
    $year_page = $_GET['year_page'];
  else
    $year_page = DEFAULT_YEAR;

  $str = '';//'<B>'.$year_page.'</B>';

  if ($_SESSION["user_right"] >= $GLOBALS["PRIV_GUEST"] ) {
    $result_prod = getVideosByYearAndTypeAndTendu($year_page, "eptvprod", 2);
    $result_bonus = getVideosByYearAndTypeAndTendu($year_page, "eptvbonus", 2);
    $result_adm = getVideosByYearAndTypeAndTendu($year_page, "eptv.adm", 2);
  }
  else if ($_SESSION["user_right"] >= $GLOBALS["GUEST"] ) {
    $result_prod = getVideosByYearAndTypeAndTendu($year_page, "eptvprod", 1);
    $result_bonus = getVideosByYearAndTypeAndTendu($year_page, "eptvbonus", 1);
    $result_adm = getVideosByYearAndTypeAndTendu($year_page, "eptv.adm", 1);
  }
  else {
    $result_prod = getVideosByYearAndTypeAndTendu($year_page, "eptvprod", 0);
    $result_bonus = getVideosByYearAndTypeAndTendu($year_page, "eptvbonus", 0);
    $result_adm = getVideosByYearAndTypeAndTendu($year_page, "eptv.adm", 0);
  }

  if (mysql_num_rows($result_prod))
    $str .= dispVideosByType($result_prod, "&nbsp;e p t v &nbsp; p r o d u c t i o n");
  if (mysql_num_rows($result_bonus))
    $str .= dispVideosByType($result_bonus, "&nbsp;e p t v &nbsp b o n u s");
  if (mysql_num_rows($result_adm))
    $str .= dispVideosByType($result_adm, "&nbsp;e p t v . a d m");

  return ($str);
Seblu's avatar
Seblu committed
}


function dispVideosByType($result, $video_type) {
  $str = '<table width="100%" border="0" cellspacing="0" cellpadding="0">
Seblu's avatar
Seblu committed
		<tr>
		<td bgcolor="#111111">
		<table width="100%" border="0" cellspacing="1" cellpadding="2">
			<tr>
			<td>
				<b>
				<font color="#666666">
				'.$video_type.'
				</font>
Seblu's avatar
Seblu committed
			</td>
			</tr>
Seblu's avatar
Seblu committed
			<tr>
			<td bgcolor="#282828">
			<table cellpadding="0" cellspacing="0" width="100%">
				<tr>
				<td>
				<table width="100%" border="0" cellspacing="0" cellpadding="4">

		';
  while ($video = mysql_fetch_array($result)) {
    $str .= dispWhenTendu($video["video_tendu"]);
    $str .= '	&nbsp;<a href="?video=' . $video["video_id"] . ' " class="texte_link"' . '>'.$video["video_name"].'</a></td><td>';
    if ($video["video_path_daily"])
      $str .= '<a href=?dailymotion='.$video["video_id"].' onclick="return popitup(this, \'EPTV\')" ><img src=\'../images/daily.png\' height=15 border=0></a>';
    $str .= '</TD><TD>'.$video["video_date"].'</TD><TD align=center><strong>'.$video["video_size"].' Mo</strong></TD></TR>';
  }
Seblu's avatar
Seblu committed

  $str .= '
Seblu's avatar
Seblu committed
					</table>
					</td>
					</tr>
				</table>
				</td>
				</tr>
			</table>
			</td>
			</tr>
		</table>
		<br>
	';

 return ($str);
Seblu's avatar
Seblu committed

}

// download a video by it's video identifier
function getVideo() {
  // get video info
  $result = getOneVideo($_GET['video']);

  if (mysql_num_rows($result)) {
    $video = mysql_fetch_array($result);

    // check video and user right
    if ($video["video_tendu"] > 0) {
      header("Status: 403 Forbidden");
      die("Permission refus&eacute;e.");
    }

    // check file existance and download
    if (file_exists($video["video_path"])) {
      header('Content-Description: Video Transfer;');
      header('Content-Disposition: attachment; filename="'.basename($video["video_path"]).'";');
      header('Content-Type: application/octet-stream;');
      header('Content-Transfer-Encoding: binary;');
      header('Content-Length: ' . filesize($video["video_path"]).';');
      flush();
      readfile($video["video_path"]);
    }
    else {
      header("Status: 404 Not Found");
      die("Le fichier video n'est pas disponible. Contactez le webmaster!!");
    }
  }
  else {
    header("Status: 404 Not Found");
    die("La vid&eacute;o que vous demandez n'existe pas!");
  }
}

Seblu's avatar
Seblu committed
?>