Table of Contents |
---|
Purpose
This Methods allows to add items, such as code or service/service_group, to the forbidden group from Admin panel.
Key points
This is a graphQl method used in Administration panel only
Only authenticated and authorized NHS employee with appropriate scope can add item to Forbidden group.
The following kind of items could be added: services, service groups, dictionary codes.
Item should be added using DS.
Added item should be unique within all active items in Forbidden groups.
One or more items can be added at once.
Specification
...
language | graphql |
---|
Page Properties | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||
|
Expand | ||
---|---|---|
|
...
Logic
Following validations logic used in the CreateForbiddenGroupItemsMutation
mutation
Save signed content to media storage
For each element in the
service_group_ids
array save data to forbidden_group_services table (PRM DB):set forbidden_group_id = $.forbidden_group_id
set service_id = null
set service_group_id = $.service_group_id
set creation_reason = $.creation_reason
For each element in the
service_ids
array save data to forbidden_group_services table:set forbidden_group_id = $.forbidden_group_id
set service_id = $.service_id
set service_group_id = null
set creation_reason = $.creation_reason
For each element in the
codes
array save data to forbidden_group_codes table (PRM DB):set forbidden_group_id = $.
...
forbidden_group_id
set system = $.system
set code = $.code
set creation_reason = $.creation_reason
Set another fields according to https://e-health-ua.atlassian.net/wiki/spaces/FORBIDDEN/pages/2087190529
Clear cache
Request structure
API paragraph not found
Authorize
Verify the validity of access token
in case of error - return 401 (“Invalid access token”) in case of validation fails
Verify that token is not expired
in case of error - return 401 (“Invalid access token”)
Check user scopes in order to perform this action (scope = 'forbidden_group:write')
return 403 (“Your scope does not allow to access this resource. Missing allowances: forbidden_group:write”) in case of invalid scope(s)
Headers
API paragraph not found
Request data validation
Validations
Following validations used in the CreateForbiddenGroupItemsMutation
mutation.
Validate legal entity
Extract client_id from token.
Check client scopes in order to perform this action (scope = 'forbidden_group:write')
in case of error - return 403 (“Your scope does not allow to access this resource. Missing allowances: forbidden_group:write”)
Check legal entity status (status = ACTIVE)
In case of error - return 409 ('client_id refers to legal entity that is not active')
Validate Digital Sign
Validate request is signed
in case of error - return 422 (“document must be signed by 1 signer but contains 0 signatures”)
Check DS is valid and not expired
Validate that DS belongs to the user
Check that DRFO from DS and party.tax_id matches
in case of error - return 409 (“Signer DRFO doesn't match with requester tax_id“)
Validate request
Check
forbidden_group_id
submitted in the request
in case not submitted - return 422 ('required property forbidden_group_id was not present')
in case not exist or is not active - return 404 ('not found')
...
in case of error - return 422 ('required property creation_reason was not present')
Service logic
Following logic used in the CreateForbiddenGroupItemsMutation
mutation
...
Save signed content to media storage
...
For each element in the service_group_ids
array save data to forbidden_group_services table (PRM DB):
set forbidden_group_id = $.forbidden_group_id
set service_id = null
set service_group_id = $.service_group_id
set creation_reason = $.creation_reason
...
For each element in the service_ids
array save data to forbidden_group_services table:
set forbidden_group_id = $.forbidden_group_id
set service_id = $.service_id
set service_group_id = null
set creation_reason = $.creation_reason
...
For each element in the codes
array save data to forbidden_group_codes table (PRM DB):
set forbidden_group_id = $.forbidden_group_id
set system = $.system
set code = $.code
set creation_reason = $.creation_reason
...
Set another fields according to /wiki/spaces/FORBIDDEN/pages/2087190529
...
Processing
API paragraph not found
Response structure
API paragraph not found
Post-processing processes
API paragraph not found
HTTP status codes
API paragraph not found