summaryrefslogtreecommitdiff
path: root/app/controllers/info_controller.rb
blob: 7834d2a9a2a82e31d189912d7927f8c7e368362f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
class InfoController < ApplicationController

  before_filter :set_info, except: [:index, :new, :create]
  before_filter :auth, except: [:index, :show]

  def index
    @info = Info.order(:title).page(params[:page])
  end

  def show
    @prev = Info.where(["title < ?", @info.title]).order(:title).last  || Info.order(:title).last
    @next = Info.where(["title > ?", @info.title]).order(:title).first || Info.order(:title).first
  end

  def new
    @info = Info.new
  end

  def edit
  end

  def create
    @info = Info.new(info_params)
    if @info.save
      redirect_to @info, notice: 'The info page has been created!'
    else
      flash[:alert] = "An error occured while creating the info page."
      render action: "new"
    end
  end

  def update
    @info.attributes = info_params()
    if @info.save
      redirect_to @info, notice: 'The info page has been updated!'
    else
      flash[:alert] = "An error occured while updating the info page."
      render action: "edit"
    end
  end

  def destroy
    if @info.destroy
      flash[:notice] = "The info page has been deleted!"
    else
      flash[:alert] = "An error occured while deleting the info page."
    end
    redirect_to info_index_path
  end


  private

  def info_params(add = [])
    a = [:title, :content]
    a += add
    params.require(:info).permit(a)
  end

  def set_info
    @info = Info.find(params[:id])
  end

  def auth
    unless mod?
      flash[:alert] = "You are not allowed to edit info pages!"
      redirect_to @info ? @info : info_index_path
    end
  end
end