Skip to content

Commit

Permalink
Update StoryApiV1Controller, add viewers route to view story viewers
Browse files Browse the repository at this point in the history
  • Loading branch information
dansup committed Sep 10, 2023
1 parent c4843e8 commit 941736c
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 0 deletions.
23 changes: 23 additions & 0 deletions app/Http/Controllers/Stories/StoryApiV1Controller.php
Expand Up @@ -20,6 +20,7 @@
use App\Services\AccountService;
use App\Services\MediaPathService;
use App\Services\StoryService;
use App\Http\Resources\StoryView as StoryViewResource;

class StoryApiV1Controller extends Controller
{
Expand Down Expand Up @@ -355,4 +356,26 @@ protected function storeMedia($photo, $user)
$path = $photo->storePubliclyAs($storagePath, Str::random(random_int(2, 12)) . '_' . Str::random(random_int(32, 35)) . '_' . Str::random(random_int(1, 14)) . '.' . $photo->extension());
return $path;
}

public function viewers(Request $request)
{
abort_if(!config_cache('instance.stories.enabled') || !$request->user(), 404);

$this->validate($request, [
'sid' => 'required|string|min:1|max:50'
]);

$pid = $request->user()->profile_id;
$sid = $request->input('sid');

$story = Story::whereProfileId($pid)
->whereActive(true)
->findOrFail($sid);

$viewers = StoryView::whereStoryId($story->id)
->orderByDesc('id')
->cursorPaginate(10);

return StoryViewResource::collection($viewers);
}
}
20 changes: 20 additions & 0 deletions app/Http/Resources/StoryView.php
@@ -0,0 +1,20 @@
<?php

namespace App\Http\Resources;

use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
use App\Services\AccountService;

class StoryView extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request)
{
return AccountService::get($this->profile_id, true);
}
}
20 changes: 20 additions & 0 deletions app/Http/Resources/StoryViewerResource.php
@@ -0,0 +1,20 @@
<?php

namespace App\Http\Resources;

use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
use App\Services\AccountService;

class StoryViewerResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return AccountService::get($this->profile_id, false);
}
}
1 change: 1 addition & 0 deletions routes/api.php
Expand Up @@ -316,6 +316,7 @@
Route::post('seen', 'Stories\StoryApiV1Controller@viewed')->middleware($middleware);
Route::post('self-expire/{id}', 'Stories\StoryApiV1Controller@delete')->middleware($middleware);
Route::post('comment', 'Stories\StoryApiV1Controller@comment')->middleware($middleware);
Route::get('viewers', 'Stories\StoryApiV1Controller@viewers')->middleware($middleware);
});
});
});
Expand Down

0 comments on commit 941736c

Please sign in to comment.