trabajo-afectivo/app/controllers/user_devices_controller.rb

48 lines
1.5 KiB
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
2015-08-17 14:12:40 +00:00
class UserDevicesController < ApplicationController
prepend_before_action { authentication_check && authorize! }
2015-08-17 14:12:40 +00:00
def index
devices = UserDevice.where(user_id: current_user.id).order(updated_at: :desc, name: :asc)
2015-08-17 14:12:40 +00:00
devices_full = []
devices.each do |device|
2015-08-17 14:12:40 +00:00
attributes = device.attributes
2017-11-23 08:09:44 +00:00
if device.location_details['city_name'].present?
2015-08-18 22:36:58 +00:00
attributes['location'] += ", #{device.location_details['city_name']}"
2015-08-17 14:12:40 +00:00
end
attributes.delete('created_at')
attributes.delete('device_details')
attributes.delete('location_details')
attributes.delete('fingerprint')
# mark current device to prevent killing own session via user preferences device management
if session[:user_device_fingerprint] == device.fingerprint && device.updated_at > 30.minutes.ago
attributes['current'] = true
end
2015-08-17 14:12:40 +00:00
devices_full.push attributes
end
2015-08-17 14:12:40 +00:00
model_index_render_result(devices_full)
end
def destroy
2015-08-18 22:36:58 +00:00
# find device
user_device = UserDevice.find_by(user_id: current_user.id, id: params[:id])
# delete device and session's
if user_device
SessionHelper.list.each do |session|
next if !session.data['user_id']
2015-08-18 22:36:58 +00:00
next if !session.data['user_device_id']
next if session.data['user_device_id'] != user_device.id
SessionHelper.destroy(session.id)
end
user_device.destroy
end
2015-08-17 14:12:40 +00:00
render json: {}, status: :ok
end
end