Class: Caboose::SitesController

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

Instance Method Summary collapse

Methods inherited from ApplicationController

#add_ga_event, #admin_bulk_add, #admin_bulk_delete, #admin_bulk_update, #before_before_action, #hashify_query_string, #init_cart, #logged_in?, #logged_in_user, #login_user, #logout_user, #parse_url_params, #reject_param, #under_construction_or_forwarding_domain?, #user_is_allowed, #user_is_allowed_to, #validate_cookie, #validate_token, #var, #verify_logged_in

Instance Method Details

#admin_addObject



129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'app/controllers/caboose/sites_controller.rb', line 129

def admin_add
  return if !user_is_allowed('sites', 'add')
  render :json => { :error => "You are not allowed to manage sites." } and return if !@site.is_master
          
  resp = StdClass.new      
  site = Site.new
  site.name = params[:name].strip
  
  if site.name.length == 0
    resp.error = "Please enter a valid domain."      
  else        
    site.save
    StoreConfig.create(:site_id => site.id)
    SmtpConfig.create( :site_id => site.id)
    resp.redirect = "/admin/sites/#{site.id}"
  end      
  site.init_users_and_roles            
  render :json => resp
end

#admin_add_memberObject



207
208
209
210
211
212
213
214
215
216
# File 'app/controllers/caboose/sites_controller.rb', line 207

def admin_add_member
  return if !user_is_allowed('sites', 'edit')
  render :json => { :error => "You are not allowed to manage sites." } and return if !@site.is_master
  
  sm = SiteMembership.where(:site_id => params[:id], :user_id => params[:user_id]).first
  sm = SiteMembership.create(:site_id => params[:id], :user_id => params[:user_id]) if sm.nil?
  sm.role = params[:role]
  sm.save      
  render :json => true
end

#admin_deleteObject



193
194
195
196
197
198
199
200
201
202
203
204
# File 'app/controllers/caboose/sites_controller.rb', line 193

def admin_delete
  return if !user_is_allowed('sites', 'delete')
  render :json => { :error => "You are not allowed to manage sites." } and return if !@site.is_master
  
  site = Site.find(params[:id])
  site.destroy
  
  resp = StdClass.new({
    'redirect' => '/admin/sites'
  })
  render :json => resp
end

#admin_delete_formObject



106
107
108
109
110
111
112
113
# File 'app/controllers/caboose/sites_controller.rb', line 106

def admin_delete_form
  return if !user_is_allowed('sites', 'edit')
  if !@site.is_master
    @error = "You are not allowed to manage sites."
    render :file => 'caboose/extras/error' and return
  end
  @site = Site.find(params[:id])      
end

#admin_editObject



116
117
118
119
120
121
122
123
124
125
126
# File 'app/controllers/caboose/sites_controller.rb', line 116

def admin_edit
  return if !user_is_allowed('sites', 'edit')
  if !@site.is_master
    @error = "You are not allowed to manage sites."
    render :file => 'caboose/extras/error' and return
  end
  
  @site = Site.find(params[:id])            
  @site.init_users_and_roles
        
end

#admin_edit_block_typesObject



75
76
77
78
79
80
81
82
83
# File 'app/controllers/caboose/sites_controller.rb', line 75

def admin_edit_block_types
  return if !user_is_allowed('sites', 'edit')
  if !@site.is_master
    @error = "You are not allowed to manage sites."
    render :file => 'caboose/extras/error' and return
  end
  
  @site = Site.find(params[:id])      
end

#admin_edit_cssObject



86
87
88
89
90
91
92
93
# File 'app/controllers/caboose/sites_controller.rb', line 86

def admin_edit_css
  return if !user_is_allowed('sites', 'edit')
  if !@site.is_master
    @error = "You are not allowed to manage sites."
    render :file => 'caboose/extras/error' and return
  end      
  @site = Site.find(params[:id])      
end

#admin_edit_jsObject



96
97
98
99
100
101
102
103
# File 'app/controllers/caboose/sites_controller.rb', line 96

def admin_edit_js
  return if !user_is_allowed('sites', 'edit')
  if !@site.is_master
    @error = "You are not allowed to manage sites."
    render :file => 'caboose/extras/error' and return
  end      
  @site = Site.find(params[:id])      
end

#admin_indexObject



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'app/controllers/caboose/sites_controller.rb', line 12

