]> git.openstreetmap.org Git - rails.git/commitdiff
Add ElementsController base class
authorAnton Khorev <tony29@yandex.ru>
Mon, 6 Jan 2025 14:42:51 +0000 (17:42 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 7 Jan 2025 10:40:25 +0000 (13:40 +0300)
app/controllers/elements_controller.rb [new file with mode: 0644]
app/controllers/nodes_controller.rb
app/controllers/relations_controller.rb
app/controllers/ways_controller.rb

diff --git a/app/controllers/elements_controller.rb b/app/controllers/elements_controller.rb
new file mode 100644 (file)
index 0000000..99c8afe
--- /dev/null
@@ -0,0 +1,12 @@
+class ElementsController < ApplicationController
+  layout :map_layout
+
+  before_action :authorize_web
+  before_action :set_locale
+  before_action -> { check_database_readable(:need_api => true) }
+  before_action :require_oauth
+
+  authorize_resource
+
+  around_action :web_timeout
+end
index a05fa8cd2455ced0d35476e6502f3e4c0557f6a5..7469b8a868f74b2ff8e1219f122b78944bc766b6 100644 (file)
@@ -1,15 +1,4 @@
-class NodesController < ApplicationController
-  layout :map_layout
-
-  before_action :authorize_web
-  before_action :set_locale
-  before_action -> { check_database_readable(:need_api => true) }
-  before_action :require_oauth
-
-  authorize_resource
-
-  around_action :web_timeout
-
+class NodesController < ElementsController
   def show
     @type = "node"
     @feature = Node.preload(:node_tags, :containing_relation_members, :changeset => [:changeset_tags, :user], :ways => :way_tags).find(params[:id])
   def show
     @type = "node"
     @feature = Node.preload(:node_tags, :containing_relation_members, :changeset => [:changeset_tags, :user], :ways => :way_tags).find(params[:id])
index 8aeefd6cccec983d13ab103d2f5e76de5bf3bc8b..06ee785f09a33eb318ffb90dd7e968a427164da2 100644 (file)
@@ -1,15 +1,4 @@
-class RelationsController < ApplicationController
-  layout :map_layout
-
-  before_action :authorize_web
-  before_action :set_locale
-  before_action -> { check_database_readable(:need_api => true) }
-  before_action :require_oauth
-
-  authorize_resource
-
-  around_action :web_timeout
-
+class RelationsController < ElementsController
   def show
     @type = "relation"
     @feature = Relation.preload(:relation_tags, :containing_relation_members, :changeset => [:changeset_tags, :user], :relation_members => :member).find(params[:id])
   def show
     @type = "relation"
     @feature = Relation.preload(:relation_tags, :containing_relation_members, :changeset => [:changeset_tags, :user], :relation_members => :member).find(params[:id])
index d4abe2db7fca9e289d4e5ef163241fa26d120a50..bf45cca631d313f55c0dafc96e6463be100a93ed 100644 (file)
@@ -1,15 +1,4 @@
-class WaysController < ApplicationController
-  layout :map_layout
-
-  before_action :authorize_web
-  before_action :set_locale
-  before_action -> { check_database_readable(:need_api => true) }
-  before_action :require_oauth
-
-  authorize_resource
-
-  around_action :web_timeout
-
+class WaysController < ElementsController
   def show
     @type = "way"
     @feature = Way.preload(:way_tags, :containing_relation_members, :changeset => [:changeset_tags, :user], :nodes => [:node_tags, { :ways => :way_tags }]).find(params[:id])
   def show
     @type = "way"
     @feature = Way.preload(:way_tags, :containing_relation_members, :changeset => [:changeset_tags, :user], :nodes => [:node_tags, { :ways => :way_tags }]).find(params[:id])