2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2015-10-15 13:23:41 +00:00
|
|
|
|
|
|
|
class MacrosController < ApplicationController
|
2021-12-20 13:02:30 +00:00
|
|
|
prepend_before_action :authorize!
|
2017-02-15 12:29:25 +00:00
|
|
|
prepend_before_action :authentication_check
|
2015-10-15 13:23:41 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Format:
|
|
|
|
JSON
|
|
|
|
|
|
|
|
Example:
|
|
|
|
{
|
|
|
|
"id":1,
|
|
|
|
"name":"some text_module",
|
|
|
|
"perform":{
|
|
|
|
"ticket.priority_id": 5,
|
|
|
|
"ticket.state_id": 2,
|
|
|
|
},
|
|
|
|
"active":true,
|
|
|
|
"updated_at":"2012-09-14T17:51:53Z",
|
|
|
|
"created_at":"2012-09-14T17:51:53Z",
|
|
|
|
"updated_by_id":2,
|
|
|
|
"created_by_id":2,
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
GET /api/v1/macros.json
|
|
|
|
|
|
|
|
Response:
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name1",
|
|
|
|
...
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "some_name2",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/macros.json -v -u #{login}:#{password}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def index
|
2021-12-20 13:02:30 +00:00
|
|
|
model_index_render(policy_scope(Macro), params)
|
2015-10-15 13:23:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
GET /api/v1/macros/#{id}.json
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "name_1",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/macros/#{id}.json -v -u #{login}:#{password}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def show
|
2021-12-20 13:02:30 +00:00
|
|
|
model_show_render(policy_scope(Macro), params)
|
2015-10-15 13:23:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
POST /api/v1/macros.json
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"name": "some name",
|
|
|
|
"perform":{
|
|
|
|
"ticket.priority_id": 5,
|
|
|
|
"ticket.state_id": 2,
|
|
|
|
},
|
|
|
|
"active":true,
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/macros.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"name": "some_name","active": true, "note": "some note"}'
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def create
|
|
|
|
model_create_render(Macro, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
PUT /api/v1/macros/{id}.json
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"name": "some name",
|
|
|
|
"perform":{
|
|
|
|
"ticket.priority_id": 5,
|
|
|
|
"ticket.state_id": 2,
|
|
|
|
},
|
|
|
|
"active":true,
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/macros.json -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(Macro, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
DELETE /api/v1/macros/{id}.json
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/v1/macros.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(Macro, params)
|
2015-10-15 13:23:41 +00:00
|
|
|
end
|
|
|
|
end
|