Class: Alchemy::Admin::PicturesController

Inherits:
ResourcesController show all
Includes:
ArchiveOverlay, UploaderResponses
Defined in:
app/controllers/alchemy/admin/pictures_controller.rb

Constant Summary

Constants inherited from ResourcesController

ResourcesController::COMMON_SEARCH_FILTER_EXCLUDES

Instance Method Summary collapse

Methods included from ArchiveOverlay

#assign

Methods included from UploaderResponses

#failed_uploader_response, #successful_uploader_response

Methods inherited from ResourcesController

#edit, #new, #resource_filters, #resource_filters_for_select, #resource_handler, #resource_has_deprecated_filters, #resource_has_filters

Methods included from ResourcesHelper

#contains_relations?, #edit_resource_path, #new_resource_path, #render_attribute, #render_resources, #resource_attribute_field_options, #resource_has_tags, #resource_instance_variable, #resource_model, #resource_name, #resource_path, #resource_relations_names, #resource_scope, #resource_url_proxy, #resource_window_size, #resources_instance_variable, #resources_path, #sortable_resource_header_column

Methods inherited from BaseController

#leave

Methods included from Modules

included, #module_definition_for, register_module

Methods included from Alchemy::AbilityHelper

#current_ability

Methods included from ConfigurationMethods

#configuration, #multi_language?, #multi_site?, #prefix_locale?

Instance Method Details

#createObject



51
52
53
54
55
56
57
58
59
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 51

def create
  @picture = Picture.new(picture_params)
  @picture.name = @picture.humanized_name
  if @picture.save
    render successful_uploader_response(file: @picture)
  else
    render failed_uploader_response(file: @picture)
  end
end

#delete_multipleObject



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 90

def delete_multiple
  if request.delete? && params[:picture_ids].present?
    pictures = Picture.find(params[:picture_ids])
    names = []
    not_deletable = []
    pictures.each do |picture|
      if picture.deletable?
        names << picture.name
        picture.destroy
      else
        not_deletable << picture.name
      end
    end
    if not_deletable.any?
      flash[:warn] = Alchemy.t(
        "These pictures could not be deleted, because they were in use",
        names: not_deletable.to_sentence
      )
    else
      flash[:notice] = Alchemy.t("Pictures deleted successfully", names: names.to_sentence)
    end
  else
    flash[:warn] = Alchemy.t("Could not delete Pictures")
  end
rescue => e
  flash[:error] = e.message
ensure
  redirect_to_index
end

#destroyObject



120
121
122
123
124
125
126
127
128
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 120

def destroy
  name = @picture.name
  @picture.destroy
  flash[:notice] = Alchemy.t("Picture deleted successfully", name: name)
rescue => e
  flash[:error] = e.message
ensure
  redirect_to_index
end

#edit_multipleObject



61
62
63
64
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 61

def edit_multiple
  @pictures = Picture.where(id: params[:picture_ids])
  @tags = @pictures.collect(&:tag_list).flatten.uniq.join(", ")
end

#filtered_picturesObject



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 130

def filtered_pictures
  pictures = @query.result

  if params[:tagged_with].present?
    pictures = pictures.tagged_with(params[:tagged_with])
  end

  if search_filter_params[:filter].present?
    pictures = apply_filters(pictures)
  end

  pictures = pictures.page(params[:page] || 1).per(items_per_page)

  pictures.order(:name)
end

#indexObject



22
23
24
25
26
27
28
29
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 22

def index
  @query = Picture.ransack(search_filter_params[:q])
  @pictures = filtered_pictures.includes(:thumbs)

  if in_overlay?
    archive_overlay
  end
end

#items_per_pageObject



146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 146

def items_per_page
  if in_overlay?
    case @size
    when "small" then 25
    when "large" then 4
    else
      9
    end
  else
    cookies[:alchemy_pictures_per_page] = params[:per_page] ||
      cookies[:alchemy_pictures_per_page] ||
      pictures_per_page_for_size
  end
end

#items_per_page_optionsObject



161
162
163
164
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 161

def items_per_page_options
  per_page = pictures_per_page_for_size
  [per_page, per_page * 2, per_page * 4]
end

#showObject



31
32
33
34
35
36
37
38
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 31

def show
  @query = Picture.ransack(params[:q])
  @previous = filtered_pictures.where("name < ?", @picture.name).last
  @next = filtered_pictures.where("name > ?", @picture.name).first
  @assignments = @picture.picture_ingredients.joins(element: :page)

  render action: "show"
end

#updateObject



66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 66

def update
  @message = if @picture.update(picture_params)
    {
      body: Alchemy.t(:picture_updated_successfully, name: @picture.name),
      type: "notice"
    }
  else
    {
      body: Alchemy.t(:picture_update_failed),
      type: "error"
    }
  end
  render :update
end

#update_multipleObject



81
82
83
84
85
86
87
88
# File 'app/controllers/alchemy/admin/pictures_controller.rb', line 81

def update_multiple
  @pictures = Picture.find(params[:picture_ids])
  @pictures.each do |picture|
    picture.update_name_and_tag_list!(params)
  end
  flash[:notice] = Alchemy.t("Pictures updated successfully")
  redirect_to_index
end

#urlObject



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

def url
  options = picture_url_params.to_h.symbolize_keys.transform_values! do |value|
    value.in?(%w[true false]) ? value == "true" : value
  end
  render json: {
    url: @picture.url(options),
    alt: @picture.name,
    title: Alchemy.t(:image_name, name: @picture.name)
  }
end