Sha256: f2df79ad2efe6e8ef29865a97503b140152fa118be3dd9f28be02b00290a2a59

Contents?: true

Size: 1.93 KB

Versions: 4

Compression:

Stored size: 1.93 KB

Contents

class ArticlesController < ApplicationController
  before_action :load_article, only: [:show, :destroy]
  before_action :load_comments, only: :show

	def index
    @articles = Article.desc(:created_at).page(params[:page]).per(10)
	end

  def show 
    prepare_meta_tags(title: @article.title,
                      description: @article.text,
                      keywords: @article.keywords)
  end

  def edit
    @article = Article.find(params[:id])
    @page_title       = 'Member Login'

  end

  def create
    @article = Article.new(
                      title: $xvars["form_article"]["title"],
                      text: $xvars["form_article"]["text"],
                      keywords: $xvars["form_article"]["keywords"],
                      body: $xvars["form_article"]["body"],

                      user_id: $xvars["user_id"])
    @article.save!
  end

  def my
    @articles = Article.where(user_id: current_user).desc(:created_at).page(params[:page]).per(10)
    @page_title       = 'Member Login'
  end

  def update
    # $xvars["select_article"] and $xvars["edit_article"]
    # These are variables.
    # They contain everything that we get their forms select_article and edit_article
    article_id = $xvars["select_article"] ? $xvars["select_article"]["title"] : $xvars["p"]["article_id"]
    @article = Article.find(article_id)
    @article.update(title: $xvars["edit_article"]["article"]["title"],
                    text: $xvars["edit_article"]["article"]["text"],
                    keywords: $xvars["edit_article"]["article"]["keywords"],
                    body: $xvars["edit_article"]["article"]["body"])

  end

  def destroy
    if current_user.role.upcase.split(',').include?("A") || current_user == @article.user
      @article.destroy
    end
      redirect_to :action=>'index'
  end

  private

  def load_article
    @article = Article.find(params[:id])
  end

  def load_comments
    @comments = @article.comments.find_all
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mindapp2-0.1.1.3 lib/generators/mindapp/templates/app/controllers/articles_controller.rb
mindapp2-0.1.1.2 lib/generators/mindapp/templates/app/controllers/articles_controller.rb
mindapp2-0.1.1.1 lib/generators/mindapp/templates/app/controllers/articles_controller.rb
mindapp2-0.1.0 lib/generators/mindapp/templates/app/controllers/articles_controller.rb