Lots of stuff and things.

This commit is contained in:
Aaron Yarborough 2018-12-17 20:42:52 +00:00
parent eec5362717
commit 0ad2452196
13 changed files with 544 additions and 52 deletions

22
.vscode/launch.json vendored Normal file
View file

@ -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
}
]
}

95
ContentSubmitter.php Normal file
View file

@ -0,0 +1,95 @@
<?php
class ContentSubmitter
{
public static function submit(ContentSubmission $submission)
{
if (!isset($submission)) {
throw new Exception("submission isn't set");
}
// Validation
if (self::is_title_valid($submission->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
{
}

12
FormHelper.php Normal file
View file

@ -0,0 +1,12 @@
<?php
class FormHelper
{
public static function post_val($key, $default = '') {
if (isset($_POST[$key])) {
return $_POST[$key];
}
return $default;
}
}

96
RegistrationManager.php Normal file
View file

@ -0,0 +1,96 @@
<?php
class RegistrationManager
{
const MIN_PASS_LENGTH = 8;
const MAX_USERNAME_LENGTH = 40;
public static function register($username, $email, $password)
{
// Sanitize
$username_safe = sanitize_text_field($username);
$email_safe = sanitize_email($email);
// Validate inputs
if (!self::is_valid_password($password))
throw new InvalidPasswordException();
if (!self::is_valid_email($email))
throw new InvalidEmailException();
if (!self::is_valid_username($username))
throw new InvalidUsernameException();
// Check for used data
if (self::is_email_taken($email_safe))
throw new LoginTakenException('Username is already taken.');
if (self::is_username_taken($username_safe))
throw new LoginTakenException('Email is already taken.');
$userdata = array(
'user_login' => $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
{
}

View file

@ -16,7 +16,12 @@ 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');
@ -29,5 +34,76 @@ add_filter('excerpt_more', function() {
return '&hellip;';
});
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';

View file

@ -10,15 +10,31 @@
</head>
<body <?php body_class(); ?>>
<?php
$curr_user = wp_get_current_user();
?>
<div class="gar-userbox">
<?php if ($curr_user->ID !== 0): ?>
<span class="gar-userbox-username"><?php echo $curr_user->user_login ?></span>
<a href="<?php echo wp_logout_url(esc_url(home_url('/'))) ?>">Logout</a>
<?php else: ?>
<a href="<?php echo wp_login_url(esc_url(home_url('/'))) ?>">Login</a>
<?php endif; ?>
</div>
<div id="search">
<div class="container">
<form action="<?php echo esc_url(home_url('/')); ?>">
<div class="row">
<div class="col-12 col-sm-8 col-md-10">
<input type="text" name="s" id="searchBox" placeholder="Type your query here..." />
<input type="text" name="s" id="searchBox" class="gar-input" placeholder="Type your query here..." />
</div>
<div class="col-12 col-sm-4 col-md-2">
<button id="searchBtn" type="submit">
<button id="searchBtn" class="gar-btn" type="submit">
<span class="fa fa-search"></span>&nbsp;Search
</button>
</div>
@ -43,6 +59,7 @@
<li><a href="<?php echo esc_url(home_url('/category/tools')) ?>">Tools</a></li>
<li><a href="<?php echo esc_url(home_url('/category/levels')) ?>">Other</a></li>
<li><a href="#" data-toggle="search"><span class="fa fa-search"></span></a></li>
<li class="gar-menu-submit"><a href="<?php echo esc_url(home_url('/submit')) ?>">Submit</a></li>
</ul>
</nav>
</div>

View file

@ -25,6 +25,11 @@
</div>
<?php endif; ?>
</div>
<?php if (get_next_posts_link()): ?>
<div class="text-center">
<span class="gar-btn gar-load-more"><?php next_posts_link('Next Page'); ?></span>
</div>
<?php endif; ?>
</div>
<?php get_footer() ?>

View file

@ -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);

0
scripts/submitCode.js Normal file
View file

View file

@ -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%;

View file

@ -1,41 +0,0 @@
<?php
/**
* Template Name: Homepage
*/
?>
<?php
$posts = new WP_Query(array(
'posts_per_page' => -1,
'post_type' => 'post'
));
?>
<?php get_header() ?>
<div class="container">
<div id="postGrid">
<?php if ($posts): while ($posts->have_posts()): $posts->the_post() ?>
<div class="gar-post-box">
<a href="<?php the_permalink() ?>">
<h3 class="gar-post-box-title"><?php the_title() ?></h3>
</a>
<div class="gar-post-box-excerpt"><?php the_excerpt() ?></div>
<?php
$creators = GarchiveHelpers::get_creators();
?>
<?php if ($creators): ?>
<div class="gar-post-box-author"><i class="fa fa-paint-brush" data-toggle="tooltip" title="Creators"></i>&nbsp;<?php echo $creators ?></div>
<?php endif; ?>
<div class="gar-post-box-category"><?php the_category(', ') ?></div>
</div>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_footer() ?>

97
template-register.php Normal file
View file

@ -0,0 +1,97 @@
<?php
/**
* Template Name: Register
*/
require_once 'FormHelper.php';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
require_once 'RegistrationManager.php';
$errors = array();
if (!isset($_POST['username']))
$errors[] = 'Your must provide a username!';
if (!isset($_POST['email']))
$errors[] = 'Your must provide an email!';
if (!isset($_POST['password']))
$errors[] = 'Your must provide a password!';
if ($_POST['password'] !== $_POST['password_repeated']) {
$errors[] = 'Your passwords do not match!';
}
if (count($errors) === 0) {
try
{
RegistrationManager::register($_POST['username'], $_POST['email'], $_POST['password']);
$success = true;
}
catch (InvalidPasswordException $ex)
{
$errors[] = 'Your password is invalid. Please ensure your password is ' . RegistrationManager::MIN_PASS_LENGTH . ' or more characters long';
}
catch (InvalidEmailException $ex)
{
$errors[] = 'Your email is invalid. Please submit a valid email address.';
}
catch (InvalidUsernameException $ex)
{
$errors[] = 'Your username is invalid. Please ensure your username is less than ' . RegistrationManager::MAX_USERNAME_LENGTH . ' characters long.';
}
catch (LoginTakenException $ex)
{
$errors[] = 'Your username or email address is already taken.';
}
}
}
get_header();
?>
<div class="container container-sm">
<h1>Register</h1>
<?php if (isset($success) && $success === true): ?>
<div class="alert alert-success">Your account has been registered!</div>
<?php endif; ?>
<?php if (isset($errors)): ?>
<?php foreach ($errors as $error): ?>
<div class="alert alert-danger"><?php echo sanitize_text_field($error) ?></div>
<?php endforeach; ?>
<?php endif; ?>
<form action="" method="POST">
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" name="username" required maxlength="40" value="<?php echo FormHelper::post_val('username') ?>" />
<small class="form-text text-muted">Your usename will be visible to other users.</small>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" name="email" required value="<?php echo FormHelper::post_val('email') ?>" />
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" name="password" required />
</div>
<div class="form-group">
<label for="username">Password (Repeated)</label>
<input type="password" class="form-control" name="password_repeated" required />
</div>
<?php echo apply_filters('gglcptch_display_recaptcha', ''); ?>
<input type="submit" class="gar-btn" value="Submit" />
</form>
</div>
<?php get_footer(); ?>

View file

@ -0,0 +1,60 @@
<?php
/**
* Template Name: Submit Content
*/
get_header();
?>
<?php while(have_posts()): the_post() ?>
<div class="container">
<h1><?php the_title() ?></h1>
<div><?php the_content(); ?></div>
<hr/>
<form action="">
<div class="form-group">
<label for="title">Title</label>
<input name="title" type="text" class="form-control" required maxlength="30" />
<small class="form-text text-muted">Please provide a short title. It may be no longer than 30 characters.</small>
</div>
<div class="form-group">
<label for="title">Body</label>
<div class="alert alert-info">
<small>This is the main content of the submission. Please describe the content and provide any guides/sources.</small>
</div>
<textarea name="content" class="rte" required></textarea>
</div>
<div class="form-group">
<label for="title">Creators</label>
<input type="text" name="creators" class="form-control" required></textarea>
<small class="form-text text-muted">
Provide a list of the original creators in a comma-separated format. For example: <i>Emera, Astram</i>
</small>
</div>
<div class="form-group">
<label for="title">Source</label>
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text"><i class="fa fa-link"></i></div>
</div>
<input type="url" name="creators" class="form-control" id="inlineFormInputGroupUsername" />
</div>
<small class="form-text text-muted">
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.
</small>
</div>
<div class="form-group">
<button type="submit" class="gar-btn">Submit</button>
</div>
</form>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>