| 
									
										
										
										
											2009-05-07 16:53:18 +00:00
										 |  |  | class ApplicationController < ActionController::Base | 
					
						
							| 
									
										
										
										
											2009-06-01 06:20:15 +00:00
										 |  |  |   protect_from_forgery | 
					
						
							| 
									
										
										
										
											2010-03-08 08:04:05 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2011-12-23 10:34:21 +00:00
										 |  |  |   include ParserFrontEnd, ParserBackEnd | 
					
						
							| 
									
										
										
										
											2011-03-02 09:28:33 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2012-02-19 08:33:22 +00:00
										 |  |  |   layout :layout_by_resource | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2010-03-08 08:04:05 +00:00
										 |  |  |   helper :all | 
					
						
							| 
									
										
										
										
											2011-05-13 01:08:42 +00:00
										 |  |  |   before_filter :set_locale, :set_site | 
					
						
							| 
									
										
										
										
											2012-01-05 08:20:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def front_end_available(module_app_title='') | 
					
						
							| 
									
										
										
										
											2012-01-30 10:12:18 +00:00
										 |  |  |     app_controller = ModuleApp.first(conditions: {:key => module_app_title} ) | 
					
						
							| 
									
										
										
										
											2012-01-05 08:20:51 +00:00
										 |  |  |     unless app_controller.enable_frontend?  | 
					
						
							| 
									
										
										
										
											2012-01-18 13:34:26 +00:00
										 |  |  |       render :nothing => true | 
					
						
							| 
									
										
										
										
											2012-01-05 08:20:51 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2011-10-20 02:06:06 +00:00
										 |  |  |   def get_all_app_engines | 
					
						
							| 
									
										
										
										
											2012-01-10 10:29:11 +00:00
										 |  |  |     ary = ["vender/plugins/new_blog"] | 
					
						
							| 
									
										
										
										
											2011-10-20 02:06:06 +00:00
										 |  |  |     app_engines = ary.collect{|t| | 
					
						
							|  |  |  |       Rails::Engine.find t | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     app_engines.each{ |t| | 
					
						
							|  |  |  |      # t. | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def flaten_controller | 
					
						
							|  |  |  |     ary=[] | 
					
						
							|  |  |  |     Find.find(File.join(Rails.root , 'vendor/plugins/'))  { |name|   | 
					
						
							|  |  |  |           require_dependency(name) if /_controller\.rb$/ =~ name | 
					
						
							|  |  |  |           ary << name | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ary | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |   # Find the parent for the given item | 
					
						
							|  |  |  |   def find_parent_item | 
					
						
							|  |  |  |     @parent_item  = Item.first(:conditions => { :id => BSON::ObjectId(params[:parent_id]) }) rescue nil | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-06-19 09:31:10 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |   # Check if the current_user is admin | 
					
						
							|  |  |  |   def is_admin? | 
					
						
							|  |  |  |     redirect_to root_url unless current_user.admin? | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2011-03-02 09:28:33 +00:00
										 |  |  |   # Render the page | 
					
						
							| 
									
										
										
										
											2012-01-24 10:16:58 +00:00
										 |  |  |   def render_page(id = nil) | 
					
						
							| 
									
										
										
										
											2011-05-25 06:50:56 +00:00
										 |  |  |     if @item | 
					
						
							| 
									
										
										
										
											2012-03-21 17:51:16 +00:00
										 |  |  |       render :text => process_page(@item, id), :layout => 'page_layout' | 
					
						
							| 
									
										
										
										
											2009-06-01 06:20:15 +00:00
										 |  |  |     else | 
					
						
							|  |  |  |       render :text => '404 Not Found' | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2011-08-18 05:43:33 +00:00
										 |  |  |   protected | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |   # Set I18n.locale | 
					
						
							| 
									
										
										
										
											2009-06-19 09:31:10 +00:00
										 |  |  |   def set_locale | 
					
						
							|  |  |  |     # update session if passed | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |     session[:locale] = params[:locale] if params[:locale] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-19 09:31:10 +00:00
										 |  |  |     # set locale based on session or default | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |     begin | 
					
						
							|  |  |  |       # check if locale is valid for non site pages | 
					
						
							|  |  |  |       if LIST[:forbidden_item_names].include?(env['PATH_INFO'].split('/')[1].to_s) && !VALID_LOCALES.include?(session[:locale]) | 
					
						
							|  |  |  |         I18n.locale = I18n.default_locale | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         I18n.locale = session[:locale] | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     rescue | 
					
						
							|  |  |  |       I18n.locale = I18n.default_locale | 
					
						
							|  |  |  |     end     | 
					
						
							| 
									
										
										
										
											2010-01-11 09:09:50 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-03-08 08:04:05 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |   # Set the site variables | 
					
						
							|  |  |  |   def set_site | 
					
						
							|  |  |  |     # set site if exist or create site | 
					
						
							| 
									
										
										
										
											2011-03-02 09:28:33 +00:00
										 |  |  |     @site = Site.first || Site.create({:valid_locales => [], :in_use_locales => []}) | 
					
						
							|  |  |  |     session[:site] = @site.id | 
					
						
							|  |  |  |     @site_in_use_locales = @site.in_use_locales | 
					
						
							|  |  |  |     @site_valid_locales = @site.valid_locales | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-13 01:08:42 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def set_current_item | 
					
						
							| 
									
										
										
										
											2011-05-25 06:50:56 +00:00
										 |  |  |     session[:current_page] = params[:id] || @item.id rescue nil | 
					
						
							| 
									
										
										
										
											2011-05-13 01:08:42 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-18 05:43:33 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def decrypt_data(encrypted_data, encrypted_key, encrypted_iv) | 
					
						
							|  |  |  |     site = Site.find(session[:site]) | 
					
						
							|  |  |  |     if encrypted_data | 
					
						
							|  |  |  |       private_key = OpenSSL::PKey::RSA.new(site.private_key) | 
					
						
							|  |  |  |       cipher = OpenSSL::Cipher.new('aes-256-cbc') | 
					
						
							|  |  |  |       cipher.decrypt | 
					
						
							|  |  |  |       cipher.key = private_key.private_decrypt(encrypted_key) | 
					
						
							|  |  |  |       cipher.iv = private_key.private_decrypt(encrypted_iv) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       decrypted_data = cipher.update(encrypted_data) | 
					
						
							|  |  |  |       decrypted_data << cipher.final | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       '' | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-09-01 01:12:41 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def get_homepage | 
					
						
							|  |  |  |     Item.first(:conditions => {:parent_id => nil}) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-04-13 10:19:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-19 08:33:22 +00:00
										 |  |  |   def layout_by_resource | 
					
						
							|  |  |  |     if devise_controller? | 
					
						
							|  |  |  |       "devise" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       "application" | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-10-20 02:06:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-07 16:53:18 +00:00
										 |  |  | end |