diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 20:14:52 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 20:14:52 +0000 |
commit | 1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc (patch) | |
tree | 54655ff3e692a71a17f1d37cd97374b263557ca1 /image.php | |
parent | ef48bf3fbdca2a4d25f5d025f4c6ad23905e5369 (diff) | |
download | ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.tar.gz ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.tar.bz2 ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.zip |
Cosmetics: remove trailing whitespace
Diffstat (limited to 'image.php')
-rw-r--r-- | image.php | 50 |
1 files changed, 25 insertions, 25 deletions
@@ -23,22 +23,22 @@ * Album Art * This pulls album art out of the file using the getid3 library * and dumps it to the browser as an image mime type. - * + * */ // This file is a little weird it needs to allow API session // this needs to be done a little better, but for now... eah -define('NO_SESSION','1'); +define('NO_SESSION','1'); require 'lib/init.php'; // Check to see if they've got an interface session or a valid API session, if not GTFO -if (!vauth::session_exists('interface',$_COOKIE[Config::get('session_name')]) AND !vauth::session_exists('api',$_REQUEST['auth']) AND !vauth::session_exists('xml-rpc',$_REQUEST['auth'])) { +if (!vauth::session_exists('interface',$_COOKIE[Config::get('session_name')]) AND !vauth::session_exists('api',$_REQUEST['auth']) AND !vauth::session_exists('xml-rpc',$_REQUEST['auth'])) { debug_event('DENIED','Image Access, Checked Cookie Session:' . $_COOKIE[Config::get('session_name')] . ' and Auth:' . $_REQUEST['auth'],'1'); - exit; -} + exit; +} /* Decide what size this image is */ -switch ($_REQUEST['thumb']) { +switch ($_REQUEST['thumb']) { case '1': /* This is used by the now_playing stuff */ $size['height'] = '75'; @@ -47,13 +47,13 @@ switch ($_REQUEST['thumb']) { case '2': $size['height'] = '128'; $size['width'] = '128'; - // $return_raw = true; + // $return_raw = true; break; case '3': /* This is used by the flash player */ $size['height'] = '80'; $size['width'] = '80'; - // $return_raw = true; + // $return_raw = true; break; default: $size['height'] = '275'; @@ -62,35 +62,35 @@ switch ($_REQUEST['thumb']) { break; } // define size based on thumbnail -switch ($_REQUEST['type']) { +switch ($_REQUEST['type']) { case 'popup': require_once Config::get('prefix') . '/templates/show_big_art.inc.php'; break; - // If we need to pull the data out of the session + // If we need to pull the data out of the session case 'session': - vauth::check_session(); - $key = scrub_in($_REQUEST['image_index']); + vauth::check_session(); + $key = scrub_in($_REQUEST['image_index']); $image = Album::get_image_from_source($_SESSION['form']['images'][$key]); $mime = $_SESSION['form']['images'][$key]['mime']; - $data = explode("/",$mime); - $extension = $data['1']; + $data = explode("/",$mime); + $extension = $data['1']; // Send the headers and output the image header("Expires: Sun, 19 Nov 1978 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Pragma: no-cache"); - header("Content-type: $mime"); - header("Content-Disposition: filename=" . $key . "." . $extension); - echo $image; + header("Content-type: $mime"); + header("Content-Disposition: filename=" . $key . "." . $extension); + echo $image; break; - default: + default: $album = new Album($_REQUEST['id']); // Attempt to pull art from the database $art = $album->get_art($return_raw); $mime = $art['mime']; - if (!$mime) { + if (!$mime) { header('Content-type: image/jpeg'); readfile(Config::get('prefix') . Config::get('theme_path') . '/images/blankalbum.jpg'); break; @@ -99,21 +99,21 @@ switch ($_REQUEST['type']) { // Print the album art $data = explode("/",$mime); $extension = $data['1']; - - if (empty($_REQUEST['thumb'])) { + + if (empty($_REQUEST['thumb'])) { $art_data = $art['raw']; } - else { + else { $art_data = img_resize($art,array('width'=>'275','height'=>'275'),$extension,$_REQUEST['id']); } - + // Send the headers and output the image - header("Expires: Sun, 19 Nov 1978 05:00:00 GMT"); + header("Expires: Sun, 19 Nov 1978 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Pragma: no-cache"); header("Content-type: $mime"); - header("Content-Disposition: filename=" . $album->name . "." . $extension); + header("Content-Disposition: filename=" . $album->name . "." . $extension); echo $art_data; break; |