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 @@ > + + + + +
+ ID !== 0): ?> + user_login ?> + Logout + + Login + +
+ + + +
+ +
+ \ No newline at end of file diff --git a/scripts/main.js b/scripts/main.js index 55a0ea9..6c4f9c9 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -10,6 +10,7 @@ initPostGrid(postGrid, '.gar-post-box'); initSearch('a[data-toggle=search]', search, searchbox); + initTinyMCE('.rte'); }); function initSearch(toggleSelector, search, searchbox) { @@ -34,4 +35,13 @@ gutter: 20 }); } + + function initTinyMCE(editorSelector) { + if (typeof tinymce === 'undefined') + return; + + tinymce.init({ + selector: editorSelector + }); + } })(jQuery); \ No newline at end of file diff --git a/scripts/submitCode.js b/scripts/submitCode.js new file mode 100644 index 0000000..e69de29 diff --git a/style.css b/style.css index b3e712b..33f38e4 100644 --- a/style.css +++ b/style.css @@ -147,9 +147,12 @@ pre { } #searchBox { - width: 100%; height: 100%; box-sizing: border-box; +} + +.gar-input { + width: 100%; border: none; border-bottom: 1px solid #111; background-color: #fff; @@ -158,19 +161,59 @@ pre { #searchBtn { width: 100%; height: 100%; - font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: bold; - border: 0; - padding: 8px; - color: #fff; - background-color: #111; } #comment { max-width: 100%; } +.gar-menu-submit a { + color: rgb(235, 146, 0); +} + +.gar-menu-submit a:hover { + color: rgb(255, 186, 100); +} + +.gar-btn { + font-family: 'Montserrat', sans-serif; + font-size: 15px; + border: 0; + padding: 8px 15px; + color: #fff; + background-color: #111; +} + +.container-sm { + max-width: 800px; +} + +.gar-userbox { + position: absolute; + right: 10%; + padding: 5px 15px; + background-color: #111; + top: 0; + font-size: 14px; +} + +.gar-userbox-username { + color: #fff; + margin-right: 10px; +} + +.gar-userbox a { + color: #fff; +} + +.gar-load-more a { + font-weight: 400; + color: #fff; +} + + @media only screen and (max-width: 767px) { #postGrid .gar-post-box { width: 100%; diff --git a/template-homepage.php b/template-homepage.php deleted file mode 100644 index c8acea4..0000000 --- a/template-homepage.php +++ /dev/null @@ -1,41 +0,0 @@ - - - -1, - 'post_type' => 'post' - )); - -?> - - - -
-
- have_posts()): $posts->the_post() ?> -
- -

-
-
- - - -
 
- - -
-
- -
-
- - - \ No newline at end of file diff --git a/template-register.php b/template-register.php new file mode 100644 index 0000000..5ed07e5 --- /dev/null +++ b/template-register.php @@ -0,0 +1,97 @@ + + +
+

Register

+ +
Your account has been registered!
+ + + + +
+ + + + +
+ + + Your usename will be visible to other users. +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + + + + +
+ + \ No newline at end of file diff --git a/template-submit-content.php b/template-submit-content.php new file mode 100644 index 0000000..ac09bac --- /dev/null +++ b/template-submit-content.php @@ -0,0 +1,60 @@ + + + + +
+

+
+
+
+
+ + + Please provide a short title. It may be no longer than 30 characters. +
+ +
+ +
+ This is the main content of the submission. Please describe the content and provide any guides/sources. +
+ +
+ +
+ + + + Provide a list of the original creators in a comma-separated format. For example: Emera, Astram + +
+ +
+ +
+
+
+
+ +
+ + If applicable, please provide a link to the original source. For example, if your content was originally posted on a forum, you would enter the thread URL here. + +
+ +
+ +
+
+
+ + + \ No newline at end of file