Class: ArticlesController

Inherits:
ApplicationController show all
Defined in:
lib/generators/jinda/templates/app/controllers/jinda_org/articles_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#prepare_meta_tags

Instance Method Details

#createObject



20
21
22
23
24
25
26
27
28
# File 'lib/generators/jinda/templates/app/controllers/jinda_org/articles_controller.rb', line 20

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

#destroyObject



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/generators/jinda/templates/app/controllers/jinda_org/articles_controller.rb', line 49

def destroy
  #
# duplicated from jinda_controller
# Expected to use in jinda)controller
  current_ma_user = User.where(:auth_token => cookies[:auth_token]).first if cookies[:auth_token]

  if Rails.env.test? #Temp solution until fix test of current_ma_user
    current_ma_user = $xvars["current_ma_user"]
    #current_ma_user = @article.user
  end

  if current_ma_user.role.upcase.split(',').include?("A") || current_ma_user == @article.user
    @article.destroy
  end

  redirect_to :action=>'my'
end

#editObject



16
17
18
# File 'lib/generators/jinda/templates/app/controllers/jinda_org/articles_controller.rb', line 16

def edit
  @page_title       = 'Member Login'
end

#indexObject



6
7
8
# File 'lib/generators/jinda/templates/app/controllers/jinda_org/articles_controller.rb', line 6

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

#myObject



30
31
32
33
# File 'lib/generators/jinda/templates/app/controllers/jinda_org/articles_controller.rb', line 30

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

#showObject



10
11
12
13
14
# File 'lib/generators/jinda/templates/app/controllers/jinda_org/articles_controller.rb', line 10

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

#updateObject



35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/generators/jinda/templates/app/controllers/jinda_org/articles_controller.rb', line 35

def update
  # $xvars["select_article"] and $xvars["edit_article"]
# These are variables with params when called
  # 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"]["title"],
                  text: $xvars["edit_article"]["text"],
                  keywords: $xvars["edit_article"]["keywords"],
                  body: $xvars["edit_article"]["body"]
								)
end