2016-10-19 03:11:36 +00:00
|
|
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
class SessionsController < ApplicationController
|
2017-02-15 12:29:25 +00:00
|
|
|
prepend_before_action :authentication_check, only: [:switch_to_user, :list, :delete]
|
|
|
|
skip_before_action :verify_csrf_token, only: [:create, :show, :destroy, :create_omniauth, :create_sso]
|
2012-04-10 14:06:46 +00:00
|
|
|
|
|
|
|
# "Create" a login, aka "log the user in"
|
|
|
|
def create
|
2012-04-20 12:24:37 +00:00
|
|
|
|
2014-09-15 20:55:06 +00:00
|
|
|
# in case, remove switched_from_user_id
|
|
|
|
session[:switched_from_user_id] = nil
|
|
|
|
|
2012-10-18 08:10:12 +00:00
|
|
|
# authenticate user
|
2015-11-30 10:50:02 +00:00
|
|
|
user = User.authenticate(params[:username], params[:password])
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2016-05-25 07:19:45 +00:00
|
|
|
# check maintenance mode
|
2016-08-12 16:39:09 +00:00
|
|
|
check_maintenance(user)
|
2016-05-25 07:19:45 +00:00
|
|
|
|
2012-04-11 06:37:54 +00:00
|
|
|
# auth failed
|
2017-03-03 05:12:02 +00:00
|
|
|
raise Exceptions::NotAuthorized, 'Wrong Username or Password combination.' if !user
|
2012-10-18 08:10:12 +00:00
|
|
|
|
2013-01-08 00:43:07 +00:00
|
|
|
# remember me - set session cookie to expire later
|
2017-02-15 12:29:25 +00:00
|
|
|
expire_after = nil
|
|
|
|
if params[:remember_me]
|
|
|
|
expire_after = 1.year
|
|
|
|
end
|
|
|
|
env['rack.session.options'][:expire_after] = expire_after
|
2013-01-08 00:43:07 +00:00
|
|
|
|
2013-09-30 02:14:10 +00:00
|
|
|
# set session user
|
|
|
|
current_user_set(user)
|
|
|
|
|
2015-08-18 22:36:58 +00:00
|
|
|
# log device
|
|
|
|
return if !user_device_log(user, 'session')
|
|
|
|
|
2013-09-30 02:14:10 +00:00
|
|
|
# log new session
|
2015-11-30 10:50:02 +00:00
|
|
|
user.activity_stream_log('session started', user.id, true)
|
2013-09-30 02:14:10 +00:00
|
|
|
|
2014-09-09 23:42:20 +00:00
|
|
|
# add session user assets
|
2015-11-30 10:50:02 +00:00
|
|
|
assets = {}
|
2014-08-02 21:53:10 +00:00
|
|
|
assets = user.assets(assets)
|
2013-06-25 11:54:13 +00:00
|
|
|
|
2015-11-30 10:50:02 +00:00
|
|
|
# auto population of default collections
|
|
|
|
collections, assets = SessionHelper.default_collections(user, assets)
|
|
|
|
|
2014-09-09 23:42:20 +00:00
|
|
|
# get models
|
2015-05-05 14:25:28 +00:00
|
|
|
models = SessionHelper.models(user)
|
2014-09-09 23:42:20 +00:00
|
|
|
|
2015-06-24 08:48:48 +00:00
|
|
|
# sessions created via this
|
|
|
|
# controller are persistent
|
|
|
|
session[:persistent] = true
|
|
|
|
|
2012-04-11 06:37:54 +00:00
|
|
|
# return new session data
|
2015-05-01 12:02:27 +00:00
|
|
|
render status: :created,
|
|
|
|
json: {
|
|
|
|
session: user,
|
2015-08-18 08:50:12 +00:00
|
|
|
config: config_frontend,
|
2015-05-01 12:02:27 +00:00
|
|
|
models: models,
|
|
|
|
collections: collections,
|
|
|
|
assets: assets,
|
|
|
|
}
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2012-04-20 06:45:22 +00:00
|
|
|
|
|
|
|
user_id = nil
|
|
|
|
|
2012-04-11 06:37:54 +00:00
|
|
|
# no valid sessions
|
2012-04-20 06:45:22 +00:00
|
|
|
if session[:user_id]
|
|
|
|
user_id = session[:user_id]
|
|
|
|
end
|
|
|
|
|
|
|
|
if !user_id
|
2014-09-09 23:42:20 +00:00
|
|
|
# get models
|
2015-05-05 14:25:28 +00:00
|
|
|
models = SessionHelper.models()
|
2014-09-09 23:42:20 +00:00
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
error: 'no valid session',
|
|
|
|
config: config_frontend,
|
2016-06-22 05:15:26 +00:00
|
|
|
models: models,
|
2015-05-03 20:04:33 +00:00
|
|
|
collections: {
|
2015-11-30 10:50:02 +00:00
|
|
|
Locale.to_app_model => Locale.where(active: true)
|
2015-08-18 08:50:12 +00:00
|
|
|
},
|
2012-04-10 19:57:33 +00:00
|
|
|
}
|
2012-04-11 06:37:54 +00:00
|
|
|
return
|
|
|
|
end
|
2012-04-10 19:57:33 +00:00
|
|
|
|
2012-04-11 06:37:54 +00:00
|
|
|
# Save the user ID in the session so it can be used in
|
|
|
|
# subsequent requests
|
2015-11-30 10:50:02 +00:00
|
|
|
user = User.find(user_id)
|
2012-04-10 19:57:33 +00:00
|
|
|
|
2015-08-18 22:36:58 +00:00
|
|
|
# log device
|
|
|
|
return if !user_device_log(user, 'session')
|
|
|
|
|
2014-09-09 23:42:20 +00:00
|
|
|
# add session user assets
|
2015-11-30 10:50:02 +00:00
|
|
|
assets = {}
|
2014-08-02 21:53:10 +00:00
|
|
|
assets = user.assets(assets)
|
2012-04-10 19:57:33 +00:00
|
|
|
|
2015-11-30 10:50:02 +00:00
|
|
|
# auto population of default collections
|
|
|
|
collections, assets = SessionHelper.default_collections(user, assets)
|
|
|
|
|
2014-09-09 23:42:20 +00:00
|
|
|
# get models
|
2015-05-05 14:25:28 +00:00
|
|
|
models = SessionHelper.models(user)
|
2014-09-09 23:42:20 +00:00
|
|
|
|
2012-04-11 06:37:54 +00:00
|
|
|
# return current session
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
session: user,
|
2015-08-18 08:50:12 +00:00
|
|
|
config: config_frontend,
|
2015-04-27 13:42:53 +00:00
|
|
|
models: models,
|
|
|
|
collections: collections,
|
|
|
|
assets: assets,
|
2012-04-11 06:37:54 +00:00
|
|
|
}
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# "Delete" a login, aka "log the user out"
|
|
|
|
def destroy
|
2012-04-20 12:24:37 +00:00
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
# Remove the user id from the session
|
2017-02-15 12:29:25 +00:00
|
|
|
@_current_user = nil
|
2012-04-11 06:37:54 +00:00
|
|
|
|
2017-02-15 12:29:25 +00:00
|
|
|
# reset session
|
|
|
|
request.env['rack.session.options'][:expire_after] = nil
|
|
|
|
session.clear
|
2012-04-20 12:24:37 +00:00
|
|
|
|
2015-04-27 14:47:58 +00:00
|
|
|
render json: {}
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2012-09-20 12:08:02 +00:00
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
def create_omniauth
|
2014-09-15 20:55:06 +00:00
|
|
|
|
|
|
|
# in case, remove switched_from_user_id
|
|
|
|
session[:switched_from_user_id] = nil
|
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
auth = request.env['omniauth.auth']
|
|
|
|
|
|
|
|
if !auth
|
2015-04-27 13:20:16 +00:00
|
|
|
logger.info('AUTH IS NULL, SERVICE NOT LINKED TO ACCOUNT')
|
2012-04-18 08:33:42 +00:00
|
|
|
|
|
|
|
# redirect to app
|
2013-02-17 18:28:32 +00:00
|
|
|
redirect_to '/'
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2012-04-18 08:33:42 +00:00
|
|
|
|
|
|
|
# Create a new user or add an auth to existing user, depending on
|
|
|
|
# whether there is already a user signed in.
|
2012-04-18 12:36:30 +00:00
|
|
|
authorization = Authorization.find_from_hash(auth)
|
|
|
|
if !authorization
|
2012-04-18 08:33:42 +00:00
|
|
|
authorization = Authorization.create_from_hash(auth, current_user)
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2012-04-18 08:33:42 +00:00
|
|
|
|
2016-05-25 07:19:45 +00:00
|
|
|
# check maintenance mode
|
|
|
|
if check_maintenance_only(authorization.user)
|
|
|
|
redirect_to '/#'
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2013-09-30 01:41:45 +00:00
|
|
|
# set current session user
|
|
|
|
current_user_set(authorization.user)
|
|
|
|
|
|
|
|
# log new session
|
2015-11-30 10:50:02 +00:00
|
|
|
authorization.user.activity_stream_log('session started', authorization.user.id, true)
|
2013-09-30 01:41:45 +00:00
|
|
|
|
2012-10-18 08:10:12 +00:00
|
|
|
# remember last login date
|
2013-02-12 22:49:52 +00:00
|
|
|
authorization.user.update_last_login
|
2012-10-18 08:10:12 +00:00
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
# redirect to app
|
2013-02-17 18:28:32 +00:00
|
|
|
redirect_to '/'
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_sso
|
2014-09-15 20:55:06 +00:00
|
|
|
|
|
|
|
# in case, remove switched_from_user_id
|
|
|
|
session[:switched_from_user_id] = nil
|
|
|
|
|
2013-02-17 18:28:32 +00:00
|
|
|
user = User.sso(params)
|
|
|
|
|
|
|
|
# Log the authorizing user in.
|
|
|
|
if user
|
2013-09-30 01:41:45 +00:00
|
|
|
|
2016-05-25 07:19:45 +00:00
|
|
|
# check maintenance mode
|
|
|
|
if check_maintenance_only(user)
|
|
|
|
redirect_to '/#'
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2013-09-30 01:41:45 +00:00
|
|
|
# set current session user
|
|
|
|
current_user_set(user)
|
|
|
|
|
|
|
|
# log new session
|
2015-11-30 10:50:02 +00:00
|
|
|
user.activity_stream_log('session started', user.id, true)
|
2013-09-30 01:41:45 +00:00
|
|
|
|
|
|
|
# remember last login date
|
|
|
|
user.update_last_login
|
2013-02-17 18:28:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# redirect to app
|
|
|
|
redirect_to '/#'
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2012-10-18 08:10:12 +00:00
|
|
|
|
2013-10-07 03:38:07 +00:00
|
|
|
# "switch" to user
|
|
|
|
def switch_to_user
|
2016-08-12 16:39:09 +00:00
|
|
|
permission_check('admin.session')
|
2013-10-07 03:38:07 +00:00
|
|
|
|
|
|
|
# check user
|
|
|
|
if !params[:id]
|
|
|
|
render(
|
2015-04-27 13:42:53 +00:00
|
|
|
json: { message: 'no user given' },
|
|
|
|
status: :not_found
|
2013-10-07 03:38:07 +00:00
|
|
|
)
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2015-11-30 10:50:02 +00:00
|
|
|
user = User.find(params[:id])
|
2013-10-07 03:38:07 +00:00
|
|
|
if !user
|
|
|
|
render(
|
2015-04-27 13:42:53 +00:00
|
|
|
json: {},
|
|
|
|
status: :not_found
|
2013-10-07 03:38:07 +00:00
|
|
|
)
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2014-09-15 20:55:06 +00:00
|
|
|
# remember old user
|
|
|
|
session[:switched_from_user_id] = current_user.id
|
|
|
|
|
2013-10-07 03:38:07 +00:00
|
|
|
# log new session
|
2015-11-30 10:50:02 +00:00
|
|
|
user.activity_stream_log('switch to', current_user.id, true)
|
2013-10-07 03:38:07 +00:00
|
|
|
|
|
|
|
# set session user
|
|
|
|
current_user_set(user)
|
|
|
|
|
2016-01-26 06:00:25 +00:00
|
|
|
render(
|
|
|
|
json: {
|
|
|
|
success: true,
|
|
|
|
location: '',
|
|
|
|
},
|
|
|
|
)
|
2013-10-07 03:38:07 +00:00
|
|
|
end
|
|
|
|
|
2014-09-15 20:55:06 +00:00
|
|
|
# "switch" back to user
|
|
|
|
def switch_back_to_user
|
|
|
|
|
|
|
|
# check if it's a swich back
|
|
|
|
if !session[:switched_from_user_id]
|
|
|
|
response_access_deny
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2015-11-30 10:50:02 +00:00
|
|
|
user = User.lookup(id: session[:switched_from_user_id])
|
2014-09-15 20:55:06 +00:00
|
|
|
if !user
|
|
|
|
render(
|
2015-04-27 13:42:53 +00:00
|
|
|
json: {},
|
|
|
|
status: :not_found
|
2014-09-15 20:55:06 +00:00
|
|
|
)
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2014-09-21 13:19:28 +00:00
|
|
|
# rememeber current user
|
|
|
|
current_session_user = current_user
|
2014-09-15 20:55:06 +00:00
|
|
|
|
|
|
|
# remove switched_from_user_id
|
|
|
|
session[:switched_from_user_id] = nil
|
|
|
|
|
|
|
|
# set old session user again
|
|
|
|
current_user_set(user)
|
|
|
|
|
2014-09-21 13:19:28 +00:00
|
|
|
# log end session
|
2015-11-30 10:50:02 +00:00
|
|
|
current_session_user.activity_stream_log('ended switch to', user.id, true)
|
2014-09-21 13:19:28 +00:00
|
|
|
|
2016-01-26 06:00:25 +00:00
|
|
|
render(
|
|
|
|
json: {
|
|
|
|
success: true,
|
|
|
|
location: '',
|
|
|
|
},
|
|
|
|
)
|
2014-09-15 20:55:06 +00:00
|
|
|
end
|
|
|
|
|
2016-05-26 21:40:10 +00:00
|
|
|
def available
|
|
|
|
render json: {
|
|
|
|
app_version: AppVersion.get
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2013-07-26 21:45:16 +00:00
|
|
|
def list
|
2016-08-12 16:39:09 +00:00
|
|
|
permission_check('admin.session')
|
2013-10-01 18:31:03 +00:00
|
|
|
assets = {}
|
2013-07-26 21:45:16 +00:00
|
|
|
sessions_clean = []
|
2016-06-30 20:04:48 +00:00
|
|
|
SessionHelper.list.each { |session|
|
2013-07-26 21:45:16 +00:00
|
|
|
next if !session.data['user_id']
|
|
|
|
sessions_clean.push session
|
|
|
|
if session.data['user_id']
|
2015-11-30 10:50:02 +00:00
|
|
|
user = User.lookup(id: session.data['user_id'])
|
|
|
|
assets = user.assets(assets)
|
2013-07-26 21:45:16 +00:00
|
|
|
end
|
|
|
|
}
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
sessions: sessions_clean,
|
|
|
|
assets: assets,
|
2013-07-26 21:45:16 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete
|
2016-08-12 16:39:09 +00:00
|
|
|
permission_check('admin.session')
|
2015-11-30 10:50:02 +00:00
|
|
|
SessionHelper.destroy(params[:id])
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {}
|
2013-07-26 21:45:16 +00:00
|
|
|
end
|
2014-11-17 10:39:35 +00:00
|
|
|
|
2017-03-09 11:44:51 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def config_frontend
|
|
|
|
|
|
|
|
# config
|
|
|
|
config = {}
|
|
|
|
Setting.select('name, preferences').where(frontend: true).each { |setting|
|
|
|
|
next if setting.preferences[:authentication] == true && !current_user
|
|
|
|
value = Setting.get(setting.name)
|
|
|
|
next if !current_user && (value == false || value.nil?)
|
|
|
|
config[setting.name] = value
|
|
|
|
}
|
|
|
|
|
|
|
|
# remember if we can to swich back to user
|
|
|
|
if session[:switched_from_user_id]
|
|
|
|
config['switch_back_to_possible'] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
# remember session_id for websocket logon
|
|
|
|
if current_user
|
|
|
|
config['session_id'] = session.id
|
|
|
|
end
|
|
|
|
|
|
|
|
config
|
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|