".$temp_name; $extension = get_extension( $_FILES['picture']['name'] ); if (!in_array($extension, $conf['picture_ext'])) { array_push( $result['error'], l10n('upload_advise_filetype') ); return $result; } if ( !isset( $_FILES['picture'] ) ) { // do we even have a file? array_push( $result['error'], "You did not upload anything!" ); } else if ( $_FILES['picture']['size'] > $my_max_file_size * 1024 ) { array_push( $result['error'], l10n('upload_advise_filesize').$my_max_file_size.' KB' ); } else { // check if we are allowed to upload this file_type // upload de la photo sous un nom temporaire if ( !move_uploaded_file( $_FILES['picture']['tmp_name'], $temp_name ) ) { array_push( $result['error'], l10n('upload_cannot_upload') ); } else { $size = getimagesize( $temp_name ); if ( isset( $image_max_width ) and $image_max_width != "" and $size[0] > $image_max_width ) { array_push( $result['error'], l10n('upload_advise_width').$image_max_width.' px' ); } if ( isset( $image_max_height ) and $image_max_height != "" and $size[1] > $image_max_height ) { array_push( $result['error'], l10n('upload_advise_height').$image_max_height.' px' ); } // $size[2] == 1 means GIF // $size[2] == 2 means JPG // $size[2] == 3 means PNG switch ( $size[2] ) { case 1 : $result['type'] = 'gif'; break; case 2 : $result['type'] = 'jpg'; break; case 3 : $result['type'] = 'png'; break; default : array_push( $result['error'], l10n('upload_advise_filetype') ); } } } if ( sizeof( $result['error'] ) > 0 ) { // destruction de l'image avec le nom temporaire @unlink( $temp_name ); } else { @chmod( $temp_name, 0644); } //------------------------------------------------------------ log informations pwg_log(); return $result; } //-------------------------------------------------- access authorization check if (isset($_GET['cat']) and is_numeric($_GET['cat'])) { $page['category'] = $_GET['cat']; } if (isset($page['category'])) { check_restrictions( $page['category'] ); $category = get_cat_info( $page['category'] ); $category['cat_dir'] = get_complete_dir( $page['category'] ); if (url_is_remote($category['cat_dir']) or !$category['uploadable']) { die('Fatal: you take a wrong way, bye bye'); } } else { // $page['category'] may be set by a futur plugin but without it die('Fatal: you take a wrong way, bye bye'); } $error = array(); $page['upload_successful'] = false; if ( isset( $_GET['waiting_id'] ) ) { $page['waiting_id'] = $_GET['waiting_id']; } //-------------------------------------------------------------- picture upload // verfying fields if ( isset( $_POST['submit'] ) and !isset( $_GET['waiting_id'] ) ) { $path = $category['cat_dir'].$_FILES['picture']['name']; if ( @is_file( $path ) ) { array_push( $error, l10n('upload_file_exists') ); } // test de la présence des champs obligatoires if ( empty($_FILES['picture']['name'])) { array_push( $error, l10n('upload_filenotfound') ); } if ( !ereg( "([_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)+)", $_POST['mail_address'] ) ) { array_push( $error, l10n('reg_err_mail_address') ); } if ( empty($_POST['username']) ) { array_push( $error, l10n('upload_err_username') ); } $date_creation = ''; if ( !empty($_POST['date_creation']) ) { list( $day,$month,$year ) = explode( '/', $_POST['date_creation'] ); // int checkdate ( int month, int day, int year) if (checkdate($month, $day, $year)) { $date_creation = $year.'-'.$month.'-'.$day; } else { array_push( $error, l10n('err_date') ); } } // creation of the "infos" field : // $xml_infos = 'set_filenames(array('upload'=>'upload.tpl')); $u_form = PHPWG_ROOT_PATH.'upload.php?cat='.$page['category']; if ( isset( $page['waiting_id'] ) ) { $u_form.= '&waiting_id='.$page['waiting_id']; } if ( isset( $page['waiting_id'] ) ) { $advise_title=l10n('upload_advise_thumbnail').$_FILES['picture']['name']; } else { $advise_title = l10n('upload_advise'); $advise_title.= get_cat_display_name($category['upper_names']); } $template->assign_vars( array( 'U_HOME' => make_index_url(), 'ADVISE_TITLE' => $advise_title, 'NAME' => $username, 'EMAIL' => $mail_address, 'NAME_IMG' => $name, 'AUTHOR_IMG' => $author, 'DATE_IMG' => $date_creation, 'COMMENT_IMG' => $comment, 'F_ACTION' => $u_form, 'U_RETURN' => make_index_url(array('category' => $category)), ) ); if ( !$page['upload_successful'] ) { $template->assign_block_vars('upload_not_successful',array()); //-------------------------------------------------------------- errors display if ( sizeof( $error ) != 0 ) { $template->assign_block_vars('upload_not_successful.errors',array()); for ( $i = 0; $i < sizeof( $error ); $i++ ) { $template->assign_block_vars('upload_not_successful.errors.error',array('ERROR'=>$error[$i])); } } //--------------------------------------------------------------------- advises if ( !empty($conf['upload_maxfilesize']) ) { $content = l10n('upload_advise_filesize'); $content.= $conf['upload_maxfilesize'].' KB'; $template->assign_block_vars('upload_not_successful.advise',array('ADVISE'=>$content)); } if ( isset( $page['waiting_id'] ) ) { if ( $conf['upload_maxwidth_thumbnail'] != '' ) { $content = l10n('upload_advise_width'); $content.= $conf['upload_maxwidth_thumbnail'].' px'; $template->assign_block_vars('upload_not_successful.advise',array('ADVISE'=>$content)); } if ( $conf['upload_maxheight_thumbnail'] != '' ) { $content = l10n('upload_advise_height'); $content.= $conf['upload_maxheight_thumbnail'].' px'; $template->assign_block_vars('upload_not_successful.advise',array('ADVISE'=>$content)); } } else { if ( $conf['upload_maxwidth'] != '' ) { $content = l10n('upload_advise_width'); $content.= $conf['upload_maxwidth'].' px'; $template->assign_block_vars('upload_not_successful.advise',array('ADVISE'=>$content)); } if ( $conf['upload_maxheight'] != '' ) { $content = l10n('upload_advise_height'); $content.= $conf['upload_maxheight'].' px'; $template->assign_block_vars('upload_not_successful.advise',array('ADVISE'=>$content)); } } $template->assign_block_vars('upload_not_successful.advise',array('ADVISE'=>l10n('upload_advise_filetype'))); //----------------------------------------- optionnal username and mail address if ( !isset( $page['waiting_id'] ) ) { $template->assign_block_vars('upload_not_successful.fields',array()); $template->assign_block_vars('note',array()); } } else { $template->assign_block_vars('upload_successful',array()); } //----------------------------------------------------------- html code display $template->parse('upload'); include(PHPWG_ROOT_PATH.'include/page_tail.php'); ?>