fractal-server 2.18.6__py3-none-any.whl → 2.19.0a0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. fractal_server/__init__.py +1 -1
  2. fractal_server/app/models/security.py +16 -0
  3. fractal_server/app/routes/admin/v2/sharing.py +47 -0
  4. fractal_server/app/routes/api/__init__.py +4 -52
  5. fractal_server/app/routes/api/alive.py +13 -0
  6. fractal_server/app/routes/api/settings.py +44 -0
  7. fractal_server/app/routes/api/v2/dataset.py +9 -8
  8. fractal_server/app/routes/api/v2/history.py +8 -8
  9. fractal_server/app/routes/api/v2/images.py +6 -5
  10. fractal_server/app/routes/api/v2/job.py +10 -9
  11. fractal_server/app/routes/api/v2/pre_submission_checks.py +3 -3
  12. fractal_server/app/routes/api/v2/project.py +7 -6
  13. fractal_server/app/routes/api/v2/sharing.py +17 -9
  14. fractal_server/app/routes/api/v2/status_legacy.py +2 -2
  15. fractal_server/app/routes/api/v2/submit.py +2 -2
  16. fractal_server/app/routes/api/v2/task.py +7 -6
  17. fractal_server/app/routes/api/v2/task_collection.py +2 -2
  18. fractal_server/app/routes/api/v2/task_collection_custom.py +2 -2
  19. fractal_server/app/routes/api/v2/task_collection_pixi.py +2 -2
  20. fractal_server/app/routes/api/v2/task_group.py +7 -6
  21. fractal_server/app/routes/api/v2/task_group_lifecycle.py +4 -4
  22. fractal_server/app/routes/api/v2/task_version_update.py +4 -3
  23. fractal_server/app/routes/api/v2/workflow.py +9 -8
  24. fractal_server/app/routes/api/v2/workflow_import.py +2 -2
  25. fractal_server/app/routes/api/v2/workflowtask.py +6 -5
  26. fractal_server/app/routes/auth/__init__.py +18 -1
  27. fractal_server/app/routes/auth/users.py +11 -0
  28. fractal_server/app/schemas/user.py +7 -0
  29. fractal_server/migrations/versions/e53dc51fdf93_add_useroauth_is_guest.py +36 -0
  30. {fractal_server-2.18.6.dist-info → fractal_server-2.19.0a0.dist-info}/METADATA +1 -1
  31. {fractal_server-2.18.6.dist-info → fractal_server-2.19.0a0.dist-info}/RECORD +34 -31
  32. {fractal_server-2.18.6.dist-info → fractal_server-2.19.0a0.dist-info}/WHEEL +0 -0
  33. {fractal_server-2.18.6.dist-info → fractal_server-2.19.0a0.dist-info}/entry_points.txt +0 -0
  34. {fractal_server-2.18.6.dist-info → fractal_server-2.19.0a0.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,4 @@
1
- fractal_server/__init__.py,sha256=8bUDUYK1WiiLbGAi77y3BEN7scczf-cXLjHQfvbdlHc,23
1
+ fractal_server/__init__.py,sha256=eojcLMU9LbD_qBD5WbjnoYryBbA4evbtq1WKYGIlYlE,25
2
2
  fractal_server/__main__.py,sha256=QeKoAgqoiozLJDa8kSVe-Aso1WWgrk1yLUYWS8RxZVM,11405
3
3
  fractal_server/alembic.ini,sha256=MWwi7GzjzawI9cCAK1LW7NxIBQDUqD12-ptJoq5JpP0,3153
4
4
  fractal_server/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -6,7 +6,7 @@ fractal_server/app/db/__init__.py,sha256=2b8wF-EBkEgFwWNoRD_ZKbfIf4eRCg74Epgwe2B
6
6
  fractal_server/app/models/__init__.py,sha256=oglUT1A1lLhXy2GFz3XsQ7wqkyfs3NXRtuNov-gOHXM,368
7
7
  fractal_server/app/models/linkusergroup.py,sha256=3KkkE4QIUAlTrBAZs_tVy0pGvAxUAq6yOEjflct_z2M,678
8
8
  fractal_server/app/models/linkuserproject.py,sha256=Bk0VzjzG7RbnVnOwrztqxKIPxz_AsUynXVxyMWHCbXA,1109
9
- fractal_server/app/models/security.py,sha256=Wh25Vk_lTU-qwgwCNn_m5FEfj_dlY-yk5ASsfK_blyQ,4592
9
+ fractal_server/app/models/security.py,sha256=2gKF2JQX2Xpb58fW-s7UgkgUneEy5SspgawawWoju3M,4970
10
10
  fractal_server/app/models/v2/__init__.py,sha256=xL05Mvdx0dqUFhJf694oPfuqkUQxZbxOkoUgRuNIXl4,949
11
11
  fractal_server/app/models/v2/accounting.py,sha256=VNweFARrvY3mj5LI0834Ku061S2aGC61kuVHzi_tZhc,1187
12
12
  fractal_server/app/models/v2/dataset.py,sha256=BL5elDU0UXnUSwvuXSO4JeKa9gje0QFerU_LP7sI754,1273
@@ -28,11 +28,13 @@ fractal_server/app/routes/admin/v2/impersonate.py,sha256=ictDjuvBr3iLv3YtwkVRMNQ
28
28
  fractal_server/app/routes/admin/v2/job.py,sha256=VaVMUrHV7edHyjp2rsqoWf-wh5zlXFM-VjXIlxBnwG0,10795
29
29
  fractal_server/app/routes/admin/v2/profile.py,sha256=DwLlA9K3hkl9BqzyifIDiaWeHOM_N_17kqB5CSJOhSI,3165
30
30
  fractal_server/app/routes/admin/v2/resource.py,sha256=c2z6b_D_W6_dqVnxNF8F8OdlI5Z4asex8Zgfwzjbi2Q,6330
31
- fractal_server/app/routes/admin/v2/sharing.py,sha256=x7RtbDPapyENEU_s4-glPoEeEOxxj2VBgduVQ1V7wkE,3796
31
+ fractal_server/app/routes/admin/v2/sharing.py,sha256=I2BoyO0rZNWxFKyq3Em9sjz_0n3kfRynC-WmUZxSzzU,5455
32
32
  fractal_server/app/routes/admin/v2/task.py,sha256=M4cetPkzn73-6faftk49AU_PeaPLqKE_dZxrrQ_x_98,6087
33
33
  fractal_server/app/routes/admin/v2/task_group.py,sha256=3LxH2LEstj7L9qGNN3kkLo4JdFw4GXDlnlM6s4ulc_0,9377
34
34
  fractal_server/app/routes/admin/v2/task_group_lifecycle.py,sha256=LkHSQVXRRUkicpIDQpc7dwT944uabtCTTrZCoESHjik,9935
35
- fractal_server/app/routes/api/__init__.py,sha256=GaNOm1elJLldHNWZ482qlvETLAXhdJ8u_X6kGxMmwQs,1409
35
+ fractal_server/app/routes/api/__init__.py,sha256=ZQtqy-HGJZsehAL8UjnTvRhWd9MI9Noi2NvwD5hE_xA,231
36
+ fractal_server/app/routes/api/alive.py,sha256=hE42dfh1naix9EKvpyKCoLMA6WqThObgA3jIro2rx-M,206
37
+ fractal_server/app/routes/api/settings.py,sha256=9wV4To1FjW3jCcRtFp-QGGu3235s1oUg4HwKQIw-TWc,1210
36
38
  fractal_server/app/routes/api/v2/__init__.py,sha256=_J8ekQqNGJ3DC1mKum8m8SNOcv66oZ7A260MFjcEtGE,2710
37
39
  fractal_server/app/routes/api/v2/_aux_functions.py,sha256=pxXcauCMZEVKkft8nOCK_Nq5m7hkx7BVUXch_j2KVtg,15131
38
40
  fractal_server/app/routes/api/v2/_aux_functions_history.py,sha256=vB8AwSBf3Dp1sxpTAYtWj4s9kgAp_D5Hd1BX6Z8JTxc,6057
@@ -41,26 +43,26 @@ fractal_server/app/routes/api/v2/_aux_functions_task_lifecycle.py,sha256=qTJdKC3
41
43
  fractal_server/app/routes/api/v2/_aux_functions_task_version_update.py,sha256=PKjV7r8YsPRXoNiVSnOK4KBYVV3l_Yb_ZPrqAkMkXrQ,1182
42
44
  fractal_server/app/routes/api/v2/_aux_functions_tasks.py,sha256=Hrumknv0vH5VX7SFp8WZDzsJv_z7quvFyNoDYmYoD7A,13623
43
45
  fractal_server/app/routes/api/v2/_aux_task_group_disambiguation.py,sha256=vdvMTa3San1HMTzctN5Vk7zxpqe4ccByrFBQyHfgWW8,4889
44
- fractal_server/app/routes/api/v2/dataset.py,sha256=HZGJezPqzbU1PYlFZfQSOj-ONmhtitCv6I7SDORGiPg,8515
45
- fractal_server/app/routes/api/v2/history.py,sha256=-aLwLhDLDqwKFy3JrM1vFswyBPdolMXlH3sS7OiQsK8,18339
46
- fractal_server/app/routes/api/v2/images.py,sha256=gaLHglxN9VwhNQP6uD9Ij-qaMJWC6zFcj_TcM1V8_AI,8245
47
- fractal_server/app/routes/api/v2/job.py,sha256=nrfus2bD49Ww4E6I3vTCrOqRnXjnsHMk4KxtKYCrIp0,7352
48
- fractal_server/app/routes/api/v2/pre_submission_checks.py,sha256=Cs_ODoRWmkbSJJhlIE7pQh9JuJGXZTAr-EVF6wqKNGA,5215
49
- fractal_server/app/routes/api/v2/project.py,sha256=sRlmNntaTm7LYCwjVhgnpYE0O8gCWDjOwIR6k2hoMUM,5748
50
- fractal_server/app/routes/api/v2/sharing.py,sha256=MvegcF3xaT9nztVwLiUisp4B8IrKRa2LVlSR2GGTqYk,9398
51
- fractal_server/app/routes/api/v2/status_legacy.py,sha256=XfU7sJS3luPziGzGxjiLmrLe4P-8OyBU7hTdcYmcyB8,6026
52
- fractal_server/app/routes/api/v2/submit.py,sha256=YCeMLXhHzouQbjR_Rh3Rdw-htBGOpznEeWIdAVf3AIk,9570
53
- fractal_server/app/routes/api/v2/task.py,sha256=uIVjb_J-kGu38ddy7lsYFHVF2lT1FyJtT1J1CM6AsVU,7437
54
- fractal_server/app/routes/api/v2/task_collection.py,sha256=DC_qI7cv-4eT2be8opcU3LfkzXjNvLoo4FPCfT77UM0,12348
55
- fractal_server/app/routes/api/v2/task_collection_custom.py,sha256=gzllPiZp94rNfmAZMegS0B6wZZa-JPvqrapsWb9dyeY,6920
56
- fractal_server/app/routes/api/v2/task_collection_pixi.py,sha256=wed_nciaJrDFfjhUiORTnsStWUSk3wfQUehsZUurwgk,7172
57
- fractal_server/app/routes/api/v2/task_group.py,sha256=2ocRRQ1dTzrGl01hIsl39vP3ckRuBJqy2Usg19Hkw2Q,8365
58
- fractal_server/app/routes/api/v2/task_group_lifecycle.py,sha256=T0nDJpqZl1SEzp-Jtwf8YY0rJVTNis4Lv7CQXY8CH-Y,10523
59
- fractal_server/app/routes/api/v2/task_version_update.py,sha256=W6UXmh2ngqMBkSSHyP3eOyakd6y7rBFTbDq4jd45QaM,8487
60
- fractal_server/app/routes/api/v2/workflow.py,sha256=TFmZsojPqcxawNC6PdgfDrgapG9808Lj6f9Gdzp5eSc,10752
61
- fractal_server/app/routes/api/v2/workflow_import.py,sha256=mf5u2q9XRDOGa0-gbDmJKNsJj9zbBdzkJvrWRz2CEyY,9646
62
- fractal_server/app/routes/api/v2/workflowtask.py,sha256=QZSRiH2vy8W-Tns8aBRGD9rl81XRyaltB8UKHOtRIC4,8233
63
- fractal_server/app/routes/auth/__init__.py,sha256=RghfjGuu0RTW8RxBCvaePx9KErO4rTkI96XgbtbeSJU,2337
46
+ fractal_server/app/routes/api/v2/dataset.py,sha256=O2wzEpQSSmC4SAzP3t9YQFL8eKt_zkbdKddhSp2SWbs,8471
47
+ fractal_server/app/routes/api/v2/history.py,sha256=wKiNhYCA8Ioemvr721nZVY4n9PMwIVnG48cgiQ0Fmhw,18243
48
+ fractal_server/app/routes/api/v2/images.py,sha256=N32PCbwY0-CWLMMN8GMwcc8QKZwhQsDowZqLJll_s9s,8238
49
+ fractal_server/app/routes/api/v2/job.py,sha256=gulXJyP0Kc2_dNkPHPpc_XZlWoBEA1lrrBt3h8rP_6E,7332
50
+ fractal_server/app/routes/api/v2/pre_submission_checks.py,sha256=wqZ44rCJ8f2WcpyFOQ0FZN3g-66EzDnuYCrJJXawSdY,5179
51
+ fractal_server/app/routes/api/v2/project.py,sha256=dirGShqcuEnK1sVh-Bl6kemj_z6A32s8ARNqSLIFhM8,5729
52
+ fractal_server/app/routes/api/v2/sharing.py,sha256=W8Zf_rmTJwbFYz3XCrL9IFN6KXph5c97YS6Ok8oHTHM,9658
53
+ fractal_server/app/routes/api/v2/status_legacy.py,sha256=qSV1wibqleOR084CTYNlXMuCkieL1aqlQXogTShd-1c,6002
54
+ fractal_server/app/routes/api/v2/submit.py,sha256=1J2QABGo8jzMxWqMFTG8nM4Ru-88h8Zjf9rJa3xuaoA,9544
55
+ fractal_server/app/routes/api/v2/task.py,sha256=xKeGon7aRBOu1gnYd9EnWW1V-pnIqSVpXkN3dnubH3A,7418
56
+ fractal_server/app/routes/api/v2/task_collection.py,sha256=IFbFMadudfqBOu7CgMaQUr9dAhev_qiP-e43ZHV0gIE,12322
57
+ fractal_server/app/routes/api/v2/task_collection_custom.py,sha256=yZ0c3hWkq3nR5CKYP63yU6D1--xWjS2aimqoYWrQT5I,6894
58
+ fractal_server/app/routes/api/v2/task_collection_pixi.py,sha256=qNqKvXAwQg9c6kwIJ7kbR1KA3TqPWthyQkOaJrVCLUk,7146
59
+ fractal_server/app/routes/api/v2/task_group.py,sha256=Q9KqhsnpT7Y4R0vg0oYzoJGX8b21Npe9pa3yIuN0Zcg,8348
60
+ fractal_server/app/routes/api/v2/task_group_lifecycle.py,sha256=GOwIq78_M-HZylHGkGZJcu0yLIyjM4wpDsB8jobpWwI,10471
61
+ fractal_server/app/routes/api/v2/task_version_update.py,sha256=dFzUetvIkd0RXw-cgOGGQGu8843y62AG30RbCQL15Tc,8506
62
+ fractal_server/app/routes/api/v2/workflow.py,sha256=dHNytIVJgMqF-bGEzDrc2xFxgivFpF_xrDdUuYf_tyg,10709
63
+ fractal_server/app/routes/api/v2/workflow_import.py,sha256=FOpWT68FxDawDiuLa1Jlkt5mfMeLe3AM6MdGMS5EKXg,9620
64
+ fractal_server/app/routes/api/v2/workflowtask.py,sha256=f9tleS7TZlku-Z6G8rsyscXlO-bTF5TBHQbx9tAs1Gc,8226
65
+ fractal_server/app/routes/auth/__init__.py,sha256=JL4MUBjPiNsNJLlb0lbn6_LbIzdRLosquQNqpn6niFw,2836
64
66
  fractal_server/app/routes/auth/_aux_auth.py,sha256=gKdYTWUzxcU44Iep787zReWwdAs4kW5baNDXCPmiKn8,9195
65
67
  fractal_server/app/routes/auth/current_user.py,sha256=uDWttWo9isG69Jv1EGnnr2Ki5ZGd0D76jgjVDQMkn8c,3251
66
68
  fractal_server/app/routes/auth/group.py,sha256=uR98vdQHH-7BFl-Czj85ESPxT2yQymy4qtagaMrnUPU,6491
@@ -68,7 +70,7 @@ fractal_server/app/routes/auth/login.py,sha256=buVa5Y8T0cd_SW1CqC-zMv-3SfPxGJknf
68
70
  fractal_server/app/routes/auth/oauth.py,sha256=dOt1bWz1viW36CAnHVLmLkYzdCHUMdOhdTNgoQp-VvU,3663
69
71
  fractal_server/app/routes/auth/register.py,sha256=IiUJhgY0ZrTs0RlBRRjoTv4wF5Gb3eXTInFV-dXkpsE,615
70
72
  fractal_server/app/routes/auth/router.py,sha256=Zip_fw9qJWtoXWjluznschyrCKb2n_rf3xWarSXMkgI,692
71
- fractal_server/app/routes/auth/users.py,sha256=5BagdH1dz-ZoXdvTgIo9QWBNFPW3p1pIZfY9BBu4eds,7397
73
+ fractal_server/app/routes/auth/users.py,sha256=tt9rsnVOXTVnHSWtIbY8f6RtnBl2UFwmH1yg9tE_lL4,7753
72
74
  fractal_server/app/routes/auth/viewer_paths.py,sha256=uDIwP3AWjLOskG2ZSMUokmn6DWJX2NSviG6k4hiJRSU,1911
73
75
  fractal_server/app/routes/aux/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
76
  fractal_server/app/routes/aux/_job.py,sha256=n-UhONvomKyKkQDDqd0lFh2kCMhlCGXpfdMNW39R1E4,644
@@ -76,7 +78,7 @@ fractal_server/app/routes/aux/_runner.py,sha256=-SvcXCVEV7Mb6q4PbbxuTCCruX6sAlR5
76
78
  fractal_server/app/routes/aux/validate_user_profile.py,sha256=fGqJDdAFkbQoEIjqZ5F9-SDY_4os63R2EUMqODC7eBg,1969
77
79
  fractal_server/app/routes/pagination.py,sha256=C4XW6cnyDfyu1XMHXRN4wgk72lsS0UtlINZmwGZFb4Y,1174
78
80
  fractal_server/app/schemas/__init__.py,sha256=VIWJCaqokte3OljDLX00o-EC2d12rFoPb5HOLKQI94Y,86
79
- fractal_server/app/schemas/user.py,sha256=qixLVZWeANxX5TIWoruLjYE_oh4DMZ2q3vMgMBsnzQE,3294
81
+ fractal_server/app/schemas/user.py,sha256=ncPPxl6DsF_YDsEKJ1idTpAZTsVyh1iC9p4KfK25WZ4,3421
80
82
  fractal_server/app/schemas/user_group.py,sha256=irel29GbffKCXNcyrAYbNSN3pCgmoUQ1wG32_s6jvos,1082
81
83
  fractal_server/app/schemas/v2/__init__.py,sha256=6W1uSthuLGXs9oOYnjmScoqJYkWyUTT-9cNHFZoTmkM,4005
82
84
  fractal_server/app/schemas/v2/accounting.py,sha256=6EVUdPTkFY6Wb9-Vc0cIEZYVXwGEvJ3tP4YOXYE1hao,546
@@ -165,6 +167,7 @@ fractal_server/migrations/versions/d4fe3708d309_make_applyworkflow_workflow_dump
165
167
  fractal_server/migrations/versions/da2cb2ac4255_user_group_viewer_paths.py,sha256=-ihE-KJEVemb8ZhRejg6xdC5TPTW8GkKWnzcl1ReAHQ,901
166
168
  fractal_server/migrations/versions/db09233ad13a_split_filters_and_keep_old_columns.py,sha256=mOaFWcay-rznXcM9cdmGqA9EgM9Qn0dOjUOOs8RHKiQ,2907
167
169
  fractal_server/migrations/versions/e0e717ae2f26_delete_linkuserproject_ondelete_project.py,sha256=wmxB9EOIUHpFiCVhQIsCBnC2deMUbrsZTOgQSUAgSAo,1409
170
+ fractal_server/migrations/versions/e53dc51fdf93_add_useroauth_is_guest.py,sha256=fxc6JrgRmGZQxyiQI4LPXqHuTVqPfCtAOtMNbjY6JBE,900
168
171
  fractal_server/migrations/versions/e75cac726012_make_applyworkflow_start_timestamp_not_.py,sha256=x6eCYsx_Cb7yDC5K_gV2RNHeCF_K-964NtZF1mmxUb0,964
169
172
  fractal_server/migrations/versions/e81103413827_add_job_type_filters.py,sha256=w0HYX1645_JXsfUB259OrmXLUasOgRnpKvJJaF44GpQ,890
170
173
  fractal_server/migrations/versions/efa89c30e0a4_add_project_timestamp_created.py,sha256=3ppXZxLsljAlN5Def9lHuEZlf_7hMXaIIeTV2N5zUXY,1222
@@ -267,8 +270,8 @@ fractal_server/types/validators/_workflow_task_arguments_validators.py,sha256=zt
267
270
  fractal_server/urls.py,sha256=QjIKAC1a46bCdiPMu3AlpgFbcv6a4l3ABcd5xz190Og,471
268
271
  fractal_server/utils.py,sha256=-rjg8QTXQcKweXjn0NcmETFs1_uM9PGnbl0Q7c4ERPM,2181
269
272
  fractal_server/zip_tools.py,sha256=Uhn-ax4_9g1PJ32BdyaX30hFpAeVOv2tZYTUK-zVn1E,5719
270
- fractal_server-2.18.6.dist-info/licenses/LICENSE,sha256=QKAharUuhxL58kSoLizKJeZE3mTCBnX6ucmz8W0lxlk,1576
271
- fractal_server-2.18.6.dist-info/WHEEL,sha256=eycQt0QpYmJMLKpE3X9iDk8R04v2ZF0x82ogq-zP6bQ,79
272
- fractal_server-2.18.6.dist-info/entry_points.txt,sha256=3TpdcjmETRYWJxFyAh3z-9955EWua9jdkSnBwxES1uE,60
273
- fractal_server-2.18.6.dist-info/METADATA,sha256=8kWN7fybjXbZX3Ull8rBcymWRBDqGRGkNlsSupUCyuM,4183
274
- fractal_server-2.18.6.dist-info/RECORD,,
273
+ fractal_server-2.19.0a0.dist-info/licenses/LICENSE,sha256=QKAharUuhxL58kSoLizKJeZE3mTCBnX6ucmz8W0lxlk,1576
274
+ fractal_server-2.19.0a0.dist-info/WHEEL,sha256=eycQt0QpYmJMLKpE3X9iDk8R04v2ZF0x82ogq-zP6bQ,79
275
+ fractal_server-2.19.0a0.dist-info/entry_points.txt,sha256=3TpdcjmETRYWJxFyAh3z-9955EWua9jdkSnBwxES1uE,60
276
+ fractal_server-2.19.0a0.dist-info/METADATA,sha256=pmh1KIC1bSUPthf2eJlfOJq_J3Yw88vWkvPr4hgtYNA,4185
277
+ fractal_server-2.19.0a0.dist-info/RECORD,,