query('SELECT * FROM `builds` WHERE `owner`='.$S['user']->id.' AND `id`="'.$request['build'].'"'); if ($r->rowCount() == 0) { debug('downloadimage', 'build not found or not owned by user'); return '404'; } $build=new sql_build($r->fetch(PDO::FETCH_ASSOC)); $files=glob(COMPLETED.'/build-'.$build->id.'.*'); if (count($files)) { if (count($files) > 1) { debug('downloadimage', 'extraneous file(s) found - don\'t know which to give them'); return '404'; } $S['file']=$files[0]; if (!is_readable($S['file'])) { debug('downloadimage', 'found file, but no read perms'); return '404'; } $ext=substr($S['file'], strpos($S['file'], '.')); } else { debug('downloadimage', 'image file not found'); return '404'; } contenttype('application/octet-stream'); header('Content-Length: '.filesize($S['file'])); header('Content-Description: File Transfer'); header('Content-Transfer-Encoding: binary'); header('Content-Disposition: attachment; filename="'.(isset($build->name) && strlen($build->name)?str_replace('"', '\"', $build->name):'ingenue-'.$build->id).$ext); } function body_downloadimage() { global $S; readfile($S['file']); } ?>