|
|
|
@ -2,34 +2,35 @@
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Stories;
|
|
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
|
use App\Models\Conversation;
|
|
|
|
|
use App\DirectMessage;
|
|
|
|
|
use App\Notification;
|
|
|
|
|
use App\Story;
|
|
|
|
|
use App\Status;
|
|
|
|
|
use App\StoryView;
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
|
use App\Http\Resources\StoryView as StoryViewResource;
|
|
|
|
|
use App\Jobs\StoryPipeline\StoryDelete;
|
|
|
|
|
use App\Jobs\StoryPipeline\StoryFanout;
|
|
|
|
|
use App\Jobs\StoryPipeline\StoryReplyDeliver;
|
|
|
|
|
use App\Jobs\StoryPipeline\StoryViewDeliver;
|
|
|
|
|
use App\Models\Conversation;
|
|
|
|
|
use App\Notification;
|
|
|
|
|
use App\Services\AccountService;
|
|
|
|
|
use App\Services\MediaPathService;
|
|
|
|
|
use App\Services\StoryService;
|
|
|
|
|
use App\Http\Resources\StoryView as StoryViewResource;
|
|
|
|
|
use App\Status;
|
|
|
|
|
use App\Story;
|
|
|
|
|
use App\StoryView;
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
|
|
|
|
class StoryApiV1Controller extends Controller
|
|
|
|
|
{
|
|
|
|
|
const RECENT_KEY = 'pf:stories:recent-by-id:';
|
|
|
|
|
|
|
|
|
|
const RECENT_TTL = 300;
|
|
|
|
|
|
|
|
|
|
public function carousel(Request $request)
|
|
|
|
|
{
|
|
|
|
|
abort_if(!config_cache('instance.stories.enabled') || !$request->user(), 404);
|
|
|
|
|
abort_if(! (bool) config_cache('instance.stories.enabled') || ! $request->user(), 404);
|
|
|
|
|
$pid = $request->user()->profile_id;
|
|
|
|
|
|
|
|
|
|
if (config('database.default') == 'pgsql') {
|
|
|
|
@ -44,6 +45,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
$r->profile_id = $s->profile_id;
|
|
|
|
|
$r->type = $s->type;
|
|
|
|
|
$r->path = $s->path;
|
|
|
|
|
|
|
|
|
|
return $r;
|
|
|
|
|
})
|
|
|
|
|
->unique('profile_id');
|
|
|
|
@ -72,7 +74,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'src' => url(Storage::url($s->path)),
|
|
|
|
|
'duration' => $s->duration ?? 3,
|
|
|
|
|
'seen' => StoryService::hasSeen($pid, $s->id),
|
|
|
|
|
'created_at' => $s->created_at->format('c')
|
|
|
|
|
'created_at' => $s->created_at->format('c'),
|
|
|
|
|
];
|
|
|
|
|
})
|
|
|
|
|
->filter()
|
|
|
|
@ -81,6 +83,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
$profile = AccountService::get($item[0]['pid'], true);
|
|
|
|
|
$url = $profile['local'] ? url("/stories/{$profile['username']}") :
|
|
|
|
|
url("/i/rs/{$profile['id']}");
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'id' => 'pfs:'.$profile['id'],
|
|
|
|
|
'user' => [
|
|
|
|
@ -89,7 +92,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'username_acct' => $profile['acct'],
|
|
|
|
|
'avatar' => $profile['avatar'],
|
|
|
|
|
'local' => $profile['local'],
|
|
|
|
|
'is_author' => $profile['id'] == $pid
|
|
|
|
|
'is_author' => $profile['id'] == $pid,
|
|
|
|
|
],
|
|
|
|
|
'nodes' => $item,
|
|
|
|
|
'url' => $url,
|
|
|
|
@ -108,14 +111,14 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
$selfStories = Story::whereProfileId($pid)
|
|
|
|
|
->whereActive(true)
|
|
|
|
|
->get()
|
|
|
|
|
->map(function($s) use($pid) {
|
|
|
|
|
->map(function ($s) {
|
|
|
|
|
return [
|
|
|
|
|
'id' => (string) $s->id,
|
|
|
|
|
'type' => $s->type,
|
|
|
|
|
'src' => url(Storage::url($s->path)),
|
|
|
|
|
'duration' => $s->duration,
|
|
|
|
|
'seen' => true,
|
|
|
|
|
'created_at' => $s->created_at->format('c')
|
|
|
|
|
'created_at' => $s->created_at->format('c'),
|
|
|
|
|
];
|
|
|
|
|
})
|
|
|
|
|
->sortBy('id')
|
|
|
|
@ -127,18 +130,19 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'username' => $selfProfile['acct'],
|
|
|
|
|
'avatar' => $selfProfile['avatar'],
|
|
|
|
|
'local' => $selfProfile['local'],
|
|
|
|
|
'is_author' => true
|
|
|
|
|
'is_author' => true,
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'nodes' => $selfStories,
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return response()->json($res, 200, [], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function selfCarousel(Request $request)
|
|
|
|
|
{
|
|
|
|
|
abort_if(!config_cache('instance.stories.enabled') || !$request->user(), 404);
|
|
|
|
|
abort_if(! (bool) config_cache('instance.stories.enabled') || ! $request->user(), 404);
|
|
|
|
|
$pid = $request->user()->profile_id;
|
|
|
|
|
|
|
|
|
|
if (config('database.default') == 'pgsql') {
|
|
|
|
@ -153,6 +157,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
$r->profile_id = $s->profile_id;
|
|
|
|
|
$r->type = $s->type;
|
|
|
|
|
$r->path = $s->path;
|
|
|
|
|
|
|
|
|
|
return $r;
|
|
|
|
|
})
|
|
|
|
|
->unique('profile_id');
|
|
|
|
@ -181,7 +186,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'src' => url(Storage::url($s->path)),
|
|
|
|
|
'duration' => $s->duration ?? 3,
|
|
|
|
|
'seen' => StoryService::hasSeen($pid, $s->id),
|
|
|
|
|
'created_at' => $s->created_at->format('c')
|
|
|
|
|
'created_at' => $s->created_at->format('c'),
|
|
|
|
|
];
|
|
|
|
|
})
|
|
|
|
|
->filter()
|
|
|
|
@ -190,6 +195,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
$profile = AccountService::get($item[0]['pid'], true);
|
|
|
|
|
$url = $profile['local'] ? url("/stories/{$profile['username']}") :
|
|
|
|
|
url("/i/rs/{$profile['id']}");
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'id' => 'pfs:'.$profile['id'],
|
|
|
|
|
'user' => [
|
|
|
|
@ -198,7 +204,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'username_acct' => $profile['acct'],
|
|
|
|
|
'avatar' => $profile['avatar'],
|
|
|
|
|
'local' => $profile['local'],
|
|
|
|
|
'is_author' => $profile['id'] == $pid
|
|
|
|
|
'is_author' => $profile['id'] == $pid,
|
|
|
|
|
],
|
|
|
|
|
'nodes' => $item,
|
|
|
|
|
'url' => $url,
|
|
|
|
@ -216,7 +222,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'username' => $selfProfile['acct'],
|
|
|
|
|
'avatar' => $selfProfile['avatar'],
|
|
|
|
|
'local' => $selfProfile['local'],
|
|
|
|
|
'is_author' => true
|
|
|
|
|
'is_author' => true,
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'nodes' => [],
|
|
|
|
@ -228,26 +234,27 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
$selfStories = Story::whereProfileId($pid)
|
|
|
|
|
->whereActive(true)
|
|
|
|
|
->get()
|
|
|
|
|
->map(function($s) use($pid) {
|
|
|
|
|
->map(function ($s) {
|
|
|
|
|
return [
|
|
|
|
|
'id' => (string) $s->id,
|
|
|
|
|
'type' => $s->type,
|
|
|
|
|
'src' => url(Storage::url($s->path)),
|
|
|
|
|
'duration' => $s->duration,
|
|
|
|
|
'seen' => true,
|
|
|
|
|
'created_at' => $s->created_at->format('c')
|
|
|
|
|
'created_at' => $s->created_at->format('c'),
|
|
|
|
|
];
|
|
|
|
|
})
|
|
|
|
|
->sortBy('id')
|
|
|
|
|
->values();
|
|
|
|
|
$res['self']['nodes'] = $selfStories;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return response()->json($res, 200, [], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function add(Request $request)
|
|
|
|
|
{
|
|
|
|
|
abort_if(!config_cache('instance.stories.enabled') || !$request->user(), 404);
|
|
|
|
|
abort_if(! (bool) config_cache('instance.stories.enabled') || ! $request->user(), 404);
|
|
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
|
'file' => function () {
|
|
|
|
@ -257,7 +264,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'max:'.config_cache('pixelfed.max_photo_size'),
|
|
|
|
|
];
|
|
|
|
|
},
|
|
|
|
|
'duration' => 'sometimes|integer|min:0|max:30'
|
|
|
|
|
'duration' => 'sometimes|integer|min:0|max:30',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
@ -293,7 +300,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'msg' => 'Successfully added',
|
|
|
|
|
'media_id' => (string) $story->id,
|
|
|
|
|
'media_url' => url(Storage::url($url)).'?v='.time(),
|
|
|
|
|
'media_type' => $story->type
|
|
|
|
|
'media_type' => $story->type,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return $res;
|
|
|
|
@ -301,13 +308,13 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
|
|
|
|
|
public function publish(Request $request)
|
|
|
|
|
{
|
|
|
|
|
abort_if(!config_cache('instance.stories.enabled') || !$request->user(), 404);
|
|
|
|
|
abort_if(! (bool) config_cache('instance.stories.enabled') || ! $request->user(), 404);
|
|
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
|
'media_id' => 'required',
|
|
|
|
|
'duration' => 'required|integer|min:0|max:30',
|
|
|
|
|
'can_reply' => 'required|boolean',
|
|
|
|
|
'can_react' => 'required|boolean'
|
|
|
|
|
'can_react' => 'required|boolean',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$id = $request->input('media_id');
|
|
|
|
@ -333,7 +340,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
|
|
|
|
|
public function delete(Request $request, $id)
|
|
|
|
|
{
|
|
|
|
|
abort_if(!config_cache('instance.stories.enabled') || !$request->user(), 404);
|
|
|
|
|
abort_if(! (bool) config_cache('instance.stories.enabled') || ! $request->user(), 404);
|
|
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
|
@ -346,13 +353,13 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'code' => 200,
|
|
|
|
|
'msg' => 'Successfully deleted'
|
|
|
|
|
'msg' => 'Successfully deleted',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function viewed(Request $request)
|
|
|
|
|
{
|
|
|
|
|
abort_if(!config_cache('instance.stories.enabled') || !$request->user(), 404);
|
|
|
|
|
abort_if(! (bool) config_cache('instance.stories.enabled') || ! $request->user(), 404);
|
|
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
|
'id' => 'required|min:1',
|
|
|
|
@ -376,7 +383,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
|
|
|
|
|
$v = StoryView::firstOrCreate([
|
|
|
|
|
'story_id' => $id,
|
|
|
|
|
'profile_id' => $authed->id
|
|
|
|
|
'profile_id' => $authed->id,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
if ($v->wasRecentlyCreated) {
|
|
|
|
@ -389,15 +396,16 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
|
|
|
|
|
Cache::forget('stories:recent:by_id:'.$authed->id);
|
|
|
|
|
StoryService::addSeen($authed->id, $story->id);
|
|
|
|
|
|
|
|
|
|
return ['code' => 200];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function comment(Request $request)
|
|
|
|
|
{
|
|
|
|
|
abort_if(!config_cache('instance.stories.enabled') || !$request->user(), 404);
|
|
|
|
|
abort_if(! (bool) config_cache('instance.stories.enabled') || ! $request->user(), 404);
|
|
|
|
|
$this->validate($request, [
|
|
|
|
|
'sid' => 'required',
|
|
|
|
|
'caption' => 'required|string'
|
|
|
|
|
'caption' => 'required|string',
|
|
|
|
|
]);
|
|
|
|
|
$pid = $request->user()->profile_id;
|
|
|
|
|
$text = $request->input('caption');
|
|
|
|
@ -415,7 +423,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
$status->visibility = 'direct';
|
|
|
|
|
$status->in_reply_to_profile_id = $story->profile_id;
|
|
|
|
|
$status->entities = json_encode([
|
|
|
|
|
'story_id' => $story->id
|
|
|
|
|
'story_id' => $story->id,
|
|
|
|
|
]);
|
|
|
|
|
$status->save();
|
|
|
|
|
|
|
|
|
@ -429,20 +437,20 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
'story_actor_username' => $request->user()->username,
|
|
|
|
|
'story_id' => $story->id,
|
|
|
|
|
'story_media_url' => url(Storage::url($story->path)),
|
|
|
|
|
'caption' => $text
|
|
|
|
|
'caption' => $text,
|
|
|
|
|
]);
|
|
|
|
|
$dm->save();
|
|
|
|
|
|
|
|
|
|
Conversation::updateOrInsert(
|
|
|
|
|
[
|
|
|
|
|
'to_id' => $story->profile_id,
|
|
|
|
|
'from_id' => $pid
|
|
|
|
|
'from_id' => $pid,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'type' => 'story:comment',
|
|
|
|
|
'status_id' => $status->id,
|
|
|
|
|
'dm_id' => $dm->id,
|
|
|
|
|
'is_hidden' => false
|
|
|
|
|
'is_hidden' => false,
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
@ -460,7 +468,7 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'code' => 200,
|
|
|
|
|
'msg' => 'Sent!'
|
|
|
|
|
'msg' => 'Sent!',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -470,23 +478,25 @@ class StoryApiV1Controller extends Controller
|
|
|
|
|
if (in_array($photo->getMimeType(), [
|
|
|
|
|
'image/jpeg',
|
|
|
|
|
'image/png',
|
|
|
|
|
'video/mp4'
|
|
|
|
|
'video/mp4',
|
|
|
|
|
]) == false) {
|
|
|
|
|
abort(400, 'Invalid media type');
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$storagePath = MediaPathService::story($user->profile);
|
|
|
|
|
$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);
|
|
|
|
|
abort_if(! (bool) config_cache('instance.stories.enabled') || ! $request->user(), 404);
|
|
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
|
'sid' => 'required|string|min:1|max:50'
|
|
|
|
|
'sid' => 'required|string|min:1|max:50',
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$pid = $request->user()->profile_id;
|
|
|
|
|