2014-02-03 19:24:49 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
class TicketsController < ApplicationController
|
2015-05-07 11:23:55 +00:00
|
|
|
before_action :authentication_check
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2016-06-06 15:26:37 +00:00
|
|
|
# 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
|
|
|
|
|
2016-09-14 07:21:17 +00:00
|
|
|
if per_page > 100
|
|
|
|
per_page = 100
|
|
|
|
end
|
|
|
|
|
2016-06-06 15:26:37 +00:00
|
|
|
access_condition = Ticket.access_condition(current_user)
|
2016-09-21 17:42:47 +00:00
|
|
|
tickets = Ticket.where(access_condition).order(id: 'ASC').offset(offset).limit(per_page)
|
2016-06-06 15:26:37 +00:00
|
|
|
|
2016-06-08 04:56:05 +00:00
|
|
|
if params[:expand]
|
|
|
|
list = []
|
2016-06-30 20:04:48 +00:00
|
|
|
tickets.each { |ticket|
|
2016-06-08 04:56:05 +00:00
|
|
|
list.push ticket.attributes_with_relation_names
|
|
|
|
}
|
|
|
|
render json: list, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-06-06 15:26:37 +00:00
|
|
|
if params[:full]
|
|
|
|
assets = {}
|
|
|
|
item_ids = []
|
2016-06-30 20:04:48 +00:00
|
|
|
tickets.each { |item|
|
2016-06-06 15:26:37 +00:00
|
|
|
item_ids.push item.id
|
|
|
|
assets = item.assets(assets)
|
|
|
|
}
|
|
|
|
render json: {
|
|
|
|
record_ids: item_ids,
|
|
|
|
assets: assets,
|
|
|
|
}, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: tickets
|
|
|
|
end
|
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# GET /api/v1/tickets/1
|
2012-04-10 14:06:46 +00:00
|
|
|
def show
|
|
|
|
|
2016-01-27 18:26:10 +00:00
|
|
|
# permission check
|
2016-06-06 15:26:37 +00:00
|
|
|
ticket = Ticket.find(params[:id])
|
2016-06-30 08:24:03 +00:00
|
|
|
ticket_permission(ticket)
|
2016-06-06 15:26:37 +00:00
|
|
|
|
2016-06-08 04:56:05 +00:00
|
|
|
if params[:expand]
|
|
|
|
result = ticket.attributes_with_relation_names
|
|
|
|
render json: result, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-06-06 15:26:37 +00:00
|
|
|
if params[:full]
|
2016-06-07 19:22:08 +00:00
|
|
|
full = Ticket.full(params[:id])
|
|
|
|
render json: full
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if params[:all]
|
|
|
|
render json: ticket_all(ticket)
|
2016-06-06 15:26:37 +00:00
|
|
|
return
|
|
|
|
end
|
2012-09-04 21:28:49 +00:00
|
|
|
|
2016-06-06 15:26:37 +00:00
|
|
|
render json: ticket
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# POST /api/v1/tickets
|
2012-04-10 14:06:46 +00:00
|
|
|
def create
|
2016-06-06 15:26:37 +00:00
|
|
|
clean_params = Ticket.param_association_lookup(params)
|
|
|
|
clean_params = Ticket.param_cleanup(clean_params, true)
|
2016-08-19 11:57:13 +00:00
|
|
|
|
2016-08-23 18:46:04 +00:00
|
|
|
# overwrite params
|
|
|
|
if !current_user.permissions?('ticket.agent')
|
|
|
|
[:owner, :owner_id, :customer, :customer_id, :organization, :organization_id, :preferences].each { |key|
|
|
|
|
clean_params.delete(key)
|
|
|
|
}
|
|
|
|
clean_params[:customer_id] = current_user.id
|
|
|
|
end
|
|
|
|
|
2016-08-19 11:57:13 +00:00
|
|
|
# try to create customer if needed
|
|
|
|
if clean_params[:customer_id] && clean_params[:customer_id] =~ /^guess:(.+?)$/
|
|
|
|
email = $1
|
|
|
|
if email !~ /@/ || email =~ /(>|<|\||\!|"|§|'|\$|%|&|\(|\)|\?|\s)/
|
2016-08-26 08:30:37 +00:00
|
|
|
render json: { error: 'Invalid email of customer' }, status: :unprocessable_entity
|
2016-08-19 11:57:13 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
customer = User.find_by(email: email)
|
|
|
|
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
|
|
|
|
|
2016-06-06 15:26:37 +00:00
|
|
|
ticket = Ticket.new(clean_params)
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-04-16 11:58:15 +00:00
|
|
|
# check if article is given
|
|
|
|
if !params[:article]
|
2016-06-06 15:26:37 +00:00
|
|
|
render json: { error: 'article hash is missing' }, status: :unprocessable_entity
|
2012-04-16 11:58:15 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# create ticket
|
2016-08-23 18:46:04 +00:00
|
|
|
ticket.save!
|
2016-09-08 19:18:26 +00:00
|
|
|
ticket.with_lock do
|
|
|
|
|
|
|
|
# create tags if given
|
|
|
|
if params[:tags] && !params[:tags].empty?
|
|
|
|
tags = params[:tags].split(/,/)
|
|
|
|
tags.each { |tag|
|
|
|
|
Tag.tag_add(
|
|
|
|
object: 'Ticket',
|
|
|
|
o_id: ticket.id,
|
|
|
|
item: tag,
|
|
|
|
created_by_id: current_user.id,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
end
|
2012-10-02 05:46:08 +00:00
|
|
|
|
2016-09-08 19:18:26 +00:00
|
|
|
# create article if given
|
|
|
|
if params[:article]
|
|
|
|
article_create(ticket, params[:article])
|
|
|
|
end
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2016-08-23 07:47:06 +00:00
|
|
|
# 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]
|
|
|
|
raise 'Invalid link structure' if params[:links].to_h.class != Hash
|
|
|
|
params[:links].each { |target_object, link_types_with_object_ids|
|
|
|
|
raise 'Invalid link structure (Object)' if link_types_with_object_ids.to_h.class != Hash
|
|
|
|
link_types_with_object_ids.each { |link_type, object_ids|
|
|
|
|
raise 'Invalid link structure (Object->LinkType)' if object_ids.class != Array
|
|
|
|
object_ids.each { |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
|
|
|
|
|
2016-08-23 18:46:04 +00:00
|
|
|
if params[:expand]
|
2016-09-04 21:24:19 +00:00
|
|
|
result = ticket.reload.attributes_with_relation_names
|
2016-08-23 18:46:04 +00:00
|
|
|
render json: result, status: :created
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-09-04 21:24:19 +00:00
|
|
|
if params[:all]
|
|
|
|
render json: ticket_all(ticket.reload)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: ticket.reload, status: :created
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# PUT /api/v1/tickets/1
|
2012-04-10 14:06:46 +00:00
|
|
|
def update
|
|
|
|
|
2016-01-27 18:26:10 +00:00
|
|
|
# permission check
|
2016-06-06 15:26:37 +00:00
|
|
|
ticket = Ticket.find(params[:id])
|
2016-06-30 08:24:03 +00:00
|
|
|
ticket_permission(ticket)
|
2014-09-23 05:37:43 +00:00
|
|
|
|
2016-06-06 15:26:37 +00:00
|
|
|
clean_params = Ticket.param_association_lookup(params)
|
|
|
|
clean_params = Ticket.param_cleanup(clean_params, true)
|
|
|
|
|
2016-08-23 18:46:04 +00:00
|
|
|
# overwrite params
|
|
|
|
if !current_user.permissions?('ticket.agent')
|
|
|
|
[:owner, :owner_id, :customer, :customer_id, :organization, :organization_id, :preferences].each { |key|
|
|
|
|
clean_params.delete(key)
|
|
|
|
}
|
|
|
|
end
|
2012-09-04 21:28:49 +00:00
|
|
|
|
2016-09-08 19:18:26 +00:00
|
|
|
ticket.with_lock do
|
|
|
|
ticket.update_attributes!(clean_params)
|
|
|
|
if params[:article]
|
|
|
|
article_create(ticket, params[:article])
|
|
|
|
end
|
2016-08-23 18:46:04 +00:00
|
|
|
end
|
2016-06-08 04:56:05 +00:00
|
|
|
|
2016-08-23 18:46:04 +00:00
|
|
|
if params[:expand]
|
2016-09-04 21:24:19 +00:00
|
|
|
result = ticket.reload.attributes_with_relation_names
|
2016-08-23 18:46:04 +00:00
|
|
|
render json: result, status: :ok
|
|
|
|
return
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2016-08-23 18:46:04 +00:00
|
|
|
|
2016-09-04 21:24:19 +00:00
|
|
|
if params[:all]
|
|
|
|
render json: ticket_all(ticket.reload)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: ticket.reload, status: :ok
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# DELETE /api/v1/tickets/1
|
2012-04-10 14:06:46 +00:00
|
|
|
def destroy
|
2012-09-04 21:28:49 +00:00
|
|
|
|
2015-02-15 09:23:55 +00:00
|
|
|
# permission check
|
2016-06-06 15:26:37 +00:00
|
|
|
ticket = Ticket.find(params[:id])
|
2016-06-30 08:24:03 +00:00
|
|
|
ticket_permission(ticket)
|
2012-09-04 21:28:49 +00:00
|
|
|
|
2016-08-23 18:46:04 +00:00
|
|
|
raise Exceptions::NotAuthorized, 'Not authorized (admin permission required)!' if !current_user.permissions?('admin')
|
|
|
|
|
|
|
|
ticket.destroy!
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-04-12 11:27:01 +00:00
|
|
|
head :ok
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
2012-09-20 12:08:02 +00:00
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# GET /api/v1/ticket_customer
|
|
|
|
# GET /api/v1/tickets_customer
|
2012-09-20 12:08:02 +00:00
|
|
|
def ticket_customer
|
2012-10-02 05:46:08 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
# return result
|
2013-08-17 21:10:11 +00:00
|
|
|
result = Ticket::ScreenOptions.list_by_customer(
|
2015-04-27 13:42:53 +00:00
|
|
|
customer_id: params[:customer_id],
|
|
|
|
limit: 15,
|
2013-08-06 09:23:25 +00:00
|
|
|
)
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: result
|
2012-09-20 12:08:02 +00:00
|
|
|
end
|
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# GET /api/v1/ticket_history/1
|
2012-09-20 12:08:02 +00:00
|
|
|
def ticket_history
|
|
|
|
|
|
|
|
# get ticket data
|
2016-05-22 09:37:44 +00:00
|
|
|
ticket = Ticket.find(params[:id])
|
2012-09-20 12:08:02 +00:00
|
|
|
|
2016-01-27 18:26:10 +00:00
|
|
|
# permission check
|
2016-06-30 08:24:03 +00:00
|
|
|
ticket_permission(ticket)
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
# get history of ticket
|
2013-09-29 16:40:42 +00:00
|
|
|
history = ticket.history_get(true)
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
# return result
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: history
|
2012-09-20 12:08:02 +00:00
|
|
|
end
|
|
|
|
|
2014-09-21 19:58:07 +00:00
|
|
|
# GET /api/v1/ticket_related/1
|
|
|
|
def ticket_related
|
2012-10-18 19:23:05 +00:00
|
|
|
|
2016-05-22 09:37:44 +00:00
|
|
|
ticket = Ticket.find(params[:ticket_id])
|
2013-08-19 08:21:52 +00:00
|
|
|
assets = ticket.assets({})
|
|
|
|
|
|
|
|
# open tickets by customer
|
2016-05-22 21:17:46 +00:00
|
|
|
access_condition = Ticket.access_condition(current_user)
|
2014-09-21 19:58:07 +00:00
|
|
|
|
2015-04-30 15:53:03 +00:00
|
|
|
ticket_lists = Ticket
|
|
|
|
.where(
|
|
|
|
customer_id: ticket.customer_id,
|
2016-05-22 21:17:46 +00:00
|
|
|
state_id: Ticket::State.by_category('open')
|
2015-04-30 15:53:03 +00:00
|
|
|
)
|
|
|
|
.where(access_condition)
|
2016-05-22 21:17:46 +00:00
|
|
|
.where('id != ?', [ ticket.id ])
|
2015-04-30 15:53:03 +00:00
|
|
|
.order('created_at DESC')
|
|
|
|
.limit(6)
|
2012-10-18 19:23:05 +00:00
|
|
|
|
2016-06-08 13:25:39 +00:00
|
|
|
# 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(access_condition)
|
|
|
|
.where('id != ?', [ ticket.id ])
|
|
|
|
.order('created_at DESC')
|
|
|
|
.limit(6)
|
|
|
|
end
|
|
|
|
|
2013-08-19 08:21:52 +00:00
|
|
|
# get related assets
|
2014-02-03 19:24:49 +00:00
|
|
|
ticket_ids_by_customer = []
|
2016-06-30 20:04:48 +00:00
|
|
|
ticket_lists.each { |ticket_list|
|
2015-04-30 15:53:03 +00:00
|
|
|
ticket_ids_by_customer.push ticket_list.id
|
|
|
|
assets = ticket_list.assets(assets)
|
2012-10-18 19:23:05 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 08:21:52 +00:00
|
|
|
ticket_ids_recent_viewed = []
|
2016-05-22 09:37:44 +00:00
|
|
|
recent_views = RecentView.list(current_user, 8, 'Ticket')
|
2016-06-30 20:04:48 +00:00
|
|
|
recent_views.each { |recent_view|
|
2015-04-30 15:53:03 +00:00
|
|
|
next if recent_view['object'] != 'Ticket'
|
|
|
|
ticket_ids_recent_viewed.push recent_view['o_id']
|
2016-05-22 09:37:44 +00:00
|
|
|
recent_view_ticket = Ticket.find(recent_view['o_id'])
|
2015-04-30 15:53:03 +00:00
|
|
|
assets = recent_view_ticket.assets(assets)
|
2013-08-19 08:21:52 +00:00
|
|
|
}
|
2012-10-18 19:23:05 +00:00
|
|
|
|
|
|
|
# return result
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
assets: assets,
|
|
|
|
ticket_ids_by_customer: ticket_ids_by_customer,
|
|
|
|
ticket_ids_recent_viewed: ticket_ids_recent_viewed,
|
2012-10-18 19:23:05 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# GET /api/v1/ticket_merge/1/1
|
2012-09-20 12:08:02 +00:00
|
|
|
def ticket_merge
|
|
|
|
|
|
|
|
# check master ticket
|
2015-11-17 14:04:36 +00:00
|
|
|
ticket_master = Ticket.find_by(number: params[:master_ticket_number])
|
2012-09-20 12:08:02 +00:00
|
|
|
if !ticket_master
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
result: 'faild',
|
|
|
|
message: 'No such master ticket number!',
|
2012-09-20 12:08:02 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-01-27 18:26:10 +00:00
|
|
|
# permission check
|
2016-06-30 08:24:03 +00:00
|
|
|
ticket_permission(ticket_master)
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
# check slave ticket
|
2016-05-22 21:17:46 +00:00
|
|
|
ticket_slave = Ticket.find_by(id: params[:slave_ticket_id])
|
2012-09-20 12:08:02 +00:00
|
|
|
if !ticket_slave
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
result: 'faild',
|
|
|
|
message: 'No such slave ticket!',
|
2012-09-20 12:08:02 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-01-27 18:26:10 +00:00
|
|
|
# permission check
|
2016-06-30 08:24:03 +00:00
|
|
|
ticket_permission(ticket_slave)
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
# check diffetent ticket ids
|
|
|
|
if ticket_slave.id == ticket_master.id
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
result: 'faild',
|
|
|
|
message: 'Can\'t merge ticket with it self!',
|
2012-09-20 12:08:02 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
end
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
# merge ticket
|
2015-04-30 15:53:03 +00:00
|
|
|
ticket_slave.merge_to(
|
|
|
|
ticket_id: ticket_master.id,
|
|
|
|
created_by_id: current_user.id,
|
2013-06-12 15:59:58 +00:00
|
|
|
)
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
# return result
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
result: 'success',
|
|
|
|
master_ticket: ticket_master.attributes,
|
|
|
|
slave_ticket: ticket_slave.attributes,
|
2012-09-20 12:08:02 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-11-17 14:04:36 +00:00
|
|
|
# GET /api/v1/ticket_split
|
|
|
|
def ticket_split
|
|
|
|
|
|
|
|
# permission check
|
|
|
|
ticket = Ticket.find(params[:ticket_id])
|
2016-06-30 08:24:03 +00:00
|
|
|
ticket_permission(ticket)
|
2015-11-17 14:04:36 +00:00
|
|
|
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
|
2012-09-20 12:08:02 +00:00
|
|
|
def ticket_create
|
|
|
|
|
2013-01-04 08:09:59 +00:00
|
|
|
# get attributes to update
|
2013-08-17 21:10:11 +00:00
|
|
|
attributes_to_change = Ticket::ScreenOptions.attributes_to_change(
|
2015-04-27 13:42:53 +00:00
|
|
|
user: current_user,
|
2012-09-20 12:08:02 +00:00
|
|
|
)
|
2015-11-17 14:04:36 +00:00
|
|
|
render json: attributes_to_change
|
2012-09-20 12:08:02 +00:00
|
|
|
end
|
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# GET /api/v1/tickets/search
|
2012-11-14 01:05:53 +00:00
|
|
|
def search
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2014-09-01 13:09:43 +00:00
|
|
|
# permit nested conditions
|
2016-09-11 08:46:01 +00:00
|
|
|
if params[:condition]
|
|
|
|
params.require(:condition).permit!
|
|
|
|
end
|
2014-09-01 13:09:43 +00:00
|
|
|
|
2016-09-14 07:21:17 +00:00
|
|
|
# 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
|
|
|
|
|
2012-11-14 01:05:53 +00:00
|
|
|
# build result list
|
2013-05-21 22:30:09 +00:00
|
|
|
tickets = Ticket.search(
|
2015-04-27 13:42:53 +00:00
|
|
|
limit: params[:limit],
|
2016-09-07 08:39:06 +00:00
|
|
|
query: params[:query],
|
2015-04-27 13:42:53 +00:00
|
|
|
condition: params[:condition],
|
|
|
|
current_user: current_user,
|
2013-05-21 22:30:09 +00:00
|
|
|
)
|
2016-06-08 04:56:05 +00:00
|
|
|
|
2016-09-14 07:21:17 +00:00
|
|
|
# do pagination if needed
|
|
|
|
if params[:page] && params[:per_page]
|
|
|
|
offset = (params[:page].to_i - 1) * params[:per_page].to_i
|
|
|
|
tickets = tickets.slice(offset, params[:per_page].to_i) || []
|
|
|
|
end
|
|
|
|
|
2016-06-08 04:56:05 +00:00
|
|
|
if params[:expand]
|
|
|
|
list = []
|
2016-06-30 20:04:48 +00:00
|
|
|
tickets.each { |ticket|
|
2016-06-08 04:56:05 +00:00
|
|
|
list.push ticket.attributes_with_relation_names
|
|
|
|
}
|
|
|
|
render json: list, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2013-08-19 06:29:49 +00:00
|
|
|
assets = {}
|
2013-05-21 22:30:09 +00:00
|
|
|
ticket_result = []
|
|
|
|
tickets.each do |ticket|
|
|
|
|
ticket_result.push ticket.id
|
2013-08-19 06:29:49 +00:00
|
|
|
assets = ticket.assets(assets)
|
2012-11-14 01:05:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# return result
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
tickets: ticket_result,
|
|
|
|
tickets_count: tickets.count,
|
|
|
|
assets: assets,
|
2012-11-14 01:05:53 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-09-17 01:04:16 +00:00
|
|
|
# GET /api/v1/tickets/selector
|
|
|
|
def selector
|
2016-08-12 16:39:09 +00:00
|
|
|
permission_check('admin.*')
|
2015-09-17 01:04:16 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
# GET /api/v1/ticket_stats
|
2014-11-09 23:42:17 +00:00
|
|
|
def stats
|
2014-11-10 07:34:20 +00:00
|
|
|
|
|
|
|
if !params[:user_id] && !params[:organization_id]
|
2016-03-01 14:26:46 +00:00
|
|
|
raise 'Need user_id or organization_id as param'
|
2014-11-10 07:34:20 +00:00
|
|
|
end
|
2014-11-09 23:42:17 +00:00
|
|
|
|
2016-01-27 18:26:10 +00:00
|
|
|
# permission check
|
2016-06-30 08:24:03 +00:00
|
|
|
#ticket_permission(ticket)
|
2014-11-09 23:42:17 +00:00
|
|
|
|
|
|
|
# lookup open user tickets
|
2014-11-10 07:34:20 +00:00
|
|
|
limit = 100
|
|
|
|
assets = {}
|
2015-11-30 10:50:02 +00:00
|
|
|
access_condition = Ticket.access_condition(current_user)
|
2015-04-27 20:49:17 +00:00
|
|
|
now = Time.zone.now
|
2014-11-10 07:34:20 +00:00
|
|
|
user_tickets_open_ids = []
|
|
|
|
user_tickets_closed_ids = []
|
|
|
|
user_ticket_volume_by_year = []
|
|
|
|
if params[:user_id]
|
2015-11-30 10:50:02 +00:00
|
|
|
user = User.lookup(id: params[:user_id])
|
2014-11-10 07:34:20 +00:00
|
|
|
condition = {
|
2015-09-23 14:25:06 +00:00
|
|
|
'ticket.state_id' => {
|
2015-09-17 18:39:51 +00:00
|
|
|
operator: 'is',
|
|
|
|
value: Ticket::State.by_category('open').map(&:id),
|
|
|
|
},
|
2015-09-23 14:25:06 +00:00
|
|
|
'ticket.customer_id' => {
|
2015-09-17 18:39:51 +00:00
|
|
|
operator: 'is',
|
|
|
|
value: user.id,
|
|
|
|
},
|
2014-11-10 07:34:20 +00:00
|
|
|
}
|
|
|
|
user_tickets_open = Ticket.search(
|
2015-04-27 13:42:53 +00:00
|
|
|
limit: limit,
|
|
|
|
condition: condition,
|
|
|
|
current_user: current_user,
|
2014-11-10 07:34:20 +00:00
|
|
|
)
|
|
|
|
user_tickets_open_ids = assets_of_tickets(user_tickets_open, assets)
|
2014-11-09 23:42:17 +00:00
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
# lookup closed user tickets
|
|
|
|
condition = {
|
2015-09-23 14:25:06 +00:00
|
|
|
'ticket.state_id' => {
|
2015-09-17 18:39:51 +00:00
|
|
|
operator: 'is',
|
|
|
|
value: Ticket::State.by_category('closed').map(&:id),
|
|
|
|
},
|
2015-09-23 14:25:06 +00:00
|
|
|
'ticket.customer_id' => {
|
2015-09-17 18:39:51 +00:00
|
|
|
operator: 'is',
|
|
|
|
value: user.id,
|
|
|
|
},
|
2014-11-10 07:34:20 +00:00
|
|
|
}
|
|
|
|
user_tickets_closed = Ticket.search(
|
2015-04-27 13:42:53 +00:00
|
|
|
limit: limit,
|
|
|
|
condition: condition,
|
|
|
|
current_user: current_user,
|
2014-11-10 07:34:20 +00:00
|
|
|
)
|
|
|
|
user_tickets_closed_ids = assets_of_tickets(user_tickets_closed, assets)
|
2014-11-09 23:42:17 +00:00
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
# generate stats by user
|
2016-06-30 20:04:48 +00:00
|
|
|
(0..11).each { |month_back|
|
2015-04-30 15:53:03 +00:00
|
|
|
date_to_check = now - month_back.month
|
2015-04-27 20:49:17 +00:00
|
|
|
date_start = "#{date_to_check.year}-#{date_to_check.month}-01 00:00:00"
|
2014-11-10 07:34:20 +00:00
|
|
|
date_end = "#{date_to_check.year}-#{date_to_check.month}-#{date_to_check.end_of_month.day} 00:00:00"
|
|
|
|
|
|
|
|
condition = {
|
|
|
|
'tickets.customer_id' => user.id,
|
|
|
|
}
|
|
|
|
|
|
|
|
# created
|
2015-04-30 15:53:03 +00:00
|
|
|
created = Ticket.where('created_at > ? AND created_at < ?', date_start, date_end )
|
2016-01-15 17:22:57 +00:00
|
|
|
.where(access_condition)
|
|
|
|
.where(condition)
|
|
|
|
.count
|
2014-11-10 07:34:20 +00:00
|
|
|
|
|
|
|
# closed
|
2016-09-14 07:15:30 +00:00
|
|
|
closed = Ticket.where('close_at > ? AND close_at < ?', date_start, date_end )
|
2016-01-15 17:22:57 +00:00
|
|
|
.where(access_condition)
|
|
|
|
.where(condition)
|
|
|
|
.count
|
2014-11-10 07:34:20 +00:00
|
|
|
|
|
|
|
data = {
|
2015-04-27 13:42:53 +00:00
|
|
|
month: date_to_check.month,
|
|
|
|
year: date_to_check.year,
|
|
|
|
text: Date::MONTHNAMES[date_to_check.month],
|
|
|
|
created: created,
|
|
|
|
closed: closed,
|
2014-11-10 07:34:20 +00:00
|
|
|
}
|
|
|
|
user_ticket_volume_by_year.push data
|
|
|
|
}
|
|
|
|
end
|
2014-11-09 23:42:17 +00:00
|
|
|
|
|
|
|
# lookup open org tickets
|
2014-11-10 07:34:20 +00:00
|
|
|
org_tickets_open_ids = []
|
|
|
|
org_tickets_closed_ids = []
|
|
|
|
org_ticket_volume_by_year = []
|
|
|
|
if params[:organization_id] && !params[:organization_id].empty?
|
|
|
|
|
2014-11-09 23:42:17 +00:00
|
|
|
condition = {
|
2015-09-23 14:25:06 +00:00
|
|
|
'ticket.state_id' => {
|
2015-09-17 18:39:51 +00:00
|
|
|
operator: 'is',
|
|
|
|
value: Ticket::State.by_category('open').map(&:id),
|
|
|
|
},
|
2015-09-23 14:25:06 +00:00
|
|
|
'ticket.organization_id' => {
|
2015-09-17 18:39:51 +00:00
|
|
|
operator: 'is',
|
|
|
|
value: params[:organization_id],
|
|
|
|
},
|
2014-11-09 23:42:17 +00:00
|
|
|
}
|
|
|
|
org_tickets_open = Ticket.search(
|
2015-04-27 13:42:53 +00:00
|
|
|
limit: limit,
|
|
|
|
condition: condition,
|
|
|
|
current_user: current_user,
|
2014-11-09 23:42:17 +00:00
|
|
|
)
|
|
|
|
org_tickets_open_ids = assets_of_tickets(org_tickets_open, assets)
|
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
# lookup closed org tickets
|
2014-11-09 23:42:17 +00:00
|
|
|
condition = {
|
2015-09-23 14:25:06 +00:00
|
|
|
'ticket.state_id' => {
|
2015-09-17 18:39:51 +00:00
|
|
|
operator: 'is',
|
|
|
|
value: Ticket::State.by_category('closed').map(&:id),
|
|
|
|
},
|
2015-09-23 14:25:06 +00:00
|
|
|
'ticket.organization_id' => {
|
2015-09-17 18:39:51 +00:00
|
|
|
operator: 'is',
|
|
|
|
value: params[:organization_id],
|
|
|
|
},
|
2014-11-09 23:42:17 +00:00
|
|
|
}
|
|
|
|
org_tickets_closed = Ticket.search(
|
2015-04-27 13:42:53 +00:00
|
|
|
limit: limit,
|
|
|
|
condition: condition,
|
|
|
|
current_user: current_user,
|
2014-11-09 23:42:17 +00:00
|
|
|
)
|
|
|
|
org_tickets_closed_ids = assets_of_tickets(org_tickets_closed, assets)
|
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
# generate stats by org
|
2016-06-30 20:04:48 +00:00
|
|
|
(0..11).each { |month_back|
|
2015-04-30 15:53:03 +00:00
|
|
|
date_to_check = now - month_back.month
|
2015-04-27 20:49:17 +00:00
|
|
|
date_start = "#{date_to_check.year}-#{date_to_check.month}-01 00:00:00"
|
2014-11-10 07:34:20 +00:00
|
|
|
date_end = "#{date_to_check.year}-#{date_to_check.month}-#{date_to_check.end_of_month.day} 00:00:00"
|
2014-11-09 23:42:17 +00:00
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
condition = {
|
|
|
|
'tickets.organization_id' => params[:organization_id],
|
|
|
|
}
|
2014-11-09 23:42:17 +00:00
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
# created
|
|
|
|
created = Ticket.where('created_at > ? AND created_at < ?', date_start, date_end ).where(condition).count
|
2014-11-09 23:42:17 +00:00
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
# closed
|
2016-09-14 07:15:30 +00:00
|
|
|
closed = Ticket.where('close_at > ? AND close_at < ?', date_start, date_end ).where(condition).count
|
2014-11-09 23:42:17 +00:00
|
|
|
|
2014-11-10 07:34:20 +00:00
|
|
|
data = {
|
2015-04-27 13:42:53 +00:00
|
|
|
month: date_to_check.month,
|
|
|
|
year: date_to_check.year,
|
|
|
|
text: Date::MONTHNAMES[date_to_check.month],
|
|
|
|
created: created,
|
|
|
|
closed: closed,
|
2014-11-10 07:34:20 +00:00
|
|
|
}
|
|
|
|
org_ticket_volume_by_year.push data
|
2014-11-09 23:42:17 +00:00
|
|
|
}
|
2014-11-10 07:34:20 +00:00
|
|
|
end
|
2014-11-09 23:42:17 +00:00
|
|
|
|
|
|
|
# return result
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
user_tickets_open_ids: user_tickets_open_ids,
|
|
|
|
user_tickets_closed_ids: user_tickets_closed_ids,
|
|
|
|
org_tickets_open_ids: org_tickets_open_ids,
|
|
|
|
org_tickets_closed_ids: org_tickets_closed_ids,
|
|
|
|
user_ticket_volume_by_year: user_ticket_volume_by_year,
|
|
|
|
org_ticket_volume_by_year: org_ticket_volume_by_year,
|
|
|
|
assets: assets,
|
2014-11-09 23:42:17 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2014-09-23 05:37:43 +00:00
|
|
|
private
|
|
|
|
|
2014-11-09 23:42:17 +00:00
|
|
|
def assets_of_tickets(tickets, assets)
|
|
|
|
ticket_ids = []
|
|
|
|
tickets.each do |ticket|
|
|
|
|
ticket_ids.push ticket.id
|
|
|
|
assets = ticket.assets(assets)
|
|
|
|
end
|
2015-04-27 20:49:17 +00:00
|
|
|
ticket_ids
|
2014-11-09 23:42:17 +00:00
|
|
|
end
|
|
|
|
|
2016-06-07 19:22:08 +00:00
|
|
|
def ticket_all(ticket)
|
2016-06-06 15:26:37 +00:00
|
|
|
|
|
|
|
# get attributes to update
|
|
|
|
attributes_to_change = Ticket::ScreenOptions.attributes_to_change(user: current_user, ticket: ticket)
|
|
|
|
|
|
|
|
# get related users
|
|
|
|
assets = attributes_to_change[:assets]
|
|
|
|
assets = ticket.assets(assets)
|
|
|
|
|
|
|
|
# get related users
|
|
|
|
article_ids = []
|
2016-08-24 23:13:05 +00:00
|
|
|
ticket.articles.order('created_at ASC, id ASC').each { |article|
|
2016-06-06 15:26:37 +00:00
|
|
|
|
|
|
|
# ignore internal article if customer is requesting
|
2016-08-12 16:39:09 +00:00
|
|
|
next if article.internal == true && current_user.permissions?('ticket.customer')
|
2016-06-06 15:26:37 +00:00
|
|
|
|
|
|
|
article_ids.push article.id
|
|
|
|
assets = article.assets(assets)
|
|
|
|
}
|
|
|
|
|
|
|
|
# get links
|
|
|
|
links = Link.list(
|
|
|
|
link_object: 'Ticket',
|
|
|
|
link_object_value: ticket.id,
|
|
|
|
)
|
|
|
|
link_list = []
|
|
|
|
links.each { |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
|
|
|
|
}
|
|
|
|
|
|
|
|
# get tags
|
|
|
|
tags = Tag.tag_list(
|
|
|
|
object: 'Ticket',
|
|
|
|
o_id: ticket.id,
|
|
|
|
)
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|