Class: IshManager::EmailContextsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/ish_manager/email_contexts_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#basic_auth, #home

Instance Method Details

#createObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 8

def create
  @ctx    = ::Ish::EmailContext.new params[:ctx].permit!
  @tmpl   = ::Ish::EmailTemplate.find @ctx.email_template_id

  @ctx.from_email ||= @tmpl.from_email
  @ctx.subject    ||= @tmpl.subject

  authorize! :create, @ctx
  if @ctx.save
    flash[:notice] = 'Saved.'
    redirect_to action: 'show', id: @ctx.id
    return
  else
    # flash[:alert] = "Could not save: #{@ctx.errors.full_messages.join(', ')}"
    flash[:alert] = ['Could not save:'] + @ctx.errors.full_messages
    render action: :new
    return
  end
end

#destroyObject



28
29
30
31
32
33
34
35
36
37
38
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 28

def destroy
  @ctx = Ish::EmailContext.find params[:id]
  authorize! :destroy, @ctx
  flag = @ctx.destroy
  if flag
    flash[:notice] = 'Destroyed the email context'
  else
    flash[:alert] = 'Could not destroy email context'
  end
  redirect_to action: :index
end

#do_sendObject



40
41
42
43
44
45
46
47
48
49
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 40

def do_send
  @ctx = ::Ish::EmailContext.find params[:id]
  authorize! :do_send, @ctx

  flash[:notice] = 'Scheduled a single send - v2'
  @ctx.send_at = Time.now
  @ctx.save

  redirect_to action: 'index'
end

#editObject



51
52
53
54
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 51

def edit
  @ctx = ::Ish::EmailContext.find params[:id]
  authorize! :edit, @ctx
end

#iframe_srcObject



56
57
58
59
60
61
62
63
64
65
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 56

def iframe_src
  @ctx = @email_context = Ish::EmailContext.find params[:id]
  authorize! :iframe_src, @ctx

  @tmpl = @email_template = @ctx.email_template
  @lead = @ctx.lead
  @body = @ctx.body

  render layout: false
end

#indexObject



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 67

def index
  authorize! :index, ::Ish::EmailContext
  @ctxs = ::Ish::EmailContext.all

  if params[:notsent]
    @ctxs = @ctxs.where( sent_at: nil )
  else
    @ctxs = @ctxs.where( :sent_at.ne => nil )
  end

  if params[:lead_id]
    @lead = Lead.find params[:lead_id]
    @ctxs = @ctxs.where( to_email: @lead.email )
  end
end

#newObject



83
84
85
86
87
88
89
90
91
92
93
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 83

def new
  authorize! :new, ::Ish::EmailContext
  @tmpl = @email_template = Ish::EmailTemplate.where( slug: params[:template_slug] ).first ||
    Ish::EmailTemplate.where( id: params[:template_slug] ).first ||
    Ish::EmailTemplate.new
  attrs = {}
  if @tmpl
    attrs = @tmpl.attributes.slice( :subject, :body, :from_email )
  end
  @ctx = ::Ish::EmailContext.new({ email_template: @tmpl }.merge(attrs))
end

#showObject



95
96
97
98
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 95

def show
  @ctx = @email_context = ::Ish::EmailContext.find( params[:id] )
  authorize! :show, @ctx
end

#updateObject



100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'app/controllers/ish_manager/email_contexts_controller.rb', line 100

def update
  @ctx = ::Ish::EmailContext.find params[:id]
  authorize! :update, @ctx

  if @ctx.update_attributes params[:ctx].permit!
    flash[:notice] = 'Saved.'
    redirect_to action: 'edit', id: @ctx.id
    return
  else
    flash[:alert] = "Could not save: #{@ctx.errors.full_messages.join(', ')}"
    render action: :edit
    return
  end
end