2018-09-23 15:44:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-30 13:06:18 -04:00
|
|
|
class Profiles::KeysController < Profiles::ApplicationController
|
2020-10-08 14:08:32 -04:00
|
|
|
feature_category :users
|
2022-05-02 17:09:12 -04:00
|
|
|
urgency :low, [:create, :index]
|
2020-10-08 14:08:32 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def index
|
2017-08-15 06:27:37 -04:00
|
|
|
@keys = current_user.keys.order_id_desc
|
2016-03-03 15:40:00 -05:00
|
|
|
@key = Key.new
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2011-12-19 16:32:59 -05:00
|
|
|
def show
|
|
|
|
@key = current_user.keys.find(params[:id])
|
|
|
|
end
|
2016-04-14 06:20:16 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def create
|
2017-10-24 02:52:47 -04:00
|
|
|
@key = Keys::CreateService.new(current_user, key_params.merge(ip_address: request.remote_ip)).execute
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2017-09-15 11:35:24 -04:00
|
|
|
if @key.persisted?
|
2017-10-24 02:52:47 -04:00
|
|
|
redirect_to profile_key_path(@key)
|
2013-06-24 11:24:14 -04:00
|
|
|
else
|
2016-03-03 15:40:00 -05:00
|
|
|
@keys = current_user.keys.select(&:persisted?)
|
|
|
|
render :index
|
2013-06-24 11:24:14 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@key = current_user.keys.find(params[:id])
|
2018-05-16 14:26:22 -04:00
|
|
|
Keys::DestroyService.new(current_user).execute(@key)
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2018-07-02 06:43:06 -04:00
|
|
|
format.html { redirect_to profile_keys_url, status: :found }
|
2016-03-15 21:16:25 -04:00
|
|
|
format.js { head :ok }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
2013-10-02 11:09:29 -04:00
|
|
|
|
2014-06-26 10:00:05 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def key_params
|
2020-03-13 05:09:23 -04:00
|
|
|
params.require(:key).permit(:title, :key, :expires_at)
|
2014-06-26 10:00:05 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|