Class: Caboose::SocialController

Inherits:
ApplicationController show all
Defined in:
app/controllers/caboose/social_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#admin_add, #admin_bulk_add, #admin_bulk_delete, #admin_bulk_update, #admin_delete, #admin_index, #admin_json, #admin_json_single, #before_action, #before_before_action, #hashify_query_string, #init_cart, #logged_in?, #logged_in_user, #login_user, #logout_user, #parse_url_params, #reject_param, #user_is_allowed, #user_is_allowed_to, #validate_cookie, #validate_token, #var, #verify_logged_in

Instance Method Details

#admin_editObject

GET /admin/social



10
11
12
13
14
# File 'app/controllers/caboose/social_controller.rb', line 10

def admin_edit
  return if !user_is_allowed('social', 'edit')            
  @social_config = @site.social_config
  @social_config = SocialConfig.create(:site_id => @site.id) if @social_config.nil?
end

#admin_updateObject

PUT /admin/social



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'app/controllers/caboose/social_controller.rb', line 17

def admin_update
  return if !user_is_allowed('sites', 'edit')

  resp = StdClass.new     
  sc = @site.social_config
  sc = SocialConfig.create(:site_id => @site.id) if sc.nil?
      
  save = true
  params.each do |name,value|
    case name
      when 'site_id'              then sc.site_id              = value
      when 'facebook_page_id'     then sc.facebook_page_id     = value
      when 'twitter_username'     then sc.twitter_username     = value
      when 'instagram_username'   then sc.instagram_username   = value
      when 'youtube_url'          then sc.youtube_url          = value
      when 'pinterest_url'        then sc.pinterest_url        = value
      when 'vimeo_url'            then sc.vimeo_url            = value
      when 'rss_url'              then sc.rss_url              = value
      when 'google_plus_url'      then sc.google_plus_url      = value
      when 'linkedin_url'         then sc.linkedin_url         = value
      when 'google_analytics_id'  then sc.google_analytics_id  = value
	  end
	end
	
	resp.success = save && sc.save
	render :json => resp
end

#analyticsObject



5
6
7
# File 'app/controllers/caboose/social_controller.rb', line 5

def analytics

end