2011-04-13 10:19:51 +00:00
|
|
|
PrototypeR4::Application.routes.draw do
|
2011-07-12 08:00:57 +00:00
|
|
|
|
2010-03-08 08:04:05 +00:00
|
|
|
devise_for :users
|
2011-08-18 05:43:33 +00:00
|
|
|
|
|
|
|
# routes for sinatra app
|
|
|
|
match '/site/set_registered', :to => CentralServerExchangeApp
|
|
|
|
match '/site/public_key', :to => CentralServerExchangeApp
|
2011-08-23 07:01:22 +00:00
|
|
|
match '/site/update', :to => GithubApp
|
2011-11-14 02:22:31 +00:00
|
|
|
match '/purchase/:type', :to => CentralServerExchangeApp
|
2011-12-23 10:34:21 +00:00
|
|
|
|
2011-10-20 02:06:06 +00:00
|
|
|
|
2011-08-18 05:43:33 +00:00
|
|
|
# routes for admin
|
2011-04-13 10:19:51 +00:00
|
|
|
namespace :admin do
|
|
|
|
resources :assets
|
2012-01-19 09:47:52 +00:00
|
|
|
resources :app_auths
|
2012-01-31 10:23:32 +00:00
|
|
|
resources :ad_banners
|
2011-07-19 10:31:53 +00:00
|
|
|
resources :designs do
|
2011-09-01 11:08:45 +00:00
|
|
|
collection do
|
|
|
|
get 'upload_package'
|
|
|
|
post 'upload_package'
|
|
|
|
end
|
2011-07-19 10:31:53 +00:00
|
|
|
member do
|
2011-07-27 09:23:01 +00:00
|
|
|
post 'edit_file' => 'designs#edit_file'
|
2011-07-19 10:31:53 +00:00
|
|
|
end
|
|
|
|
end
|
2011-12-23 10:34:21 +00:00
|
|
|
resources :infos do
|
|
|
|
get 'add_attribute_field'
|
|
|
|
end
|
2011-08-18 05:43:33 +00:00
|
|
|
resources :items
|
2011-05-13 01:08:42 +00:00
|
|
|
resources :links do
|
|
|
|
member do
|
|
|
|
get 'delete'
|
|
|
|
end
|
|
|
|
end
|
2011-06-01 04:00:41 +00:00
|
|
|
resources :pages do
|
|
|
|
member do
|
|
|
|
get 'delete'
|
2011-08-25 00:13:38 +00:00
|
|
|
get 'reload_themes'
|
2011-06-01 04:00:41 +00:00
|
|
|
end
|
|
|
|
end
|
2011-12-23 10:34:21 +00:00
|
|
|
resources :module_apps do
|
2012-01-19 09:47:52 +00:00
|
|
|
resources :app_auths do
|
|
|
|
member do
|
|
|
|
match 'remove/:type/:target_id' ,:action=> 'remove',:via => "delete",:as =>:remove
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-23 10:34:21 +00:00
|
|
|
member do
|
2012-01-13 10:20:04 +00:00
|
|
|
match 'assign_manager' ,:action=> 'assign_manager',:via => "post",:as =>:assign_manager
|
|
|
|
match 'assign_sub_manager' ,:action=> 'assign_sub_manager',:via => "post",:as =>:assign_sub_manager
|
|
|
|
|
|
|
|
match 'remove_manager/:app_manager_id' ,:action=> 'remove_manager',:via => "delete",:as =>:remove_manager
|
|
|
|
match 'remove_sub_manager/:app_sub_manager_id' ,:action=> 'remove_sub_manager',:via => "delete",:as =>:remove_sub_manager
|
2011-12-23 10:34:21 +00:00
|
|
|
get 'reload_frontend_pages'
|
|
|
|
end
|
|
|
|
end
|
2011-05-25 06:50:56 +00:00
|
|
|
resources :page_parts
|
2011-08-18 05:43:33 +00:00
|
|
|
resources :purchases do
|
2011-11-16 07:21:31 +00:00
|
|
|
collection do
|
|
|
|
get 'install_app'
|
|
|
|
end
|
2011-08-18 05:43:33 +00:00
|
|
|
member do
|
|
|
|
get 'download'
|
|
|
|
end
|
|
|
|
end
|
2011-12-23 10:34:21 +00:00
|
|
|
resources :roles do
|
|
|
|
get 'add_sub_role'
|
|
|
|
get 'add_attribute_field'
|
|
|
|
end
|
2011-08-22 05:45:21 +00:00
|
|
|
resources :sites
|
2011-04-13 10:19:51 +00:00
|
|
|
resources :snippets
|
|
|
|
resources :translations
|
2011-11-17 12:02:58 +00:00
|
|
|
resources :users
|
2011-04-13 10:19:51 +00:00
|
|
|
end
|
2011-08-18 05:43:33 +00:00
|
|
|
# end admin
|
2011-04-13 10:19:51 +00:00
|
|
|
|
|
|
|
namespace :panel do
|
|
|
|
resources :users
|
|
|
|
end
|
2012-01-24 10:16:58 +00:00
|
|
|
|
|
|
|
match '/panel/:app_name/front_end/:app_action/:id' => 'pages#show_from_link', :constraints => lambda { |request|
|
|
|
|
!request.query_string.include?("inner=true")
|
|
|
|
}
|
|
|
|
|
|
|
|
match '/panel/:app_name/front_end/:app_action' => 'pages#index_from_link', :constraints => lambda { |request|
|
2011-12-23 10:34:21 +00:00
|
|
|
!request.query_string.include?("inner=true")
|
2012-01-24 10:16:58 +00:00
|
|
|
}
|
2011-04-13 10:19:51 +00:00
|
|
|
|
2011-08-18 05:43:33 +00:00
|
|
|
# routes for gridfs files
|
|
|
|
match "/gridfs/*path" => "gridfs#serve"
|
2011-09-01 11:08:45 +00:00
|
|
|
# match "/images/*path" => "gridfs#serve_images"
|
|
|
|
# match "/admin/pages/images/*path" => "gridfs#serve_images"
|
2011-08-25 00:13:38 +00:00
|
|
|
|
2011-08-18 05:43:33 +00:00
|
|
|
# routes for pages to generate
|
2011-04-12 07:21:25 +00:00
|
|
|
match '*page_name' => 'pages#show', :as => :page, :constraints => lambda{|request|
|
|
|
|
!request.path.starts_with?("/panel")
|
|
|
|
}
|
2011-04-13 10:19:51 +00:00
|
|
|
|
|
|
|
root :to => 'pages#index'
|
|
|
|
|
2009-05-07 16:53:18 +00:00
|
|
|
end
|