Update composer dependencies for utopia-php/audit and utopia-php/database, reflecting new versioning and aliases. Refactor document validation in Create operation to utilize the new authorization method for better security handling.

This commit is contained in:
shimon
2025-10-27 16:14:04 +02:00
parent 6ed2000478
commit 30d58e6371
3 changed files with 27 additions and 17 deletions
+1 -1
View File
@@ -48,7 +48,7 @@
"appwrite/php-clamav": "2.0.*",
"utopia-php/abuse": "1.*",
"utopia-php/analytics": "0.10.*",
"utopia-php/audit": "1.*",
"utopia-php/audit": "dev-feat-auth-single-instance as 1.1.0",
"utopia-php/cache": "0.13.*",
"utopia-php/cli": "0.15.*",
"utopia-php/config": "0.2.*",
Generated
+21 -14
View File
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "a2f032a3d278c7f493ea4d87d6908258",
"content-hash": "d7f36b787ff2fe013d9b866c3823f6d4",
"packages": [
{
"name": "adhocore/jwt",
@@ -3547,21 +3547,21 @@
},
{
"name": "utopia-php/audit",
"version": "1.0.2",
"version": "dev-feat-auth-single-instance",
"source": {
"type": "git",
"url": "https://github.com/utopia-php/audit.git",
"reference": "8c17065c2473d4ca799f65585ca74eb53e1be211"
"reference": "b74a6f8213b444e0af6ce0714ec85ea2859b3508"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/utopia-php/audit/zipball/8c17065c2473d4ca799f65585ca74eb53e1be211",
"reference": "8c17065c2473d4ca799f65585ca74eb53e1be211",
"url": "https://api.github.com/repos/utopia-php/audit/zipball/b74a6f8213b444e0af6ce0714ec85ea2859b3508",
"reference": "b74a6f8213b444e0af6ce0714ec85ea2859b3508",
"shasum": ""
},
"require": {
"php": ">=8.0",
"utopia-php/database": "*"
"utopia-php/database": "dev-feat-authorization-instance as 3.0.2"
},
"require-dev": {
"laravel/pint": "1.*",
@@ -3588,9 +3588,9 @@
],
"support": {
"issues": "https://github.com/utopia-php/audit/issues",
"source": "https://github.com/utopia-php/audit/tree/1.0.2"
"source": "https://github.com/utopia-php/audit/tree/feat-auth-single-instance"
},
"time": "2025-10-20T07:14:26+00:00"
"time": "2025-10-27T13:39:14+00:00"
},
{
"name": "utopia-php/cache",
@@ -5318,16 +5318,16 @@
"packages-dev": [
{
"name": "appwrite/sdk-generator",
"version": "1.4.12",
"version": "1.4.14",
"source": {
"type": "git",
"url": "https://github.com/appwrite/sdk-generator.git",
"reference": "efda55836d19b8d5f36ac0df33c83b48af0aa8fd"
"reference": "b9405ccaeac5619c76558a82b7bfeb440b665b9f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/efda55836d19b8d5f36ac0df33c83b48af0aa8fd",
"reference": "efda55836d19b8d5f36ac0df33c83b48af0aa8fd",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/b9405ccaeac5619c76558a82b7bfeb440b665b9f",
"reference": "b9405ccaeac5619c76558a82b7bfeb440b665b9f",
"shasum": ""
},
"require": {
@@ -5363,9 +5363,9 @@
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
"support": {
"issues": "https://github.com/appwrite/sdk-generator/issues",
"source": "https://github.com/appwrite/sdk-generator/tree/1.4.12"
"source": "https://github.com/appwrite/sdk-generator/tree/1.4.14"
},
"time": "2025-10-25T05:39:48+00:00"
"time": "2025-10-27T11:17:01+00:00"
},
{
"name": "doctrine/annotations",
@@ -8831,6 +8831,12 @@
}
],
"aliases": [
{
"package": "utopia-php/audit",
"version": "dev-feat-auth-single-instance",
"alias": "1.1.0",
"alias_normalized": "1.1.0.0"
},
{
"package": "utopia-php/database",
"version": "dev-feat-authorization-instance",
@@ -8840,6 +8846,7 @@
],
"minimum-stability": "stable",
"stability-flags": {
"utopia-php/audit": 20,
"utopia-php/database": 20
},
"prefer-stable": false,
@@ -172,9 +172,12 @@ class Create extends Action
$documentValid = false;
if ($document !== null && !$document->isEmpty() && $documentSecurity) {
if ($permissionType === Database::PERMISSION_UPDATE) {
$documentValid = $validator->isValid($document->getUpdate());
$documentValid = $dbForProject->getAuthorization()->isValid(
new input(Database::PERMISSION_UPDATE, $document->getUpdate()));
} elseif ($permissionType === Database::PERMISSION_DELETE) {
$documentValid = $validator->isValid($document->getDelete());
$documentValid = $dbForProject->getAuthorization()->isValid(
new input(Database::PERMISSION_DELETE, $document->getDelete())
);
}
}