diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..612eaac --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Listen for XDebug", + "type": "php", + "request": "launch", + "port": 9000 + }, + { + "name": "Launch currently open script", + "type": "php", + "request": "launch", + "program": "${file}", + "cwd": "${fileDirname}", + "port": 9000 + } + ] +} \ No newline at end of file diff --git a/ContentSubmitter.php b/ContentSubmitter.php new file mode 100644 index 0000000..35cd44f --- /dev/null +++ b/ContentSubmitter.php @@ -0,0 +1,95 @@ +title)) + throw new InvalidSubmissionTitleException(); + if (self::is_content_valid($submission->content)) + throw new InvalidSubmissionContentException(); + if (self::is_creators_valid($submission->content)) + throw new InvalidSubmissionCreatorsException(); + if (self::is_title_in_use($submission->title)) + throw new SubmissionTitleExistsException(); + + // Create post object + $submission_post = array( + 'post_title' => $submission->title, + 'post_content' => $submission->content, + 'post_status' => 'publish', + 'post_author' => get_current_user_id() + ); + + $post_id = wp_insert_post($submission_post); + + update_post_meta($post_id, 'garchive_metabox_creators', $submission->creators); + update_post_meta($post_id, 'garchive_metabox_source', $submission->source); + + return $post_id; + } + + public static function is_title_in_use($title) + { + return post_exists($title); + } + + public static function is_content_valid($content) + { + if (empty($content)) + return false; + + return true; + } + + public static function is_creators_valid($creators) + { + if (empty($creators)) + return false; + + return true; + } + + public static function is_title_valid($title) + { + if (empty($title)) + return false; + return false; + } +} + +class ContentSubmission +{ + public $title; + public $content; + public $creators; + public $source; + + public function __construct($title, $content, $creators, $source) + { + $this->title = trim(wp_strip_all_tags($title)); + $this->content = trim(esc_html($content)); + $this->creators = trim(sanitize_text_field($creators)); + $this->source = trim(esc_url($source)); + } +} + +class InvalidSubmissionTitleException extends Exception +{ +} +class InvalidSubmissionContentException extends Exception +{ +} +class InvalidSubmissionCreatorsException extends Exception +{ +} + +class SubmissionTitleExistsException extends Exception +{ + +} \ No newline at end of file diff --git a/FormHelper.php b/FormHelper.php new file mode 100644 index 0000000..6740b2a --- /dev/null +++ b/FormHelper.php @@ -0,0 +1,12 @@ + $username_safe, + 'user_pass' => $password, + 'user_email' => $email_safe, + 'role' => 'subscriber' + ); + + $user_id = wp_insert_user($userdata); + + return $user_id; + } + + public static function is_username_taken($username) + { + if (username_exists($username)) + return true; + + return false; + } + + public static function is_email_taken($email) + { + if (email_exists($email)) + return true; + + return false; + } + + public static function is_valid_password($password) + { + if (strlen($password) < self::MIN_PASS_LENGTH) + return false; + + return true; + } + + public static function is_valid_email($email) + { + if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { + return false; + } + + return true; + } + + public static function is_valid_username($username) + { + if (strlen($username) > self::MAX_USERNAME_LENGTH) + return false; + + return true; + } +} + +class LoginTakenException extends Exception +{ +} + +class InvalidPasswordException extends Exception +{ +} + +class InvalidEmailException extends Exception +{ +} + +class InvalidUsernameException extends Exception +{ +} \ No newline at end of file diff --git a/functions.php b/functions.php index b4d43d6..6e7b1dc 100644 --- a/functions.php +++ b/functions.php @@ -16,18 +16,94 @@ add_action('wp_enqueue_scripts', function () { wp_enqueue_script('garchive-masonry', 'https://cdnjs.cloudflare.com/ajax/libs/masonry/4.2.2/masonry.pkgd.min.js', array(), null); wp_enqueue_style('garchive-style', get_stylesheet_uri(), array(), filemtime(get_template_directory() . '/style.css')); - wp_enqueue_script('garchive-main', get_template_directory_uri() . '/scripts/main.js', array(), 3); + wp_enqueue_script('garchive-main', get_template_directory_uri() . '/scripts/main.js', array(), 4); + wp_enqueue_script('recaptcha', 'https://www.google.com/recaptcha/api.js?render=6LffjYIUAAAAAFVO0IpvQWLIUgOpEudcXg8IZrgf', array(), null); + + if (is_page_template('template-submit-content.php')) { + wp_enqueue_script('tinymce', 'https://cdnjs.cloudflare.com/ajax/libs/tinymce/4.9.2/tinymce.min.js', array(), null); + } }); add_filter('show_admin_bar', '__return_false'); -add_filter('excerpt_length', function() { +add_filter('excerpt_length', function () { return 40; }); -add_filter('excerpt_more', function() { +add_filter('excerpt_more', function () { return '…'; }); +add_action('admin_init', function () { + if (current_user_can('subscriber') && is_admin()) { + wp_redirect(home_url()); + exit; + } +}); + +add_action('template_redirect', function () { + if (!wp_get_current_user()) { + if (is_page_template('template-submit-content.php')) { + wp_redirect(esc_url(home_url('/register')), 302); + } + } +}); + +// Register Custom Post Type + +add_action('init', function () { + $labels = array( + 'name' => _x('Content Submissions', 'Post Type General Name', 'garchive'), + 'singular_name' => _x('Content Submission', 'Post Type Singular Name', 'garchive'), + 'menu_name' => __('Submissions', 'garchive'), + 'name_admin_bar' => __('Content Submission', 'garchive'), + 'archives' => __('Item Archives', 'garchive'), + 'attributes' => __('Item Attributes', 'garchive'), + 'parent_item_colon' => __('Parent Item:', 'garchive'), + 'all_items' => __('All Items', 'garchive'), + 'add_new_item' => __('Add New Item', 'garchive'), + 'add_new' => __('Add New', 'garchive'), + 'new_item' => __('New Item', 'garchive'), + 'edit_item' => __('Edit Item', 'garchive'), + 'update_item' => __('Update Item', 'garchive'), + 'view_item' => __('View Item', 'garchive'), + 'view_items' => __('View Items', 'garchive'), + 'search_items' => __('Search Item', 'garchive'), + 'not_found' => __('Not found', 'garchive'), + 'not_found_in_trash' => __('Not found in Trash', 'garchive'), + 'featured_image' => __('Featured Image', 'garchive'), + 'set_featured_image' => __('Set featured image', 'garchive'), + 'remove_featured_image' => __('Remove featured image', 'garchive'), + 'use_featured_image' => __('Use as featured image', 'garchive'), + 'insert_into_item' => __('Insert into item', 'garchive'), + 'uploaded_to_this_item' => __('Uploaded to this item', 'garchive'), + 'items_list' => __('Items list', 'garchive'), + 'items_list_navigation' => __('Items list navigation', 'garchive'), + 'filter_items_list' => __('Filter items list', 'garchive'), + ); + + $args = array( + 'label' => __('Content Submission', 'garchive'), + 'description' => __('A content submission.', 'garchive'), + 'labels' => $labels, + 'supports' => array('title', 'editor'), + 'taxonomies' => array('category', 'post_tag'), + 'hierarchical' => false, + 'public' => true, + 'show_ui' => true, + 'show_in_menu' => true, + 'menu_position' => 5, + 'show_in_admin_bar' => false, + 'show_in_nav_menus' => false, + 'can_export' => true, + 'has_archive' => false, + 'exclude_from_search' => true, + 'publicly_queryable' => true, + 'capability_type' => 'page', + ); + + register_post_type('content_submission', $args); +}, 0); + require_once 'helpers.php'; include 'metabox.php'; \ No newline at end of file diff --git a/header.php b/header.php index 021e857..0611e05 100644 --- a/header.php +++ b/header.php @@ -10,15 +10,31 @@
> + + + + + + +