|
1 | 1 | # Jobs Authorization
|
2 | 2 | ## CASL ability actions
|
3 |
| -This is the list of the permissions methods available for Jobs and all their endpoints |
| 3 | +This is the list of the permissions methods available for Jobs and all their endpoints. |
| 4 | +The authorization for jobs is consistently different from all the other endpoints |
4 | 5 |
|
5 | 6 | ### Endpoint Authorization
|
6 |
| -- JobsCreate |
7 |
| -- JobsRead |
8 |
| -- JobsUpdate |
9 |
| -- JobsDelete |
| 7 | +- JobCreate |
| 8 | +- JobRead |
| 9 | +- JobStatusUpdate |
| 10 | +- JobDelete |
10 | 11 |
|
11 | 12 | ### (Data) Instance Authorization
|
12 |
| -- JobsCreateOwner |
13 |
| -- JobsCreateAny |
14 |
| -- JobsReadAccess |
15 |
| -- JobsReadAny |
16 |
| -- JobsUpdateAccess |
17 |
| -- JobsUpdateAny |
| 13 | +- *job_create_configuration*: the job create section of the configuration dictates if the user can create the job |
| 14 | +- JobCreateAny: users with this privileges can create jobs for any of the users that are defined in the create section of the job configuration |
| 15 | +- JobReadAccess |
| 16 | +- JobReadAny |
| 17 | +- *job_satatus_update_configuration*: the job update section in configuration dictates if the user can update the status of the job |
| 18 | +- JobStatusUpdateAny: users with this privileges can update the status of any job. |
| 19 | +- JobDeleteAny |
18 | 20 |
|
19 | 21 | #### Priority
|
20 | 22 | ```mermaid
|
21 | 23 | graph LR;
|
22 |
| - JobsCreate-->JobsCreateOwner; |
23 |
| - JobsCreateOwner-->JobsCreateAny; |
24 |
| - JobsRead-->JobsReadAccess; |
25 |
| - JobsReadAccess-->JobsReadAny; |
26 |
| - JobsUpdate-->JobsUpdateAccess; |
27 |
| - JobsUpdateAccess-->JobsUpdateAny; |
| 24 | + JobCreate-->job_create_configuration; |
| 25 | + job_create_configuration-->JobCreateAny; |
| 26 | + JobRead-->JobReadAccess; |
| 27 | + JobReadAccess-->JobReadAny; |
| 28 | + JobStatusUpdate-->job_status_update_configuration; |
| 29 | + job_status_update_configuration-->JobStatusUpdateAny; |
| 30 | + JobDelete-->JobDeleteAny; |
28 | 31 | ```
|
29 | 32 |
|
30 | 33 | #### Authorization table
|
31 |
| -| HTTP method | Endpoint | Endpoint Authentication | Anonymous | Authenticated User | Create Jobs Groups | Update Jobs Groups | Admin Groups | Delete Groups | Notes | |
| 34 | +| HTTP method | Endpoint | Endpoint Authentication | Anonymous | Authenticated | Create Jobs Groups | Update Jobs Groups | Admin Groups | Delete Groups | Notes | |
32 | 35 | | -------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- |
|
33 |
| -| POST | Jobs | _JobsCreate_ | __no__ | __no__ | Owner<br>_JobsCreateOwner_ | __no__ | Any<br>_JobsCreateAny_ | __no__ | | |
34 |
| -| GET | Jobs | _JobsRead_ | __no__ | Has Access<br>_JobsReadAccess_ | Has Access<br>_JobsReadAccess_ | __no__ | Any<br>_JobsReadAny_ | __no__ | | |
35 |
| -| GET | Jobs/_jid_ | _JobsRead_ | __no__ | Has Access<br>_JobsReadAccess_ | Has Access<br>_JobsReadAccess_ | __no__ | Any<br>_JobsReadAny_ | __no__ | | |
36 |
| -| GET | Jobs/fullquery | _JobsRead_ | __no__ | Has Access<br>_JobsReadAccess_ | Has Access<br>_JobsReadAccess_ | __no__ | Any<br>_JobsReadAny_ | __no__ | | |
37 |
| -| POST | Jobs/statusUpdate | _JobsUpdate_ | __no__ | __no__ | __no__ | Has Access<br>_JobsUpdateAccess_ | Any<br>_JobsUpdateAny_ | __no__ | | |
| 36 | +| POST | Jobs | _please see job create<br>authorization table_ | _please see job create<br>authorization table_ | _please see job create<br>authorization table_ | Any<br>_JobsCreateOwner_ | __no__ | Any<br>_JobsCreateAny_ | __no__ | | |
| 37 | +| GET | Jobs | _JobRead_ | __no__ | Has Access<br>_JobReadAccess_ | Has Access<br>_JobReadAccess_ | __no__ | Any<br>_JobReadAny_ | __no__ | | |
| 38 | +| GET | Jobs/_jid_ | _JobRead_ | __no__ | Has Access<br>_JobReadAccess_ | Has Access<br>_JobReadAccess_ | __no__ | Any<br>_JobReadAny_ | __no__ | | |
| 39 | +| POST | Jobs/statusUpdate | _please see job create<br>authorization table_ | __no__ | _please see job update<br>authorization table_ | __no__ | Owner<br>_JobStatusUpdateOwner_ | Any<br>_JobStatusUpdateAny_ | __no__ | | |
| 40 | +| DELETE | Jobs/_jid_ | _JobDelete_ | __no__ | __no__ | __no__ | __no__ | __no__ | _JobDeleteAny_ | | |
38 | 41 |
|
| 42 | +#### Job Create Authorization Table |
| 43 | +These authorization permissions are configured directly in the __*create*__ section of the job configuration. |
| 44 | +They apply to the jobs endpoint POST:Jobs |
| 45 | +| Job Create Authorization | Endpoint Authentication | Endpoint Authentication Description | Instance Authentication | Instance Authentication Description | |
| 46 | +| --- | --- | --- | --- | --- | |
| 47 | +| _#all_ | _#all_ | any user can access this endpoint, both anonymous and authenticated | _#all_ | Any user can create this instance of the job | |
| 48 | +| _#admin_ | ADMIN_GROUPS | Only users belonging to any group listed in ADMIN_GROUPS will be able to access the endpoint | ADMIN_GROUPS | Only users belonging to any group listed in ADMIN_GROUPS will be able to create this instance of the job | |
| 49 | +| _#authenticated_ | _#user_ | any valid users can access the endpoint, independently from their groups | _#user_ | any valid users can cretae this instance of the job | |
| 50 | +| _#datasetPublic_ | _#all_ | any user can access this endpoint, both anonymous and and authenticated | _#datasetPublic_ | the job instance will be created only if all the datasets listed are __public__ | |
| 51 | +| _#datasetAccess_ | _#user_ | any valid user can access this endpoint, independently from their groups | _#datasetAccess_ | the job instance will be created only if the user has access to all the datasets listed | |
| 52 | +| _#datasetOwner_ | _#user_ | any valid user can access this endpoint, independently from their groups | _#datasetOwner_ | the job instance will be created only if the user is part of all the datasets owner group | |
| 53 | +| ___\<GROUP\>___ | ___\<GROUP\>___ | only users that belongs to the specified group can access the endpoint | ___\<GROUP\>___ | the job instance will be created only if all the datasets listed belong to the group specified | |
| 54 | +| ___\<USER\>___ | ___\<USER\>___ | only the specified user can access the endpoint | _#datasetOwner_ | the job instance will be created only if all the datasets listed are owned by any of the user's groups | |
| 55 | + |
| 56 | +__IMPORTANT__: use option _#all_ carefully, as it allows anybody to create a new job. It is mostly use for debuging and testing |
| 57 | + |
| 58 | +#### Job Status Update Authorization Table |
| 59 | +These authorization permissions are configured directly in the __*update*__ section of the job configuration. |
| 60 | +They apply to the jobs endpoint POST:Jobs/statusUpdate |
| 61 | +| Job Status Update Authorization | Endpoint Authentication | Endpoint Authentication Description | Instance Authentication | Instance Authentication Description | |
| 62 | +| --- | --- | --- | --- | --- | |
| 63 | +| _#all_ | _#all_ | any user can access this endpoint, both anonymous and authenticated | _#all_ | Any user can update the status of this job instance | |
| 64 | +| _#owner_ | _#user_ | valid user can access the endpoint | _#jobOwner_ | a user that belongs to the group listed as job owner can perform the update | |
| 65 | +| _#admin_ | ADMIN_GROUPS | Only users belonging to any group listed in ADMIN_GROUPS will be able to access the endpoint | ADMIN_GROUPS | Only users belonging to any group listed in ADMIN_GROUPS are able to update the job status | |
| 66 | +| ___\<GROUP\>___ | ___\<GROUP\>___ | only users that belongs to the specified group can access the endpoint | ___\<GROUP\>___ | the job instance will be created only if all the datasets listed belong to the group specified | |
| 67 | +| ___\<USER\>___ | ___\<USER\>___ | only the specified user can access the endpoint | _#datasetOwner_ | the job instance will be created only if all the datasets listed are owned by any of the user's groups | |
| 68 | + |
| 69 | + |
| 70 | +__IMPORTANT__: use option _#all_ carefully, as it allows anybody to update the status of the job. It is mostly use for debuging and testing |
0 commit comments