trabajo-afectivo/app/controllers/organizations_controller.rb

197 lines
3.3 KiB
Ruby
Raw Normal View History

2014-02-03 19:24:49 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
2012-04-10 14:06:46 +00:00
class OrganizationsController < ApplicationController
before_filter :authentication_check
=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/v1/organizations.json
Response:
[
{
"id": 1,
"name": "some_name1",
...
},
{
"id": 2,
"name": "some_name2",
...
}
]
Test:
curl http://localhost/api/v1/organizations.json -v -u #{login}:#{password}
=end
2012-04-10 14:06:46 +00:00
def index
2013-07-19 14:21:44 +00:00
# only allow customer to fetch his own organization
organizations = []
2015-02-15 10:01:12 +00:00
if is_role(Z_ROLENAME_CUSTOMER) && !is_role(Z_ROLENAME_ADMIN) && !is_role(Z_ROLENAME_AGENT)
2013-07-19 14:21:44 +00:00
if current_user.organization_id
organizations = Organization.where( id: current_user.organization_id )
2013-07-19 14:21:44 +00:00
end
else
organizations = Organization.all
end
render json: organizations
2012-04-10 14:06:46 +00:00
end
=begin
Resource:
GET /api/v1/organizations/#{id}.json
Response:
{
"id": 1,
"name": "name_1",
...
}
2012-04-10 14:06:46 +00:00
Test:
curl http://localhost/api/v1/organizations/#{id}.json -v -u #{login}:#{password}
=end
def show
2013-07-19 14:21:44 +00:00
# only allow customer to fetch his own organization
2015-02-15 10:01:12 +00:00
if is_role(Z_ROLENAME_CUSTOMER) && !is_role(Z_ROLENAME_ADMIN) && !is_role(Z_ROLENAME_AGENT)
2013-07-19 14:21:44 +00:00
if !current_user.organization_id
render json: {}
2013-07-19 14:21:44 +00:00
return
end
if params[:id].to_i != current_user.organization_id
response_access_deny
return
end
end
if params[:full]
full = Organization.full( params[:id] )
render json: full
return
end
model_show_render(Organization, params)
2012-04-10 14:06:46 +00:00
end
=begin
Resource:
POST /api/v1/organizations.json
Payload:
{
"name": "some_name",
"active": true,
"note": "some note",
"shared": true
}
Response:
{
"id": 1,
"name": "some_name",
...
}
Test:
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"}'
=end
2012-04-10 14:06:46 +00:00
def create
2015-02-15 10:01:12 +00:00
return if deny_if_not_role(Z_ROLENAME_AGENT)
model_create_render(Organization, params)
2012-04-10 14:06:46 +00:00
end
=begin
Resource:
PUT /api/v1/organizations/{id}.json
Payload:
{
"id": 1
"name": "some_name",
"active": true,
"note": "some note",
"shared": true
}
2012-04-10 14:06:46 +00:00
Response:
{
"id": 1,
"name": "some_name",
...
}
Test:
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"}'
=end
def update
2015-02-15 10:01:12 +00:00
return if deny_if_not_role(Z_ROLENAME_AGENT)
model_update_render(Organization, params)
2012-04-10 14:06:46 +00:00
end
=begin
Resource:
Response:
Test:
=end
2012-04-10 14:06:46 +00:00
def destroy
2013-07-19 14:21:44 +00:00
return if deny_if_not_role('Agent')
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
2015-02-15 10:01:12 +00:00
if !is_role(Z_ROLENAME_ADMIN) && !is_role(Z_ROLENAME_AGENT)
2014-07-22 09:00:29 +00:00
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
2014-07-22 09:00:29 +00:00
end
end