X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c933a4222c5df6ef88064ea3522899b190d337d1..791062569dfca01a405637fa9ba142c222d3310c:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index afd06259d..21c817414 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -2,16 +2,40 @@ class DiaryEntryController < ApplicationController layout 'site', :except => :rss before_filter :authorize_web - before_filter :require_user, :only => [:new] + before_filter :require_user, :only => [:new, :edit] before_filter :check_database_availability def new - @title = 'new diary entry' + @title = 'New diary entry' + if params[:diary_entry] @diary_entry = DiaryEntry.new(params[:diary_entry]) @diary_entry.user = @user + if @diary_entry.save redirect_to :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name + else + render :action => 'edit' + end + else + render :action => 'edit' + end + end + + def edit + @title= 'Edit diary entry' + @diary_entry = DiaryEntry.find(params[:id]) + + if @user != @diary_entry.user + redirect_to :controller => 'diary_entry', :action => 'view', :id => params[:id] + elsif params[:diary_entry] + @diary_entry.title = params[:diary_entry][:title] + @diary_entry.body = params[:diary_entry][:body] + @diary_entry.latitude = params[:diary_entry][:latitude] + @diary_entry.longitude = params[:diary_entry][:longitude] + + if @diary_entry.save + redirect_to :controller => 'diary_entry', :action => 'view', :id => params[:id] end end end @@ -27,7 +51,7 @@ class DiaryEntryController < ApplicationController render :action => 'view' end end - + def list if params[:display_name] @this_user = User.find_by_display_name(params[:display_name]) @@ -63,7 +87,7 @@ class DiaryEntryController < ApplicationController render :content_type => Mime::RSS else render :nothing => true, :status => :not_found - endif + end else @entries = DiaryEntry.find(:all, :order => 'created_at DESC', :limit => 20) @title = "OpenStreetMap diary entries"