2017-09-18 21:52:38 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class CustomEmojisController < BaseController
|
2017-10-05 17:42:05 -04:00
|
|
|
before_action :set_custom_emoji, except: [:index, :new, :create]
|
|
|
|
|
2017-09-18 21:52:38 -04:00
|
|
|
def index
|
2017-10-05 17:42:05 -04:00
|
|
|
@custom_emojis = filtered_custom_emojis.page(params[:page])
|
2017-09-18 21:52:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@custom_emoji = CustomEmoji.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@custom_emoji = CustomEmoji.new(resource_params)
|
|
|
|
|
|
|
|
if @custom_emoji.save
|
|
|
|
redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.created_msg')
|
|
|
|
else
|
|
|
|
render :new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-27 10:11:30 -04:00
|
|
|
def update
|
|
|
|
if @custom_emoji.update(resource_params)
|
|
|
|
redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.updated_msg')
|
|
|
|
else
|
|
|
|
redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.update_failed_msg')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-18 21:52:38 -04:00
|
|
|
def destroy
|
2017-10-05 17:42:05 -04:00
|
|
|
@custom_emoji.destroy
|
2017-09-18 21:52:38 -04:00
|
|
|
redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.destroyed_msg')
|
|
|
|
end
|
|
|
|
|
2017-10-05 17:42:05 -04:00
|
|
|
def copy
|
2017-10-10 09:18:27 -04:00
|
|
|
emoji = CustomEmoji.new(domain: nil, shortcode: @custom_emoji.shortcode, image: @custom_emoji.image)
|
2017-10-05 17:42:05 -04:00
|
|
|
|
|
|
|
if emoji.save
|
2017-10-14 08:40:10 -04:00
|
|
|
flash[:notice] = I18n.t('admin.custom_emojis.copied_msg')
|
2017-10-05 17:42:05 -04:00
|
|
|
else
|
2017-10-14 08:40:10 -04:00
|
|
|
flash[:alert] = I18n.t('admin.custom_emojis.copy_failed_msg')
|
2017-10-05 17:42:05 -04:00
|
|
|
end
|
2017-10-14 08:40:10 -04:00
|
|
|
|
2017-10-26 10:44:24 -04:00
|
|
|
redirect_to admin_custom_emojis_path(page: params[:page])
|
2017-10-05 17:42:05 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def enable
|
|
|
|
@custom_emoji.update!(disabled: false)
|
|
|
|
redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.enabled_msg')
|
|
|
|
end
|
|
|
|
|
|
|
|
def disable
|
|
|
|
@custom_emoji.update!(disabled: true)
|
|
|
|
redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.disabled_msg')
|
|
|
|
end
|
|
|
|
|
2017-09-18 21:52:38 -04:00
|
|
|
private
|
|
|
|
|
2017-10-05 17:42:05 -04:00
|
|
|
def set_custom_emoji
|
|
|
|
@custom_emoji = CustomEmoji.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2017-09-18 21:52:38 -04:00
|
|
|
def resource_params
|
2017-10-27 10:11:30 -04:00
|
|
|
params.require(:custom_emoji).permit(:shortcode, :image, :visible_in_picker)
|
2017-09-18 21:52:38 -04:00
|
|
|
end
|
2017-10-05 17:42:05 -04:00
|
|
|
|
|
|
|
def filtered_custom_emojis
|
|
|
|
CustomEmojiFilter.new(filter_params).results
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_params
|
|
|
|
params.permit(
|
|
|
|
:local,
|
|
|
|
:remote
|
|
|
|
)
|
|
|
|
end
|
2017-09-18 21:52:38 -04:00
|
|
|
end
|
|
|
|
end
|