pixelfed/app/Http/Controllers/StatusController.php

64 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers;
2018-06-01 03:12:27 +00:00
use Auth, Cache;
use App\Jobs\StatusPipeline\NewStatusPipeline;
use Illuminate\Http\Request;
2018-04-19 05:56:46 +00:00
use App\{Media, Profile, Status, User};
use Vinkla\Hashids\Facades\Hashids;
class StatusController extends Controller
{
2018-06-01 03:12:27 +00:00
public function show(Request $request, $username, int $id)
2018-04-19 05:56:46 +00:00
{
$user = Profile::whereUsername($username)->firstOrFail();
$status = Status::whereProfileId($user->id)->findOrFail($id);
2018-06-01 03:12:27 +00:00
if(!$status->media_path && $status->in_reply_to_id) {
return view('status.reply', compact('user', 'status'));
}
2018-04-19 05:56:46 +00:00
return view('status.show', compact('user', 'status'));
}
2018-04-17 01:24:42 +00:00
public function store(Request $request)
{
if(Auth::check() == false)
{
abort(403);
}
$user = Auth::user();
$this->validate($request, [
2018-06-01 03:12:27 +00:00
'photo' => 'required|image|max:15000',
2018-04-17 01:24:42 +00:00
'caption' => 'string|max:150'
]);
2018-06-01 03:12:27 +00:00
$monthHash = hash('sha1', date('Y') . date('m'));
2018-04-17 01:24:42 +00:00
$userHash = hash('sha1', $user->id . (string) $user->created_at);
$storagePath = "public/m/{$monthHash}/{$userHash}";
$path = $request->photo->store($storagePath);
$profile = $user->profile;
$status = new Status;
$status->profile_id = $profile->id;
$status->caption = $request->caption;
$status->save();
$media = new Media;
$media->status_id = $status->id;
$media->profile_id = $profile->id;
$media->user_id = $user->id;
$media->media_path = $path;
$media->size = $request->file('photo')->getClientSize();
$media->mime = $request->file('photo')->getClientMimeType();
$media->save();
2018-06-01 03:12:27 +00:00
NewStatusPipeline::dispatch($status, $media);
// TODO: Parse Caption
// TODO: Send to subscribers
2018-04-17 01:24:42 +00:00
2018-04-19 05:56:46 +00:00
return redirect($status->url());
2018-04-17 01:24:42 +00:00
}
}