]> git.openstreetmap.org Git - rails.git/commitdiff
Allow third party images in user content
authorTom Hughes <tom@compton.nu>
Thu, 23 Nov 2017 22:39:05 +0000 (22:39 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 23 Nov 2017 22:39:05 +0000 (22:39 +0000)
app/controllers/application_controller.rb
app/controllers/diary_entry_controller.rb
app/controllers/message_controller.rb
app/controllers/user_controller.rb

index 5905b3759276051093a30a1923cb5bb50d032286..bcbb6706a00fc6e87f776bfac52414513ac879cb 100644 (file)
@@ -427,6 +427,10 @@ class ApplicationController < ActionController::Base
     request.xhr? ? "xhr" : "map"
   end
 
+  def allow_thirdparty_images
+    append_content_security_policy_directives(:img_src => %w[*])
+  end
+
   def preferred_editor
     editor = if params[:editor]
                params[:editor]
index b3518872c5aa067cbd2fdab073862affcd54979e..9e0fd4991bd4f62b6ec60e295efc44cf69aa6b49 100644 (file)
@@ -8,6 +8,7 @@ class DiaryEntryController < ApplicationController
   before_action :check_database_readable
   before_action :check_database_writable, :only => [:new, :edit, :comment, :hide, :hidecomment, :subscribe, :unsubscribe]
   before_action :require_administrator, :only => [:hide, :hidecomment]
+  before_action :allow_thirdparty_images, :only => [:new, :edit, :list, :view, :comments]
 
   def new
     @title = t "diary_entry.new.title"
index 29b74c8480fb97799450d8b26c17ea6f0775f738..3952b67ca47e1ae40a0b15ff593054e8f146c73e 100644 (file)
@@ -7,6 +7,7 @@ class MessageController < ApplicationController
   before_action :lookup_this_user, :only => [:new]
   before_action :check_database_readable
   before_action :check_database_writable, :only => [:new, :reply, :mark]
+  before_action :allow_thirdparty_images, :only => [:new, :read]
 
   # Allow the user to write a new message to another user. This action also
   # deals with the sending of that message to the other user when the user
index e25d3c8b6c5cf6fc2fd14ab4ca594d07a708f78e..b3a1ddda8fbf231ea987cc8a6bd27ef38fc00049 100644 (file)
@@ -18,6 +18,7 @@ class UserController < ApplicationController
   around_action :api_call_handle_error, :only => [:api_read, :api_details, :api_gpx_files]
   before_action :lookup_user_by_id, :only => [:api_read]
   before_action :lookup_user_by_name, :only => [:set_status, :delete]
+  before_action :allow_thirdparty_images, :only => [:view, :account]
 
   def terms
     @legale = params[:legale] || OSM.ip_to_country(request.remote_ip) || DEFAULT_LEGALE