Rails.application.routes.draw do
  if ENV['worker_num']=='0' && File.basename($0) != 'rake' && !Rails.const_defined?('Console')
    Thread.new do
      BulletinFeedCache.regenerate_all
    end
  end
  locales = Site.first.in_use_locales rescue I18n.available_locales
  
  scope "(:locale)", locale: Regexp.new(locales.join("|")) do
    namespace :admin do
      get "announcement/get_all_anncs_without_subannc", to: "announcements#get_all_anncs_without_subannc"
      post 'announcement/get_preview_action', to: 'announcements#get_preview_action'
      post 'announcement/preview', to: 'announcements#preview'
      post 'announcement/createfeed', to: 'announcements#createfeed'
      post 'announcement/importanns', to: 'announcements#importanns'
      post 'announcement/import_from_xml', to: 'announcements#import_from_xml'
      get 'announcement/excel_format', to: 'announcements#excel_format'
      get 'announcement/export_excel', to: 'announcements#export_excel'
      patch 'announcement/updatefeed', to: 'announcements#updatefeed'
      delete 'announcement/deletefeed', to: 'announcements#deletefeed'
      get 'announcement/destroy_preview/:slug_title-:uid', to: 'announcements#destroy_preview'
      post 'announcement/approve_bulletin', to: 'announcements#approve_bulletin'
      get 'announcement/feed', to: 'announcements#feed'
      get 'announcements/feedform', to: 'announcements#feedform'
      get 'announcement/settings', to: 'announcements#settings'
      get 'announcement/import', to: 'announcements#import'
      post 'announcement/createsettings', to: 'announcements#createsettings'
      patch 'announcement/updatesettings', to: 'announcements#updatesettings'
      post 'announcement/import_from_wp', to: 'announcements#import_from_wp'
      post 'announcement/generate_iframe_url' => 'announcements#generate_iframe_url'
      resources :announcements
      get 'announcements/:id/comment'=> 'announcements#comment'
      get 'annc-comment-hidden/:id' => 'announcements#comment_hidden'
   end

   resources :announcements do
    collection do
      get ':slug_title-:uid', to: 'announcements#show', as: :display
    end
   end

   get "/xhr/announcements/feed/:uid" => "announcement_feeds#feed"
   get "/xhr/announcements/rssfeed/:uid" => "announcement_feeds#rssfeed"
   get "/xhr/announcements/feeds" => "announcement_feeds#feeds"
   get '/xhr/announcements/announcement.json', to: 'bulletins#get_bulletins'
   get '/xhr/panel/announcement/widget/sync_data' => 'announcements#show_widget'
   get '/xhr/announcements/:slug_title-:uid/comment', to: 'announcements#comment' 
   get '/xhr/announcements/file/:id/*f_name', to: 'announcements#get_file', format: false
  end
  
end