OSDN Git Service

fix: any
[pettanr/pettanr.git] / config / routes.rb
index 604cd7b..3ccb1e9 100644 (file)
@@ -1,16 +1,33 @@
 Pettanr::Application.routes.draw do
-
-  devise_for :users
+  devise_for :users, controllers: {sessions: 'user_sessions', omniauth_callbacks: "omniauth_callbacks"}
   devise_for :admins
   devise_for :demand_users
   
-  Pettanr::Application.manifest.system_resources.license_groups.each do |klass, name|
-    mount Module.const_get(klass)::Engine => "/#{name}"
-  end
-  Pettanr::Application.manifest.system_resources.speech_balloon_templates.each do |klass , name|
-    mount Module.const_get(klass)::Engine => "/#{name}"
+  Manifest.manifest.system_resources.templates.each do |template_name, template|
+    if template.add_route?
+      template.template_items.each do |klass, name|
+        mount Module.const_get(klass)::Engine => "/#{name}"
+      end
+    end
   end
   
+  resources :folders do
+    new do
+      get :new
+    end
+    collection do
+      get :root
+      get :index
+      get :watch
+      get :show
+      post :create
+    end
+    member do
+      get :edit
+      put :update
+      delete :destroy
+    end
+  end
   resources :scrolls do
     new do
       get :new
@@ -18,19 +35,15 @@ Pettanr::Application.routes.draw do
     collection do
       get :index
       get :show
-      get :count
       post :create
     end
     member do
-      get :scroll_panels
-      get :panels
       get :by_author
       get :by_panel
       get :play
       get :edit
       put :update
       delete :destroy
-      get :browse
     end
   end
   resources :scroll_panels do
@@ -45,6 +58,8 @@ Pettanr::Application.routes.draw do
     member do
       get :by_panel
       get :by_scroll
+      get :by_author
+      get :play
       get :edit
       put :update
       delete :destroy
@@ -57,18 +72,35 @@ Pettanr::Application.routes.draw do
     collection do
       get :index
       get :show
-      get :count
       post :create
     end
     member do
-      get :stories
       get :by_author
+      get :by_story
       get :play
       get :edit
       put :update
       delete :destroy
     end
   end
+  resources :comic_stories do
+    new do
+      get :new
+    end
+    collection do
+      get :index
+      get :show
+      post :create
+    end
+    member do
+      get :by_comic
+      get :by_story
+      get :by_author
+      get :edit
+      put :update
+      delete :destroy
+    end
+  end
   resources :stories do
     new do
       get :new
@@ -79,8 +111,7 @@ Pettanr::Application.routes.draw do
       post :create
     end
     member do
-      get :story_sheets
-      get :sheets
+      get :by_comic
       get :by_sheet
       get :by_author
       get :play
@@ -101,6 +132,7 @@ Pettanr::Application.routes.draw do
     member do
       get :by_story
       get :by_sheet
+      get :by_author
       get :edit
       put :update
       delete :destroy
@@ -113,7 +145,6 @@ Pettanr::Application.routes.draw do
     collection do
       get :index
       get :show
-      get :count
       post :create
     end
     member do
@@ -142,6 +173,7 @@ Pettanr::Application.routes.draw do
     member do
       get :by_sheet
       get :by_panel
+      get :by_author
       get :edit
       put :update
       delete :destroy
@@ -154,22 +186,13 @@ Pettanr::Application.routes.draw do
     collection do
       get :index
       get :show
-      get :count
       post :create
     end
     member do
-      get :scroll_panels
-      get :scrolls
-      get :sheet_panels
-      get :sheets
-      get :panel_pictures
-      get :speech_balloons
-      get :ground_pictures
-      get :ground_colors
       get :by_scroll
       get :by_sheet
       get :by_author
-      get :catch
+      get :by_speech_balloon_template
       get :edit
       put :update
       delete :destroy
@@ -204,6 +227,7 @@ Pettanr::Application.routes.draw do
     member do
       get :by_panel
       get :by_author
+      get :by_speech_balloon_template
       get :edit
       put :update
       delete :destroy
@@ -215,7 +239,12 @@ Pettanr::Application.routes.draw do
       get :show
     end
     member do
-      #get :by_system_picture
+      get :by_author
+      get :by_speech_balloon
+      get :by_speech_balloon_template
+      get :by_system_picture
+      get :edit
+      put :update
     end
   end
   resources :speeches do
@@ -224,7 +253,13 @@ Pettanr::Application.routes.draw do
       get :show
     end
     member do
+      get :by_author
+      get :by_speech_balloon
+      get :by_author
+      get :by_speech_balloon_template
       get :by_writing_format