def admin_index
  return if !user_is_allowed('sites', 'view')
  if !@site.is_master
    @error = "You are not allowed to manage sites."
    render :file => 'caboose/extras/error' and return
  end
  
  @pager = PageBarGenerator.new(params, {
		  'name_like' => '',    		  
		},{
		  'model'          => 'Caboose::Site',
	    'sort'			     => 'name',
		  'desc'			     => false,
		  'base_url'		   => '/admin/sites',
		  'use_url_params' => false,
		  'items_per_page' => 100
	})
	@sites = @pager.items
end

#admin_jsonObject



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'app/controllers/caboose/sites_controller.rb', line 33

def admin_json
  return if !user_is_allowed('sites', 'view')
  h = {        
    'name'              => '',
    'description'       => '',
    'name_like'         => '',
    'description_like'  => '',
  }      
  pager = Caboose::Pager.new(params, h, {      
    'model' => 'Caboose::Site',
    'sort'  => 'name',
    'desc'  => 'false',
    'base_url' => "/admin/sites",
    'items_per_page' => 1000        
  })      
  render :json => {
    :pager => pager,
    :models => pager.items.as_json(:include => :domains)
  }
end

#admin_json_singleObject



55
56
57
58
59
# File 'app/controllers/caboose/sites_controller.rb', line 55

def admin_json_single
  return if !user_is_allowed('sites', 'view')
  site = Site.find(params[:id])
  render :json => site.as_json(:include => :domains)      
end

#admin_newObject



62
63
64
65
66
67
68
69
70
# File 'app/controllers/caboose/sites_controller.rb', line 62

def admin_new
  return if !user_is_allowed('sites', 'add')
  if !@site.is_master
    @error = "You are not allowed to manage sites."
    render :file => 'caboose/extras/error' and return
  end
  
  @site = Site.new
end

#admin_remove_memberObject



219
220
221
222
223
224
225
# File 'app/controllers/caboose/sites_controller.rb', line 219

def admin_remove_member
  return if !user_is_allowed('sites', 'edit')
  render :json => { :error => "You are not allowed to manage sites." } and return if !@site.is_master
  
  SiteMembership.where(:site_id => params[:id], :user_id => params[:user_id]).destroy_all        
  render :json => true
end

#admin_updateObject



150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'app/controllers/caboose/sites_controller.rb', line 150

def admin_update
  return if !user_is_allowed('sites', 'edit')
  render :json => { :error => "You are not allowed to manage sites." } and return if !@site.is_master

  resp = StdClass.new     
  site = Site.find(params[:id])

  save = true
  params.each do |name,value|
    case name
      when 'name'                     then site.name                    = value
      when 'description'              then site.description             = value
      when 'under_construction_html'  then site.under_construction_html = value
      when 'use_store'                then site.use_store               = value
      when 'use_fonts'                then site.use_fonts               = value
      when 'use_retargeting'          then site.use_retargeting         = value
      when 'custom_css'               then site.custom_css              = value            
      when 'custom_js'                then site.custom_js               = value
      when 'default_layout_id'        then site.default_layout_id       = value
      when 'allow_self_registration'  then site.allow_self_registration = value
	  end
	end
	
	resp.success = save && site.save
	render :json => resp
end

#admin_update_logoObject



178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'app/controllers/caboose/sites_controller.rb', line 178

def 
  return if !user_is_allowed('sites', 'edit')
  render :json => { :error => "You are not allowed to manage sites." } and return if !@site.is_master
  
  site = Site.find(params[:id])       
  site. = params[:logo]
  site.save
  
  resp = StdClass.new
  resp.success = true
  resp.attributes = { :image => { :value => site..url(:thumb) }}
  render :json => resp
end

#before_actionObject



7
8
9
# File 'app/controllers/caboose/sites_controller.rb', line 7

def before_action
  @page = Page.page_with_uri(request.host_with_port, '/admin')
end

#optionsObject



231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
# File 'app/controllers/caboose/sites_controller.rb', line 231

def options
  return if !user_is_allowed('sites', 'view')
  
  case params[:field]
    when nil
      options = logged_in_user.is_super_admin? ? Site.reorder('name').all.collect { |s| { 'value' => s.id, 'text' => s.name }} : []
    when 'default-layout'
      cat_ids = Caboose::BlockTypeCategory.layouts.collect{ |cat| cat.id }
      block_types = Caboose::BlockType.includes(:block_type_site_memberships).where("block_type_category_id in (?) and block_type_site_memberships.site_id = ?", cat_ids, params[:id]).reorder(:description).all
      options = block_types.collect do |bt|
        { 'value' => bt.id, 'text' => bt.description } 
      end
  end
  render :json => options
end