123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use Auth;
- use App\{
- Collection,
- CollectionItem,
- Profile,
- Status
- };
- use League\Fractal;
- use App\Transformer\Api\{
- AccountTransformer,
- StatusTransformer,
- };
- use League\Fractal\Serializer\ArraySerializer;
- use League\Fractal\Pagination\IlluminatePaginatorAdapter;
- use App\Services\AccountService;
- use App\Services\CollectionService;
- use App\Services\FollowerService;
- use App\Services\StatusService;
- class CollectionController extends Controller
- {
- public function create(Request $request)
- {
- abort_if(!Auth::check(), 403);
- $profile = Auth::user()->profile;
- $collection = Collection::firstOrCreate([
- 'profile_id' => $profile->id,
- 'published_at' => null
- ]);
- $collection->visibility = 'draft';
- $collection->save();
- return view('collection.create', compact('collection'));
- }
- public function show(Request $request, int $id)
- {
- $user = $request->user();
- $collection = CollectionService::getCollection($id);
- abort_if(!$collection, 404);
- if($collection['published_at'] == null || $collection['visibility'] != 'public') {
- abort_if(!$user, 404);
- if($user->profile_id != $collection['pid']) {
- if(!$user->is_admin) {
- abort_if($collection['visibility'] != 'private', 404);
- abort_if(!FollowerService::follows($user->profile_id, $collection['pid']), 404);
- }
- }
- }
- return view('collection.show', compact('collection'));
- }
- public function index(Request $request)
- {
- abort_if(!Auth::check(), 403);
- return $request->all();
- }
- public function store(Request $request, $id)
- {
- abort_if(!Auth::check(), 403);
- $this->validate($request, [
- 'title' => 'nullable',
- 'description' => 'nullable',
- 'visibility' => 'nullable|string|in:public,private,draft'
- ]);
- $profile = Auth::user()->profile;
- $collection = Collection::whereProfileId($profile->id)->findOrFail($id);
- $collection->title = e($request->input('title'));
- $collection->description = e($request->input('description'));
- $collection->visibility = e($request->input('visibility'));
- $collection->save();
- return CollectionService::setCollection($collection->id, $collection);
- }
- public function publish(Request $request, int $id)
- {
- abort_if(!Auth::check(), 403);
- $this->validate($request, [
- 'title' => 'nullable',
- 'description' => 'nullable',
- 'visibility' => 'required|alpha|in:public,private,draft'
- ]);
- $profile = Auth::user()->profile;
- $collection = Collection::whereProfileId($profile->id)->findOrFail($id);
- if($collection->items()->count() == 0) {
- abort(404);
- }
- $collection->title = e($request->input('title'));
- $collection->description = e($request->input('description'));
- $collection->visibility = e($request->input('visibility'));
- $collection->published_at = now();
- $collection->save();
- return CollectionService::setCollection($collection->id, $collection);
- }
- public function delete(Request $request, int $id)
- {
- abort_if(!Auth::check(), 403);
- $user = Auth::user();
- $collection = Collection::whereProfileId($user->profile_id)->findOrFail($id);
- $collection->items()->delete();
- $collection->delete();
- if($request->wantsJson()) {
- return 200;
- }
- CollectionService::deleteCollection($id);
- return redirect('/');
- }
- public function storeId(Request $request)
- {
- $this->validate($request, [
- 'collection_id' => 'required|int|min:1|exists:collections,id',
- 'post_id' => 'required|int|min:1|exists:statuses,id'
- ]);
-
- $profileId = Auth::user()->profile_id;
- $collectionId = $request->input('collection_id');
- $postId = $request->input('post_id');
- $collection = Collection::whereProfileId($profileId)->findOrFail($collectionId);
- $count = $collection->items()->count();
- if($count) {
- CollectionItem::whereCollectionId($collection->id)
- ->get()
- ->filter(function($col) {
- return StatusService::get($col->object_id, false) == null;
- })
- ->each(function($col) use($collectionId) {
- CollectionService::removeItem($collectionId, $col->object_id);
- $col->delete();
- });
- }
- $max = config('pixelfed.max_collection_length');
- if($count >= $max) {
- abort(400, 'You can only add '.$max.' posts per collection');
- }
- $status = Status::whereScope('public')
- ->whereIn('type', ['photo', 'photo:album', 'video'])
- ->findOrFail($postId);
- $item = CollectionItem::firstOrCreate([
- 'collection_id' => $collection->id,
- 'object_type' => 'App\Status',
- 'object_id' => $status->id
- ],[
- 'order' => $count,
- ]);
- CollectionService::addItem(
- $collection->id,
- $status->id,
- $count
- );
- return StatusService::get($status->id);
- }
- public function getCollection(Request $request, $id)
- {
- $user = $request->user();
- $collection = CollectionService::getCollection($id);
- if($collection['published_at'] == null || $collection['visibility'] != 'public') {
- abort_unless($user, 404);
- if($user->profile_id != $collection['pid']) {
- if(!$user->is_admin) {
- abort_if($collection['visibility'] != 'private', 404);
- abort_if(!FollowerService::follows($user->profile_id, $collection['pid']), 404);
- }
- }
- }
- return $collection;
- }
- public function getItems(Request $request, int $id)
- {
- $user = $request->user();
- $collection = CollectionService::getCollection($id);
- if($collection['published_at'] == null || $collection['visibility'] != 'public') {
- abort_unless($user, 404);
- if($user->profile_id != $collection['pid']) {
- if(!$user->is_admin) {
- abort_if($collection['visibility'] != 'private', 404);
- abort_if(!FollowerService::follows($user->profile_id, $collection['pid']), 404);
- }
- }
- }
- $page = $request->input('page') ?? 1;
- $start = $page == 1 ? 0 : ($page * 10 - 10);
- $end = $start + 10;
- $items = CollectionService::getItems($id, $start, $end);
- return collect($items)
- ->map(function($id) {
- return StatusService::get($id);
- })
- ->filter(function($item) {
- return $item && isset($item['account'], $item['media_attachments']);
- })
- ->values();
- }
- public function getUserCollections(Request $request, int $id)
- {
- $user = $request->user();
- $pid = $user ? $user->profile_id : null;
- $follows = false;
- $visibility = ['public'];
- $profile = AccountService::get($id, true);
- if(!$profile || !isset($profile['id'])) {
- return response()->json([], 404);
- }
- if($pid) {
- $follows = FollowerService::follows($pid, $profile['id']);
- }
- if($profile['locked']) {
- abort_if(!$pid, 404);
- if(!$user->is_admin) {
- abort_if($profile['id'] != $pid && $follows == false, 404);
- }
- }
- $owner = $pid ? $pid == $profile['id'] : false;
- if($follows) {
- $visibility = ['public', 'private'];
- }
- if($pid && $pid == $profile['id']) {
- $visibility = ['public', 'private', 'draft'];
- }
- return Collection::whereProfileId($profile['id'])
- ->whereIn('visibility', $visibility)
- ->when(!$owner, function($q, $owner) {
- return $q->whereNotNull('published_at');
- })
- ->orderByDesc('id')
- ->paginate(9)
- ->map(function($collection) {
- return CollectionService::getCollection($collection->id);
- });
- }
- public function deleteId(Request $request)
- {
- $this->validate($request, [
- 'collection_id' => 'required|int|min:1|exists:collections,id',
- 'post_id' => 'required|int|min:1|exists:statuses,id'
- ]);
-
- $profileId = Auth::user()->profile_id;
- $collectionId = $request->input('collection_id');
- $postId = $request->input('post_id');
- $collection = Collection::whereProfileId($profileId)->findOrFail($collectionId);
- $count = $collection->items()->count();
- if($count == 1) {
- abort(400, 'You cannot delete the only post of a collection!');
- }
- $status = Status::whereScope('public')
- ->whereIn('type', ['photo', 'photo:album', 'video'])
- ->findOrFail($postId);
- CollectionService::removeItem(
- $collection->id,
- $status->id
- );
- $item = CollectionItem::whereCollectionId($collection->id)
- ->whereObjectType('App\Status')
- ->whereObjectId($status->id)
- ->firstOrFail();
- $item->delete();
- return 200;
- }
- }
|