123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122 |
- # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- class UsersController < ApplicationController
- include ChecksUserAttributesByCurrentUserPermission
- include CanPaginate
- prepend_before_action -> { authorize! }, only: %i[import_example import_start search history unlock]
- prepend_before_action :authentication_check, except: %i[create password_reset_send password_reset_verify image email_verify email_verify_send admin_password_auth_send admin_password_auth_verify]
- prepend_before_action :authentication_check_only, only: %i[create]
- # @path [GET] /users
- #
- # @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.
- #
- # @response_message 200 [Array<User>] List of matching User records.
- # @response_message 403 Forbidden / Invalid session.
- def index
- users = policy_scope(User).order(id: :asc).offset(pagination.offset).limit(pagination.limit)
- if response_expand?
- list = []
- users.each do |user|
- list.push user.attributes_with_association_names
- end
- render json: list, status: :ok
- return
- end
- if response_full?
- assets = {}
- item_ids = []
- users.each do |item|
- item_ids.push item.id
- assets = item.assets(assets)
- end
- render json: {
- record_ids: item_ids,
- assets: assets,
- }, status: :ok
- return
- end
- users_all = []
- users.each do |user|
- users_all.push User.lookup(id: user.id).attributes_with_association_ids
- end
- render json: users_all, status: :ok
- end
- # @path [GET] /users/{id}
- #
- # @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.
- #
- # @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 403 Forbidden / Invalid session.
- def show
- user = User.find(params[:id])
- authorize!(user)
- if response_expand?
- result = user.attributes_with_association_names
- result.delete('password')
- render json: result
- return
- end
- if response_full?
- result = {
- id: user.id,
- assets: user.assets({}),
- }
- render json: result
- return
- end
- result = user.attributes_with_association_ids
- result.delete('password')
- render json: result
- end
- # @path [POST] /users
- #
- # @summary processes requests as CRUD-like record creation, admin creation or user signup depending on circumstances
- # @see #create_internal #create_admin #create_signup
- def create
- if current_user
- create_internal
- elsif params[:signup]
- create_signup
- else
- create_admin
- end
- end
- # @path [PUT] /users/{id}
- #
- # @summary Updates the User record matching the identifier with the provided attribute values.
- # @notes TODO.
- #
- # @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.
- #
- # @response_message 200 [User] Updated User record.
- # @response_message 403 Forbidden / Invalid session.
- def update
- user = User.find(params[:id])
- authorize!(user)
- # permission check
- check_attributes_by_current_user_permission(params)
- user.with_lock do
- clean_params = User.association_name_to_id_convert(params)
- clean_params = User.param_cleanup(clean_params, true)
- clean_params[:screen] = 'edit'
- user.update!(clean_params)
- # 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)
- if privileged_attributes.present?
- user.associations_from_param(privileged_attributes)
- end
- end
- 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
- end
- user = user.reload.attributes_with_association_ids
- user.delete('password')
- render json: user, status: :ok
- end
- # @path [DELETE] /users/{id}
- #
- # @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.
- #
- # @parameter id(required) [User] The identifier matching the requested User record.
- #
- # @response_message 200 User successfully deleted.
- # @response_message 403 Forbidden / Invalid session.
- def destroy
- user = User.find(params[:id])
- authorize!(user)
- model_references_check(User, params)
- model_destroy_render(User, params)
- end
- # @path [GET] /users/me
- #
- # @summary Returns the User record of current user.
- # @notes The requester needs to have a valid authentication.
- #
- # @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 403 Forbidden / Invalid session.
- def me
- if response_expand?
- user = current_user.attributes_with_association_names
- user.delete('password')
- render json: user, status: :ok
- return
- end
- if response_full?
- full = User.full(current_user.id)
- render json: full
- return
- end
- user = current_user.attributes_with_association_ids
- user.delete('password')
- render json: user
- end
- # @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.
- # The requester has to be in the role 'Admin' or 'Agent' to
- # be able to search for User records.
- #
- # @parameter query [String] The search query.
- # @parameter limit [Integer] The limit of search results.
- # @parameter ids(multi) [Array<Integer>] A list of User IDs which should be returned
- # @parameter role_ids(multi) [Array<Integer>] A list of Role identifiers to which the Users have to be allocated to.
- # @parameter group_ids(multi) [Hash<String=>Integer,Array<Integer>>] A list of Group identifiers to which the Users have to be allocated to.
- # @parameter permissions(multi) [Array<String>] A list of Permission identifiers to which the Users have to be allocated to.
- # @parameter full [Boolean] Defines if the result should be
- # true: { user_ids => [1,2,...], assets => {...} }
- # or false: [{:id => user.id, :label => "firstname lastname <email>", :value => "firstname lastname <email>"},...].
- #
- # @response_message 200 [Array<User>] A list of User records matching the search term.
- # @response_message 403 Forbidden / Invalid session.
- def search
- query = params[:query]
- if query.respond_to?(:permit!)
- query.permit!.to_h
- end
- query = params[:query] || params[:term]
- if query.respond_to?(:permit!)
- query = query.permit!.to_h
- end
- query_params = {
- query: query,
- limit: pagination.limit,
- offset: pagination.offset,
- sort_by: params[:sort_by],
- order_by: params[:order_by],
- current_user: current_user,
- }
- %i[ids role_ids group_ids permissions].each do |key|
- next if params[key].blank?
- query_params[key] = params[key]
- end
- # do query
- user_all = User.search(query_params)
- if response_expand?
- list = []
- user_all.each do |user|
- list.push user.attributes_with_association_names
- end
- render json: list, status: :ok
- return
- end
- # build result list
- if params[:label] || params[:term]
- users = []
- user_all.each do |user|
- realname = user.fullname
- if user.email.present? && realname != user.email
- realname = Channel::EmailBuild.recipient_line realname, user.email
- end
- a = if params[:term]
- { id: user.id, label: realname, value: user.email, inactive: !user.active }
- else
- { id: user.id, label: realname, value: realname }
- end
- users.push a
- end
- # return result
- render json: users
- return
- end
- if response_full?
- user_ids = []
- assets = {}
- user_all.each do |user|
- assets = user.assets(assets)
- user_ids.push user.id
- end
- # return result
- render json: {
- assets: assets,
- user_ids: user_ids.uniq,
- }
- return
- end
- list = []
- user_all.each do |user|
- list.push user.attributes_with_association_ids
- end
- render json: list, status: :ok
- end
- # @path [GET] /users/history/{id}
- #
- # @tag History
- # @tag User
- #
- # @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.
- #
- # @parameter id(required) [Integer] The identifier matching the requested User record.
- #
- # @response_message 200 [History] The History records of the requested User record.
- # @response_message 403 Forbidden / Invalid session.
- def history
- # get user data
- user = User.find(params[:id])
- # get history of user
- render json: user.history_get(true)
- end
- # @path [PUT] /users/unlock/{id}
- #
- # @summary Unlocks the User record matching the identifier.
- # @notes The requester have 'admin.user' permissions to be able to unlock a user.
- #
- # @parameter id(required) [Integer] The identifier matching the requested User record.
- #
- # @response_message 200 Unlocked User record.
- # @response_message 403 Forbidden / Invalid session.
- def unlock
- user = User.find(params[:id])
- user.with_lock do
- user.update!(login_failed: 0)
- end
- render json: { message: 'ok' }, status: :ok
- end
- =begin
- Resource:
- POST /api/v1/users/email_verify
- Payload:
- {
- "token": "SoMeToKeN",
- }
- Response:
- {
- :message => 'ok'
- }
- Test:
- curl http://localhost/api/v1/users/email_verify -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"token": "SoMeToKeN"}'
- =end
- def email_verify
- raise Exceptions::UnprocessableEntity, __('No token!') if !params[:token]
- user = User.signup_verify_via_token(params[:token], current_user)
- raise Exceptions::UnprocessableEntity, __('The provided token is invalid.') if !user
- current_user_set(user)
- 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:
- 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"}'
- =end
- def email_verify_send
- raise Exceptions::UnprocessableEntity, __('No email!') if !params[:email]
- user = User.find_by(email: params[:email].downcase)
- if !user || user.verified == true
- # result is always positive to avoid leaking of existing user accounts
- render json: { message: 'ok' }, status: :ok
- return
- end
- Token.create(action: 'Signup', user_id: user.id)
- result = User.signup_new_token(user)
- if result && result[:token]
- user = result[:user]
- NotificationFactory::Mailer.notification(
- template: 'signup',
- user: user,
- objects: result
- )
- # 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
- Resource:
- POST /api/v1/users/admin_login
- Payload:
- {
- "username": "some user name"
- }
- Response:
- {
- :message => 'ok'
- }
- Test:
- curl http://localhost/api/v1/users/admin_login -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"username": "some_username"}'
- =end
- def admin_password_auth_send
- # check if feature is enabled
- raise Exceptions::UnprocessableEntity, __('Feature not enabled!') if password_login?
- raise Exceptions::UnprocessableEntity, 'username param needed!' if params[:username].blank?
- result = User.admin_password_auth_new_token(params[:username])
- if result && result[:token]
- # unable to send email
- if !result[:user] || result[:user].email.blank?
- render json: { message: 'failed' }, status: :ok
- return
- end
- # send password reset emails
- NotificationFactory::Mailer.notification(
- template: 'admin_password_auth',
- user: result[:user],
- objects: result
- )
- end
- # result is always positive to avoid leaking of existing user accounts
- render json: { message: 'ok' }, status: :ok
- end
- def admin_password_auth_verify
- # check if feature is enabled
- raise Exceptions::UnprocessableEntity, __('Feature not enabled!') if password_login?
- raise Exceptions::UnprocessableEntity, 'token param needed!' if params[:token].blank?
- user = User.admin_password_auth_via_token(params[:token])
- if !user
- render json: { message: 'failed' }, status: :ok
- return
- end
- # result is always positive to avoid leaking of existing user accounts
- render json: { message: 'ok', user_login: user.login }, status: :ok
- end
- =begin
- Resource:
- POST /api/v1/users/password_reset
- Payload:
- {
- "username": "some user name"
- }
- Response:
- {
- :message => 'ok'
- }
- Test:
- curl http://localhost/api/v1/users/password_reset -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"username": "some_username"}'
- =end
- def password_reset_send
- # check if feature is enabled
- raise Exceptions::UnprocessableEntity, __('Feature not enabled!') if !Setting.get('user_lost_password')
- result = User.password_reset_new_token(params[:username])
- if result && result[:token]
- # unable to send email
- if !result[:user] || result[:user].email.blank?
- render json: { message: 'failed' }, status: :ok
- return
- end
- # send password reset emails
- NotificationFactory::Mailer.notification(
- template: 'password_reset',
- user: result[:user],
- objects: result
- )
- end
- # result is always positive to avoid leaking of existing user accounts
- render json: { message: 'ok' }, status: :ok
- end
- =begin
- Resource:
- POST /api/v1/users/password_reset_verify
- Payload:
- {
- "token": "SoMeToKeN",
- "password": "new_password"
- }
- Response:
- {
- :message => 'ok'
- }
- Test:
- 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"}'
- =end
- def password_reset_verify
- # check if feature is enabled
- raise Exceptions::UnprocessableEntity, __('Feature not enabled!') if !Setting.get('user_lost_password')
- raise Exceptions::UnprocessableEntity, 'token param needed!' if params[:token].blank?
- # if no password is given, verify token only
- if params[:password].blank?
- user = User.by_reset_token(params[:token])
- if user
- render json: { message: 'ok', user_login: user.login }, status: :ok
- return
- end
- render json: { message: 'failed' }, status: :ok
- return
- end
- result = PasswordPolicy.new(params[:password])
- if !result.valid?
- render json: { message: 'failed', notice: result.error }, status: :ok
- return
- end
- # set new password with token
- user = User.password_reset_via_token(params[:token], params[:password])
- # send mail
- if !user || user.email.blank?
- render json: { message: 'failed' }, status: :ok
- return
- end
- NotificationFactory::Mailer.notification(
- template: 'password_change',
- user: user,
- objects: {
- user: user,
- current_user: current_user,
- }
- )
- render json: { message: 'ok', user_login: user.login }, status: :ok
- end
- =begin
- Resource:
- POST /api/v1/users/password_change
- Payload:
- {
- "password_old": "some_password_old",
- "password_new": "some_password_new"
- }
- Response:
- {
- :message => 'ok'
- }
- Test:
- 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"}'
- =end
- def password_change
- # check old password
- if !params[:password_old] || !PasswordPolicy::MaxLength.valid?(params[:password_old])
- render json: { message: 'failed', notice: [__('Current password needed!')] }, status: :unprocessable_entity
- return
- end
- current_password_verified = PasswordHash.verified?(current_user.password, params[:password_old])
- if !current_password_verified
- render json: { message: 'failed', notice: [__('Current password is wrong!')] }, status: :unprocessable_entity
- return
- end
- # set new password
- if !params[:password_new]
- render json: { message: 'failed', notice: [__('Please supply your new password!')] }, status: :unprocessable_entity
- return
- end
- result = PasswordPolicy.new(params[:password_new])
- if !result.valid?
- render json: { message: 'failed', notice: result.error }, status: :unprocessable_entity
- return
- end
- current_user.update!(password: params[:password_new])
- if current_user.email.present?
- NotificationFactory::Mailer.notification(
- template: 'password_change',
- user: current_user,
- objects: {
- user: current_user,
- }
- )
- end
- render json: { message: 'ok', user_login: current_user.login }, status: :ok
- end
- =begin
- Resource:
- PUT /api/v1/users/preferences
- Payload:
- {
- "language": "de",
- "notification": true
- }
- Response:
- {
- :message => 'ok'
- }
- Test:
- curl http://localhost/api/v1/users/preferences -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"language": "de", "notifications": true}'
- =end
- def preferences
- preferences_params = params.except(:controller, :action)
- if preferences_params.present?
- user = User.find(current_user.id)
- user.with_lock do
- preferences_params.permit!.to_h.each do |key, value|
- user.preferences[key.to_sym] = value
- end
- user.save!
- end
- end
- render json: { message: 'ok' }, status: :ok
- end
- =begin
- Resource:
- 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
- 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
- Payload:
- {
- "provider": "twitter",
- "uid": 581482342942
- }
- Response:
- {
- :message => 'ok'
- }
- Test:
- curl http://localhost/api/v1/users/account -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"provider": "twitter", "uid": 581482342942}'
- =end
- def account_remove
- # provider + uid to remove
- raise Exceptions::UnprocessableEntity, 'provider needed!' if !params[:provider]
- raise Exceptions::UnprocessableEntity, 'uid needed!' if !params[:uid]
- # remove from database
- record = Authorization.where(
- user_id: current_user.id,
- provider: params[:provider],
- uid: params[:uid],
- )
- raise Exceptions::UnprocessableEntity, __('No record found!') if !record.first
- record.destroy_all
- render json: { message: 'ok' }, status: :ok
- end
- =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
- response.headers['Expires'] = 1.year.from_now.httpdate
- response.headers['Cache-Control'] = 'cache, store, max-age=31536000, must-revalidate'
- response.headers['Pragma'] = 'cache'
- file = Avatar.get_by_hash(params[:hash])
- if file
- file_content_type = file.preferences['Content-Type'] || file.preferences['Mime-Type']
- return serve_default_image if ActiveStorage.content_types_allowed_inline.exclude?(file_content_type)
- send_data(
- file.content,
- filename: file.filename,
- type: file_content_type,
- disposition: 'inline'
- )
- return
- end
- serve_default_image
- end
- =begin
- Resource:
- POST /api/v1/users/avatar
- Payload:
- {
- "avatar_full": "base64 url",
- }
- Response:
- {
- message: 'ok'
- }
- 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
- service = Service::Avatar::ImageValidate.new
- file_full = service.execute(image_data: params[:avatar_full])
- if file_full[:error].present?
- render json: { error: file_full[:message] }, status: :unprocessable_entity
- return
- end
- file_resize = service.execute(image_data: params[:avatar_resize])
- if file_resize[:error].present?
- render json: { error: file_resize[:message] }, status: :unprocessable_entity
- return
- end
- render json: { avatar: Service::Avatar::Add.new(current_user: current_user).execute(full_image: file_full, resize_image: file_resize) }, status: :ok
- end
- def avatar_set_default
- # get & validate image
- raise Exceptions::UnprocessableEntity, __("The required parameter 'id' is missing.") if !params[:id]
- # set as default
- avatar = Avatar.set_default('User', current_user.id, params[:id])
- # update user link
- user = User.find(current_user.id)
- user.update!(image: avatar.store_hash)
- render json: {}, status: :ok
- end
- def avatar_destroy
- # get & validate image
- raise Exceptions::UnprocessableEntity, __("The required parameter 'id' is missing.") if !params[:id]
- # remove avatar
- Avatar.remove_one('User', current_user.id, params[:id])
- # update user link
- avatar = Avatar.get_default('User', current_user.id)
- user = User.find(current_user.id)
- user.update!(image: avatar.store_hash)
- render json: {}, status: :ok
- end
- def avatar_list
- # list of avatars
- result = Avatar.list('User', current_user.id)
- render json: { avatars: result }, status: :ok
- end
- # @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 403 Forbidden / Invalid session.
- def import_example
- send_data(
- User.csv_example,
- filename: 'user-example.csv',
- type: 'text/csv',
- 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 403 Forbidden / Invalid session.
- def import_start
- 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?
- result = User.csv_import(
- string: string,
- parse_params: {
- col_sep: params[:col_sep] || ',',
- },
- try: params[:try],
- delete: params[:delete],
- )
- render json: result, status: :ok
- end
- private
- def password_login?
- return true if Setting.get('user_show_password_login')
- return true if Setting.where('name LIKE ? AND frontend = true', 'auth_%')
- .map { |provider| provider.state_current['value'] }
- .all?(false)
- false
- end
- def clean_user_params
- User.param_cleanup(User.association_name_to_id_convert(params), true).merge(screen: 'create')
- end
- # @summary Creates a User record with the provided attribute values.
- # @notes For creating a user via agent interface
- #
- # @parameter User(required,body) [User] The attribute value structure needed to create a User record.
- #
- # @response_message 200 [User] Created User record.
- # @response_message 403 Forbidden / Invalid session.
- def create_internal
- # permission check
- check_attributes_by_current_user_permission(params)
- user = User.new(clean_user_params)
- user.associations_from_param(params)
- user.save!
- if params[:invite].present?
- token = Token.create(action: 'PasswordReset', user_id: user.id)
- NotificationFactory::Mailer.notification(
- template: 'user_invite',
- user: user,
- objects: {
- token: token,
- user: user,
- current_user: current_user,
- }
- )
- end
- if response_expand?
- user = user.reload.attributes_with_association_names
- user.delete('password')
- render json: user, status: :created
- return
- end
- 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
- end
- # @summary Creates a User record with the provided attribute values.
- # @notes For creating a user via public signup form
- #
- # @parameter User(required,body) [User] The attribute value structure needed to create a User record.
- #
- # @response_message 200 [User] Created User record.
- # @response_message 403 Forbidden / Invalid session.
- def create_signup
- # check if feature is enabled
- if !Setting.get('user_create_account')
- raise Exceptions::UnprocessableEntity, __('Feature not enabled!')
- end
- # check signup option only after admin account is created
- if !params[:signup]
- raise Exceptions::UnprocessableEntity, __("The required parameter 'signup' is missing.")
- end
- # only allow fixed fields
- # TODO: https://github.com/zammad/zammad/issues/3295
- new_params = clean_user_params.slice(:firstname, :lastname, :email, :password)
- # check if user already exists
- if new_params[:email].blank?
- raise Exceptions::UnprocessableEntity, __('Attribute \'email\' required!')
- end
- email_taken_by = User.find_by email: new_params[:email].downcase.strip
- result = PasswordPolicy.new(new_params[:password])
- if !result.valid?
- render json: { error: result.error }, status: :unprocessable_entity
- return
- end
- user = User.new(new_params)
- user.role_ids = Role.signup_role_ids
- user.source = 'signup'
- if email_taken_by # show fake OK response to avoid leaking that email is already in use
- user.skip_ensure_uniq_email = true
- user.validate!
- result = User.password_reset_new_token(email_taken_by.email)
- NotificationFactory::Mailer.notification(
- template: 'signup_taken_reset',
- user: email_taken_by,
- objects: result,
- )
- render json: { message: 'ok' }, status: :created
- return
- end
- UserInfo.ensure_current_user_id do
- user.save!
- end
- result = User.signup_new_token(user)
- NotificationFactory::Mailer.notification(
- template: 'signup',
- user: user,
- objects: result,
- )
- render json: { message: 'ok' }, status: :created
- end
- # @summary Creates a User record with the provided attribute values.
- # @notes For creating an administrator account when setting up the system
- #
- # @parameter User(required,body) [User] The attribute value structure needed to create a User record.
- #
- # @response_message 200 [User] Created User record.
- # @response_message 403 Forbidden / Invalid session.
- def create_admin
- if User.count > 2 # system and example users
- raise Exceptions::UnprocessableEntity, __('Administrator account already created')
- end
- # check if user already exists
- if clean_user_params[:email].blank?
- raise Exceptions::UnprocessableEntity, __('Attribute \'email\' required!')
- end
- # check password policy
- result = PasswordPolicy.new(clean_user_params[:password])
- if !result.valid?
- render json: { error: result.error }, status: :unprocessable_entity
- return
- end
- user = User.new(clean_user_params)
- user.associations_from_param(params)
- user.role_ids = Role.where(name: %w[Admin Agent]).pluck(:id)
- user.group_ids = Group.all.pluck(:id)
- UserInfo.ensure_current_user_id do
- user.save!
- end
- Setting.set('system_init_done', true)
- # fetch org logo
- if user.email.present?
- Service::Image.organization_suggest(user.email)
- end
- # 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
- render json: { message: 'ok' }, status: :created
- end
- def serve_default_image
- image = 'R0lGODdhMAAwAOMAAMzMzJaWlr6+vqqqqqOjo8XFxbe3t7GxsZycnAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAMAAwAAAEcxDISau9OOvNu/9gKI5kaZ5oqq5s675wLM90bd94ru98TwuAA+KQAQqJK8EAgBAgMEqmkzUgBIeSwWGZtR5XhSqAULACCoGCJGwlm1MGQrq9RqgB8fm4ZTUgDBIEcRR9fz6HiImKi4yNjo+QkZKTlJWWkBEAOw=='
- send_data(
- Base64.decode64(image),
- filename: 'image.gif',
- type: 'image/gif',
- disposition: 'inline'
- )
- end
- end
|