Sha256: 3e7c73f289888b4a53f1d261ff2d6405b672557425142e7ff0454ce34be8b870

Contents?: true

Size: 1.67 KB

Versions: 15

Compression:

Stored size: 1.67 KB

Contents

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

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

		# Filters & Security
		layout 'layouts/phcpress/newspost/news_layout'
		before_action :authenticate_user!
		before_action :current_user
		before_action :set_news_post, only: [:edit, :update, :destroy]

		# News Post Index (/news/posts)
		def index
			@news_posts = News::Post.all
		end

		# Single News Post (/news/posts/1)
		#def show
		#end

		# Create a New News Post (/news/posts/new)
		def new
			@news_post = News::Post.new
		end

		# Edit News Post /news/posts/1/edit
		def edit
		end

		# Create News Post /news/posts/new
		def create
			@news_post = News::Post.new(news_post_params)
			@news_post.user_id = current_user
			if @news_post.save  
				redirect_to news_posts_path, notice: 'News post was successfully created.'
				else
					render 'new'
			end
		end

		# PATCH/PUT
		def update
			if @news_post.update(news_post_params)
				redirect_to news_posts_path, notice: 'News post was successfully updated.'
			else
				render :edit
			end
		end

		# DELETE
		def destroy
			@news_post.destroy
			redirect_to news_posts_path, notice: 'News post was successfully destroyed.'
		end

		private

		# Common Callbacks
		def set_news_post
			@news_post = News::Post.find(params[:id])
		end

		# Whitelist on what can be posted
		def news_post_params
			params.require(:news_post).permit(:newspsttitle, :newspsttext, :newspstexcerpts, :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

15 entries across 8 versions & 1 rubygems

Version Path
phcpress-3.7.0 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.6.1 app/controllers/phcpress/news/posts_controller.rb
phcpress-3.6.1 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.6.0 app/controllers/phcpress/news/posts_controller.rb
phcpress-3.6.0 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.5.6 app/controllers/phcpress/news/posts_controller.rb
phcpress-3.5.6 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.5.5 app/controllers/phcpress/news/posts_controller.rb
phcpress-3.5.5 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.5.0 app/controllers/phcpress/news/posts_controller.rb
phcpress-3.5.0 app/controllers/phcpress/blog/posts_controller.rb
phcpress-3.0.1 app/controllers/phcpress/news/posts_controller.rb
phcpress-3.0.1 app/controllers/phcpress/blog/posts_controller.rb
phcpress-2.9.5 app/controllers/phcpress/blog/posts_controller.rb
phcpress-2.9.5 app/controllers/phcpress/news/posts_controller.rb