trabajo-afectivo/app/controllers/slas_controller.rb

173 lines
2.7 KiB
Ruby
Raw Normal View History

2014-02-03 19:24:49 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
2013-02-01 11:51:07 +00:00
class SlasController < ApplicationController
before_action :authentication_check
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-02-01 11:51:07 +00:00
=end
=begin
Resource:
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:
curl http://localhost/api/v1/slas.json -v -u #{login}:#{password}
2013-02-01 11:51:07 +00:00
=end
def index
2015-02-15 09:12:27 +00:00
return if deny_if_not_role(Z_ROLENAME_ADMIN)
2015-09-15 13:11:00 +00:00
assets = {}
# calendars
calendar_ids = []
Calendar.all.order(:name).each {|calendar|
2015-09-15 13:11:00 +00:00
calendar_ids.push calendar.id
assets = calendar.assets(assets)
}
# slas
sla_ids = []
Sla.all.order(:name).each {|sla|
2015-09-15 13:11:00 +00:00
sla_ids.push sla.id
assets = sla.assets(assets)
}
render json: {
calendar_ids: calendar_ids,
sla_ids: sla_ids,
assets: assets,
}, status: :ok
2013-02-01 11:51:07 +00:00
end
=begin
Resource:
GET /api/v1/slas/#{id}.json
2013-02-01 11:51:07 +00:00
Response:
{
"id": 1,
"name": "name_1",
...
}
Test:
curl http://localhost/api/v1/slas/#{id}.json -v -u #{login}:#{password}
2013-02-01 11:51:07 +00:00
=end
def show
2015-02-15 09:12:27 +00:00
return if deny_if_not_role(Z_ROLENAME_ADMIN)
2013-02-01 11:51:07 +00:00
model_show_render(Sla, params)
end
=begin
Resource:
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:
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
2015-02-15 09:12:27 +00:00
return if deny_if_not_role(Z_ROLENAME_ADMIN)
2013-02-01 11:51:07 +00:00
model_create_render(Sla, params)
end
=begin
Resource:
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:
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
2015-02-15 09:12:27 +00:00
return if deny_if_not_role(Z_ROLENAME_ADMIN)
2013-02-01 11:51:07 +00:00
model_update_render(Sla, params)
end
=begin
Resource:
DELETE /api/v1/slas/{id}.json
2013-02-01 11:51:07 +00:00
Response:
{}
Test:
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
2015-02-15 09:12:27 +00:00
return if deny_if_not_role(Z_ROLENAME_ADMIN)
2013-02-01 11:51:07 +00:00
model_destory_render(Sla, params)
end
end