OSDN Git Service

t#31538:fix default value
[pettanr/pettanr.git] / app / controllers / ground_colors_controller.rb
1 class GroundColorsController < ApplicationController
2   layout 'test' if MagicNumber['test_layout']
3   if MagicNumber['run_mode'] == 0
4     before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy]
5     before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy]
6   else
7     before_filter :authenticate_reader, :only => [:index, :show]
8     before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy]
9     before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy]
10   end
11
12   def index
13     @page = GroundColor.page params[:page]
14     @page_size = GroundColor.page_size params[:page_size]
15     @ground_colors = GroundColor.list(@page, @page_size)
16
17     respond_to do |format|
18       format.html {
19         @paginate = GroundColor.list_paginate(@page, @page_size)
20       }
21       format.json { render :json => @ground_colors.to_json(GroundColor.list_json_opt) }
22     end
23   end
24   
25   def show
26     @ground_color = GroundColor.show(params[:id], [@user, @admin])
27     respond_to do |format|
28       format.html # show.html.erb
29       format.json { render json: @ground_color.to_json(GroundColor.show_json_opt) }
30     end
31   end
32   
33   def new
34     @panel = Panel.edit(@author.working_panel, @author)
35     @ground_color = GroundColor.new :panel_id => @panel.id, :code => params[:code].to_i
36     @ground_color.supply_default
37
38     respond_to do |format|
39       format.html
40       format.json { render :json => @ground_color.to_json(GroundColor.show_json_opt) }
41     end
42   end
43
44   def edit
45     @ground_color = GroundColor.show(params[:id], @author)
46     @panel = Panel.edit(@ground_color.panel.id, @author)
47     
48     respond_to do |format|
49       format.html
50     end
51   end
52
53   def create
54     @panel = Panel.edit(@author.working_panel, @author)
55     
56     @ground_color = GroundColor.new 
57     @ground_color.attributes = params[:ground_color]
58     @ground_color.overwrite @panel.id
59     
60     respond_to do |format|
61       if @ground_color.valid?
62         if @ground_color.store @author
63           flash[:notice] = I18n.t('flash.notice.created', :model => Panel.model_name.human)
64           format.html { redirect_to @panel }
65           format.json { render json: @panel.panel_elements_as_json, status: :created, location: @panel }
66         else
67           flash[:notice] = I18n.t('flash.notice.not_created', :model => GroundColor.model_name.human)
68           format.html { render action: "new" }
69           format.json { render json: @ground_color.errors, status: :unprocessable_entity }
70         end
71       else
72         flash[:notice] = I18n.t('flash.notice.not_created', :model => GroundColor.model_name.human)
73         format.html { render action: "new" }
74         format.json { render json: @ground_color.errors, status: :unprocessable_entity }
75       end
76     end
77   end
78
79   def update
80     @ground_color = GroundColor.show(params[:id], @author)
81     @ground_color.attributes = params[:ground_color]
82     @panel = Panel.edit(@ground_color.panel.id, @author)
83     @ground_color.overwrite @panel.id
84     
85     respond_to do |format|
86       if @ground_color.store @author
87         flash[:notice] = I18n.t('flash.notice.updated', :model => GroundColor.model_name.human)
88         format.html { redirect_to @ground_color }
89         format.json { head :ok }
90       else
91         flash[:notice] = I18n.t('flash.notice.not_updated', :model => GroundColor.model_name.human)
92         format.html { render action: "edit" }
93         format.json { render json: @ground_color.errors, status: :unprocessable_entity }
94       end
95     end
96   end
97
98   def destroy
99     @ground_color = GroundColor.show(params[:id], @author)
100     @panel = Panel.edit(@ground_color.panel.id, @author)
101     
102     respond_to do |format|
103       if @ground_color.remove @author
104         flash[:notice] = I18n.t('flash.notice.destroyed', :model => GroundColor.model_name.human)
105         format.html { redirect_to @panel }
106         format.json { head :ok }
107       else
108         flash[:notice] = I18n.t('flash.notice.not_destroyed', :model => GroundColor.model_name.human)
109         format.html { redirect_to @ground_color }
110         format.json { render json: @ground_color.errors, status: :unprocessable_entity }
111       end
112     end
113   end
114   
115 end