Merge remote-tracking branch 'origin/main' into next

This commit is contained in:
github-actions[bot]
2026-08-20 10:50:16 +00:00
11 changed files with 237 additions and 28 deletions
@@ -15,9 +15,9 @@ use OpenApi\Attributes as OA;
class GithubController extends Controller class GithubController extends Controller
{ {
private function removeSensitiveData($githubApp) private function removeSensitiveData(GithubApp $githubApp, int $teamId)
{ {
if (request()->attributes->get('can_read_sensitive', false) === true) { if (request()->attributes->get('can_read_sensitive', false) === true && $githubApp->team_id === $teamId) {
$githubApp->makeVisible([ $githubApp->makeVisible([
'client_secret', 'client_secret',
'webhook_secret', 'webhook_secret',
@@ -97,8 +97,8 @@ class GithubController extends Controller
->orWhere('is_system_wide', true); ->orWhere('is_system_wide', true);
})->get(); })->get();
$githubApps = $githubApps->map(function ($app) { $githubApps = $githubApps->map(function ($app) use ($teamId) {
return $this->removeSensitiveData($app); return $this->removeSensitiveData($app, $teamId);
}); });
return response()->json($githubApps); return response()->json($githubApps);
@@ -13,9 +13,9 @@ use OpenApi\Attributes as OA;
class GitlabController extends Controller class GitlabController extends Controller
{ {
private function removeSensitiveData(GitlabApp $gitlabApp) private function removeSensitiveData(GitlabApp $gitlabApp, int $teamId)
{ {
if (request()->attributes->get('can_read_sensitive', false) === true) { if (request()->attributes->get('can_read_sensitive', false) === true && $gitlabApp->team_id === $teamId) {
$gitlabApp->makeVisible([ $gitlabApp->makeVisible([
'client_secret', 'client_secret',
'webhook_token', 'webhook_token',
@@ -108,8 +108,8 @@ class GitlabController extends Controller
->orWhere('is_system_wide', true); ->orWhere('is_system_wide', true);
})->get(); })->get();
$gitlabApps = $gitlabApps->map(function ($app) { $gitlabApps = $gitlabApps->map(function ($app) use ($teamId) {
return $this->removeSensitiveData($app); return $this->removeSensitiveData($app, $teamId);
}); });
return response()->json($gitlabApps); return response()->json($gitlabApps);
@@ -280,7 +280,7 @@ class GitlabController extends Controller
'gitlab_app_name' => $gitlabApp->name, 'gitlab_app_name' => $gitlabApp->name,
]); ]);
return response()->json($this->removeSensitiveData($gitlabApp->fresh()), 201); return response()->json($this->removeSensitiveData($gitlabApp->fresh(), $teamId), 201);
} catch (\Throwable $e) { } catch (\Throwable $e) {
return handleError($e); return handleError($e);
} }
@@ -441,7 +441,7 @@ class GitlabController extends Controller
return response()->json([ return response()->json([
'message' => 'GitLab app updated successfully', 'message' => 'GitLab app updated successfully',
'data' => $this->removeSensitiveData($gitlabApp->fresh()), 'data' => $this->removeSensitiveData($gitlabApp->fresh(), $teamId),
]); ]);
} catch (ModelNotFoundException $e) { } catch (ModelNotFoundException $e) {
return response()->json([ return response()->json([
@@ -158,6 +158,8 @@ class ProjectController extends Controller
if (! $project) { if (! $project) {
return response()->json(['message' => 'Project not found.'], 404); return response()->json(['message' => 'Project not found.'], 404);
} }
$this->authorize('view', $project);
$environment = $project->environments()->whereName($request->environment_name_or_uuid)->first(); $environment = $project->environments()->whereName($request->environment_name_or_uuid)->first();
if (! $environment) { if (! $environment) {
$environment = $project->environments()->whereUuid($request->environment_name_or_uuid)->first(); $environment = $project->environments()->whereUuid($request->environment_name_or_uuid)->first();
@@ -550,11 +550,7 @@ class ServersController extends Controller
} }
$foundServer = ModelsServer::whereIp($request->ip)->first(); $foundServer = ModelsServer::whereIp($request->ip)->first();
if ($foundServer) { if ($foundServer) {
if ($foundServer->team_id === $teamId) { return response()->json(['message' => 'A server with this IP/Domain is already in use.'], 400);
return response()->json(['message' => 'A server with this IP/Domain already exists in your team.'], 400);
}
return response()->json(['message' => 'A server with this IP/Domain is already in use by another team.'], 400);
} }
$proxyType = $request->proxy_type ? str($request->proxy_type)->upper() : ProxyTypes::TRAEFIK->value; $proxyType = $request->proxy_type ? str($request->proxy_type)->upper() : ProxyTypes::TRAEFIK->value;
+9 -7
View File
@@ -56,7 +56,7 @@ class TeamController extends Controller
if (is_null($teamId)) { if (is_null($teamId)) {
return invalidTokenResponse(); return invalidTokenResponse();
} }
$teams = auth()->user()->teams->sortBy('id'); $teams = auth()->user()->teams->where('id', $teamId)->values();
$teams = $teams->map(function ($team) { $teams = $teams->map(function ($team) {
return $this->removeSensitiveData($team); return $this->removeSensitiveData($team);
}); });
@@ -100,13 +100,14 @@ class TeamController extends Controller
)] )]
public function team_by_id(Request $request) public function team_by_id(Request $request)
{ {
$id = $request->id;
$teamId = getTeamIdFromToken(); $teamId = getTeamIdFromToken();
if (is_null($teamId)) { if (is_null($teamId)) {
return invalidTokenResponse(); return invalidTokenResponse();
} }
$teams = auth()->user()->teams; if ((int) $request->id !== (int) $teamId) {
$team = $teams->where('id', $id)->first(); return response()->json(['message' => 'Team not found.'], 404);
}
$team = auth()->user()->teams->where('id', $teamId)->first();
if (is_null($team)) { if (is_null($team)) {
return response()->json(['message' => 'Team not found.'], 404); return response()->json(['message' => 'Team not found.'], 404);
} }
@@ -159,13 +160,14 @@ class TeamController extends Controller
)] )]
public function members_by_id(Request $request) public function members_by_id(Request $request)
{ {
$id = $request->id;
$teamId = getTeamIdFromToken(); $teamId = getTeamIdFromToken();
if (is_null($teamId)) { if (is_null($teamId)) {
return invalidTokenResponse(); return invalidTokenResponse();
} }
$teams = auth()->user()->teams; if ((int) $request->id !== (int) $teamId) {
$team = $teams->where('id', $id)->first(); return response()->json(['message' => 'Team not found.'], 404);
}
$team = auth()->user()->teams->where('id', $teamId)->first();
if (is_null($team)) { if (is_null($team)) {
return response()->json(['message' => 'Team not found.'], 404); return response()->json(['message' => 'Team not found.'], 404);
} }
@@ -2,7 +2,10 @@
namespace App\Livewire\Project\Shared\ScheduledTask; namespace App\Livewire\Project\Shared\ScheduledTask;
use App\Models\Application;
use App\Models\ScheduledTask; use App\Models\ScheduledTask;
use App\Models\Service;
use App\Models\StandalonePostgresql;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Support\Collection; use Illuminate\Support\Collection;
use Livewire\Attributes\Locked; use Livewire\Attributes\Locked;
@@ -59,13 +62,13 @@ class Add extends Component
// Get the resource based on type and id // Get the resource based on type and id
switch ($this->type) { switch ($this->type) {
case 'application': case 'application':
$this->resource = \App\Models\Application::findOrFail($this->id); $this->resource = Application::ownedByCurrentTeam()->findOrFail($this->id);
break; break;
case 'service': case 'service':
$this->resource = \App\Models\Service::findOrFail($this->id); $this->resource = Service::ownedByCurrentTeam()->findOrFail($this->id);
break; break;
case 'standalone-postgresql': case 'standalone-postgresql':
$this->resource = \App\Models\StandalonePostgresql::findOrFail($this->id); $this->resource = StandalonePostgresql::ownedByCurrentTeam()->findOrFail($this->id);
break; break;
default: default:
throw new \Exception('Invalid resource type'); throw new \Exception('Invalid resource type');
@@ -2,7 +2,6 @@
namespace App\Livewire\Server; namespace App\Livewire\Server;
use App\Models\DockerCleanupExecution;
use App\Models\Server; use App\Models\Server;
use Illuminate\Support\Collection; use Illuminate\Support\Collection;
use Livewire\Component; use Livewire\Component;
@@ -46,7 +45,7 @@ class DockerCleanupExecutions extends Component
->get(); ->get();
if ($this->selectedKey) { if ($this->selectedKey) {
$this->selectedExecution = DockerCleanupExecution::find($this->selectedKey); $this->selectedExecution = $this->server->dockerCleanupExecutions()->find($this->selectedKey);
if ($this->selectedExecution && $this->selectedExecution->status !== 'running') { if ($this->selectedExecution && $this->selectedExecution->status !== 'running') {
$this->isPollingActive = false; $this->isPollingActive = false;
} }
@@ -64,7 +63,7 @@ class DockerCleanupExecutions extends Component
return; return;
} }
$this->selectedKey = $key; $this->selectedKey = $key;
$this->selectedExecution = DockerCleanupExecution::find($key); $this->selectedExecution = $this->server->dockerCleanupExecutions()->find($key);
$this->currentPage = 1; $this->currentPage = 1;
if ($this->selectedExecution && $this->selectedExecution->status === 'running') { if ($this->selectedExecution && $this->selectedExecution->status === 'running') {
@@ -197,6 +197,39 @@ describe('GET /api/v1/github-apps', function () {
]); ]);
}); });
test('does not return system-wide github app secrets owned by another team', function () {
$otherTeam = Team::factory()->create();
$otherPrivateKey = PrivateKey::create([
'name' => 'System Key',
'private_key' => validGithubAppsApiPrivateKey(),
'team_id' => $otherTeam->id,
]);
GithubApp::create([
'name' => 'Foreign System GitHub App',
'api_url' => 'https://api.github.com',
'html_url' => 'https://github.com',
'app_id' => 11111,
'installation_id' => 22222,
'client_id' => 'system-client-id',
'client_secret' => 'foreign-client-secret',
'webhook_secret' => 'foreign-webhook-secret',
'private_key_id' => $otherPrivateKey->id,
'team_id' => $otherTeam->id,
'is_system_wide' => true,
]);
$sensitiveToken = createGithubAppsApiToken($this, ['read', 'read:sensitive']);
$response = $this->withToken($sensitiveToken)
->getJson('/api/v1/github-apps')
->assertSuccessful()
->assertJsonFragment(['name' => 'Foreign System GitHub App']);
expect($response->json('0'))
->not->toHaveKey('client_secret')
->not->toHaveKey('webhook_secret');
});
test('does not return other teams github apps', function () { test('does not return other teams github apps', function () {
// Create a GitHub app for this team // Create a GitHub app for this team
GithubApp::create([ GithubApp::create([
+30
View File
@@ -64,6 +64,36 @@ describe('GET /api/v1/gitlab-apps', function () {
expect($response->json('0'))->not->toHaveKey('client_secret') expect($response->json('0'))->not->toHaveKey('client_secret')
->and($response->json('0'))->not->toHaveKey('webhook_token'); ->and($response->json('0'))->not->toHaveKey('webhook_token');
}); });
test('does not return system-wide gitlab app secrets owned by another team', function () {
$otherTeam = Team::factory()->create();
GitlabApp::create([
'name' => 'Foreign System GitLab',
'api_url' => 'https://gitlab.com/api/v4',
'html_url' => 'https://gitlab.com',
'client_id' => 'foreign-client-id',
'client_secret' => 'foreign-client-secret',
'webhook_token' => 'foreign-webhook-token',
'access_token' => 'foreign-access-token',
'refresh_token' => 'foreign-refresh-token',
'team_id' => $otherTeam->id,
'is_system_wide' => true,
]);
session(['currentTeam' => $this->team]);
$sensitiveToken = $this->user->createToken('sensitive-token', ['read', 'read:sensitive'])->plainTextToken;
$response = $this->withToken($sensitiveToken)
->getJson('/api/v1/gitlab-apps')
->assertSuccessful()
->assertJsonFragment(['name' => 'Foreign System GitLab']);
expect($response->json('0'))
->not->toHaveKey('client_secret')
->not->toHaveKey('webhook_token')
->not->toHaveKey('access_token')
->not->toHaveKey('refresh_token');
});
}); });
describe('POST /api/v1/gitlab-apps', function () { describe('POST /api/v1/gitlab-apps', function () {
@@ -8,6 +8,9 @@ use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class); uses(RefreshDatabase::class);
beforeEach(function () { beforeEach(function () {
config()->set('app.maintenance.driver', 'file');
config()->set('cache.default', 'array');
InstanceSettings::unguarded(fn () => InstanceSettings::updateOrCreate(['id' => 0], ['is_api_enabled' => true])); InstanceSettings::unguarded(fn () => InstanceSettings::updateOrCreate(['id' => 0], ['is_api_enabled' => true]));
$this->team = Team::factory()->create(['name' => 'Token Team']); $this->team = Team::factory()->create(['name' => 'Token Team']);
@@ -27,6 +30,27 @@ function teamTokenApiHeaders(string $bearerToken): array
} }
describe('token team endpoints', function () { describe('token team endpoints', function () {
test('legacy team endpoints are restricted to the token team', function () {
$otherTeam = Team::factory()->create(['name' => 'Other Team']);
$otherMember = User::factory()->create();
$otherTeam->members()->attach($this->user->id, ['role' => 'owner']);
$otherTeam->members()->attach($otherMember->id, ['role' => 'member']);
$this->withHeaders(teamTokenApiHeaders($this->bearerToken))
->getJson('/api/v1/teams')
->assertOk()
->assertJsonCount(1)
->assertJsonPath('0.id', $this->team->id);
$this->withHeaders(teamTokenApiHeaders($this->bearerToken))
->getJson("/api/v1/teams/{$otherTeam->id}")
->assertNotFound();
$this->withHeaders(teamTokenApiHeaders($this->bearerToken))
->getJson("/api/v1/teams/{$otherTeam->id}/members")
->assertNotFound();
});
test('GET /team returns the token team', function () { test('GET /team returns the token team', function () {
$this->withHeaders(teamTokenApiHeaders($this->bearerToken)) $this->withHeaders(teamTokenApiHeaders($this->bearerToken))
->getJson('/api/v1/team') ->getJson('/api/v1/team')
@@ -0,0 +1,120 @@
<?php
use App\Livewire\Project\Shared\ScheduledTask\Add;
use App\Livewire\Server\DockerCleanupExecutions;
use App\Models\Application;
use App\Models\DockerCleanupExecution;
use App\Models\Environment;
use App\Models\InstanceSettings;
use App\Models\PrivateKey;
use App\Models\Project;
use App\Models\Server;
use App\Models\StandaloneDocker;
use App\Models\Team;
use App\Models\User;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Gate;
use Illuminate\Support\Str;
use Livewire\Livewire;
uses(RefreshDatabase::class);
beforeEach(function () {
config(['app.maintenance.driver' => 'file']);
InstanceSettings::forceCreate(['id' => 0, 'is_api_enabled' => true]);
$this->team = Team::factory()->create();
$this->user = User::factory()->create();
$this->user->teams()->attach($this->team, ['role' => 'owner']);
$this->otherTeam = Team::factory()->create();
session(['currentTeam' => $this->team]);
$this->privateKey = PrivateKey::withoutEvents(fn () => PrivateKey::forceCreate([
'uuid' => (string) Str::uuid(),
'name' => 'IDOR test key',
'private_key' => 'test-private-key',
'team_id' => $this->team->id,
]));
$token = $this->user->createToken('idor-hardening', ['*']);
$token->accessToken->forceFill(['team_id' => $this->team->id])->save();
$this->token = $token->plainTextToken;
});
test('server creation returns a consistent duplicate address response', function () {
$ownServer = Server::factory()->create([
'ip' => '192.0.2.10',
'team_id' => $this->team->id,
]);
$otherServer = Server::factory()->create([
'ip' => '192.0.2.20',
'team_id' => $this->otherTeam->id,
]);
$payload = fn (Server $server): array => [
'name' => 'Duplicate server',
'ip' => $server->ip,
'private_key_uuid' => $this->privateKey->uuid,
'user' => 'root',
];
$ownResponse = $this->withToken($this->token)->postJson('/api/v1/servers', $payload($ownServer));
$otherResponse = $this->withToken($this->token)->postJson('/api/v1/servers', $payload($otherServer));
$ownResponse->assertBadRequest();
$otherResponse->assertBadRequest();
expect($ownResponse->json('message'))
->toBe('A server with this IP/Domain is already in use.')
->toBe($otherResponse->json('message'));
});
test('environment details applies the project view policy', function () {
$project = Project::factory()->create(['team_id' => $this->team->id]);
$environment = Environment::factory()->create(['project_id' => $project->id]);
Gate::before(fn (User $user, string $ability): ?bool => $ability === 'view' ? false : null);
$this->withToken($this->token)
->getJson("/api/v1/projects/{$project->uuid}/{$environment->uuid}")
->assertForbidden();
});
test('docker cleanup execution selection only uses the mounted server', function () {
$this->actingAs($this->user);
$server = Server::factory()->create(['team_id' => $this->team->id]);
$otherServer = Server::factory()->create(['team_id' => $this->otherTeam->id]);
$otherExecution = DockerCleanupExecution::create([
'server_id' => $otherServer->id,
'status' => 'success',
'message' => 'other team cleanup output',
]);
Livewire::test(DockerCleanupExecutions::class, ['server' => $server])
->call('selectExecution', $otherExecution->id)
->assertSet('selectedExecution', null);
});
test('scheduled task form only mounts applications from the current team', function () {
$this->actingAs($this->user);
$server = Server::factory()->create(['team_id' => $this->otherTeam->id]);
$destination = StandaloneDocker::where('server_id', $server->id)->firstOrFail();
$project = Project::factory()->create(['team_id' => $this->otherTeam->id]);
$environment = Environment::factory()->create(['project_id' => $project->id]);
$application = Application::factory()->create([
'environment_id' => $environment->id,
'destination_id' => $destination->id,
'destination_type' => $destination->getMorphClass(),
]);
Livewire::test(Add::class, [
'id' => (string) $application->id,
'type' => 'application',
'containerNames' => collect(),
]);
})->throws(ModelNotFoundException::class);