2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2013-02-01 11:51:07 +00:00
|
|
|
class SlasController < ApplicationController
|
2020-03-19 09:39:51 +00:00
|
|
|
prepend_before_action { authentication_check && authorize! }
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Format:
|
|
|
|
JSON
|
|
|
|
|
|
|
|
Example:
|
|
|
|
{
|
|
|
|
"id":1,
|
|
|
|
"name":"some sla",
|
|
|
|
"condition":{"c_a":1,"c_b":2},
|
|
|
|
"data":{"o_a":1,"o_b":2},
|
|
|
|
"updated_at":"2012-09-14T17:51:53Z",
|
|
|
|
"created_at":"2012-09-14T17:51:53Z",
|
|
|
|
"updated_by_id":2.
|
|
|
|
"created_by_id":2,
|
|
|
|
}
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2013-02-01 11:51:07 +00:00
|
|
|
=end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
GET /api/v1/slas.json
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
Response:
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name1",
|
|
|
|
...
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "some_name2",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
Test:
|
2013-08-06 22:10:28 +00:00
|
|
|
curl http://localhost/api/v1/slas.json -v -u #{login}:#{password}
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def index
|
2015-09-15 13:11:00 +00:00
|
|
|
|
2017-12-14 13:19:24 +00:00
|
|
|
if response_full?
|
2016-03-20 20:04:58 +00:00
|
|
|
|
|
|
|
# calendars
|
|
|
|
assets = {}
|
2017-10-01 12:25:52 +00:00
|
|
|
Calendar.all.each do |calendar|
|
2016-03-20 20:04:58 +00:00
|
|
|
assets = calendar.assets(assets)
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-09-15 13:11:00 +00:00
|
|
|
|
2016-03-20 20:04:58 +00:00
|
|
|
# slas
|
|
|
|
sla_ids = []
|
2017-10-01 12:25:52 +00:00
|
|
|
Sla.all.each do |item|
|
2016-03-20 20:04:58 +00:00
|
|
|
sla_ids.push item.id
|
|
|
|
assets = item.assets(assets)
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2016-03-20 20:04:58 +00:00
|
|
|
render json: {
|
|
|
|
record_ids: sla_ids,
|
2018-12-19 17:31:51 +00:00
|
|
|
assets: assets,
|
2016-03-20 20:04:58 +00:00
|
|
|
}, status: :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
model_index_render(Sla, params)
|
2013-02-01 11:51:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
GET /api/v1/slas/#{id}.json
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "name_1",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2013-08-06 22:10:28 +00:00
|
|
|
curl http://localhost/api/v1/slas/#{id}.json -v -u #{login}:#{password}
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2013-02-01 11:51:07 +00:00
|
|
|
=end
|
|
|
|
|
|
|
|
def show
|
|
|
|
model_show_render(Sla, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
POST /api/v1/slas.json
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"name":"some sla",
|
|
|
|
"condition":{"c_a":1,"c_b":2},
|
|
|
|
"data":{"o_a":1,"o_b":2},
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2013-08-06 22:10:28 +00:00
|
|
|
curl http://localhost/api/v1/slas.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"name": "some_name","active": true, "note": "some note"}'
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def create
|
|
|
|
model_create_render(Sla, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
PUT /api/v1/slas/{id}.json
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"name":"some sla",
|
|
|
|
"condition":{"c_a":1,"c_b":2},
|
|
|
|
"data":{"o_a":1,"o_b":2},
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2013-08-06 22:10:28 +00:00
|
|
|
curl http://localhost/api/v1/slas.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"name": "some_name","active": true, "note": "some note"}'
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def update
|
|
|
|
model_update_render(Sla, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
DELETE /api/v1/slas/{id}.json
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
Response:
|
|
|
|
{}
|
|
|
|
|
|
|
|
Test:
|
2013-08-06 22:10:28 +00:00
|
|
|
curl http://localhost/api/v1/slas.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X DELETE
|
2013-02-01 11:51:07 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def destroy
|
2016-11-30 10:30:03 +00:00
|
|
|
model_destroy_render(Sla, params)
|
2013-02-01 11:51:07 +00:00
|
|
|
end
|
2016-08-12 16:39:09 +00:00
|
|
|
|
2013-02-01 11:51:07 +00:00
|
|
|
end
|