Class: Guts::MediaController

Inherits:
ApplicationController show all
Defined in:
app/controllers/guts/media_controller.rb

Overview

Media controller

Instance Method Summary collapse

Methods included from SessionsHelper

#current_user, #log_in, #log_out, #logged_in?

Instance Method Details

#createObject

Note:

Redirects to #index if successfull or re-renders #new if not

Creates a medium through post



35
36
37
38
39
40
41
42
43
# File 'app/controllers/guts/media_controller.rb', line 35

def create
  @medium = Medium.new medium_params

  if @medium.save
    redirect_to polymorphic_path([@object, :media]), notice: "Media was successfully created."
  else
    render :new
  end
end

#destroyObject

Note:

Redirects to #index on success

Destroys a medium



57
58
59
60
# File 'app/controllers/guts/media_controller.rb', line 57

def destroy
  @medium.destroy
  redirect_to polymorphic_path([@object, :media]), notice: "Media was successfully destroyed."
end

#editObject

Editing for a medium



30
31
# File 'app/controllers/guts/media_controller.rb', line 30

def edit
end

#editor_insertObject

Handles showing the insert medium allowing TinyMce to use it



64
65
66
# File 'app/controllers/guts/media_controller.rb', line 64

def editor_insert
  render :editor_insert, layout: false
end

#indexObject

Note:

Depending on the object passed (polymorphic)

Displays a list of media



12
13
14
15
16
17
18
# File 'app/controllers/guts/media_controller.rb', line 12

def index
  @media = if @object
    @object.media.paginate(page: params[:page], per_page: @per_page)
  else
    Medium.paginate(page: params[:page], per_page: @per_page)
  end
end

#newObject

Creation of a new medium



25
26
27
# File 'app/controllers/guts/media_controller.rb', line 25

def new
  @medium = Medium.new
end

#showObject

Shows details about a single medium



21
22
# File 'app/controllers/guts/media_controller.rb', line 21

def show
end

#updateObject

Note:

Redirects to #index if successfull or re-renders #edit if not

Updates a medium through patch



47
48
49
50
51
52
53
# File 'app/controllers/guts/media_controller.rb', line 47

def update
  if @medium.update(medium_params)
    redirect_to polymorphic_path([@object, :media]), notice: "Media was successfully updated."
  else
    render :edit
  end
end