+      get :edit
+      put :update
     end
   end
   resources :ground_pictures do
@@ -277,14 +312,14 @@ Pettanr::Application.routes.draw do
   end
   resources :pictures do
     collection do
+      get :index
       get :show
       get :credit
       get :search
-      get :list
     end
     member do
+      get :by_artist
       get :credit
-      get :browse
     end
   end
   resources :resource_pictures do
@@ -293,25 +328,37 @@ Pettanr::Application.routes.draw do
       get :show
       get :new
       post :create
-      get :count
     end
     member do
+      get :by_original_picture
+      get :by_license_group
       get :by_license
-        get :by_license_group
-      get :artist
+      get :by_artist
       delete :destroy
       get :credit
     end
   end
+  resources :resource_picture_pictures do
+    collection do
+      get :index
+      get :show
+    end
+    member do
+      get :by_original_picture
+      get :by_resource_picture
+      get :by_picture
+    end
+  end
   resources :speech_balloon_templates do
     collection do
       get :index
       get :show
+      post :create
     end
     member do
-      get :speech_balloons
-      get :panels
+      get :by_panel
       get :by_system_picture
+      put :update
       delete :destroy
     end
   end
@@ -319,19 +366,25 @@ Pettanr::Application.routes.draw do
     collection do
       get :index
       get :show
+      post :create
     end
     member do
       get :speeches
       get :by_system_picture
+      get :speeches_count
+      put :update
+      delete :destroy
     end
   end
   resources :license_groups do
     collection do
       get :index
       get :show
+      post :create
     end
     member do
-      get :licenses
+      get :by_resource_picture
+      put :update
       delete :destroy
     end
   end
@@ -340,11 +393,15 @@ Pettanr::Application.routes.draw do
       get :index
       get :show
       get :search
+      post :create
     end
     member do
       get :resource_pictures
       get :by_license_group
       get :by_system_picture
+      get :resource_pictures_count
+      put :update
+      delete :destroy
     end
   end
   resources :authors do
@@ -354,22 +411,9 @@ Pettanr::Application.routes.draw do
     collection do
       get :index
       get :show
-      get :count
       post :create
     end
     member do
-      get :scrolls
-      get :scroll_panels
-      get :comics
-      get :stories
-      get :story_sheets
-      get :sheets
-      get :sheet_panels
-      get :panels
-      get :panel_pictures
-      get :speech_balloons
-      get :ground_pictures
-      get :ground_colors
       get :edit
       put :update
       delete :destroy
@@ -382,11 +426,9 @@ Pettanr::Application.routes.draw do
     collection do
       get :index
       get :show
-      get :count
       post :create
     end
     member do
-      get :resource_pictures
       get :edit
       put :update
       delete :destroy
@@ -412,6 +454,14 @@ Pettanr::Application.routes.draw do
       post :create
     end
   end
+  resources :original_picture_licenses do
+    new do
+      post :new
+    end
+    collection do
+      post :create
+    end
+  end
   resources :provider_sources do
     collection do
       get :index
@@ -492,12 +542,14 @@ Pettanr::Application.routes.draw do
   # Sample of regular route:
   #   match 'products/:id' => 'catalog#view'
   # Keep in mind you can assign values other than :controller and :action
-  match 'resource_pictures/:subdir/:id(.:format)/' => 'resource_pictures#show'
-  match 'pictures/:subdir/:id(.:format)/' => 'pictures#show'
+  
+  # resource_pictures/1.png?subdir=full
+  # match 'resource_pictures/full/:id(.:format)/' => 'resource_pictures#show'
+  # match 'pictures/:subdir/:id(.:format)/' => 'pictures#show'
   #match 'scroll_panels/scroll/:id(.:format)' => 'scroll_panels#scroll'
-  match 'top/(:action)', :controller => 'top'
-  match 'home/(:action)', :controller => 'home'
-  match 'system/(:action)', :controller => 'system'
+  match 'top/(:action)', :controller => 'top', via: [:get]
+  match 'home/(:action)', :controller => 'home', via: [:get]
+  match 'system/(:action)', :controller => 'system', via: [:get, :post]
   #match 'authors/(:action(/:id))', :controller => 'authors'
   
   # Sample of named route:
@@ -548,5 +600,5 @@ Pettanr::Application.routes.draw do
 
   # This is a legacy wild controller route that's not recommended for RESTful applications.
   # Note: This route will make all actions in every controller accessible via GET requests.
-  match ':controller(/:action(/:id(.:format)))'
+  match ':controller(/:action(/:id(.:format)))', via: [:get, :post]
 end