X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fcontrollers%2Fspeech_balloons_controller.rb;h=6744bd5c00e36b8c0b8a69f14c62f90a9a07e9e9;hb=fb67ce965f46e26de56b4fa86f4600037260c702;hp=543c4c3118ed252d1acb846c7b3f3b4f61da0669;hpb=6871c7b0c1a7a02d4fe3b8ff597f3978e4df7f89;p=pettanr%2Fpettanr.git diff --git a/app/controllers/speech_balloons_controller.rb b/app/controllers/speech_balloons_controller.rb index 543c4c31..6744bd5c 100644 --- a/app/controllers/speech_balloons_controller.rb +++ b/app/controllers/speech_balloons_controller.rb @@ -1,48 +1,140 @@ class SpeechBalloonsController < ApplicationController - layout 'test' if MagicNumber['test_layout'] - if MagicNumber['run_mode'] == 0 - before_filter :authenticate_user, :only => [] + if Manifest.manifest.magic_numbers['run_mode'] == 0 + before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy] + before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy] else - before_filter :authenticate_reader, :only => [:index, :show] - before_filter :authenticate_user, :only => [] + before_filter :authenticate_reader, :only => [ + :index, :show, :by_panel, :by_author, :count, :count_by_panel, :count_by_author + ] + before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy] + before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy] end - before_filter :authenticate_admin!, :only => [:list, :browse] + def self.model + SpeechBalloon + end + def index - @page = SpeechBalloon.page params[:page] - @page_size = SpeechBalloon.page_size params[:page_size] - @speech_balloons = SpeechBalloon.list(@page, @page_size) - - respond_to do |format| - format.html # index.html.erb - format.json { render json: @speech_balloons.to_json(SpeechBalloon.list_json_opt) } - end + filer_list + end + + def by_panel + filer_list + end + + def by_author + filer_list + end + + def show_html_format format + format.html { + @item.boosts 'post' + @speech_balloon = @item + } end def show - @speech_balloon = SpeechBalloon.show(params[:id], @author) + set_show respond_to do |format| - format.html # show.html.erb - format.json { render json: @speech_balloon.to_json(SpeechBalloon.show_json_opt) } + show_html_format format + show_prof_format format + show_json_format format end end - def list - @speech_balloons = SpeechBalloon.all - + def count + list_count + end + + def count_by_panel + list_count + end + + def count_by_author + list_count + end + + def new + form_new + end + + def edit + form_edit + end + + def create + raise Pettanr::NotWork unless @operators.author.working_panel + SpeechBalloon.fold_extend_settings params + @panel = Panel.edit(@operators.author.working_panel, @operators) + @speech_balloon = SpeechBalloon.new + @speech_balloon.attributes = params[:speech_balloon] + + @speech_balloon_template = @speech_balloon.speech_balloon_template + @speech_balloon.boost + + params[:speech_balloon][:balloon_attributes][:system_picture_id] = @speech_balloon.get_balloon.select_system_picture + + @speech_balloon.overwrite @panel.id + respond_to do |format| - format.html { render layout: 'system' } - format.json { render json: @speech_balloons } + if @speech_balloon.valid? and @speech_balloon.store(@operators, params[:speech_balloon]) + flash[:notice] = I18n.t('flash.notice.created', :model => Panel.model_name.human) + format.html { redirect_to @panel } + format.json { render json: @panel.panel_elements_as_json, status: :created, location: @panel } + else + flash[:notice] = I18n.t('flash.notice.not_created', :model => SpeechBalloon.model_name.human) + format.html { + render @speech_balloon_template.engine_name + '/speech_balloons/new' + } + format.json { render json: @speech_balloon.errors, status: :unprocessable_entity } + end end end - def browse - @speech_balloon = SpeechBalloon.find(params[:id]) - + def update + @item = SpeechBalloon.show(params[:id], @operators) + @speech_balloon = @item + @form = Locmare::Bucket.factory @item.item_name, @item, true, true, @operators + @form.fold_extend_settings params + @speech_balloon.attributes = params[:speech_balloon] + + @speech_balloon_template = @speech_balloon.speech_balloon_template + + params[:speech_balloon][:balloon_attributes][:system_picture_id] = @speech_balloon.balloon.select_system_picture + + @panel = Panel.edit(@speech_balloon.panel.id, @operators) + @speech_balloon.overwrite @panel.id + respond_to do |format| - format.html { render layout: 'system' } - format.json { render json: @speech_balloon } + if @speech_balloon.save + flash[:notice] = I18n.t('flash.notice.updated', :model => SpeechBalloon.model_name.human) + format.html { redirect_to @speech_balloon } + format.json { head :ok } + else + flash[:notice] = I18n.t('flash.notice.not_updated', :model => SpeechBalloon.model_name.human) + format.html { + render @speech_balloon.speech_balloon_template.engine_name + '/speech_balloons/edit' + } + format.json { render json: @speech_balloon.errors, status: :unprocessable_entity } + end end end + def destroy + @speech_balloon = SpeechBalloon.show(params[:id], @operators) + @panel = Panel.edit(@speech_balloon.panel.id, @operators) + + respond_to do |format| + if @speech_balloon.remove @operators.author + flash[:notice] = I18n.t('flash.notice.destroyed', :model => SpeechBalloon.model_name.human) + format.html { redirect_to @panel } + format.json { head :ok } + else + flash[:notice] = I18n.t('flash.notice.not_destroyed', :model => SpeechBalloon.model_name.human) + format.html { redirect_to @speech_balloon } + format.json { render json: @speech_balloon.errors, status: :unprocessable_entity } + end + end + end + end