2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
class OnlineNotificationsController < ApplicationController
|
2020-03-19 09:39:51 +00:00
|
|
|
prepend_before_action -> { authorize! }, only: %i[show update destroy]
|
2017-02-15 12:29:25 +00:00
|
|
|
prepend_before_action :authentication_check
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Format:
|
|
|
|
JSON
|
|
|
|
|
|
|
|
Example:
|
|
|
|
{
|
2021-07-02 06:30:09 +00:00
|
|
|
"id": 123,
|
|
|
|
"o_id": 628,
|
|
|
|
"object": "Ticket",
|
|
|
|
"type": "escalation",
|
|
|
|
"seen": true,
|
|
|
|
"updated_at": "2016-08-16T07:55:42.119Z",
|
|
|
|
"created_at": "2016-08-16T07:55:42.119Z"
|
2014-08-26 07:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2021-07-02 06:30:09 +00:00
|
|
|
GET /api/v1/online_notifications
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
Response:
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": 1,
|
2021-07-02 06:30:09 +00:00
|
|
|
"object": "Ticket",
|
|
|
|
"type": "escalation",
|
|
|
|
"seen": true,
|
2014-08-26 07:54:12 +00:00
|
|
|
...
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
2021-07-02 06:30:09 +00:00
|
|
|
"object": "Ticket",
|
|
|
|
"type": "escalation",
|
|
|
|
"seen": false,
|
2014-08-26 07:54:12 +00:00
|
|
|
...
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
Test:
|
2021-07-02 06:30:09 +00:00
|
|
|
curl http://localhost/api/v1/online_notifications -v -u #{login}:#{password}
|
2014-08-26 07:54:12 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def index
|
2018-03-20 12:16:17 +00:00
|
|
|
online_notifications = OnlineNotification.list(current_user, 200)
|
|
|
|
|
|
|
|
if response_expand?
|
|
|
|
list = []
|
|
|
|
online_notifications.each do |item|
|
|
|
|
list.push item.attributes_with_association_names
|
|
|
|
end
|
|
|
|
render json: list, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_full?
|
2018-03-20 12:16:17 +00:00
|
|
|
assets = {}
|
|
|
|
item_ids = []
|
|
|
|
online_notifications.each do |item|
|
2021-07-02 06:30:09 +00:00
|
|
|
item_ids.push item['id']
|
2018-03-20 12:16:17 +00:00
|
|
|
assets = item.assets(assets)
|
|
|
|
end
|
|
|
|
render json: {
|
|
|
|
record_ids: item_ids,
|
2018-12-19 17:31:51 +00:00
|
|
|
assets: assets,
|
2018-03-20 12:16:17 +00:00
|
|
|
}, status: :ok
|
2014-08-26 07:54:12 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2018-03-20 12:16:17 +00:00
|
|
|
all = []
|
|
|
|
online_notifications.each do |item|
|
|
|
|
all.push item.attributes_with_association_ids
|
|
|
|
end
|
|
|
|
render json: all, status: :ok
|
2014-08-26 07:54:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2017-04-13 08:15:26 +00:00
|
|
|
Resource:
|
2021-07-02 06:30:09 +00:00
|
|
|
GET /api/v1/online_notifications/#{id}
|
2017-04-13 08:15:26 +00:00
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
2021-07-02 06:30:09 +00:00
|
|
|
"id": 123,
|
|
|
|
"o_id": 628,
|
|
|
|
"object": "Ticket",
|
|
|
|
"type": "escalation",
|
|
|
|
"seen": true,
|
|
|
|
"updated_at": "2016-08-16T07:55:42.119Z",
|
|
|
|
"created_at": "2016-08-16T07:55:42.119Z"
|
2017-04-13 08:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/online_notifications/#{id} -v -u #{login}:#{password}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def show
|
|
|
|
model_show_render(OnlineNotification, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2014-08-26 07:54:12 +00:00
|
|
|
Resource:
|
|
|
|
PUT /api/v1/online_notifications/{id}
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
2021-07-02 06:30:09 +00:00
|
|
|
"id": 123,
|
|
|
|
"o_id": 628,
|
|
|
|
"object": "Ticket",
|
|
|
|
"type": "escalation",
|
|
|
|
"seen": true,
|
|
|
|
"updated_at": "2016-08-16T07:55:42.119Z",
|
|
|
|
"created_at": "2016-08-16T07:55:42.119Z"
|
2014-08-26 07:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
2021-07-02 06:30:09 +00:00
|
|
|
"id": 123,
|
|
|
|
"o_id": 628,
|
|
|
|
"object": "Ticket",
|
|
|
|
"type": "escalation",
|
|
|
|
"seen": true,
|
|
|
|
"updated_at": "2016-08-16T07:55:42.119Z",
|
|
|
|
"created_at": "2016-08-16T07:55:42.119Z"
|
2014-08-26 07:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/online_notifications -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"name": "some_name","active": true, "note": "some note"}'
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def update
|
|
|
|
model_update_render(OnlineNotification, params)
|
|
|
|
end
|
|
|
|
|
2015-01-20 23:30:19 +00:00
|
|
|
=begin
|
|
|
|
|
2015-10-19 06:55:21 +00:00
|
|
|
Resource:
|
|
|
|
DELETE /api/v1/online_notifications/{id}.json
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/online_notifications/{id}.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X DELETE
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def destroy
|
2016-11-30 10:30:03 +00:00
|
|
|
model_destroy_render(OnlineNotification, params)
|
2015-10-19 06:55:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
2015-01-20 23:30:19 +00:00
|
|
|
Resource:
|
|
|
|
PUT /api/v1/online_notifications/mark_all_as_read
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/online_notifications/mark_all_as_read -v -u #{login}:#{password} -X POST -d '{}'
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def mark_all_as_read
|
2017-10-02 12:34:34 +00:00
|
|
|
notifications = OnlineNotification.list(current_user, 200)
|
2015-04-30 17:14:51 +00:00
|
|
|
notifications.each do |notification|
|
2019-09-05 13:52:25 +00:00
|
|
|
next if notification['seen']
|
|
|
|
|
|
|
|
OnlineNotification.find(notification['id']).update!(seen: true)
|
2015-04-30 17:14:51 +00:00
|
|
|
end
|
|
|
|
render json: {}, status: :ok
|
2015-01-12 22:13:50 +00:00
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|