2014-02-03 19:24:49 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
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,
|
|
|
|
}
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=end
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
GET /api/v1/organizations.json
|
2012-09-20 12:08:02 +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/organizations.json -v -u #{login}:#{password}
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
=end
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
def index
|
2013-07-19 14:21:44 +00:00
|
|
|
|
|
|
|
# only allow customer to fetch his own organization
|
|
|
|
organizations = []
|
|
|
|
if is_role('Customer') && !is_role('Admin') && !is_role('Agent')
|
|
|
|
if current_user.organization_id
|
|
|
|
organizations = Organization.where( :id => current_user.organization_id )
|
|
|
|
end
|
|
|
|
else
|
|
|
|
organizations = Organization.all
|
|
|
|
end
|
|
|
|
render :json => organizations
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
GET /api/v1/organizations/#{id}.json
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "name_1",
|
|
|
|
...
|
|
|
|
}
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
Test:
|
2013-08-06 22:10:28 +00:00
|
|
|
curl http://localhost/api/v1/organizations/#{id}.json -v -u #{login}:#{password}
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=end
|
|
|
|
|
|
|
|
def show
|
2013-07-19 14:21:44 +00:00
|
|
|
|
|
|
|
# only allow customer to fetch his own organization
|
|
|
|
if is_role('Customer') && !is_role('Admin') && !is_role('Agent')
|
|
|
|
if !current_user.organization_id
|
|
|
|
render :json => {}
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if params[:id].to_i != current_user.organization_id
|
|
|
|
response_access_deny
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2012-09-20 12:08:02 +00:00
|
|
|
model_show_render(Organization, params)
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2013-08-06 22:10:28 +00:00
|
|
|
POST /api/v1/organizations.json
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
Payload:
|
|
|
|
{
|
|
|
|
"name": "some_name",
|
|
|
|
"active": true,
|
|
|
|
"note": "some note",
|
|
|
|
"shared": true
|
|
|
|
}
|
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"name": "some_name",
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2013-08-06 22:10:28 +00:00
|
|
|
curl http://localhost/api/v1/organizations.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"name": "some_name","active": true,"shared": true,"note": "some note"}'
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
def create
|
2013-07-19 14:21:44 +00:00
|
|
|
return if deny_if_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:
|
2013-08-06 22:10:28 +00:00
|
|
|
PUT /api/v1/organizations/{id}.json
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
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:
|
2013-08-06 22:10:28 +00:00
|
|
|
curl http://localhost/api/v1/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"}'
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def update
|
2013-07-19 14:21:44 +00:00
|
|
|
return if deny_if_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:
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=end
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2013-06-12 15:59:58 +00:00
|
|
|
def destroy
|
2013-07-19 14:21:44 +00:00
|
|
|
return if deny_if_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
|
2014-07-22 09:00:29 +00:00
|
|
|
|
|
|
|
# GET /api/v1/organizations/history/1
|
|
|
|
def history
|
|
|
|
|
|
|
|
# permissin check
|
|
|
|
if !is_role('Admin') && !is_role('Agent')
|
|
|
|
response_access_deny
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# get organization data
|
|
|
|
organization = Organization.find( params[:id] )
|
|
|
|
|
|
|
|
# get history of organization
|
|
|
|
history = organization.history_get(true)
|
|
|
|
|
|
|
|
# return result
|
|
|
|
render :json => history
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|