2012-04-10 14:06:46 +00:00
|
|
|
class OrganizationsController < ApplicationController
|
|
|
|
before_filter :authentication_check
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Format:
|
|
|
|
JSON
|
|
|
|
|
|
|
|
Example:
|
|
|
|
{
|
|
|
|
"id":1,
|
|
|
|
"name":"Znuny GmbH",
|
|
|
|
"note":"",
|
|
|
|
"active":true,
|
|
|
|
"shared":true,
|
|
|
|
"updated_at":"2012-09-14T17:51:53Z",
|
|
|
|
"created_at":"2012-09-14T17:51:53Z",
|
|
|
|
"created_by_id":2,
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
GET /api/organizations.json
|
|
|
|
|
|
|
|
Response:
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name1",
|
|
|
|
...
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"name": "some_name2",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/organizations.json -v -u #{login}:#{password}
|
|
|
|
|
|
|
|
=end
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
def index
|
|
|
|
model_index_render(Organization, params)
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
GET /api/organizations/#{id}.json
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "name_1",
|
|
|
|
...
|
|
|
|
}
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
Test:
|
|
|
|
curl http://localhost/api/organizations/#{id}.json -v -u #{login}:#{password}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def show
|
|
|
|
model_show_render(Organization, params)
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
POST /api/organizations.json
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"name": "some_name",
|
|
|
|
"active": true,
|
|
|
|
"note": "some note",
|
|
|
|
"shared": true
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/organizations.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"name": "some_name","active": true,"shared": true,"note": "some note"}'
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
def create
|
2013-04-20 08:52:17 +00:00
|
|
|
return if is_not_role('Agent')
|
2012-09-20 12:08:02 +00:00
|
|
|
model_create_render(Organization, params)
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
PUT /api/organizations/{id}.json
|
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"id": 1
|
|
|
|
"name": "some_name",
|
|
|
|
"active": true,
|
|
|
|
"note": "some note",
|
|
|
|
"shared": true
|
|
|
|
}
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
|
|
|
curl http://localhost/api/organizations.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"id": 1,"name": "some_name","active": true,"shared": true,"note": "some note"}'
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def update
|
2013-04-20 08:52:17 +00:00
|
|
|
return if is_not_role('Agent')
|
2012-09-20 12:08:02 +00:00
|
|
|
model_update_render(Organization, params)
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
|
|
|
|
|
|
|
Response:
|
|
|
|
|
|
|
|
Test:
|
|
|
|
|
|
|
|
=end
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
def destroy
|
2013-04-20 08:52:17 +00:00
|
|
|
return if is_not_role('Agent')
|
2012-09-20 12:08:02 +00:00
|
|
|
model_destory_render(Organization, params)
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
end
|