mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
136 lines
4.4 KiB
PHP
136 lines
4.4 KiB
PHP
<?php
|
|
|
|
namespace Tests\E2E\Services\Databases\Permissions;
|
|
|
|
use Tests\E2E\Client;
|
|
|
|
trait DatabasesPermissionsBase
|
|
{
|
|
public array $users = [];
|
|
public array $teams = [];
|
|
|
|
private static array $setupDatabaseCache = [];
|
|
|
|
// URL Helper Methods - uses methods from ApiLegacy/ApiTablesDB traits
|
|
protected function getDatabaseUrl(string $databaseId = ''): string
|
|
{
|
|
$base = $this->getApiBasePath();
|
|
return $databaseId ? "{$base}/{$databaseId}" : $base;
|
|
}
|
|
|
|
protected function getContainerUrl(string $databaseId, string $containerId = ''): string
|
|
{
|
|
$resource = $this->getContainerResource();
|
|
$base = "{$this->getApiBasePath()}/{$databaseId}/{$resource}";
|
|
return $containerId ? "{$base}/{$containerId}" : $base;
|
|
}
|
|
|
|
protected function getSchemaUrl(string $databaseId, string $containerId, string $type = '', string $key = ''): string
|
|
{
|
|
$resource = $this->getSchemaResource();
|
|
$base = "{$this->getContainerUrl($databaseId, $containerId)}/{$resource}";
|
|
if ($type) {
|
|
$base .= "/{$type}";
|
|
}
|
|
if ($key) {
|
|
$base .= "/{$key}";
|
|
}
|
|
return $base;
|
|
}
|
|
|
|
protected function getRecordUrl(string $databaseId, string $containerId, string $recordId = ''): string
|
|
{
|
|
$resource = $this->getRecordResource();
|
|
$base = "{$this->getContainerUrl($databaseId, $containerId)}/{$resource}";
|
|
return $recordId ? "{$base}/{$recordId}" : $base;
|
|
}
|
|
|
|
// User Management Methods
|
|
public function createUser(string $id, string $email, string $password = 'test123!'): array
|
|
{
|
|
$user = $this->client->call(Client::METHOD_POST, '/account', [
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-dev-key' => $this->getProject()['devKey'] ?? '',
|
|
], [
|
|
'userId' => $id,
|
|
'email' => $email,
|
|
'password' => $password
|
|
]);
|
|
|
|
$this->assertContains($user['headers']['status-code'], [201, 409]);
|
|
|
|
$session = $this->client->call(Client::METHOD_POST, '/account/sessions/email', [
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], [
|
|
'email' => $email,
|
|
'password' => $password,
|
|
]);
|
|
|
|
$session = $session['cookies']['a_session_' . $this->getProject()['$id']];
|
|
|
|
$userId = $user['headers']['status-code'] === 201 ? $user['body']['$id'] : $id;
|
|
$userEmail = $user['headers']['status-code'] === 201 ? $user['body']['email'] : $email;
|
|
|
|
$user = [
|
|
'$id' => $userId,
|
|
'email' => $userEmail,
|
|
'session' => $session,
|
|
];
|
|
$this->users[$id] = $user;
|
|
|
|
return $user;
|
|
}
|
|
|
|
public function getCreatedUser(string $id): array
|
|
{
|
|
return $this->users[$id] ?? [];
|
|
}
|
|
|
|
// Team Management Methods
|
|
public function createTeam(string $id, string $name): array
|
|
{
|
|
$team = $this->client->call(Client::METHOD_POST, '/teams', $this->getServerHeader(), [
|
|
'teamId' => $id,
|
|
'name' => $name
|
|
]);
|
|
$this->assertContains($team['headers']['status-code'], [201, 409]);
|
|
|
|
if ($team['headers']['status-code'] === 409) {
|
|
$team = $this->client->call(Client::METHOD_GET, '/teams/' . $id, $this->getServerHeader());
|
|
}
|
|
|
|
$this->teams[$id] = $team['body'];
|
|
|
|
return $team['body'];
|
|
}
|
|
|
|
public function addToTeam(string $user, string $team, array $roles = []): array
|
|
{
|
|
$membership = $this->client->call(Client::METHOD_POST, '/teams/' . $team . '/memberships', $this->getServerHeader(), [
|
|
'teamId' => $team,
|
|
'email' => $this->getCreatedUser($user)['email'],
|
|
'roles' => $roles,
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
return [
|
|
'user' => $membership['body']['userId'],
|
|
'membership' => $membership['body']['$id']
|
|
];
|
|
}
|
|
|
|
// Helper Methods
|
|
public function getServerHeader(): array
|
|
{
|
|
return [
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-key' => $this->getProject()['apiKey']
|
|
];
|
|
}
|
|
}
|