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 UsersController < ApplicationController
|
2018-02-02 11:27:19 +00:00
|
|
|
include ChecksUserAttributesByCurrentUserPermission
|
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
prepend_before_action :authentication_check, except: %i[create password_reset_send password_reset_verify image]
|
2017-02-15 12:29:25 +00:00
|
|
|
prepend_before_action :authentication_check_only, only: [:create]
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2014-12-18 14:59:45 +00:00
|
|
|
# @path [GET] /users
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @summary Returns a list of User records.
|
|
|
|
# @notes The requester has to be in the role 'Admin' or 'Agent' to
|
|
|
|
# get a list of all Users. If the requester is in the
|
|
|
|
# role 'Customer' only just the own User record will be returned.
|
2014-12-18 14:59:45 +00:00
|
|
|
#
|
|
|
|
# @response_message 200 [Array<User>] List of matching User records.
|
|
|
|
# @response_message 401 Invalid session.
|
2012-04-10 14:06:46 +00:00
|
|
|
def index
|
2016-06-06 15:26:37 +00:00
|
|
|
offset = 0
|
2016-06-30 09:57:07 +00:00
|
|
|
per_page = 500
|
2016-06-06 15:26:37 +00:00
|
|
|
if params[:page] && params[:per_page]
|
|
|
|
offset = (params[:page].to_i - 1) * params[:per_page].to_i
|
|
|
|
per_page = params[:per_page].to_i
|
|
|
|
end
|
2013-07-19 14:21:44 +00:00
|
|
|
|
2016-09-14 07:21:17 +00:00
|
|
|
if per_page > 500
|
|
|
|
per_page = 500
|
|
|
|
end
|
|
|
|
|
2013-07-19 14:21:44 +00:00
|
|
|
# only allow customer to fetch him self
|
2017-04-11 06:33:08 +00:00
|
|
|
users = if !current_user.permissions?(['admin.user', 'ticket.agent'])
|
2019-04-07 15:23:03 +00:00
|
|
|
User.where(id: current_user.id).order(id: :asc).offset(offset).limit(per_page)
|
2016-01-15 17:22:57 +00:00
|
|
|
else
|
2019-04-07 15:23:03 +00:00
|
|
|
User.all.order(id: :asc).offset(offset).limit(per_page)
|
2016-01-15 17:22:57 +00:00
|
|
|
end
|
2016-06-06 15:26:37 +00:00
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_expand?
|
2016-06-08 04:56:05 +00:00
|
|
|
list = []
|
2017-10-01 12:25:52 +00:00
|
|
|
users.each do |user|
|
2017-01-31 17:13:45 +00:00
|
|
|
list.push user.attributes_with_association_names
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2016-06-08 04:56:05 +00:00
|
|
|
render json: list, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_full?
|
2016-06-06 15:26:37 +00:00
|
|
|
assets = {}
|
|
|
|
item_ids = []
|
2017-10-01 12:25:52 +00:00
|
|
|
users.each do |item|
|
2016-06-06 15:26:37 +00:00
|
|
|
item_ids.push item.id
|
|
|
|
assets = item.assets(assets)
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2016-06-06 15:26:37 +00:00
|
|
|
render json: {
|
|
|
|
record_ids: item_ids,
|
2018-12-19 17:31:51 +00:00
|
|
|
assets: assets,
|
2016-06-06 15:26:37 +00:00
|
|
|
}, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
users_all = []
|
2017-10-01 12:25:52 +00:00
|
|
|
users.each do |user|
|
2017-01-31 17:13:45 +00:00
|
|
|
users_all.push User.lookup(id: user.id).attributes_with_association_ids
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: users_all, status: :ok
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2014-12-18 14:59:45 +00:00
|
|
|
# @path [GET] /users/{id}
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @summary Returns the User record with the requested identifier.
|
|
|
|
# @notes The requester has to be in the role 'Admin' or 'Agent' to
|
|
|
|
# access all User records. If the requester is in the
|
|
|
|
# role 'Customer' just the own User record is accessable.
|
2014-12-18 14:59:45 +00:00
|
|
|
#
|
|
|
|
# @parameter id(required) [Integer] The identifier matching the requested User.
|
|
|
|
# @parameter full [Bool] If set a Asset structure with all connected Assets gets returned.
|
|
|
|
#
|
|
|
|
# @response_message 200 [User] User record matching the requested identifier.
|
|
|
|
# @response_message 401 Invalid session.
|
2012-04-10 14:06:46 +00:00
|
|
|
def show
|
2017-06-16 20:43:09 +00:00
|
|
|
user = User.find(params[:id])
|
|
|
|
access!(user, 'read')
|
2014-08-13 00:12:38 +00:00
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_expand?
|
2017-06-16 20:43:09 +00:00
|
|
|
result = user.attributes_with_association_names
|
2017-12-14 13:19:24 +00:00
|
|
|
result.delete('password')
|
|
|
|
render json: result
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if response_full?
|
2017-06-16 20:43:09 +00:00
|
|
|
result = {
|
2017-12-14 13:19:24 +00:00
|
|
|
id: user.id,
|
2017-06-16 20:43:09 +00:00
|
|
|
assets: user.assets({}),
|
|
|
|
}
|
2017-12-14 13:19:24 +00:00
|
|
|
render json: result
|
|
|
|
return
|
2014-08-13 00:12:38 +00:00
|
|
|
end
|
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
result = user.attributes_with_association_ids
|
|
|
|
result.delete('password')
|
2017-06-16 20:43:09 +00:00
|
|
|
render json: result
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2014-12-18 14:59:45 +00:00
|
|
|
# @path [POST] /users
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @summary Creates a User record with the provided attribute values.
|
2014-12-18 14:59:45 +00:00
|
|
|
# @notes TODO.
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @parameter User(required,body) [User] The attribute value structure needed to create a User record.
|
2014-12-18 14:59:45 +00:00
|
|
|
#
|
|
|
|
# @response_message 200 [User] Created User record.
|
|
|
|
# @response_message 401 Invalid session.
|
2012-04-10 14:06:46 +00:00
|
|
|
def create
|
2017-01-31 17:13:45 +00:00
|
|
|
clean_params = User.association_name_to_id_convert(params)
|
2016-06-06 15:26:37 +00:00
|
|
|
clean_params = User.param_cleanup(clean_params, true)
|
2013-01-08 00:43:07 +00:00
|
|
|
|
2016-08-12 16:39:09 +00:00
|
|
|
# check if it's first user, the admin user
|
2019-07-31 08:23:48 +00:00
|
|
|
# initial admin account
|
2018-03-28 05:33:41 +00:00
|
|
|
count = User.all.count
|
2016-06-30 08:24:03 +00:00
|
|
|
admin_account_exists = true
|
|
|
|
if count <= 2
|
|
|
|
admin_account_exists = false
|
|
|
|
end
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# if it's a signup, add user to customer role
|
|
|
|
if !current_user
|
2012-08-10 07:43:36 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# check if feature is enabled
|
|
|
|
if admin_account_exists && !Setting.get('user_create_account')
|
|
|
|
raise Exceptions::UnprocessableEntity, 'Feature not enabled!'
|
|
|
|
end
|
2013-01-08 00:43:07 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# check signup option only after admin account is created
|
|
|
|
if admin_account_exists && !params[:signup]
|
|
|
|
raise Exceptions::UnprocessableEntity, 'Only signup with not authenticate user possible!'
|
|
|
|
end
|
2017-07-14 09:57:34 +00:00
|
|
|
|
|
|
|
# check if user already exists
|
|
|
|
if clean_params[:email].blank?
|
|
|
|
raise Exceptions::UnprocessableEntity, 'Attribute \'email\' required!'
|
|
|
|
end
|
|
|
|
|
2017-07-14 22:35:44 +00:00
|
|
|
# check if user already exists
|
2020-01-10 10:43:36 +00:00
|
|
|
exists = User.exists?(email: clean_params[:email].downcase.strip)
|
|
|
|
raise Exceptions::UnprocessableEntity, "Email address '#{clean_params[:email].downcase.strip}' is already used for other user." if exists
|
2017-07-14 22:35:44 +00:00
|
|
|
|
2017-06-16 20:43:09 +00:00
|
|
|
user = User.new(clean_params)
|
|
|
|
user.associations_from_param(params)
|
2016-06-30 08:24:03 +00:00
|
|
|
user.updated_by_id = 1
|
|
|
|
user.created_by_id = 1
|
2012-08-10 07:43:36 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# add first user as admin/agent and to all groups
|
|
|
|
group_ids = []
|
|
|
|
role_ids = []
|
|
|
|
if count <= 2
|
2017-11-23 08:09:44 +00:00
|
|
|
Role.where(name: %w[Admin Agent]).each do |role|
|
2016-06-30 08:24:03 +00:00
|
|
|
role_ids.push role.id
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2018-03-28 05:33:41 +00:00
|
|
|
Group.all.each do |group|
|
2016-06-30 08:24:03 +00:00
|
|
|
group_ids.push group.id
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2016-06-30 08:24:03 +00:00
|
|
|
|
|
|
|
# everybody else will go as customer per default
|
|
|
|
else
|
2016-08-12 17:58:02 +00:00
|
|
|
role_ids = Role.signup_role_ids
|
2016-06-30 08:24:03 +00:00
|
|
|
end
|
|
|
|
user.role_ids = role_ids
|
|
|
|
user.group_ids = group_ids
|
2012-04-12 11:27:01 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# remember source (in case show email verify banner)
|
2019-07-31 08:23:48 +00:00
|
|
|
# if not initial user creation
|
2016-06-30 08:24:03 +00:00
|
|
|
if admin_account_exists
|
|
|
|
user.source = 'signup'
|
|
|
|
end
|
2016-06-01 14:58:11 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# else do assignment as defined
|
|
|
|
else
|
2014-12-01 07:32:35 +00:00
|
|
|
|
2016-08-12 16:39:09 +00:00
|
|
|
# permission check
|
2018-02-02 11:27:19 +00:00
|
|
|
check_attributes_by_current_user_permission(params)
|
2014-12-01 07:32:35 +00:00
|
|
|
|
2017-06-16 20:43:09 +00:00
|
|
|
user = User.new(clean_params)
|
|
|
|
user.associations_from_param(params)
|
2016-06-30 08:24:03 +00:00
|
|
|
end
|
2012-11-06 21:43:13 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
user.save!
|
2015-07-07 05:56:31 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# if first user was added, set system init done
|
|
|
|
if !admin_account_exists
|
|
|
|
Setting.set('system_init_done', true)
|
2013-03-19 00:46:49 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# fetch org logo
|
2017-07-14 09:57:34 +00:00
|
|
|
if user.email.present?
|
2016-06-30 08:24:03 +00:00
|
|
|
Service::Image.organization_suggest(user.email)
|
2016-02-19 21:05:36 +00:00
|
|
|
end
|
2016-07-25 20:13:38 +00:00
|
|
|
|
|
|
|
# load calendar
|
|
|
|
Calendar.init_setup(request.remote_ip)
|
|
|
|
|
|
|
|
# load text modules
|
|
|
|
begin
|
|
|
|
TextModule.load(request.env['HTTP_ACCEPT_LANGUAGE'] || 'en-us')
|
|
|
|
rescue => e
|
|
|
|
logger.error "Unable to load text modules #{request.env['HTTP_ACCEPT_LANGUAGE'] || 'en-us'}: #{e.message}"
|
|
|
|
end
|
2016-06-30 08:24:03 +00:00
|
|
|
end
|
2013-01-03 09:39:33 +00:00
|
|
|
|
2019-07-31 08:23:48 +00:00
|
|
|
# send invitation if needed / only if session exists
|
2017-12-14 13:19:24 +00:00
|
|
|
if params[:invite].present? && current_user
|
2018-03-28 05:33:41 +00:00
|
|
|
sleep 5 if ENV['REMOTE_URL'].present?
|
2016-06-30 08:24:03 +00:00
|
|
|
token = Token.create(action: 'PasswordReset', user_id: user.id)
|
|
|
|
NotificationFactory::Mailer.notification(
|
|
|
|
template: 'user_invite',
|
2018-12-19 17:31:51 +00:00
|
|
|
user: user,
|
|
|
|
objects: {
|
|
|
|
token: token,
|
|
|
|
user: user,
|
2016-06-30 08:24:03 +00:00
|
|
|
current_user: current_user,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
2016-06-08 04:56:05 +00:00
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
# send email verify
|
2017-12-14 13:19:24 +00:00
|
|
|
if params[:signup].present? && !current_user
|
2016-06-30 08:24:03 +00:00
|
|
|
result = User.signup_new_token(user)
|
|
|
|
NotificationFactory::Mailer.notification(
|
|
|
|
template: 'signup',
|
2018-12-19 17:31:51 +00:00
|
|
|
user: user,
|
|
|
|
objects: result,
|
2016-06-30 08:24:03 +00:00
|
|
|
)
|
|
|
|
end
|
2016-06-08 04:56:05 +00:00
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_expand?
|
|
|
|
user = user.reload.attributes_with_association_names
|
|
|
|
user.delete('password')
|
2016-06-30 08:24:03 +00:00
|
|
|
render json: user, status: :created
|
|
|
|
return
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2016-06-30 08:24:03 +00:00
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_full?
|
|
|
|
result = {
|
|
|
|
id: user.id,
|
|
|
|
assets: user.assets({}),
|
|
|
|
}
|
|
|
|
render json: result, status: :created
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
user = user.reload.attributes_with_association_ids
|
|
|
|
user.delete('password')
|
|
|
|
render json: user, status: :created
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2014-12-18 14:59:45 +00:00
|
|
|
# @path [PUT] /users/{id}
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @summary Updates the User record matching the identifier with the provided attribute values.
|
2014-12-18 14:59:45 +00:00
|
|
|
# @notes TODO.
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @parameter id(required) [Integer] The identifier matching the requested User record.
|
|
|
|
# @parameter User(required,body) [User] The attribute value structure needed to update a User record.
|
2014-12-18 14:59:45 +00:00
|
|
|
#
|
|
|
|
# @response_message 200 [User] Updated User record.
|
|
|
|
# @response_message 401 Invalid session.
|
2012-04-10 14:06:46 +00:00
|
|
|
def update
|
2016-01-20 01:48:54 +00:00
|
|
|
user = User.find(params[:id])
|
2017-06-16 20:43:09 +00:00
|
|
|
access!(user, 'change')
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2016-08-12 16:39:09 +00:00
|
|
|
# permission check
|
2018-02-02 11:27:19 +00:00
|
|
|
check_attributes_by_current_user_permission(params)
|
2016-09-08 19:18:26 +00:00
|
|
|
user.with_lock do
|
2017-06-16 20:43:09 +00:00
|
|
|
clean_params = User.association_name_to_id_convert(params)
|
|
|
|
clean_params = User.param_cleanup(clean_params, true)
|
2017-09-11 11:16:08 +00:00
|
|
|
user.update!(clean_params)
|
2013-04-21 23:03:19 +00:00
|
|
|
|
2018-03-28 05:33:41 +00:00
|
|
|
# presence and permissions were checked via `check_attributes_by_current_user_permission`
|
|
|
|
privileged_attributes = params.slice(:role_ids, :roles, :group_ids, :groups, :organization_ids, :organizations)
|
2013-04-21 23:03:19 +00:00
|
|
|
|
2018-03-28 05:33:41 +00:00
|
|
|
if privileged_attributes.present?
|
|
|
|
user.associations_from_param(privileged_attributes)
|
2016-09-08 19:18:26 +00:00
|
|
|
end
|
2017-12-14 13:19:24 +00:00
|
|
|
end
|
2016-06-08 04:56:05 +00:00
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_expand?
|
|
|
|
user = user.reload.attributes_with_association_names
|
|
|
|
user.delete('password')
|
|
|
|
render json: user, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if response_full?
|
|
|
|
result = {
|
|
|
|
id: user.id,
|
|
|
|
assets: user.assets({}),
|
|
|
|
}
|
|
|
|
render json: result, status: :ok
|
|
|
|
return
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2016-06-30 08:24:03 +00:00
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
user = user.reload.attributes_with_association_ids
|
|
|
|
user.delete('password')
|
|
|
|
render json: user, status: :ok
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2014-12-18 14:59:45 +00:00
|
|
|
# @path [DELETE] /users/{id}
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @summary Deletes the User record matching the given identifier.
|
|
|
|
# @notes The requester has to be in the role 'Admin' to be able to delete a User record.
|
2014-12-18 14:59:45 +00:00
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @parameter id(required) [User] The identifier matching the requested User record.
|
2014-12-18 14:59:45 +00:00
|
|
|
#
|
|
|
|
# @response_message 200 User successfully deleted.
|
|
|
|
# @response_message 401 Invalid session.
|
2012-04-10 14:06:46 +00:00
|
|
|
def destroy
|
2017-06-16 20:43:09 +00:00
|
|
|
user = User.find(params[:id])
|
|
|
|
access!(user, 'delete')
|
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
model_references_check(User, params)
|
2016-11-30 10:30:03 +00:00
|
|
|
model_destroy_render(User, params)
|
2012-09-20 12:08:02 +00:00
|
|
|
end
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2016-10-24 23:54:12 +00:00
|
|
|
# @path [GET] /users/me
|
|
|
|
#
|
|
|
|
# @summary Returns the User record of current user.
|
2019-07-31 08:23:48 +00:00
|
|
|
# @notes The requester needs to have a valid authentication.
|
2016-10-24 23:54:12 +00:00
|
|
|
#
|
|
|
|
# @parameter full [Bool] If set a Asset structure with all connected Assets gets returned.
|
|
|
|
#
|
|
|
|
# @response_message 200 [User] User record matching the requested identifier.
|
|
|
|
# @response_message 401 Invalid session.
|
|
|
|
def me
|
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_expand?
|
2017-01-31 17:13:45 +00:00
|
|
|
user = current_user.attributes_with_association_names
|
2017-12-14 13:19:24 +00:00
|
|
|
user.delete('password')
|
2016-10-24 23:54:12 +00:00
|
|
|
render json: user, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_full?
|
2016-10-24 23:54:12 +00:00
|
|
|
full = User.full(current_user.id)
|
|
|
|
render json: full
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-01-31 17:13:45 +00:00
|
|
|
user = current_user.attributes_with_association_ids
|
2016-10-24 23:54:12 +00:00
|
|
|
user.delete('password')
|
|
|
|
render json: user
|
|
|
|
end
|
|
|
|
|
2014-12-18 14:59:45 +00:00
|
|
|
# @path [GET] /users/search
|
|
|
|
#
|
|
|
|
# @tag Search
|
|
|
|
# @tag User
|
|
|
|
#
|
|
|
|
# @summary Searches the User matching the given expression(s).
|
|
|
|
# @notes TODO: It's possible to use the SOLR search syntax.
|
2014-12-18 15:24:09 +00:00
|
|
|
# The requester has to be in the role 'Admin' or 'Agent' to
|
|
|
|
# be able to search for User records.
|
2014-12-18 14:59:45 +00:00
|
|
|
#
|
2016-09-07 08:39:06 +00:00
|
|
|
# @parameter query [String] The search query.
|
2014-12-18 15:03:19 +00:00
|
|
|
# @parameter limit [Integer] The limit of search results.
|
2014-12-18 14:59:45 +00:00
|
|
|
# @parameter role_ids(multi) [Array<String>] A list of Role identifiers to which the Users have to be allocated to.
|
2014-12-18 15:03:19 +00:00
|
|
|
# @parameter full [Boolean] Defines if the result should be
|
2014-12-18 14:59:45 +00:00
|
|
|
# true: { user_ids => [1,2,...], assets => {...} }
|
|
|
|
# or false: [{:id => user.id, :label => "firstname lastname <email>", :value => "firstname lastname <email>"},...].
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @response_message 200 [Array<User>] A list of User records matching the search term.
|
2014-12-18 14:59:45 +00:00
|
|
|
# @response_message 401 Invalid session.
|
2012-09-20 12:08:02 +00:00
|
|
|
def search
|
2019-02-26 10:37:31 +00:00
|
|
|
raise Exceptions::NotAuthorized if !current_user.permissions?(['ticket.agent', 'admin.user'])
|
2013-07-19 14:21:44 +00:00
|
|
|
|
2018-04-13 07:22:55 +00:00
|
|
|
per_page = params[:per_page] || params[:limit] || 100
|
|
|
|
per_page = per_page.to_i
|
|
|
|
if per_page > 500
|
|
|
|
per_page = 500
|
2016-06-06 15:26:37 +00:00
|
|
|
end
|
2018-04-13 07:22:55 +00:00
|
|
|
page = params[:page] || 1
|
|
|
|
page = page.to_i
|
|
|
|
offset = (page - 1) * per_page
|
2016-06-06 15:26:37 +00:00
|
|
|
|
2018-04-13 07:22:55 +00:00
|
|
|
query = params[:query]
|
|
|
|
if query.respond_to?(:permit!)
|
2019-06-28 11:38:49 +00:00
|
|
|
query.permit!.to_h
|
2016-09-14 07:21:17 +00:00
|
|
|
end
|
|
|
|
|
2018-03-19 00:19:42 +00:00
|
|
|
query = params[:query] || params[:term]
|
2017-11-23 08:09:44 +00:00
|
|
|
if query.respond_to?(:permit!)
|
|
|
|
query = query.permit!.to_h
|
|
|
|
end
|
|
|
|
|
2014-09-24 23:12:23 +00:00
|
|
|
query_params = {
|
2018-12-19 17:31:51 +00:00
|
|
|
query: query,
|
|
|
|
limit: per_page,
|
|
|
|
offset: offset,
|
|
|
|
sort_by: params[:sort_by],
|
|
|
|
order_by: params[:order_by],
|
2015-04-27 13:42:53 +00:00
|
|
|
current_user: current_user,
|
2014-09-24 23:12:23 +00:00
|
|
|
}
|
2017-11-23 08:09:44 +00:00
|
|
|
%i[role_ids permissions].each do |key|
|
2017-09-11 00:50:05 +00:00
|
|
|
next if params[key].blank?
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-09-11 00:50:05 +00:00
|
|
|
query_params[key] = params[key]
|
2014-09-24 23:12:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# do query
|
|
|
|
user_all = User.search(query_params)
|
2012-11-14 01:05:53 +00:00
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_expand?
|
2016-06-08 04:56:05 +00:00
|
|
|
list = []
|
2017-10-01 12:25:52 +00:00
|
|
|
user_all.each do |user|
|
2017-01-31 17:13:45 +00:00
|
|
|
list.push user.attributes_with_association_names
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2016-06-08 04:56:05 +00:00
|
|
|
render json: list, status: :ok
|
2016-06-06 15:26:37 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
# build result list
|
2018-03-19 00:19:42 +00:00
|
|
|
if params[:label] || params[:term]
|
2014-09-24 23:12:23 +00:00
|
|
|
users = []
|
2017-10-01 12:25:52 +00:00
|
|
|
user_all.each do |user|
|
2018-03-19 10:33:47 +00:00
|
|
|
realname = user.fullname
|
|
|
|
if user.email.present? && realname != user.email
|
2018-03-19 00:19:42 +00:00
|
|
|
realname = "#{realname} <#{user.email}>"
|
2014-09-24 23:12:23 +00:00
|
|
|
end
|
2018-03-19 10:33:47 +00:00
|
|
|
a = if params[:term]
|
|
|
|
{ id: user.id, label: realname, value: user.email }
|
|
|
|
else
|
|
|
|
{ id: user.id, label: realname, value: realname }
|
|
|
|
end
|
2014-09-24 23:12:23 +00:00
|
|
|
users.push a
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2014-09-24 23:12:23 +00:00
|
|
|
|
|
|
|
# return result
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: users
|
2014-09-24 23:12:23 +00:00
|
|
|
return
|
2012-09-20 12:08:02 +00:00
|
|
|
end
|
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_full?
|
2016-09-11 13:24:10 +00:00
|
|
|
user_ids = []
|
|
|
|
assets = {}
|
2017-10-01 12:25:52 +00:00
|
|
|
user_all.each do |user|
|
2016-09-11 13:24:10 +00:00
|
|
|
assets = user.assets(assets)
|
|
|
|
user_ids.push user.id
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2016-09-11 13:24:10 +00:00
|
|
|
|
|
|
|
# return result
|
|
|
|
render json: {
|
2018-12-19 17:31:51 +00:00
|
|
|
assets: assets,
|
2016-09-11 13:24:10 +00:00
|
|
|
user_ids: user_ids.uniq,
|
|
|
|
}
|
2016-09-11 14:02:15 +00:00
|
|
|
return
|
2016-09-11 13:24:10 +00:00
|
|
|
end
|
2014-09-24 23:12:23 +00:00
|
|
|
|
2016-09-11 13:24:10 +00:00
|
|
|
list = []
|
2017-10-01 12:25:52 +00:00
|
|
|
user_all.each do |user|
|
2017-04-10 11:32:16 +00:00
|
|
|
list.push user.attributes_with_association_ids
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2016-09-11 13:24:10 +00:00
|
|
|
render json: list, status: :ok
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2012-04-23 06:55:16 +00:00
|
|
|
|
2014-12-18 15:12:36 +00:00
|
|
|
# @path [GET] /users/history/{id}
|
|
|
|
#
|
|
|
|
# @tag History
|
|
|
|
# @tag User
|
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @summary Returns the History records of a User record matching the given identifier.
|
|
|
|
# @notes The requester has to be in the role 'Admin' or 'Agent' to
|
|
|
|
# get the History records of a User record.
|
2014-12-18 15:12:36 +00:00
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @parameter id(required) [Integer] The identifier matching the requested User record.
|
2014-12-18 15:12:36 +00:00
|
|
|
#
|
2014-12-18 15:24:09 +00:00
|
|
|
# @response_message 200 [History] The History records of the requested User record.
|
2014-12-18 15:12:36 +00:00
|
|
|
# @response_message 401 Invalid session.
|
2013-10-21 19:00:58 +00:00
|
|
|
def history
|
2019-02-26 10:37:31 +00:00
|
|
|
raise Exceptions::NotAuthorized if !current_user.permissions?(['admin.user', 'ticket.agent'])
|
2013-10-21 19:00:58 +00:00
|
|
|
|
|
|
|
# get user data
|
2016-01-20 01:48:54 +00:00
|
|
|
user = User.find(params[:id])
|
2013-10-21 19:00:58 +00:00
|
|
|
|
|
|
|
# get history of user
|
2018-12-31 19:15:17 +00:00
|
|
|
render json: user.history_get(true)
|
2013-10-21 19:00:58 +00:00
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
2016-06-01 14:58:11 +00:00
|
|
|
Resource:
|
|
|
|
POST /api/v1/users/email_verify
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"token": "SoMeToKeN",
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
:message => 'ok'
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2017-09-05 09:49:32 +00:00
|
|
|
curl http://localhost/api/v1/users/email_verify -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"token": "SoMeToKeN"}'
|
2016-06-01 14:58:11 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def email_verify
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'No token!' if !params[:token]
|
2016-06-01 14:58:11 +00:00
|
|
|
|
|
|
|
user = User.signup_verify_via_token(params[:token], current_user)
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'Invalid token!' if !user
|
2016-06-01 14:58:11 +00:00
|
|
|
|
|
|
|
render json: { message: 'ok', user_email: user.email }, status: :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
POST /api/v1/users/email_verify_send
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"email": "some_email@example.com"
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
:message => 'ok'
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2017-09-05 09:49:32 +00:00
|
|
|
curl http://localhost/api/v1/users/email_verify_send -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"email": "some_email@example.com"}'
|
2016-06-01 14:58:11 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def email_verify_send
|
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'No email!' if !params[:email]
|
2016-06-01 14:58:11 +00:00
|
|
|
|
|
|
|
# check is verify is possible to send
|
|
|
|
user = User.find_by(email: params[:email].downcase)
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'No such user!' if !user
|
2016-06-01 14:58:11 +00:00
|
|
|
|
|
|
|
#if user.verified == true
|
2016-06-06 06:34:15 +00:00
|
|
|
# render json: { error: 'Already verified!' }, status: :unprocessable_entity
|
2016-06-01 14:58:11 +00:00
|
|
|
# return
|
|
|
|
#end
|
|
|
|
|
2019-06-28 11:38:49 +00:00
|
|
|
Token.create(action: 'Signup', user_id: user.id)
|
2016-06-01 14:58:11 +00:00
|
|
|
|
|
|
|
result = User.signup_new_token(user)
|
|
|
|
if result && result[:token]
|
|
|
|
user = result[:user]
|
|
|
|
NotificationFactory::Mailer.notification(
|
|
|
|
template: 'signup',
|
2018-12-19 17:31:51 +00:00
|
|
|
user: user,
|
|
|
|
objects: result
|
2016-06-01 14:58:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# only if system is in develop mode, send token back to browser for browser tests
|
|
|
|
if Setting.get('developer_mode') == true
|
|
|
|
render json: { message: 'ok', token: result[:token].name }, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# token sent to user, send ok to browser
|
|
|
|
render json: { message: 'ok' }, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# unable to generate token
|
|
|
|
render json: { message: 'failed' }, status: :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
POST /api/v1/users/password_reset
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"username": "some user name"
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
:message => 'ok'
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2017-09-05 09:49:32 +00:00
|
|
|
curl http://localhost/api/v1/users/password_reset -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"username": "some_username"}'
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
2012-04-23 06:55:16 +00:00
|
|
|
def password_reset_send
|
2013-01-08 00:43:07 +00:00
|
|
|
|
|
|
|
# check if feature is enabled
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'Feature not enabled!' if !Setting.get('user_lost_password')
|
2013-01-08 00:43:07 +00:00
|
|
|
|
2016-02-19 21:05:36 +00:00
|
|
|
result = User.password_reset_new_token(params[:username])
|
|
|
|
if result && result[:token]
|
|
|
|
|
|
|
|
# send mail
|
|
|
|
user = result[:user]
|
2016-04-13 23:40:37 +00:00
|
|
|
NotificationFactory::Mailer.notification(
|
2016-02-19 21:05:36 +00:00
|
|
|
template: 'password_reset',
|
2018-12-19 17:31:51 +00:00
|
|
|
user: user,
|
|
|
|
objects: result
|
2016-02-19 21:05:36 +00:00
|
|
|
)
|
2014-12-31 09:04:14 +00:00
|
|
|
|
|
|
|
# only if system is in develop mode, send token back to browser for browser tests
|
|
|
|
if Setting.get('developer_mode') == true
|
2016-02-19 21:05:36 +00:00
|
|
|
render json: { message: 'ok', token: result[:token].name }, status: :ok
|
2014-12-31 09:04:14 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# token sent to user, send ok to browser
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'ok' }, status: :ok
|
2014-12-31 09:04:14 +00:00
|
|
|
return
|
2012-04-23 06:55:16 +00:00
|
|
|
end
|
2014-12-31 09:04:14 +00:00
|
|
|
|
|
|
|
# unable to generate token
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'failed' }, status: :ok
|
2012-04-23 06:55:16 +00:00
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
POST /api/v1/users/password_reset_verify
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"token": "SoMeToKeN",
|
2014-12-30 23:51:19 +00:00
|
|
|
"password": "new_password"
|
2012-09-20 12:08:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
:message => 'ok'
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2017-09-05 09:49:32 +00:00
|
|
|
curl http://localhost/api/v1/users/password_reset_verify -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"token": "SoMeToKeN", "password" "new_password"}'
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
2012-04-23 06:55:16 +00:00
|
|
|
def password_reset_verify
|
2012-04-23 16:59:35 +00:00
|
|
|
if params[:password]
|
2014-12-30 23:51:19 +00:00
|
|
|
|
|
|
|
# check password policy
|
|
|
|
result = password_policy(params[:password])
|
|
|
|
if result != true
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'failed', notice: result }, status: :ok
|
2014-12-30 23:51:19 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# set new password with token
|
2016-01-20 01:48:54 +00:00
|
|
|
user = User.password_reset_via_token(params[:token], params[:password])
|
2016-02-19 21:05:36 +00:00
|
|
|
|
|
|
|
# send mail
|
|
|
|
if user
|
2016-04-13 23:40:37 +00:00
|
|
|
NotificationFactory::Mailer.notification(
|
2016-02-19 21:05:36 +00:00
|
|
|
template: 'password_change',
|
2018-12-19 17:31:51 +00:00
|
|
|
user: user,
|
|
|
|
objects: {
|
|
|
|
user: user,
|
2016-02-19 21:05:36 +00:00
|
|
|
current_user: current_user,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2012-04-23 16:59:35 +00:00
|
|
|
else
|
2017-02-24 17:27:27 +00:00
|
|
|
user = User.by_reset_token(params[:token])
|
2012-04-23 16:59:35 +00:00
|
|
|
end
|
2013-01-03 12:00:55 +00:00
|
|
|
if user
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'ok', user_login: user.login }, status: :ok
|
2012-04-23 06:55:16 +00:00
|
|
|
else
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'failed' }, status: :ok
|
2012-04-23 06:55:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-10 21:38:35 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
POST /api/v1/users/password_change
|
2013-02-10 21:38:35 +00:00
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"password_old": "some_password_old",
|
2013-02-12 00:56:23 +00:00
|
|
|
"password_new": "some_password_new"
|
2013-02-10 21:38:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
:message => 'ok'
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2017-09-05 09:49:32 +00:00
|
|
|
curl http://localhost/api/v1/users/password_change -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"password_old": "password_old", "password_new": "password_new"}'
|
2013-02-10 21:38:35 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def password_change
|
|
|
|
|
|
|
|
# check old password
|
|
|
|
if !params[:password_old]
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'failed', notice: ['Current password needed!'] }, status: :ok
|
2013-06-12 15:59:58 +00:00
|
|
|
return
|
2013-02-10 21:38:35 +00:00
|
|
|
end
|
2016-09-08 19:18:26 +00:00
|
|
|
user = User.authenticate(current_user.login, params[:password_old])
|
2013-02-10 21:38:35 +00:00
|
|
|
if !user
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'failed', notice: ['Current password is wrong!'] }, status: :ok
|
2013-06-12 15:59:58 +00:00
|
|
|
return
|
2013-02-10 21:38:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# set new password
|
|
|
|
if !params[:password_new]
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'failed', notice: ['Please supply your new password!'] }, status: :ok
|
2014-12-30 23:51:19 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# check password policy
|
|
|
|
result = password_policy(params[:password_new])
|
|
|
|
if result != true
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'failed', notice: result }, status: :ok
|
2013-06-12 15:59:58 +00:00
|
|
|
return
|
2013-02-10 21:38:35 +00:00
|
|
|
end
|
2014-12-30 23:51:19 +00:00
|
|
|
|
2017-09-11 11:16:08 +00:00
|
|
|
user.update!(password: params[:password_new])
|
2016-02-19 21:05:36 +00:00
|
|
|
|
2016-04-13 23:40:37 +00:00
|
|
|
NotificationFactory::Mailer.notification(
|
2016-02-19 21:05:36 +00:00
|
|
|
template: 'password_change',
|
2018-12-19 17:31:51 +00:00
|
|
|
user: user,
|
|
|
|
objects: {
|
|
|
|
user: user,
|
2016-02-19 21:05:36 +00:00
|
|
|
current_user: current_user,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'ok', user_login: user.login }, status: :ok
|
2013-02-10 21:38:35 +00:00
|
|
|
end
|
|
|
|
|
2013-02-12 00:56:23 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2017-09-05 09:49:32 +00:00
|
|
|
PUT /api/v1/users/preferences
|
2013-02-12 00:56:23 +00:00
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"language": "de",
|
|
|
|
"notification": true
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
:message => 'ok'
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2017-09-05 09:49:32 +00:00
|
|
|
curl http://localhost/api/v1/users/preferences -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"language": "de", "notifications": true}'
|
2013-02-12 00:56:23 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def preferences
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'No current user!' if !current_user
|
|
|
|
|
2017-10-24 13:49:02 +00:00
|
|
|
preferences_params = params.except(:controller, :action)
|
|
|
|
|
|
|
|
if preferences_params.present?
|
2015-11-25 09:33:39 +00:00
|
|
|
user = User.find(current_user.id)
|
2016-09-08 19:18:26 +00:00
|
|
|
user.with_lock do
|
2017-10-24 13:49:02 +00:00
|
|
|
preferences_params.permit!.to_h.each do |key, value|
|
2016-09-08 19:18:26 +00:00
|
|
|
user.preferences[key.to_sym] = value
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2017-09-05 09:49:32 +00:00
|
|
|
user.save!
|
2016-09-08 19:18:26 +00:00
|
|
|
end
|
2013-02-12 00:56:23 +00:00
|
|
|
end
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'ok' }, status: :ok
|
2013-02-12 00:56:23 +00:00
|
|
|
end
|
|
|
|
|
2013-02-12 22:37:04 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2017-09-05 09:49:32 +00:00
|
|
|
PUT /api/v1/users/out_of_office
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"out_of_office": true,
|
|
|
|
"out_of_office_start_at": true,
|
|
|
|
"out_of_office_end_at": true,
|
|
|
|
"out_of_office_replacement_id": 123,
|
|
|
|
"out_of_office_text": 'honeymoon'
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
:message => 'ok'
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/users/out_of_office -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"out_of_office": true, "out_of_office_replacement_id": 123}'
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def out_of_office
|
|
|
|
raise Exceptions::UnprocessableEntity, 'No current user!' if !current_user
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-09-05 09:49:32 +00:00
|
|
|
user = User.find(current_user.id)
|
|
|
|
user.with_lock do
|
|
|
|
user.assign_attributes(
|
|
|
|
out_of_office: params[:out_of_office],
|
|
|
|
out_of_office_start_at: params[:out_of_office_start_at],
|
|
|
|
out_of_office_end_at: params[:out_of_office_end_at],
|
|
|
|
out_of_office_replacement_id: params[:out_of_office_replacement_id],
|
|
|
|
)
|
|
|
|
user.preferences[:out_of_office_text] = params[:out_of_office_text]
|
|
|
|
user.save!
|
|
|
|
end
|
|
|
|
render json: { message: 'ok' }, status: :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
DELETE /api/v1/users/account
|
2013-02-12 22:37:04 +00:00
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"provider": "twitter",
|
|
|
|
"uid": 581482342942
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
:message => 'ok'
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2017-09-05 09:49:32 +00:00
|
|
|
curl http://localhost/api/v1/users/account -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"provider": "twitter", "uid": 581482342942}'
|
2013-02-12 22:37:04 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def account_remove
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'No current user!' if !current_user
|
2013-02-12 22:37:04 +00:00
|
|
|
|
|
|
|
# provider + uid to remove
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'provider needed!' if !params[:provider]
|
|
|
|
raise Exceptions::UnprocessableEntity, 'uid needed!' if !params[:uid]
|
2013-02-12 22:37:04 +00:00
|
|
|
|
|
|
|
# remove from database
|
|
|
|
record = Authorization.where(
|
2018-12-19 17:31:51 +00:00
|
|
|
user_id: current_user.id,
|
2015-04-27 13:42:53 +00:00
|
|
|
provider: params[:provider],
|
2018-12-19 17:31:51 +00:00
|
|
|
uid: params[:uid],
|
2013-02-12 22:37:04 +00:00
|
|
|
)
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'No record found!' if !record.first
|
|
|
|
|
2013-02-12 22:37:04 +00:00
|
|
|
record.destroy_all
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { message: 'ok' }, status: :ok
|
2013-02-12 22:37:04 +00:00
|
|
|
end
|
|
|
|
|
2013-11-02 21:32:00 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
GET /api/v1/users/image/8d6cca1c6bdc226cf2ba131e264ca2c7
|
|
|
|
|
|
|
|
Response:
|
|
|
|
<IMAGE>
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/users/image/8d6cca1c6bdc226cf2ba131e264ca2c7 -v -u #{login}:#{password}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def image
|
|
|
|
|
|
|
|
# cache image
|
2014-12-01 07:32:35 +00:00
|
|
|
response.headers['Expires'] = 1.year.from_now.httpdate
|
|
|
|
response.headers['Cache-Control'] = 'cache, store, max-age=31536000, must-revalidate'
|
|
|
|
response.headers['Pragma'] = 'cache'
|
2013-11-02 21:32:00 +00:00
|
|
|
|
2016-01-20 01:48:54 +00:00
|
|
|
file = Avatar.get_by_hash(params[:hash])
|
2014-12-01 07:32:35 +00:00
|
|
|
if file
|
2014-07-27 11:40:42 +00:00
|
|
|
send_data(
|
2014-12-01 07:32:35 +00:00
|
|
|
file.content,
|
2018-12-19 17:31:51 +00:00
|
|
|
filename: file.filename,
|
|
|
|
type: file.preferences['Content-Type'] || file.preferences['Mime-Type'],
|
2015-04-27 13:42:53 +00:00
|
|
|
disposition: 'inline'
|
2014-07-27 11:40:42 +00:00
|
|
|
)
|
|
|
|
return
|
2013-11-02 21:32:00 +00:00
|
|
|
end
|
|
|
|
|
2014-12-01 07:32:35 +00:00
|
|
|
# serve default image
|
|
|
|
image = 'R0lGODdhMAAwAOMAAMzMzJaWlr6+vqqqqqOjo8XFxbe3t7GxsZycnAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAMAAwAAAEcxDISau9OOvNu/9gKI5kaZ5oqq5s675wLM90bd94ru98TwuAA+KQAQqJK8EAgBAgMEqmkzUgBIeSwWGZtR5XhSqAULACCoGCJGwlm1MGQrq9RqgB8fm4ZTUgDBIEcRR9fz6HiImKi4yNjo+QkZKTlJWWkBEAOw=='
|
|
|
|
send_data(
|
|
|
|
Base64.decode64(image),
|
2018-12-19 17:31:51 +00:00
|
|
|
filename: 'image.gif',
|
|
|
|
type: 'image/gif',
|
2015-04-27 13:42:53 +00:00
|
|
|
disposition: 'inline'
|
2014-12-01 07:32:35 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
POST /api/v1/users/avatar
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"avatar_full": "base64 url",
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
2016-01-20 01:48:54 +00:00
|
|
|
message: 'ok'
|
2014-12-01 07:32:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/users/avatar -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"avatar": "base64 url"}'
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def avatar_new
|
|
|
|
return if !valid_session_with_user
|
|
|
|
|
|
|
|
# get & validate image
|
2016-01-20 01:48:54 +00:00
|
|
|
file_full = StaticAssets.data_url_attributes(params[:avatar_full])
|
|
|
|
file_resize = StaticAssets.data_url_attributes(params[:avatar_resize])
|
2014-12-01 07:32:35 +00:00
|
|
|
|
|
|
|
avatar = Avatar.add(
|
2018-12-19 17:31:51 +00:00
|
|
|
object: 'User',
|
|
|
|
o_id: current_user.id,
|
|
|
|
full: {
|
|
|
|
content: file_full[:content],
|
2015-04-27 13:42:53 +00:00
|
|
|
mime_type: file_full[:mime_type],
|
2014-12-01 07:32:35 +00:00
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
resize: {
|
|
|
|
content: file_resize[:content],
|
2015-04-27 13:42:53 +00:00
|
|
|
mime_type: file_resize[:mime_type],
|
2014-12-01 07:32:35 +00:00
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
source: 'upload ' + Time.zone.now.to_s,
|
2015-04-27 13:42:53 +00:00
|
|
|
deletable: true,
|
2014-12-01 07:32:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# update user link
|
2016-05-18 22:06:55 +00:00
|
|
|
user = User.find(current_user.id)
|
2017-09-11 11:16:08 +00:00
|
|
|
user.update!(image: avatar.store_hash)
|
2014-12-01 07:32:35 +00:00
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { avatar: avatar }, status: :ok
|
2014-12-01 07:32:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def avatar_set_default
|
|
|
|
return if !valid_session_with_user
|
|
|
|
|
|
|
|
# get & validate image
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'No id of avatar!' if !params[:id]
|
2014-12-01 07:32:35 +00:00
|
|
|
|
|
|
|
# set as default
|
2016-01-20 01:48:54 +00:00
|
|
|
avatar = Avatar.set_default('User', current_user.id, params[:id])
|
2014-12-01 07:32:35 +00:00
|
|
|
|
|
|
|
# update user link
|
2016-05-18 22:06:55 +00:00
|
|
|
user = User.find(current_user.id)
|
2017-09-11 11:16:08 +00:00
|
|
|
user.update!(image: avatar.store_hash)
|
2014-12-01 07:32:35 +00:00
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {}, status: :ok
|
2014-12-01 07:32:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def avatar_destroy
|
|
|
|
return if !valid_session_with_user
|
|
|
|
|
|
|
|
# get & validate image
|
2016-06-30 08:24:03 +00:00
|
|
|
raise Exceptions::UnprocessableEntity, 'No id of avatar!' if !params[:id]
|
2014-12-01 07:32:35 +00:00
|
|
|
|
|
|
|
# remove avatar
|
2016-01-20 01:48:54 +00:00
|
|
|
Avatar.remove_one('User', current_user.id, params[:id])
|
2014-12-01 07:32:35 +00:00
|
|
|
|
|
|
|
# update user link
|
2016-01-20 01:48:54 +00:00
|
|
|
avatar = Avatar.get_default('User', current_user.id)
|
2016-05-18 22:06:55 +00:00
|
|
|
user = User.find(current_user.id)
|
2017-09-11 11:16:08 +00:00
|
|
|
user.update!(image: avatar.store_hash)
|
2014-12-01 07:32:35 +00:00
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {}, status: :ok
|
2014-12-01 07:32:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def avatar_list
|
|
|
|
return if !valid_session_with_user
|
|
|
|
|
|
|
|
# list of avatars
|
2016-01-20 01:48:54 +00:00
|
|
|
result = Avatar.list('User', current_user.id)
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: { avatars: result }, status: :ok
|
2014-12-01 07:32:35 +00:00
|
|
|
end
|
|
|
|
|
2018-02-20 04:29:30 +00:00
|
|
|
# @path [GET] /users/import_example
|
|
|
|
#
|
|
|
|
# @summary Download of example CSV file.
|
|
|
|
# @notes The requester have 'admin.user' permissions to be able to download it.
|
|
|
|
# @example curl -u 'me@example.com:test' http://localhost:3000/api/v1/users/import_example
|
|
|
|
#
|
|
|
|
# @response_message 200 File download.
|
|
|
|
# @response_message 401 Invalid session.
|
|
|
|
def import_example
|
|
|
|
permission_check('admin.user')
|
|
|
|
send_data(
|
|
|
|
User.csv_example,
|
2018-12-19 17:31:51 +00:00
|
|
|
filename: 'user-example.csv',
|
|
|
|
type: 'text/csv',
|
2018-02-20 04:29:30 +00:00
|
|
|
disposition: 'attachment'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
# @path [POST] /users/import
|
|
|
|
#
|
|
|
|
# @summary Starts import.
|
|
|
|
# @notes The requester have 'admin.text_module' permissions to be create a new import.
|
|
|
|
# @example curl -u 'me@example.com:test' -F 'file=@/path/to/file/users.csv' 'https://your.zammad/api/v1/users/import?try=true'
|
|
|
|
# @example curl -u 'me@example.com:test' -F 'file=@/path/to/file/users.csv' 'https://your.zammad/api/v1/users/import'
|
|
|
|
#
|
|
|
|
# @response_message 201 Import started.
|
|
|
|
# @response_message 401 Invalid session.
|
|
|
|
def import_start
|
|
|
|
permission_check('admin.user')
|
2018-11-06 05:42:52 +00:00
|
|
|
string = params[:data]
|
|
|
|
if string.blank? && params[:file].present?
|
|
|
|
string = params[:file].read.force_encoding('utf-8')
|
|
|
|
end
|
|
|
|
raise Exceptions::UnprocessableEntity, 'No source data submitted!' if string.blank?
|
|
|
|
|
2018-02-20 04:29:30 +00:00
|
|
|
result = User.csv_import(
|
2018-12-19 17:31:51 +00:00
|
|
|
string: string,
|
2018-02-20 04:29:30 +00:00
|
|
|
parse_params: {
|
2018-06-06 01:30:17 +00:00
|
|
|
col_sep: params[:col_sep] || ',',
|
2018-02-20 04:29:30 +00:00
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
try: params[:try],
|
|
|
|
delete: params[:delete],
|
2018-02-20 04:29:30 +00:00
|
|
|
)
|
|
|
|
render json: result, status: :ok
|
|
|
|
end
|
|
|
|
|
2014-12-01 07:32:35 +00:00
|
|
|
private
|
|
|
|
|
2014-12-30 23:51:19 +00:00
|
|
|
def password_policy(password)
|
2015-02-09 12:19:52 +00:00
|
|
|
if Setting.get('password_min_size').to_i > password.length
|
2014-12-30 23:51:19 +00:00
|
|
|
return ["Can\'t update password, it must be at least %s characters long!", Setting.get('password_min_size')]
|
|
|
|
end
|
|
|
|
if Setting.get('password_need_digit').to_i == 1 && password !~ /\d/
|
|
|
|
return ["Can't update password, it must contain at least 1 digit!"]
|
|
|
|
end
|
|
|
|
if Setting.get('password_min_2_lower_2_upper_characters').to_i == 1 && ( password !~ /[A-Z].*[A-Z]/ || password !~ /[a-z].*[a-z]/ )
|
|
|
|
return ["Can't update password, it must contain at least 2 lowercase and 2 uppercase characters!"]
|
|
|
|
end
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2014-12-30 23:51:19 +00:00
|
|
|
true
|
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|