123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606 |
- # Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
- class TicketsController < ApplicationController
- include CreatesTicketArticles
- include TicketStats
- prepend_before_action :authentication_check
- # GET /api/v1/tickets
- def index
- offset = 0
- per_page = 100
- 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
- if per_page > 100
- per_page = 100
- end
- access_condition = Ticket.access_condition(current_user, 'read')
- tickets = Ticket.where(access_condition).order(id: 'ASC').offset(offset).limit(per_page)
- if params[:expand]
- list = []
- tickets.each do |ticket|
- list.push ticket.attributes_with_association_names
- end
- render json: list, status: :ok
- return
- end
- if params[:full]
- assets = {}
- item_ids = []
- tickets.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
- render json: tickets
- end
- # GET /api/v1/tickets/1
- def show
- ticket = Ticket.find(params[:id])
- access!(ticket, 'read')
- if params[:expand]
- result = ticket.attributes_with_association_names
- render json: result, status: :ok
- return
- end
- if params[:full]
- full = Ticket.full(params[:id])
- render json: full
- return
- end
- if params[:all]
- render json: ticket_all(ticket)
- return
- end
- render json: ticket
- end
- # POST /api/v1/tickets
- def create
- clean_params = Ticket.association_name_to_id_convert(params)
- # overwrite params
- if !current_user.permissions?('ticket.agent')
- [:owner, :owner_id, :customer, :customer_id, :organization, :organization_id, :preferences].each do |key|
- clean_params.delete(key)
- end
- clean_params[:customer_id] = current_user.id
- end
- # try to create customer if needed
- if clean_params[:customer_id] && clean_params[:customer_id] =~ /^guess:(.+?)$/
- email = $1
- if email !~ /@/ || email =~ /(>|<|\||\!|"|§|'|\$|%|&|\(|\)|\?|\s)/
- render json: { error: 'Invalid email of customer' }, status: :unprocessable_entity
- return
- end
- customer = User.find_by(email: email.downcase)
- if !customer
- role_ids = Role.signup_role_ids
- customer = User.create(
- firstname: '',
- lastname: '',
- email: email,
- password: '',
- active: true,
- role_ids: role_ids,
- )
- end
- clean_params[:customer_id] = customer.id
- end
- clean_params = Ticket.param_cleanup(clean_params, true)
- ticket = Ticket.new(clean_params)
- # check if article is given
- if !params[:article]
- render json: { error: 'article hash is missing' }, status: :unprocessable_entity
- return
- end
- # create ticket
- ticket.save!
- ticket.with_lock do
- # create tags if given
- if params[:tags].present?
- tags = params[:tags].split(/,/)
- tags.each do |tag|
- ticket.tag_add(tag)
- end
- end
- # create article if given
- if params[:article]
- article_create(ticket, params[:article])
- end
- end
- # create links (e. g. in case of ticket split)
- # links: {
- # Ticket: {
- # parent: [ticket_id1, ticket_id2, ...]
- # normal: [ticket_id1, ticket_id2, ...]
- # child: [ticket_id1, ticket_id2, ...]
- # },
- # }
- if params[:links].present?
- link = params[:links].permit!.to_h
- raise Exceptions::UnprocessableEntity, 'Invalid link structure' if !link.is_a? Hash
- link.each do |target_object, link_types_with_object_ids|
- raise Exceptions::UnprocessableEntity, 'Invalid link structure (Object)' if !link_types_with_object_ids.is_a? Hash
- link_types_with_object_ids.each do |link_type, object_ids|
- raise Exceptions::UnprocessableEntity, 'Invalid link structure (Object->LinkType)' if !object_ids.is_a? Array
- object_ids.each do |local_object_id|
- link = Link.add(
- link_type: link_type,
- link_object_target: target_object,
- link_object_target_value: local_object_id,
- link_object_source: 'Ticket',
- link_object_source_value: ticket.id,
- )
- end
- end
- end
- end
- if params[:expand]
- result = ticket.reload.attributes_with_association_names
- render json: result, status: :created
- return
- end
- if params[:all]
- render json: ticket_all(ticket.reload)
- return
- end
- render json: ticket.reload, status: :created
- end
- # PUT /api/v1/tickets/1
- def update
- ticket = Ticket.find(params[:id])
- access!(ticket, 'change')
- clean_params = Ticket.association_name_to_id_convert(params)
- clean_params = Ticket.param_cleanup(clean_params, true)
- # overwrite params
- if !current_user.permissions?('ticket.agent')
- [:owner, :owner_id, :customer, :customer_id, :organization, :organization_id, :preferences].each do |key|
- clean_params.delete(key)
- end
- end
- ticket.with_lock do
- ticket.update!(clean_params)
- if params[:article]
- article_create(ticket, params[:article])
- end
- end
- if params[:expand]
- result = ticket.reload.attributes_with_association_names
- render json: result, status: :ok
- return
- end
- if params[:all]
- render json: ticket_all(ticket.reload)
- return
- end
- render json: ticket.reload, status: :ok
- end
- # DELETE /api/v1/tickets/1
- def destroy
- ticket = Ticket.find(params[:id])
- access!(ticket, 'delete')
- raise Exceptions::NotAuthorized, 'Not authorized (admin permission required)!' if !current_user.permissions?('admin')
- ticket.destroy!
- head :ok
- end
- # GET /api/v1/ticket_customer
- # GET /api/v1/tickets_customer
- def ticket_customer
- # return result
- result = Ticket::ScreenOptions.list_by_customer(
- customer_id: params[:customer_id],
- limit: 15,
- )
- render json: result
- end
- # GET /api/v1/ticket_history/1
- def ticket_history
- # get ticket data
- ticket = Ticket.find(params[:id])
- access!(ticket, 'read')
- # get history of ticket
- history = ticket.history_get(true)
- # return result
- render json: history
- end
- # GET /api/v1/ticket_related/1
- def ticket_related
- ticket = Ticket.find(params[:ticket_id])
- assets = ticket.assets({})
- # open tickets by customer
- access_condition = Ticket.access_condition(current_user, 'read')
- ticket_lists = Ticket
- .where(
- customer_id: ticket.customer_id,
- state_id: Ticket::State.by_category(:open)
- )
- .where(access_condition)
- .where('id != ?', [ ticket.id ])
- .order('created_at DESC')
- .limit(6)
- # if we do not have open related tickets, search for any tickets
- if ticket_lists.empty?
- ticket_lists = Ticket
- .where(
- customer_id: ticket.customer_id,
- ).where.not(
- state_id: Ticket::State.by_category(:merged)
- )
- .where(access_condition)
- .where('id != ?', [ ticket.id ])
- .order('created_at DESC')
- .limit(6)
- end
- # get related assets
- ticket_ids_by_customer = []
- ticket_lists.each do |ticket_list|
- ticket_ids_by_customer.push ticket_list.id
- assets = ticket_list.assets(assets)
- end
- ticket_ids_recent_viewed = []
- recent_views = RecentView.list(current_user, 8, 'Ticket').delete_if { |object| object['o_id'] == ticket.id }
- recent_views.each do |recent_view|
- next if recent_view['object'] != 'Ticket'
- ticket_ids_recent_viewed.push recent_view['o_id']
- recent_view_ticket = Ticket.find(recent_view['o_id'])
- next if recent_view_ticket.state.state_type.name == 'merged'
- assets = recent_view_ticket.assets(assets)
- end
- # return result
- render json: {
- assets: assets,
- ticket_ids_by_customer: ticket_ids_by_customer,
- ticket_ids_recent_viewed: ticket_ids_recent_viewed,
- }
- end
- # GET /api/v1/ticket_merge/1/1
- def ticket_merge
- # check master ticket
- ticket_master = Ticket.find_by(number: params[:master_ticket_number])
- if !ticket_master
- render json: {
- result: 'failed',
- message: 'No such master ticket number!',
- }
- return
- end
- access!(ticket_master, 'full')
- # check slave ticket
- ticket_slave = Ticket.find_by(id: params[:slave_ticket_id])
- if !ticket_slave
- render json: {
- result: 'failed',
- message: 'No such slave ticket!',
- }
- return
- end
- access!(ticket_slave, 'full')
- # merge ticket
- ticket_slave.merge_to(
- ticket_id: ticket_master.id,
- created_by_id: current_user.id,
- )
- # return result
- render json: {
- result: 'success',
- master_ticket: ticket_master.attributes,
- slave_ticket: ticket_slave.attributes,
- }
- end
- # GET /api/v1/ticket_split
- def ticket_split
- ticket = Ticket.find(params[:ticket_id])
- access!(ticket, 'read')
- assets = ticket.assets({})
- # get related articles
- article = Ticket::Article.find(params[:article_id])
- assets = article.assets(assets)
- render json: {
- assets: assets
- }
- end
- # GET /api/v1/ticket_create
- def ticket_create
- # get attributes to update
- attributes_to_change = Ticket::ScreenOptions.attributes_to_change(
- current_user: current_user,
- )
- render json: attributes_to_change
- end
- # GET /api/v1/tickets/search
- def search
- # permit nested conditions
- if params[:condition]
- params.require(:condition).permit!
- end
- # set limit for pagination if needed
- if params[:page] && params[:per_page]
- params[:limit] = params[:page].to_i * params[:per_page].to_i
- end
- if params[:limit] && params[:limit].to_i > 100
- params[:limit].to_i = 100
- end
- # build result list
- tickets = Ticket.search(
- limit: params[:limit],
- query: params[:query],
- condition: params[:condition],
- current_user: current_user,
- )
- # do pagination if needed
- if params[:page] && params[:per_page]
- offset = (params[:page].to_i - 1) * params[:per_page].to_i
- tickets = tickets[offset, params[:per_page].to_i] || []
- end
- if params[:expand]
- list = []
- tickets.each do |ticket|
- list.push ticket.attributes_with_association_names
- end
- render json: list, status: :ok
- return
- end
- assets = {}
- ticket_result = []
- tickets.each do |ticket|
- ticket_result.push ticket.id
- assets = ticket.assets(assets)
- end
- # return result
- render json: {
- tickets: ticket_result,
- tickets_count: tickets.count,
- assets: assets,
- }
- end
- # GET /api/v1/tickets/selector
- def selector
- permission_check('admin.*')
- ticket_count, tickets = Ticket.selectors(params[:condition], 6)
- assets = {}
- ticket_ids = []
- if tickets
- tickets.each do |ticket|
- ticket_ids.push ticket.id
- assets = ticket.assets(assets)
- end
- end
- # return result
- render json: {
- ticket_ids: ticket_ids,
- ticket_count: ticket_count || 0,
- assets: assets,
- }
- end
- # GET /api/v1/ticket_stats
- def stats
- if !params[:user_id] && !params[:organization_id]
- raise 'Need user_id or organization_id as param'
- end
- # lookup open user tickets
- limit = 100
- assets = {}
- access_condition = Ticket.access_condition(current_user, 'read')
- user_tickets = {}
- if params[:user_id]
- user = User.lookup(id: params[:user_id])
- if !user
- raise "No such user with id #{params[:user_id]}"
- end
- conditions = {
- closed_ids: {
- 'ticket.state_id' => {
- operator: 'is',
- value: Ticket::State.by_category(:closed).pluck(:id),
- },
- 'ticket.customer_id' => {
- operator: 'is',
- value: user.id,
- },
- },
- open_ids: {
- 'ticket.state_id' => {
- operator: 'is',
- value: Ticket::State.by_category(:open).pluck(:id),
- },
- 'ticket.customer_id' => {
- operator: 'is',
- value: user.id,
- },
- },
- }
- conditions.each do |key, local_condition|
- user_tickets[key] = ticket_ids_and_assets(local_condition, current_user, limit, assets)
- end
- # generate stats by user
- condition = {
- 'tickets.customer_id' => user.id,
- }
- user_tickets[:volume_by_year] = ticket_stats_last_year(condition, access_condition)
- end
- # lookup open org tickets
- org_tickets = {}
- if params[:organization_id] && !params[:organization_id].empty?
- organization = Organization.lookup(id: params[:organization_id])
- if !organization
- raise "No such organization with id #{params[:organization_id]}"
- end
- conditions = {
- closed_ids: {
- 'ticket.state_id' => {
- operator: 'is',
- value: Ticket::State.by_category(:closed).pluck(:id),
- },
- 'ticket.organization_id' => {
- operator: 'is',
- value: organization.id,
- },
- },
- open_ids: {
- 'ticket.state_id' => {
- operator: 'is',
- value: Ticket::State.by_category(:open).pluck(:id),
- },
- 'ticket.organization_id' => {
- operator: 'is',
- value: organization.id,
- },
- },
- }
- conditions.each do |key, local_condition|
- org_tickets[key] = ticket_ids_and_assets(local_condition, current_user, limit, assets)
- end
- # generate stats by org
- condition = {
- 'tickets.organization_id' => organization.id,
- }
- org_tickets[:volume_by_year] = ticket_stats_last_year(condition, access_condition)
- end
- # return result
- render json: {
- user: user_tickets,
- organization: org_tickets,
- assets: assets,
- }
- end
- private
- def ticket_all(ticket)
- # get attributes to update
- attributes_to_change = Ticket::ScreenOptions.attributes_to_change(
- current_user: current_user,
- ticket: ticket
- )
- # get related users
- assets = attributes_to_change[:assets]
- assets = ticket.assets(assets)
- # get related users
- article_ids = []
- ticket.articles.each do |article|
- # ignore internal article if customer is requesting
- next if article.internal == true && current_user.permissions?('ticket.customer')
- article_ids.push article.id
- assets = article.assets(assets)
- end
- # get links
- links = Link.list(
- link_object: 'Ticket',
- link_object_value: ticket.id,
- )
- link_list = []
- links.each do |item|
- link_list.push item
- if item['link_object'] == 'Ticket'
- linked_ticket = Ticket.lookup(id: item['link_object_value'])
- assets = linked_ticket.assets(assets)
- end
- end
- # get tags
- tags = ticket.tag_list
- # return result
- {
- ticket_id: ticket.id,
- ticket_article_ids: article_ids,
- assets: assets,
- links: link_list,
- tags: tags,
- form_meta: attributes_to_change[:form_meta],
- }
- end
- end
|