function xprofile_validate_signup_fields($result)
{
    global $bp_xprofile_callback, $avatar_error, $avatar_error_msg, $has_errors;
    global $canvas, $original;
    global $current_site, $active_signup;
    global $wp_upload_error;
    if ($_POST['stage'] != 'validate-user-signup') {
        return $result;
    }
    // form has been submitted, let's validate the form
    // using the built in Wordpress functions and our own.
    extract($result);
    $counter = 0;
    $has_errors = false;
    $prev_field_id = -1;
    // Validate all sign up fields
    $fields = BP_XProfile_Field::get_signup_fields();
    if ($fields) {
        foreach ($fields as $field) {
            $value = $_POST['field_' . $field->id];
            // Need to check if the previous field had
            // the same ID, as to not validate individual
            // day/month/year dropdowns individually.
            if ($prev_field_id != $field->id) {
                $field = new BP_XProfile_Field($field->id);
                if ('datebox' == $field->type) {
                    if ($_POST['field_' . $field->id . '_day'] != "" && $_POST['field_' . $field->id . '_month'] != "" && $_POST['field_' . $field->id . '_year'] != "") {
                        $value = strtotime($_POST['field_' . $field->id . '_day'] . " " . $_POST['field_' . $field->id . '_month'] . " " . $_POST['field_' . $field->id . '_year']);
                    }
                }
                if (is_array($value)) {
                    $value = serialize($value);
                }
                $bp_xprofile_callback[$counter] = array("field_id" => $field->id, "type" => $field->type, "value" => $value);
                if ($field->is_required && empty($value)) {
                    $bp_xprofile_callback[$counter]["error_msg"] = sprintf(__('%s cannot be left blank', 'buddypress'), $field->name);
                    $has_errors = true;
                }
                $counter++;
            }
            $prev_field_id = $field->id;
        }
    }
    // validate the avatar upload if there is one.
    $avatar_error = false;
    $checked_upload = false;
    $checked_size = false;
    $checked_type = false;
    $original = false;
    $canvas = false;
    // Set friendly error feedback.
    $uploadErrors = array(0 => __("There is no error, the file uploaded with success", 'buddypress'), 1 => __("Your image was bigger than the maximum allowed file size of: ", 'buddypress') . size_format(CORE_MAX_FILE_SIZE), 2 => __("Your image was bigger than the maximum allowed file size of: ", 'buddypress') . size_format(CORE_MAX_FILE_SIZE), 3 => __("The uploaded file was only partially uploaded", 'buddypress'), 6 => __("Missing a temporary folder", 'buddypress'));
    if (isset($_FILES['file'])) {
        if (4 !== $_FILES['file']['error']) {
            if (!($checked_upload = bp_core_check_avatar_upload($_FILES))) {
                $avatar_error = true;
                $avatar_error_msg = $uploadErrors[$_FILES['file']['error']];
            }
            if ($checked_upload && !($checked_size = bp_core_check_avatar_size($_FILES))) {
                $avatar_error = true;
                $avatar_size = size_format(CORE_MAX_FILE_SIZE);
                $avatar_error_msg = sprintf(__('The file you uploaded is too big. Please upload a file under %s', 'buddypress'), $avatar_size);
            }
            if ($checked_upload && $checked_size && !($checked_type = bp_core_check_avatar_type($_FILES))) {
                $avatar_error = true;
                $avatar_error_msg = __('Please upload only JPG, GIF or PNG photos.', 'buddypress');
            }
            // "Handle" upload into temporary location
            if ($checked_upload && $checked_size && $checked_type && !($original = bp_core_handle_avatar_upload($_FILES))) {
                $avatar_error = true;
                $avatar_error_msg = sprintf(__('Upload Failed! Error was: %s', 'buddypress'), $wp_upload_error);
            }
            if ($checked_upload && $checked_size && $checked_type && $original && !($canvas = bp_core_resize_avatar($original))) {
                $canvas = $original;
            }
        }
    }
    if (!$has_errors && !$avatar_error) {
        $public = (int) $_POST['blog_public'];
        // put the user profile meta in a session ready to store.
        for ($i = 0; $i < count($bp_xprofile_callback); $i++) {
            $meta['field_' . $bp_xprofile_callback[$i]['field_id']] .= $bp_xprofile_callback[$i]['value'];
        }
        $meta['xprofile_field_ids'] = $_POST['xprofile_ids'];
        $meta['avatar_image_resized'] = $canvas;
        $meta['avatar_image_original'] = $original;
        $_SESSION['xprofile_meta'] = $meta;
    } else {
        $errors->add('bp_xprofile_errors', '');
    }
    return array('user_name' => $user_name, 'user_email' => $user_email, 'errors' => $errors);
}
function bp_core_avatar_admin($message = null, $action, $delete_action)
{
    global $wp_upload_error;
    ?>
	
	<?php 
    if (!isset($_POST['slick_avatars_action']) && !isset($_GET['slick_avatars_action'])) {
        ?>
		
		<?php 
        if ($message) {
            ?>
			<br />
			<div id="message" class="updated fade">
				<p><?php 
            echo $message;
            ?>
</p>
			</div>
		<?php 
        }
        ?>

		<p><?php 
        _e('Your avatar will be used on your profile and throughout the site.', 'buddypress');
        ?>
</p>
		<p><?php 
        _e('Click below to select a JPG, GIF or PNG format photo from your computer and then click \'Upload Photo\' to proceed.', 'buddypress');
        ?>
</p>
		
		<?php 
        bp_core_render_avatar_upload_form($action);
        $str = bp_core_get_avatar(get_current_user_id(), 1);
        if (strlen($str)) {
            echo '<h3>' . __('This is your current avatar', 'buddypress') . '</h3>';
            echo '<span class="crop-img avatar">' . bp_core_get_avatar(get_current_user_id(), 1) . '</span>';
            echo '<span class="crop-img avatar">' . bp_core_get_avatar(get_current_user_id(), 2) . '</span>';
            echo '<a href="' . wp_nonce_url($delete_action, 'bp_delete_avatar_link') . '">' . __('Delete', 'buddypress') . '</a>';
        }
    } else {
        if (isset($_POST['slick_avatars_action']) && 'upload' == $_POST['slick_avatars_action']) {
            // Confirm that the nonce is valid
            if (!isset($_POST['nonce']) || !wp_verify_nonce($_POST['nonce'], 'slick_avatars')) {
                bp_core_ap_die('Security error.');
            }
            // Set friendly error feedback.
            $uploadErrors = array(0 => __("There is no error, the file uploaded with success", 'buddypress'), 1 => __("Your image was bigger than the maximum allowed file size of: ", 'buddypress') . size_format(CORE_MAX_FILE_SIZE), 2 => __("Your image was bigger than the maximum allowed file size of: ", 'buddypress') . size_format(CORE_MAX_FILE_SIZE), 3 => __("The uploaded file was only partially uploaded", 'buddypress'), 4 => __("No file was uploaded", 'buddypress'), 6 => __("Missing a temporary folder", 'buddypress'));
            if (!bp_core_check_avatar_upload($_FILES)) {
                bp_core_ap_die(sprintf(__('Your upload failed, please try again. Error was: %s', 'buddypress'), $uploadErrors[$_FILES['file']['error']]));
            }
            if (!bp_core_check_avatar_size($_FILES)) {
                bp_core_ap_die(sprintf(__('The file you uploaded is too big. Please upload a file under %s', 'buddypress'), size_format(CORE_MAX_FILE_SIZE)));
            }
            if (!bp_core_check_avatar_type($_FILES)) {
                bp_core_ap_die(__('Please upload only JPG, GIF or PNG photos.', 'buddypress'));
            }
            // "Handle" upload into temporary location
            if (!($original = bp_core_handle_avatar_upload($_FILES))) {
                bp_core_ap_die(sprintf(__('Upload Failed! Error was: %s', 'buddypress'), $wp_upload_error));
            }
            // Resize down to something we can display on the page or use original if its small enough already.
            if (!($canvas = bp_core_resize_avatar($original))) {
                $canvas = $original;
            }
            // Render the cropper UI
            bp_core_render_avatar_cropper($original, $canvas, $action);
        } else {
            if (isset($_POST['slick_avatars_action']) && 'crop' == $_POST['slick_avatars_action']) {
                // Crop, save, store
                // Confirm that the nonce is valid
                if (!isset($_POST['nonce']) || !wp_verify_nonce($_POST['nonce'], 'slick_avatars')) {
                    bp_core_ap_die(__('Security error.', 'buddypress'));
                }
                if (!bp_core_check_crop($_POST['orig'], $_POST['canvas'])) {
                    bp_core_ap_die(__('Error when cropping, please go back and try again', 'buddypress'));
                }
                if (!($result = bp_core_avatar_cropstore(stripslashes($_POST['orig']), $_POST['canvas'], $_POST['v1_x1'], $_POST['v1_y1'], $_POST['v1_w'], $_POST['v1_h'], $_POST['v2_x1'], $_POST['v2_y1'], $_POST['v2_w'], $_POST['v2_h']))) {
                    bp_core_ap_die(__('Error when saving avatars, please go back and try again.', 'buddypress'));
                }
                // Store details to the DB and we're done
                echo '<p>' . __('Your new avatar was successfully created!', 'buddypress') . '</p>';
                bp_core_avatar_save($result);
                echo '<span class="crop-img">' . bp_core_get_avatar(get_current_user_id(), 1) . '</span>';
                if (CORE_AVATAR_V2_W && CORE_AVATAR_V2_H) {
                    echo '<span class="crop-img">' . bp_core_get_avatar(get_current_user_id(), 2) . '</span>';
                }
            } else {
                if (isset($_GET['slick_avatars_action']) && 'delete' == $_GET['slick_avatars_action']) {
                    // Delete an avatar
                    bp_core_delete_avatar();
                    unset($_GET['slick_avatars_action']);
                    $message = __('Avatar successfully removed.', 'buddypress');
                    bp_core_avatar_admin($message);
                }
            }
        }
    }
    ?>
	<?php 
}
Example #3
0
function groups_avatar_upload($file)
{
    // validate the group avatar upload if there is one.
    $avatar_error = false;
    // Set friendly error feedback.
    $uploadErrors = array(0 => __("There is no error, the file uploaded with success", 'buddypress'), 1 => __("The uploaded file exceeds the upload_max_filesize directive in php.ini", 'buddypress'), 2 => __("The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form", 'buddypress'), 3 => __("The uploaded file was only partially uploaded", 'buddypress'), 4 => __("No file was uploaded", 'buddypress'), 6 => __("Missing a temporary folder", 'buddypress'));
    if (!bp_core_check_avatar_upload($file)) {
        $avatar_error = true;
        $avatar_error_msg = __('Your group avatar upload failed, please try again. Error was: ' . $uploadErrors[$file['file']['error']], 'buddypress');
    } else {
        if (!bp_core_check_avatar_size($file)) {
            $avatar_error = true;
            $avatar_size = size_format(1024 * CORE_MAX_FILE_SIZE);
            $avatar_error_msg = __('The file you uploaded is too big. Please upload a file under', 'buddypress') . size_format(CORE_MAX_FILE_SIZE);
        } else {
            if (!bp_core_check_avatar_type($file)) {
                $avatar_error = true;
                $avatar_error_msg = __('Please upload only JPG, GIF or PNG photos.', 'buddypress');
            } else {
                if (!($original = bp_core_handle_avatar_upload($file))) {
                    $avatar_error = true;
                    $avatar_error_msg = __('Upload Failed! Please check the permissions on the group avatar upload directory.', 'buddypress');
                }
            }
        }
    }
    if (!($canvas = bp_core_resize_avatar($original))) {
        $canvas = $original;
    }
    if ($avatar_error) {
        ?>
		<div id="message" class="error">
			<p><?php 
        echo $avatar_error_msg;
        ?>
</p>
		</div>
		<?php 
        bp_core_render_avatar_upload_form('', true);
    } else {
        bp_core_render_avatar_cropper($original, $canvas, null, null, false, $bp->loggedin_user->domain);
    }
}