Sha256: cb2944c3a24f5a1d5f16a2e3a32303680285487f5fbfbd659f1d0c0d6036fc7c

Contents?: true

Size: 1.67 KB

Versions: 4

Compression:

Stored size: 1.67 KB

Contents

# Load General Controller for Engine
require_dependency "phcpress/application_controller"

# Code for Blog Posting
module Phcpress
	class Blog::PostsController < ApplicationController

		# Filters & Security
		layout 'layouts/phcpress/blogpost/blog_layout'
		before_action :authenticate_user!
		before_action :current_user
		before_action :set_blog_post, only: [:edit, :update, :destroy]

		# Blog Post Index (/blog/posts)
		def index
			@blog_posts = Blog::Post.all
		end

		# Single Blog Post (/blog/posts/1)
		#def show
		#end

		# Create a New Blog Post (/blog/posts/new)
		def new
			@blog_post = Blog::Post.new
		end

		# Edit Blog Post (/blog/posts/1/edit)
		def edit
		end

		# Create News Post /news/posts/new
		def create
			@blog_post = Blog::Post.new(blog_post_params)
			@blog_post.user_id = current_user.id
			if @blog_post.save  
				redirect_to blog_posts_path, notice: 'Blog post was successfully created.'
				else
					render 'new'
			end
		end

		# PATCH/PUT
		def update
			if @blog_post.update(blog_post_params)
				redirect_to blog_posts_path, notice: 'Blog post was successfully updated.'
			else
				render :edit
			end
		end

		# DELETE
		def destroy
			@blog_post.destroy
			redirect_to blog_posts_path, notice: 'Blog post was successfully destroyed.'
		end

		private

		# Common Callbacks
		def set_blog_post
			@blog_post = Blog::Post.find(params[:id])
		end

		# Whitelist on what can be posted
		def blog_post_params
			params.require(:blog_post).permit(:blogpsttitle, :blogpsttext, :blogpstexcerpts, :pststatus, :pstimage, :user_id)
		end
	
		# Current User
		def current_user
			return unless session[:user_id]
			@current_user ||= User.find(session[:user_id])
		end

	end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcpress-3.8.1 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.8.0 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.7.9 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.7.8 app/controllers/phcpress/blog/posts_controller.rb