2019-09-14 01:10:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use Illuminate\Support\Str;
|
2019-09-25 06:07:05 +00:00
|
|
|
use App\Util\ActivityPub\Helpers;
|
2019-09-29 06:36:02 +00:00
|
|
|
use App\Util\Media\Filter;
|
2019-09-14 01:10:22 +00:00
|
|
|
use Laravel\Passport\Passport;
|
2019-09-26 04:54:05 +00:00
|
|
|
use Auth, Cache, DB, URL;
|
2019-09-14 01:10:22 +00:00
|
|
|
use App\{
|
2020-05-16 04:55:01 +00:00
|
|
|
Bookmark,
|
2019-09-25 02:35:07 +00:00
|
|
|
Follower,
|
2019-09-25 03:37:25 +00:00
|
|
|
FollowRequest,
|
2019-09-14 01:10:22 +00:00
|
|
|
Like,
|
|
|
|
Media,
|
2019-09-25 07:10:01 +00:00
|
|
|
Notification,
|
2019-09-14 01:10:22 +00:00
|
|
|
Profile,
|
2019-09-25 03:37:25 +00:00
|
|
|
Status,
|
2021-01-09 07:21:29 +00:00
|
|
|
User,
|
2019-09-25 03:37:25 +00:00
|
|
|
UserFilter,
|
2019-09-14 01:10:22 +00:00
|
|
|
};
|
2019-09-14 03:48:16 +00:00
|
|
|
use League\Fractal;
|
2019-09-26 07:37:22 +00:00
|
|
|
use App\Transformer\Api\Mastodon\v1\{
|
2019-09-14 03:48:16 +00:00
|
|
|
AccountTransformer,
|
2019-09-26 04:54:05 +00:00
|
|
|
MediaTransformer,
|
2019-09-26 07:37:22 +00:00
|
|
|
NotificationTransformer,
|
2019-09-14 03:48:16 +00:00
|
|
|
StatusTransformer,
|
|
|
|
};
|
2019-09-26 07:37:22 +00:00
|
|
|
use App\Transformer\Api\{
|
|
|
|
RelationshipTransformer,
|
|
|
|
};
|
2019-09-25 03:37:25 +00:00
|
|
|
use App\Http\Controllers\FollowerController;
|
2019-09-14 03:48:16 +00:00
|
|
|
use League\Fractal\Serializer\ArraySerializer;
|
|
|
|
use League\Fractal\Pagination\IlluminatePaginatorAdapter;
|
2019-09-29 04:50:56 +00:00
|
|
|
use App\Http\Controllers\StatusController;
|
2019-09-26 04:54:05 +00:00
|
|
|
use App\Jobs\LikePipeline\LikePipeline;
|
2019-09-29 06:36:02 +00:00
|
|
|
use App\Jobs\SharePipeline\SharePipeline;
|
2019-09-29 04:50:56 +00:00
|
|
|
use App\Jobs\StatusPipeline\NewStatusPipeline;
|
2019-09-26 04:54:05 +00:00
|
|
|
use App\Jobs\StatusPipeline\StatusDelete;
|
|
|
|
use App\Jobs\FollowPipeline\FollowPipeline;
|
|
|
|
use App\Jobs\ImageOptimizePipeline\ImageOptimize;
|
|
|
|
use App\Jobs\VideoPipeline\{
|
|
|
|
VideoOptimize,
|
|
|
|
VideoPostProcess,
|
|
|
|
VideoThumbnail
|
|
|
|
};
|
2020-02-07 00:13:10 +00:00
|
|
|
use App\Services\{
|
|
|
|
NotificationService,
|
2020-07-13 03:27:34 +00:00
|
|
|
MediaPathService,
|
2020-07-27 04:17:00 +00:00
|
|
|
SearchApiV2Service,
|
|
|
|
MediaBlocklistService
|
2020-02-07 00:13:10 +00:00
|
|
|
};
|
2019-09-14 01:10:22 +00:00
|
|
|
|
2020-07-27 04:17:00 +00:00
|
|
|
|
2019-09-14 03:48:16 +00:00
|
|
|
class ApiV1Controller extends Controller
|
|
|
|
{
|
|
|
|
protected $fractal;
|
2019-09-14 01:10:22 +00:00
|
|
|
|
2019-09-14 03:48:16 +00:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->fractal = new Fractal\Manager();
|
|
|
|
$this->fractal->setSerializer(new ArraySerializer());
|
|
|
|
}
|
2019-09-25 02:05:40 +00:00
|
|
|
|
2019-09-14 01:10:22 +00:00
|
|
|
public function apps(Request $request)
|
|
|
|
{
|
2019-09-14 01:54:38 +00:00
|
|
|
abort_if(!config('pixelfed.oauth_enabled'), 404);
|
|
|
|
|
2019-09-14 01:10:22 +00:00
|
|
|
$this->validate($request, [
|
|
|
|
'client_name' => 'required',
|
|
|
|
'redirect_uris' => 'required',
|
|
|
|
'scopes' => 'nullable',
|
|
|
|
'website' => 'nullable'
|
|
|
|
]);
|
|
|
|
|
2020-04-12 02:14:50 +00:00
|
|
|
$uris = implode(',', explode('\n', $request->redirect_uris));
|
|
|
|
|
2019-09-14 01:10:22 +00:00
|
|
|
$client = Passport::client()->forceFill([
|
|
|
|
'user_id' => null,
|
|
|
|
'name' => e($request->client_name),
|
|
|
|
'secret' => Str::random(40),
|
2020-04-12 02:14:50 +00:00
|
|
|
'redirect' => $uris,
|
2019-09-14 01:10:22 +00:00
|
|
|
'personal_access_client' => false,
|
|
|
|
'password_client' => false,
|
|
|
|
'revoked' => false,
|
|
|
|
]);
|
2019-09-14 01:54:38 +00:00
|
|
|
|
2019-09-14 01:10:22 +00:00
|
|
|
$client->save();
|
2019-09-14 01:54:38 +00:00
|
|
|
|
2019-09-14 01:10:22 +00:00
|
|
|
$res = [
|
|
|
|
'id' => $client->id,
|
|
|
|
'name' => $client->name,
|
|
|
|
'website' => null,
|
|
|
|
'redirect_uri' => $client->redirect,
|
|
|
|
'client_id' => $client->id,
|
|
|
|
'client_secret' => $client->secret,
|
|
|
|
'vapid_key' => null
|
|
|
|
];
|
2019-09-27 03:03:08 +00:00
|
|
|
return response()->json($res, 200, [
|
|
|
|
'Access-Control-Allow-Origin' => '*'
|
|
|
|
]);
|
2019-09-14 01:10:22 +00:00
|
|
|
}
|
2019-09-14 03:48:16 +00:00
|
|
|
|
2019-09-27 01:52:56 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/accounts/verify_credentials
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\AccountTransformer
|
|
|
|
*/
|
|
|
|
public function verifyCredentials(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
$id = $request->user()->id;
|
2021-01-09 07:21:29 +00:00
|
|
|
$key = 'user:last_active_at:id:'.$id;
|
|
|
|
$ttl = now()->addMinutes(5);
|
|
|
|
Cache::remember($key, $ttl, function() use($id) {
|
|
|
|
$user = User::findOrFail($id);
|
|
|
|
$user->last_active_at = now();
|
|
|
|
$user->save();
|
|
|
|
return;
|
|
|
|
});
|
|
|
|
$profile = Profile::whereNull('status')->whereUserId($id)->firstOrFail();
|
|
|
|
$resource = new Fractal\Resource\Item($profile, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
$res['source'] = [
|
|
|
|
'privacy' => $profile->is_private ? 'private' : 'public',
|
|
|
|
'sensitive' => $profile->cw ? true : false,
|
|
|
|
'language' => null,
|
|
|
|
'note' => '',
|
|
|
|
'fields' => []
|
|
|
|
];
|
2019-09-27 01:52:56 +00:00
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 02:05:40 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/accounts/{id}
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\AccountTransformer
|
|
|
|
*/
|
2019-09-14 03:48:16 +00:00
|
|
|
public function accountById(Request $request, $id)
|
|
|
|
{
|
|
|
|
$profile = Profile::whereNull('status')->findOrFail($id);
|
|
|
|
$resource = new Fractal\Resource\Item($profile, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
2019-09-21 03:22:01 +00:00
|
|
|
|
2019-09-25 02:05:40 +00:00
|
|
|
/**
|
|
|
|
* PATCH /api/v1/accounts/update_credentials
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\AccountTransformer
|
|
|
|
*/
|
2019-09-25 02:59:39 +00:00
|
|
|
public function accountUpdateCredentials(Request $request)
|
2019-09-25 01:47:45 +00:00
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'display_name' => 'nullable|string',
|
|
|
|
'note' => 'nullable|string',
|
2020-02-20 02:57:30 +00:00
|
|
|
'locked' => 'nullable',
|
2019-09-25 01:47:45 +00:00
|
|
|
// 'source.privacy' => 'nullable|in:unlisted,public,private',
|
|
|
|
// 'source.sensitive' => 'nullable|boolean'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$profile = $user->profile;
|
|
|
|
|
|
|
|
$displayName = $request->input('display_name');
|
|
|
|
$note = $request->input('note');
|
|
|
|
$locked = $request->input('locked');
|
|
|
|
// $privacy = $request->input('source.privacy');
|
|
|
|
// $sensitive = $request->input('source.sensitive');
|
|
|
|
|
|
|
|
$changes = false;
|
|
|
|
|
|
|
|
if($displayName !== $user->name) {
|
|
|
|
$user->name = $displayName;
|
|
|
|
$profile->name = $displayName;
|
|
|
|
$changes = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($note !== $profile->bio) {
|
|
|
|
$profile->bio = e($note);
|
|
|
|
$changes = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!is_null($locked)) {
|
|
|
|
$profile->is_private = $locked;
|
|
|
|
$changes = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($changes) {
|
|
|
|
$user->save();
|
2019-09-25 03:01:01 +00:00
|
|
|
$profile->save();
|
2019-09-25 01:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($profile, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 02:05:40 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/accounts/{id}/followers
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\AccountTransformer
|
|
|
|
*/
|
|
|
|
public function accountFollowersById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
2020-02-28 06:31:18 +00:00
|
|
|
|
|
|
|
$user = $request->user();
|
2019-09-25 02:05:40 +00:00
|
|
|
$profile = Profile::whereNull('status')->findOrFail($id);
|
2020-02-28 06:31:18 +00:00
|
|
|
$limit = $request->input('limit') ?? 40;
|
2019-09-25 02:05:40 +00:00
|
|
|
|
2019-09-27 02:49:44 +00:00
|
|
|
if($profile->domain) {
|
2019-09-25 02:05:40 +00:00
|
|
|
$res = [];
|
2019-09-27 02:49:44 +00:00
|
|
|
} else {
|
2020-02-28 06:31:18 +00:00
|
|
|
if($profile->id == $user->profile_id) {
|
2019-09-27 02:49:44 +00:00
|
|
|
$followers = $profile->followers()->paginate($limit);
|
|
|
|
$resource = new Fractal\Resource\Collection($followers, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
} else {
|
2020-02-28 06:31:18 +00:00
|
|
|
if($profile->is_private) {
|
|
|
|
abort_if(!$profile->followedBy($user->profile), 403);
|
|
|
|
}
|
|
|
|
$settings = $profile->user->settings;
|
|
|
|
if( in_array($user->profile_id, $profile->blockedIds()->toArray()) ||
|
|
|
|
$settings->show_profile_followers == false
|
|
|
|
) {
|
|
|
|
$res = [];
|
|
|
|
} else {
|
|
|
|
$followers = $profile->followers()->paginate($limit);
|
|
|
|
$resource = new Fractal\Resource\Collection($followers, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
}
|
2019-09-27 02:49:44 +00:00
|
|
|
}
|
2019-09-25 02:05:40 +00:00
|
|
|
}
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 02:08:44 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/accounts/{id}/following
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\AccountTransformer
|
|
|
|
*/
|
|
|
|
public function accountFollowingById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
2020-02-28 06:31:18 +00:00
|
|
|
|
|
|
|
$user = $request->user();
|
2019-09-25 02:08:44 +00:00
|
|
|
$profile = Profile::whereNull('status')->findOrFail($id);
|
2020-02-28 06:31:18 +00:00
|
|
|
$limit = $request->input('limit') ?? 40;
|
2019-09-25 02:08:44 +00:00
|
|
|
|
2019-09-27 02:49:44 +00:00
|
|
|
if($profile->domain) {
|
2019-09-25 02:08:44 +00:00
|
|
|
$res = [];
|
2019-09-27 02:49:44 +00:00
|
|
|
} else {
|
2020-02-28 06:31:18 +00:00
|
|
|
if($profile->id == $user->profile_id) {
|
2019-09-27 02:49:44 +00:00
|
|
|
$following = $profile->following()->paginate($limit);
|
|
|
|
$resource = new Fractal\Resource\Collection($following, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
} else {
|
2020-02-28 06:31:18 +00:00
|
|
|
if($profile->is_private) {
|
|
|
|
abort_if(!$profile->followedBy($user->profile), 403);
|
|
|
|
}
|
|
|
|
$settings = $profile->user->settings;
|
|
|
|
if( in_array($user->profile_id, $profile->blockedIds()->toArray()) ||
|
|
|
|
$settings->show_profile_following == false
|
|
|
|
) {
|
|
|
|
$res = [];
|
|
|
|
} else {
|
|
|
|
$following = $profile->following()->paginate($limit);
|
|
|
|
$resource = new Fractal\Resource\Collection($following, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
}
|
2019-09-27 02:49:44 +00:00
|
|
|
}
|
2019-09-25 02:08:44 +00:00
|
|
|
}
|
2019-09-27 03:03:08 +00:00
|
|
|
|
2020-02-28 06:31:18 +00:00
|
|
|
|
2019-09-25 02:08:44 +00:00
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 02:35:07 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/accounts/{id}/statuses
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\StatusTransformer
|
|
|
|
*/
|
|
|
|
public function accountStatusesById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'only_media' => 'nullable',
|
|
|
|
'pinned' => 'nullable',
|
|
|
|
'exclude_replies' => 'nullable',
|
|
|
|
'max_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
|
|
|
'since_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
|
|
|
'min_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
2019-10-02 03:06:42 +00:00
|
|
|
'limit' => 'nullable|integer|min:1|max:80'
|
2019-09-25 02:35:07 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
$profile = Profile::whereNull('status')->findOrFail($id);
|
|
|
|
|
|
|
|
$limit = $request->limit ?? 20;
|
|
|
|
$max_id = $request->max_id;
|
|
|
|
$min_id = $request->min_id;
|
|
|
|
$pid = $request->user()->profile_id;
|
|
|
|
$scope = $request->only_media == true ?
|
|
|
|
['photo', 'photo:album', 'video', 'video:album'] :
|
|
|
|
['photo', 'photo:album', 'video', 'video:album', 'share', 'reply'];
|
|
|
|
|
|
|
|
if($pid == $profile->id) {
|
|
|
|
$visibility = ['public', 'unlisted', 'private'];
|
|
|
|
} else if($profile->is_private) {
|
|
|
|
$following = Cache::remember('profile:following:'.$pid, now()->addMinutes(1440), function() use($pid) {
|
|
|
|
$following = Follower::whereProfileId($pid)->pluck('following_id');
|
|
|
|
return $following->push($pid)->toArray();
|
|
|
|
});
|
|
|
|
$visibility = true == in_array($profile->id, $following) ? ['public', 'unlisted', 'private'] : [];
|
|
|
|
} else {
|
|
|
|
$following = Cache::remember('profile:following:'.$pid, now()->addMinutes(1440), function() use($pid) {
|
|
|
|
$following = Follower::whereProfileId($pid)->pluck('following_id');
|
|
|
|
return $following->push($pid)->toArray();
|
|
|
|
});
|
|
|
|
$visibility = true == in_array($profile->id, $following) ? ['public', 'unlisted', 'private'] : ['public', 'unlisted'];
|
|
|
|
}
|
|
|
|
|
2019-09-25 03:37:25 +00:00
|
|
|
if($min_id || $max_id) {
|
|
|
|
$dir = $min_id ? '>' : '<';
|
|
|
|
$id = $min_id ?? $max_id;
|
|
|
|
$timeline = Status::select(
|
|
|
|
'id',
|
|
|
|
'uri',
|
|
|
|
'caption',
|
|
|
|
'rendered',
|
|
|
|
'profile_id',
|
|
|
|
'type',
|
|
|
|
'in_reply_to_id',
|
|
|
|
'reblog_of_id',
|
|
|
|
'is_nsfw',
|
|
|
|
'scope',
|
|
|
|
'local',
|
|
|
|
'place_id',
|
2019-10-07 03:36:02 +00:00
|
|
|
'likes_count',
|
|
|
|
'reblogs_count',
|
2019-09-25 03:37:25 +00:00
|
|
|
'created_at',
|
|
|
|
'updated_at'
|
|
|
|
)->whereProfileId($profile->id)
|
|
|
|
->whereIn('type', $scope)
|
|
|
|
->where('id', $dir, $id)
|
|
|
|
->whereIn('visibility', $visibility)
|
|
|
|
->latest()
|
|
|
|
->limit($limit)
|
|
|
|
->get();
|
|
|
|
} else {
|
|
|
|
$timeline = Status::select(
|
|
|
|
'id',
|
|
|
|
'uri',
|
|
|
|
'caption',
|
|
|
|
'rendered',
|
|
|
|
'profile_id',
|
|
|
|
'type',
|
|
|
|
'in_reply_to_id',
|
|
|
|
'reblog_of_id',
|
|
|
|
'is_nsfw',
|
|
|
|
'scope',
|
|
|
|
'local',
|
|
|
|
'place_id',
|
2019-10-07 03:36:02 +00:00
|
|
|
'likes_count',
|
|
|
|
'reblogs_count',
|
2019-09-25 03:37:25 +00:00
|
|
|
'created_at',
|
|
|
|
'updated_at'
|
|
|
|
)->whereProfileId($profile->id)
|
|
|
|
->whereIn('type', $scope)
|
|
|
|
->whereIn('visibility', $visibility)
|
|
|
|
->latest()
|
|
|
|
->limit($limit)
|
|
|
|
->get();
|
|
|
|
}
|
2019-09-25 02:35:07 +00:00
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Collection($timeline, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 03:37:25 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/accounts/{id}/follow
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\RelationshipTransformer
|
|
|
|
*/
|
|
|
|
public function accountFollowById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
|
2020-02-04 06:30:21 +00:00
|
|
|
$target = Profile::where('id', '!=', $user->profile_id)
|
2019-09-25 03:37:25 +00:00
|
|
|
->whereNull('status')
|
2020-02-04 03:59:18 +00:00
|
|
|
->findOrFail($id);
|
2019-09-25 03:37:25 +00:00
|
|
|
|
|
|
|
$private = (bool) $target->is_private;
|
|
|
|
$remote = (bool) $target->domain;
|
|
|
|
$blocked = UserFilter::whereUserId($target->id)
|
|
|
|
->whereFilterType('block')
|
2020-02-04 06:30:21 +00:00
|
|
|
->whereFilterableId($user->profile_id)
|
2019-09-25 03:37:25 +00:00
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
->exists();
|
|
|
|
|
|
|
|
if($blocked == true) {
|
|
|
|
abort(400, 'You cannot follow this user.');
|
|
|
|
}
|
|
|
|
|
2020-02-04 06:30:21 +00:00
|
|
|
$isFollowing = Follower::whereProfileId($user->profile_id)
|
2019-09-25 03:37:25 +00:00
|
|
|
->whereFollowingId($target->id)
|
|
|
|
->exists();
|
|
|
|
|
2019-09-25 04:58:29 +00:00
|
|
|
// Following already, return empty relationship
|
2019-09-25 03:37:25 +00:00
|
|
|
if($isFollowing == true) {
|
2019-09-25 04:58:29 +00:00
|
|
|
$resource = new Fractal\Resource\Item($target, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
2019-09-25 03:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rate limits, max 7500 followers per account
|
2020-02-04 06:30:21 +00:00
|
|
|
if($user->profile->following()->count() >= Follower::MAX_FOLLOWING) {
|
2019-09-25 03:37:25 +00:00
|
|
|
abort(400, 'You cannot follow more than ' . Follower::MAX_FOLLOWING . ' accounts');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rate limits, follow 30 accounts per hour max
|
2020-02-04 06:30:21 +00:00
|
|
|
if($user->profile->following()->where('followers.created_at', '>', now()->subHour())->count() >= Follower::FOLLOW_PER_HOUR) {
|
2019-09-25 03:37:25 +00:00
|
|
|
abort(400, 'You can only follow ' . Follower::FOLLOW_PER_HOUR . ' users per hour');
|
|
|
|
}
|
|
|
|
|
|
|
|
if($private == true) {
|
|
|
|
$follow = FollowRequest::firstOrCreate([
|
2020-02-04 06:30:21 +00:00
|
|
|
'follower_id' => $user->profile_id,
|
2019-09-25 03:37:25 +00:00
|
|
|
'following_id' => $target->id
|
|
|
|
]);
|
|
|
|
if($remote == true && config('federation.activitypub.remoteFollow') == true) {
|
2020-02-04 06:30:21 +00:00
|
|
|
(new FollowerController())->sendFollow($user->profile, $target);
|
2019-09-25 03:37:25 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$follower = new Follower();
|
2020-02-04 06:30:21 +00:00
|
|
|
$follower->profile_id = $user->profile_id;
|
2019-09-25 03:37:25 +00:00
|
|
|
$follower->following_id = $target->id;
|
|
|
|
$follower->save();
|
|
|
|
|
|
|
|
if($remote == true && config('federation.activitypub.remoteFollow') == true) {
|
2020-02-04 06:30:21 +00:00
|
|
|
(new FollowerController())->sendFollow($user->profile, $target);
|
2019-09-25 03:37:25 +00:00
|
|
|
}
|
|
|
|
FollowPipeline::dispatch($follower);
|
|
|
|
}
|
|
|
|
|
|
|
|
Cache::forget('profile:following:'.$target->id);
|
|
|
|
Cache::forget('profile:followers:'.$target->id);
|
2020-02-04 06:30:21 +00:00
|
|
|
Cache::forget('profile:following:'.$user->profile_id);
|
|
|
|
Cache::forget('profile:followers:'.$user->profile_id);
|
|
|
|
Cache::forget('api:local:exp:rec:'.$user->profile_id);
|
2019-09-25 03:37:25 +00:00
|
|
|
Cache::forget('user:account:id:'.$target->user_id);
|
2020-02-04 06:30:21 +00:00
|
|
|
Cache::forget('user:account:id:'.$user->id);
|
2020-12-11 05:58:13 +00:00
|
|
|
Cache::forget('profile:follower_count:'.$target->id);
|
|
|
|
Cache::forget('profile:follower_count:'.$user->profile_id);
|
|
|
|
Cache::forget('profile:following_count:'.$target->id);
|
|
|
|
Cache::forget('profile:following_count:'.$user->profile_id);
|
2019-09-25 03:37:25 +00:00
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($target, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 04:58:29 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/accounts/{id}/unfollow
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\RelationshipTransformer
|
|
|
|
*/
|
|
|
|
public function accountUnfollowById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
|
2020-02-04 06:30:21 +00:00
|
|
|
$target = Profile::where('id', '!=', $user->profile_id)
|
2019-09-25 04:58:29 +00:00
|
|
|
->whereNull('status')
|
2020-02-04 03:59:18 +00:00
|
|
|
->findOrFail($id);
|
2019-09-25 04:58:29 +00:00
|
|
|
|
|
|
|
$private = (bool) $target->is_private;
|
|
|
|
$remote = (bool) $target->domain;
|
|
|
|
|
2020-02-04 06:30:21 +00:00
|
|
|
$isFollowing = Follower::whereProfileId($user->profile_id)
|
2019-09-25 04:58:29 +00:00
|
|
|
->whereFollowingId($target->id)
|
|
|
|
->exists();
|
|
|
|
|
|
|
|
if($isFollowing == false) {
|
|
|
|
$resource = new Fractal\Resource\Item($target, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rate limits, follow 30 accounts per hour max
|
2020-02-04 06:30:21 +00:00
|
|
|
if($user->profile->following()->where('followers.updated_at', '>', now()->subHour())->count() >= Follower::FOLLOW_PER_HOUR) {
|
2019-09-25 04:58:29 +00:00
|
|
|
abort(400, 'You can only follow or unfollow ' . Follower::FOLLOW_PER_HOUR . ' users per hour');
|
|
|
|
}
|
|
|
|
|
2020-02-04 06:30:21 +00:00
|
|
|
FollowRequest::whereFollowerId($user->profile_id)
|
2019-09-25 04:58:29 +00:00
|
|
|
->whereFollowingId($target->id)
|
|
|
|
->delete();
|
|
|
|
|
2020-02-04 06:30:21 +00:00
|
|
|
Follower::whereProfileId($user->profile_id)
|
2019-09-25 04:58:29 +00:00
|
|
|
->whereFollowingId($target->id)
|
|
|
|
->delete();
|
|
|
|
|
|
|
|
if($remote == true && config('federation.activitypub.remoteFollow') == true) {
|
2020-02-04 06:30:21 +00:00
|
|
|
(new FollowerController())->sendUndoFollow($user->profile, $target);
|
2019-09-25 04:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Cache::forget('profile:following:'.$target->id);
|
|
|
|
Cache::forget('profile:followers:'.$target->id);
|
2020-02-04 06:30:21 +00:00
|
|
|
Cache::forget('profile:following:'.$user->profile_id);
|
|
|
|
Cache::forget('profile:followers:'.$user->profile_id);
|
|
|
|
Cache::forget('api:local:exp:rec:'.$user->profile_id);
|
2019-09-25 04:58:29 +00:00
|
|
|
Cache::forget('user:account:id:'.$target->user_id);
|
2020-02-04 06:30:21 +00:00
|
|
|
Cache::forget('user:account:id:'.$user->id);
|
2019-09-25 04:58:29 +00:00
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($target, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 05:26:26 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/accounts/relationships
|
|
|
|
*
|
|
|
|
* @param array|integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\RelationshipTransformer
|
|
|
|
*/
|
|
|
|
public function accountRelationshipsById(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'id' => 'required|array|min:1|max:20',
|
|
|
|
'id.*' => 'required|integer|min:1|max:' . PHP_INT_MAX
|
|
|
|
]);
|
|
|
|
$pid = $request->user()->profile_id ?? $request->user()->profile->id;
|
|
|
|
$ids = collect($request->input('id'));
|
|
|
|
$filtered = $ids->filter(function($v) use($pid) {
|
|
|
|
return $v != $pid;
|
|
|
|
});
|
|
|
|
$relations = Profile::whereNull('status')->findOrFail($filtered->values());
|
|
|
|
$fractal = new Fractal\Resource\Collection($relations, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($fractal)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 06:07:05 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/accounts/search
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\AccountTransformer
|
|
|
|
*/
|
|
|
|
public function accountSearch(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'q' => 'required|string|min:1|max:255',
|
|
|
|
'limit' => 'nullable|integer|min:1|max:40',
|
|
|
|
'resolve' => 'nullable'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$query = $request->input('q');
|
|
|
|
$limit = $request->input('limit') ?? 20;
|
|
|
|
$resolve = (bool) $request->input('resolve', false);
|
|
|
|
$q = '%' . $query . '%';
|
|
|
|
|
|
|
|
$profiles = Profile::whereNull('status')
|
|
|
|
->where('username', 'like', $q)
|
|
|
|
->orWhere('name', 'like', $q)
|
|
|
|
->limit($limit)
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Collection($profiles, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
2019-09-25 06:46:06 +00:00
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET /api/v1/blocks
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\AccountTransformer
|
|
|
|
*/
|
|
|
|
public function accountBlocks(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'limit' => 'nullable|integer|min:1|max:40',
|
|
|
|
'page' => 'nullable|integer|min:1|max:10'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$limit = $request->input('limit') ?? 40;
|
|
|
|
|
|
|
|
$blocked = UserFilter::select('filterable_id','filterable_type','filter_type','user_id')
|
|
|
|
->whereUserId($user->profile_id)
|
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
->whereFilterType('block')
|
|
|
|
->simplePaginate($limit)
|
|
|
|
->pluck('filterable_id');
|
|
|
|
|
|
|
|
$profiles = Profile::findOrFail($blocked);
|
|
|
|
$resource = new Fractal\Resource\Collection($profiles, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
2019-09-25 06:07:05 +00:00
|
|
|
}
|
|
|
|
|
2019-09-25 07:02:28 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/accounts/{id}/block
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\RelationshipTransformer
|
|
|
|
*/
|
|
|
|
public function accountBlockById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$pid = $user->profile_id ?? $user->profile->id;
|
|
|
|
|
|
|
|
if($id == $pid) {
|
|
|
|
abort(400, 'You cannot block yourself');
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = Profile::findOrFail($id);
|
|
|
|
|
2020-07-13 03:27:34 +00:00
|
|
|
if($profile->user->is_admin == true) {
|
|
|
|
abort(400, 'You cannot block an admin');
|
|
|
|
}
|
|
|
|
|
2019-09-25 07:02:28 +00:00
|
|
|
Follower::whereProfileId($profile->id)->whereFollowingId($pid)->delete();
|
|
|
|
Follower::whereProfileId($pid)->whereFollowingId($profile->id)->delete();
|
|
|
|
Notification::whereProfileId($pid)->whereActorId($profile->id)->delete();
|
|
|
|
|
|
|
|
$filter = UserFilter::firstOrCreate([
|
|
|
|
'user_id' => $pid,
|
|
|
|
'filterable_id' => $profile->id,
|
|
|
|
'filterable_type' => 'App\Profile',
|
|
|
|
'filter_type' => 'block',
|
|
|
|
]);
|
|
|
|
|
|
|
|
Cache::forget("user:filter:list:$pid");
|
|
|
|
Cache::forget("api:local:exp:rec:$pid");
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($profile, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 07:10:01 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/accounts/{id}/unblock
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\RelationshipTransformer
|
|
|
|
*/
|
|
|
|
public function accountUnblockById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$pid = $user->profile_id ?? $user->profile->id;
|
|
|
|
|
|
|
|
if($id == $pid) {
|
|
|
|
abort(400, 'You cannot unblock yourself');
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = Profile::findOrFail($id);
|
|
|
|
|
|
|
|
UserFilter::whereUserId($pid)
|
|
|
|
->whereFilterableId($profile->id)
|
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
->whereFilterType('block')
|
|
|
|
->delete();
|
|
|
|
|
|
|
|
Cache::forget("user:filter:list:$pid");
|
|
|
|
Cache::forget("api:local:exp:rec:$pid");
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($profile, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-25 07:17:25 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/custom_emojis
|
|
|
|
*
|
|
|
|
* Return empty array, we don't support custom emoji
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function customEmojis()
|
|
|
|
{
|
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
2019-09-25 08:21:36 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/domain_blocks
|
|
|
|
*
|
|
|
|
* Return empty array
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function accountDomainBlocks(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
2019-09-25 08:29:52 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/endorsements
|
|
|
|
*
|
|
|
|
* Return empty array
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function accountEndorsements(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
2019-09-25 19:46:47 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/favourites
|
|
|
|
*
|
2019-09-26 03:06:43 +00:00
|
|
|
* Returns collection of liked statuses
|
2019-09-25 19:46:47 +00:00
|
|
|
*
|
2019-09-26 03:06:43 +00:00
|
|
|
* @return \App\Transformer\Api\StatusTransformer
|
2019-09-25 19:46:47 +00:00
|
|
|
*/
|
|
|
|
public function accountFavourites(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$limit = $request->input('limit') ?? 20;
|
|
|
|
$favourites = Like::whereProfileId($user->profile_id)
|
|
|
|
->latest()
|
|
|
|
->simplePaginate($limit)
|
|
|
|
->pluck('status_id');
|
|
|
|
|
|
|
|
$statuses = Status::findOrFail($favourites);
|
|
|
|
$resource = new Fractal\Resource\Collection($statuses, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:06:43 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/statuses/{id}/favourite
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\StatusTransformer
|
|
|
|
*/
|
|
|
|
public function statusFavouriteById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
2020-02-28 05:11:42 +00:00
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:06:43 +00:00
|
|
|
$like = Like::firstOrCreate([
|
|
|
|
'profile_id' => $user->profile_id,
|
|
|
|
'status_id' => $status->id
|
|
|
|
]);
|
|
|
|
|
|
|
|
if($like->wasRecentlyCreated == true) {
|
2019-10-02 03:06:42 +00:00
|
|
|
$status->likes_count = $status->likes()->count();
|
|
|
|
$status->save();
|
2019-09-26 03:06:43 +00:00
|
|
|
LikePipeline::dispatch($like);
|
|
|
|
}
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:10:17 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/statuses/{id}/unfavourite
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\StatusTransformer
|
|
|
|
*/
|
|
|
|
public function statusUnfavouriteById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
2020-02-28 05:11:42 +00:00
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:10:17 +00:00
|
|
|
$like = Like::whereProfileId($user->profile_id)
|
|
|
|
->whereStatusId($status->id)
|
|
|
|
->first();
|
|
|
|
|
|
|
|
if($like) {
|
2020-03-21 03:16:31 +00:00
|
|
|
$like->forceDelete();
|
2019-10-02 03:06:42 +00:00
|
|
|
$status->likes_count = $status->likes()->count();
|
|
|
|
$status->save();
|
2019-09-26 03:10:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:28:30 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/filters
|
|
|
|
*
|
|
|
|
* Return empty response since we filter server side
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function accountFilters(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:51:51 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/follow_requests
|
|
|
|
*
|
|
|
|
* Return array of Accounts that have sent follow requests
|
|
|
|
*
|
|
|
|
* @return \App\Transformer\Api\AccountTransformer
|
|
|
|
*/
|
|
|
|
public function accountFollowRequests(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$followRequests = FollowRequest::whereFollowingId($user->profile->id)->pluck('follower_id');
|
|
|
|
|
|
|
|
$profiles = Profile::find($followRequests);
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Collection($profiles, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:56:56 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/follow_requests/{id}/authorize
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function accountFollowRequestAccept(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
// todo
|
|
|
|
|
2019-09-26 03:59:17 +00:00
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* POST /api/v1/follow_requests/{id}/reject
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function accountFollowRequestReject(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
// todo
|
|
|
|
|
2019-09-26 04:04:02 +00:00
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET /api/v1/suggestions
|
|
|
|
*
|
|
|
|
* Return empty array as we don't support suggestions
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function accountSuggestions(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
// todo
|
|
|
|
|
2019-09-26 03:56:56 +00:00
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
2019-09-26 04:08:22 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/instance
|
|
|
|
*
|
|
|
|
* Information about the server.
|
|
|
|
*
|
|
|
|
* @return Instance
|
|
|
|
*/
|
2019-09-21 03:22:01 +00:00
|
|
|
public function instance(Request $request)
|
|
|
|
{
|
|
|
|
$res = [
|
|
|
|
'description' => 'Pixelfed - Photo sharing for everyone',
|
|
|
|
'email' => config('instance.email'),
|
|
|
|
'languages' => ['en'],
|
2020-06-13 05:16:11 +00:00
|
|
|
'max_toot_chars' => (int) config('pixelfed.max_caption_length'),
|
2019-09-21 03:22:01 +00:00
|
|
|
'registrations' => config('pixelfed.open_registration'),
|
|
|
|
'stats' => [
|
|
|
|
'user_count' => 0,
|
|
|
|
'status_count' => 0,
|
|
|
|
'domain_count' => 0
|
|
|
|
],
|
2019-09-24 01:15:18 +00:00
|
|
|
'thumbnail' => config('app.url') . '/img/pixelfed-icon-color.png',
|
2019-09-21 03:22:01 +00:00
|
|
|
'title' => 'Pixelfed (' . config('pixelfed.domain.app') . ')',
|
|
|
|
'uri' => config('app.url'),
|
|
|
|
'urls' => [],
|
2020-03-21 03:16:31 +00:00
|
|
|
'version' => '2.7.2 (compatible; Pixelfed ' . config('pixelfed.version') . ')',
|
2019-10-07 16:35:13 +00:00
|
|
|
'environment' => [
|
2020-06-13 05:16:11 +00:00
|
|
|
'max_photo_size' => (int) config('pixelfed.max_photo_size'),
|
|
|
|
'max_avatar_size' => (int) config('pixelfed.max_avatar_size'),
|
|
|
|
'max_caption_length' => (int) config('pixelfed.max_caption_length'),
|
|
|
|
'max_bio_length' => (int) config('pixelfed.max_bio_length'),
|
|
|
|
'max_album_length' => (int) config('pixelfed.max_album_length'),
|
2019-11-23 04:23:38 +00:00
|
|
|
'mobile_apis' => config('pixelfed.oauth_enabled')
|
|
|
|
|
2019-10-07 16:35:13 +00:00
|
|
|
]
|
2019-09-21 03:22:01 +00:00
|
|
|
];
|
|
|
|
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
|
|
|
|
}
|
2019-09-21 04:01:36 +00:00
|
|
|
|
2019-09-26 04:08:22 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/lists
|
|
|
|
*
|
|
|
|
* Return empty array as we don't support lists
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function accountLists(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
2019-09-26 04:12:39 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/accounts/{id}/lists
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function accountListsById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
return response()->json([]);
|
|
|
|
}
|
|
|
|
|
2019-09-26 04:54:05 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/media
|
|
|
|
*
|
|
|
|
*
|
2019-09-27 05:19:57 +00:00
|
|
|
* @return MediaTransformer
|
2019-09-26 04:54:05 +00:00
|
|
|
*/
|
|
|
|
public function mediaUpload(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'file.*' => function() {
|
|
|
|
return [
|
|
|
|
'required',
|
|
|
|
'mimes:' . config('pixelfed.media_types'),
|
|
|
|
'max:' . config('pixelfed.max_photo_size'),
|
|
|
|
];
|
|
|
|
},
|
|
|
|
'filter_name' => 'nullable|string|max:24',
|
2019-09-26 05:01:37 +00:00
|
|
|
'filter_class' => 'nullable|alpha_dash|max:24',
|
|
|
|
'description' => 'nullable|string|max:420'
|
2019-09-26 04:54:05 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$profile = $user->profile;
|
|
|
|
|
|
|
|
if(config('pixelfed.enforce_account_limit') == true) {
|
|
|
|
$size = Cache::remember($user->storageUsedKey(), now()->addDays(3), function() use($user) {
|
|
|
|
return Media::whereUserId($user->id)->sum('size') / 1000;
|
|
|
|
});
|
|
|
|
$limit = (int) config('pixelfed.max_account_size');
|
|
|
|
if ($size >= $limit) {
|
|
|
|
abort(403, 'Account size limit reached.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-30 06:04:25 +00:00
|
|
|
$filterClass = in_array($request->input('filter_class'), Filter::classes()) ? $request->input('filter_class') : null;
|
|
|
|
$filterName = in_array($request->input('filter_name'), Filter::names()) ? $request->input('filter_name') : null;
|
|
|
|
|
2019-09-26 04:54:05 +00:00
|
|
|
$photo = $request->file('file');
|
|
|
|
|
|
|
|
$mimes = explode(',', config('pixelfed.media_types'));
|
|
|
|
if(in_array($photo->getMimeType(), $mimes) == false) {
|
|
|
|
abort(403, 'Invalid or unsupported mime type.');
|
|
|
|
}
|
|
|
|
|
2020-07-13 03:27:34 +00:00
|
|
|
$storagePath = MediaPathService::get($user, 2);
|
2019-09-26 04:54:05 +00:00
|
|
|
$path = $photo->store($storagePath);
|
|
|
|
$hash = \hash_file('sha256', $photo);
|
|
|
|
|
2020-07-27 04:17:00 +00:00
|
|
|
abort_if(MediaBlocklistService::exists($hash) == true, 451);
|
|
|
|
|
2019-09-26 04:54:05 +00:00
|
|
|
$media = new Media();
|
|
|
|
$media->status_id = null;
|
|
|
|
$media->profile_id = $profile->id;
|
|
|
|
$media->user_id = $user->id;
|
|
|
|
$media->media_path = $path;
|
|
|
|
$media->original_sha256 = $hash;
|
|
|
|
$media->size = $photo->getSize();
|
|
|
|
$media->mime = $photo->getMimeType();
|
2019-09-26 05:01:37 +00:00
|
|
|
$media->caption = $request->input('description');
|
2020-01-30 06:04:25 +00:00
|
|
|
$media->filter_class = $filterClass;
|
|
|
|
$media->filter_name = $filterName;
|
2019-09-26 04:54:05 +00:00
|
|
|
$media->save();
|
|
|
|
|
|
|
|
switch ($media->mime) {
|
|
|
|
case 'image/jpeg':
|
|
|
|
case 'image/png':
|
|
|
|
ImageOptimize::dispatch($media);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'video/mp4':
|
|
|
|
VideoThumbnail::dispatch($media);
|
|
|
|
$preview_url = '/storage/no-preview.png';
|
|
|
|
$url = '/storage/no-preview.png';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($media, new MediaTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
2021-01-19 01:25:03 +00:00
|
|
|
$res['preview_url'] = $media->url(). '?cb=1&_v=' . time();
|
|
|
|
$res['url'] = $media->url(). '?cb=1&_v=' . time();
|
2019-09-26 04:54:05 +00:00
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 05:01:37 +00:00
|
|
|
/**
|
|
|
|
* PUT /api/v1/media/{id}
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
2019-09-27 05:19:57 +00:00
|
|
|
* @return MediaTransformer
|
2019-09-26 05:01:37 +00:00
|
|
|
*/
|
|
|
|
public function mediaUpdate(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'description' => 'nullable|string|max:420'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$media = Media::whereUserId($user->id)
|
|
|
|
->whereNull('status_id')
|
|
|
|
->findOrFail($id);
|
|
|
|
|
|
|
|
$media->caption = $request->input('description');
|
|
|
|
$media->save();
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($media, new MediaTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
$res['preview_url'] = url('/storage/no-preview.png');
|
|
|
|
$res['url'] = url('/storage/no-preview.png');
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 05:09:50 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/mutes
|
|
|
|
*
|
|
|
|
*
|
2019-09-27 05:19:57 +00:00
|
|
|
* @return AccountTransformer
|
2019-09-26 05:09:50 +00:00
|
|
|
*/
|
|
|
|
public function accountMutes(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'limit' => 'nullable|integer|min:1|max:40'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$limit = $request->input('limit') ?? 40;
|
|
|
|
|
|
|
|
$mutes = UserFilter::whereUserId($user->profile_id)
|
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
->whereFilterType('mute')
|
|
|
|
->simplePaginate($limit)
|
|
|
|
->pluck('filterable_id');
|
|
|
|
|
|
|
|
$accounts = Profile::find($mutes);
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Collection($accounts, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 05:31:19 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/accounts/{id}/mute
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
2019-09-27 05:19:57 +00:00
|
|
|
* @return RelationshipTransformer
|
2019-09-26 05:31:19 +00:00
|
|
|
*/
|
|
|
|
public function accountMuteById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
2019-09-26 05:36:13 +00:00
|
|
|
$pid = $user->profile_id;
|
2019-09-26 05:31:19 +00:00
|
|
|
|
|
|
|
$account = Profile::findOrFail($id);
|
|
|
|
|
|
|
|
$filter = UserFilter::firstOrCreate([
|
2019-09-26 05:36:13 +00:00
|
|
|
'user_id' => $pid,
|
2019-09-26 05:31:19 +00:00
|
|
|
'filterable_id' => $account->id,
|
|
|
|
'filterable_type' => 'App\Profile',
|
|
|
|
'filter_type' => 'mute',
|
|
|
|
]);
|
|
|
|
|
|
|
|
Cache::forget("user:filter:list:$pid");
|
|
|
|
Cache::forget("feature:discover:posts:$pid");
|
|
|
|
Cache::forget("api:local:exp:rec:$pid");
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($account, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 05:36:13 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/accounts/{id}/unmute
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
2019-09-27 05:19:57 +00:00
|
|
|
* @return RelationshipTransformer
|
2019-09-26 05:36:13 +00:00
|
|
|
*/
|
|
|
|
public function accountUnmuteById(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$pid = $user->profile_id;
|
|
|
|
|
|
|
|
$account = Profile::findOrFail($id);
|
|
|
|
|
|
|
|
$filter = UserFilter::whereUserId($pid)
|
|
|
|
->whereFilterableId($account->id)
|
|
|
|
->whereFilterableType('App\Profile')
|
|
|
|
->whereFilterType('mute')
|
|
|
|
->first();
|
|
|
|
|
|
|
|
if($filter) {
|
|
|
|
$filter->delete();
|
|
|
|
Cache::forget("user:filter:list:$pid");
|
|
|
|
Cache::forget("feature:discover:posts:$pid");
|
|
|
|
Cache::forget("api:local:exp:rec:$pid");
|
|
|
|
}
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($account, new RelationshipTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-26 07:37:22 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/notifications
|
|
|
|
*
|
|
|
|
*
|
2019-09-27 05:19:57 +00:00
|
|
|
* @return NotificationTransformer
|
2019-09-26 07:37:22 +00:00
|
|
|
*/
|
|
|
|
public function accountNotifications(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
2020-02-04 06:12:51 +00:00
|
|
|
|
2019-09-26 07:37:22 +00:00
|
|
|
$this->validate($request, [
|
2019-09-27 02:39:52 +00:00
|
|
|
'limit' => 'nullable|integer|min:1|max:80',
|
2020-02-04 06:12:51 +00:00
|
|
|
'min_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX,
|
|
|
|
'max_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX,
|
|
|
|
'since_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX,
|
2019-09-26 07:37:22 +00:00
|
|
|
]);
|
2020-02-04 06:12:51 +00:00
|
|
|
|
2019-09-26 07:37:22 +00:00
|
|
|
$pid = $request->user()->profile_id;
|
2020-02-04 06:12:51 +00:00
|
|
|
$limit = $request->input('limit', 20);
|
2019-09-26 07:37:22 +00:00
|
|
|
$timeago = now()->subMonths(6);
|
2020-02-04 06:12:51 +00:00
|
|
|
|
|
|
|
$since = $request->input('since_id');
|
2019-09-26 07:37:22 +00:00
|
|
|
$min = $request->input('min_id');
|
|
|
|
$max = $request->input('max_id');
|
2020-02-04 06:12:51 +00:00
|
|
|
|
2020-03-18 22:53:54 +00:00
|
|
|
if(!$since && !$min && !$max) {
|
|
|
|
$min = 1;
|
|
|
|
}
|
2020-02-04 06:12:51 +00:00
|
|
|
|
|
|
|
$dir = $since ? '>' : ($min ? '>=' : '<');
|
|
|
|
$id = $since ?? $min ?? $max;
|
|
|
|
|
|
|
|
$notifications = Notification::whereProfileId($pid)
|
|
|
|
->where('id', $dir, $id)
|
|
|
|
->whereDate('created_at', '>', $timeago)
|
|
|
|
->orderByDesc('id')
|
|
|
|
->limit($limit)
|
|
|
|
->get();
|
|
|
|
|
2020-03-19 02:23:39 +00:00
|
|
|
$minId = $notifications->min('id');
|
|
|
|
$maxId = $notifications->max('id');
|
|
|
|
|
2020-02-04 06:12:51 +00:00
|
|
|
$resource = new Fractal\Resource\Collection(
|
|
|
|
$notifications,
|
|
|
|
new NotificationTransformer()
|
|
|
|
);
|
|
|
|
|
|
|
|
$res = $this->fractal
|
|
|
|
->createData($resource)
|
|
|
|
->toArray();
|
|
|
|
|
2020-03-19 02:23:39 +00:00
|
|
|
$baseUrl = config('app.url') . '/api/v1/notifications?';
|
|
|
|
|
2020-03-19 21:29:18 +00:00
|
|
|
if($minId == $maxId) {
|
|
|
|
$minId = null;
|
|
|
|
}
|
2020-03-19 02:23:39 +00:00
|
|
|
|
2020-03-19 21:29:18 +00:00
|
|
|
if($maxId) {
|
|
|
|
$link = '<'.$baseUrl.'max_id='.$maxId.'>; rel="next"';
|
|
|
|
}
|
|
|
|
|
|
|
|
if($minId) {
|
|
|
|
$link = '<'.$baseUrl.'min_id='.$minId.'>; rel="prev"';
|
|
|
|
}
|
|
|
|
|
|
|
|
if($maxId && $minId) {
|
|
|
|
$link = '<'.$baseUrl.'max_id='.$maxId.'>; rel="next",<'.$baseUrl.'min_id='.$minId.'>; rel="prev"';
|
|
|
|
}
|
|
|
|
|
|
|
|
$res = response()->json($res);
|
|
|
|
|
|
|
|
if(isset($link)) {
|
|
|
|
$res->withHeaders([
|
|
|
|
'Link' => $link,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $res;
|
2019-09-26 07:37:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 00:30:56 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/timelines/home
|
|
|
|
*
|
|
|
|
*
|
2019-09-27 05:19:57 +00:00
|
|
|
* @return StatusTransformer
|
2019-09-27 00:30:56 +00:00
|
|
|
*/
|
|
|
|
public function timelineHome(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request,[
|
|
|
|
'page' => 'nullable|integer|max:40',
|
|
|
|
'min_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
|
|
|
'max_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
2019-09-27 02:39:52 +00:00
|
|
|
'limit' => 'nullable|integer|max:80'
|
2019-09-27 00:30:56 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
$page = $request->input('page');
|
|
|
|
$min = $request->input('min_id');
|
|
|
|
$max = $request->input('max_id');
|
|
|
|
$limit = $request->input('limit') ?? 3;
|
2021-01-09 09:41:17 +00:00
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$key = 'user:last_active_at:id:'.$user->id;
|
|
|
|
$ttl = now()->addMinutes(5);
|
|
|
|
Cache::remember($key, $ttl, function() use($user) {
|
|
|
|
$user->last_active_at = now();
|
|
|
|
$user->save();
|
|
|
|
return;
|
|
|
|
});
|
2019-09-27 00:30:56 +00:00
|
|
|
|
|
|
|
$pid = $request->user()->profile_id;
|
|
|
|
|
|
|
|
$following = Cache::remember('profile:following:'.$pid, now()->addMinutes(1440), function() use($pid) {
|
|
|
|
$following = Follower::whereProfileId($pid)->pluck('following_id');
|
|
|
|
return $following->push($pid)->toArray();
|
|
|
|
});
|
|
|
|
|
|
|
|
if($min || $max) {
|
|
|
|
$dir = $min ? '>' : '<';
|
|
|
|
$id = $min ?? $max;
|
|
|
|
$timeline = Status::select(
|
|
|
|
'id',
|
|
|
|
'uri',
|
|
|
|
'caption',
|
|
|
|
'rendered',
|
|
|
|
'profile_id',
|
|
|
|
'type',
|
|
|
|
'in_reply_to_id',
|
|
|
|
'reblog_of_id',
|
|
|
|
'is_nsfw',
|
|
|
|
'scope',
|
|
|
|
'local',
|
|
|
|
'reply_count',
|
2019-10-07 03:36:02 +00:00
|
|
|
'likes_count',
|
|
|
|
'reblogs_count',
|
2019-09-27 00:30:56 +00:00
|
|
|
'comments_disabled',
|
|
|
|
'place_id',
|
|
|
|
'created_at',
|
|
|
|
'updated_at'
|
|
|
|
)->whereIn('type', ['photo', 'photo:album', 'video', 'video:album'])
|
|
|
|
->with('profile', 'hashtags', 'mentions')
|
|
|
|
->where('id', $dir, $id)
|
|
|
|
->whereIn('profile_id', $following)
|
|
|
|
->whereIn('visibility',['public', 'unlisted', 'private'])
|
|
|
|
->latest()
|
|
|
|
->limit($limit)
|
|
|
|
->get();
|
|
|
|
} else {
|
|
|
|
$timeline = Status::select(
|
|
|
|
'id',
|
|
|
|
'uri',
|
|
|
|
'caption',
|
|
|
|
'rendered',
|
|
|
|
'profile_id',
|
|
|
|
'type',
|
|
|
|
'in_reply_to_id',
|
|
|
|
'reblog_of_id',
|
|
|
|
'is_nsfw',
|
|
|
|
'scope',
|
|
|
|
'local',
|
|
|
|
'reply_count',
|
|
|
|
'comments_disabled',
|
2019-10-07 03:36:02 +00:00
|
|
|
'likes_count',
|
|
|
|
'reblogs_count',
|
2019-09-27 00:30:56 +00:00
|
|
|
'place_id',
|
|
|
|
'created_at',
|
|
|
|
'updated_at'
|
|
|
|
)->whereIn('type', ['photo', 'photo:album', 'video', 'video:album'])
|
|
|
|
->with('profile', 'hashtags', 'mentions')
|
|
|
|
->whereIn('profile_id', $following)
|
|
|
|
->whereIn('visibility',['public', 'unlisted', 'private'])
|
|
|
|
->latest()
|
|
|
|
->simplePaginate($limit);
|
|
|
|
}
|
|
|
|
|
|
|
|
$fractal = new Fractal\Resource\Collection($timeline, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($fractal)->toArray();
|
2019-09-27 00:41:27 +00:00
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET /api/v1/conversations
|
|
|
|
*
|
|
|
|
* Not implemented
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function conversations(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
return response()->json([]);
|
2019-09-27 00:30:56 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 01:35:15 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/timelines/public
|
|
|
|
*
|
|
|
|
*
|
2019-09-27 05:19:57 +00:00
|
|
|
* @return StatusTransformer
|
2019-09-27 01:35:15 +00:00
|
|
|
*/
|
|
|
|
public function timelinePublic(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request,[
|
|
|
|
'page' => 'nullable|integer|max:40',
|
|
|
|
'min_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
|
|
|
'max_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
2019-09-27 02:39:52 +00:00
|
|
|
'limit' => 'nullable|integer|max:80'
|
2019-09-27 01:35:15 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
$page = $request->input('page');
|
|
|
|
$min = $request->input('min_id');
|
|
|
|
$max = $request->input('max_id');
|
|
|
|
$limit = $request->input('limit') ?? 3;
|
2021-01-09 09:41:17 +00:00
|
|
|
$user = $request->user();
|
|
|
|
|
2021-01-15 01:51:19 +00:00
|
|
|
if($user) {
|
|
|
|
$key = 'user:last_active_at:id:'.$user->id;
|
|
|
|
$ttl = now()->addMinutes(5);
|
|
|
|
Cache::remember($key, $ttl, function() use($user) {
|
|
|
|
$user->last_active_at = now();
|
|
|
|
$user->save();
|
|
|
|
return;
|
|
|
|
});
|
|
|
|
}
|
2019-09-27 01:35:15 +00:00
|
|
|
|
|
|
|
if($min || $max) {
|
|
|
|
$dir = $min ? '>' : '<';
|
|
|
|
$id = $min ?? $max;
|
|
|
|
$timeline = Status::select(
|
|
|
|
'id',
|
|
|
|
'uri',
|
|
|
|
'caption',
|
|
|
|
'rendered',
|
|
|
|
'profile_id',
|
|
|
|
'type',
|
|
|
|
'in_reply_to_id',
|
|
|
|
'reblog_of_id',
|
|
|
|
'is_nsfw',
|
|
|
|
'scope',
|
|
|
|
'local',
|
|
|
|
'reply_count',
|
|
|
|
'comments_disabled',
|
|
|
|
'place_id',
|
2019-10-07 03:36:02 +00:00
|
|
|
'likes_count',
|
|
|
|
'reblogs_count',
|
2019-09-27 01:35:15 +00:00
|
|
|
'created_at',
|
|
|
|
'updated_at'
|
2019-09-27 04:42:33 +00:00
|
|
|
)->whereNull('uri')
|
|
|
|
->whereIn('type', ['photo', 'photo:album', 'video', 'video:album'])
|
2019-09-27 01:35:15 +00:00
|
|
|
->with('profile', 'hashtags', 'mentions')
|
|
|
|
->where('id', $dir, $id)
|
2020-12-28 01:00:43 +00:00
|
|
|
->whereScope('public')
|
2021-01-09 09:41:17 +00:00
|
|
|
->where('created_at', '>', now()->subDays(14))
|
2019-09-27 01:35:15 +00:00
|
|
|
->latest()
|
|
|
|
->limit($limit)
|
|
|
|
->get();
|
|
|
|
} else {
|
|
|
|
$timeline = Status::select(
|
|
|
|
'id',
|
|
|
|
'uri',
|
|
|
|
'caption',
|
|
|
|
'rendered',
|
|
|
|
'profile_id',
|
|
|
|
'type',
|
|
|
|
'in_reply_to_id',
|
|
|
|
'reblog_of_id',
|
|
|
|
'is_nsfw',
|
|
|
|
'scope',
|
|
|
|
'local',
|
|
|
|
'reply_count',
|
|
|
|
'comments_disabled',
|
|
|
|
'place_id',
|
2019-10-07 03:36:02 +00:00
|
|
|
'likes_count',
|
|
|
|
'reblogs_count',
|
2019-09-27 01:35:15 +00:00
|
|
|
'created_at',
|
|
|
|
'updated_at'
|
2019-09-27 04:42:33 +00:00
|
|
|
)->whereNull('uri')
|
|
|
|
->whereIn('type', ['photo', 'photo:album', 'video', 'video:album'])
|
2019-09-27 01:35:15 +00:00
|
|
|
->with('profile', 'hashtags', 'mentions')
|
2020-12-28 01:00:43 +00:00
|
|
|
->whereScope('public')
|
2021-01-09 09:41:17 +00:00
|
|
|
->where('created_at', '>', now()->subDays(14))
|
2019-09-27 01:35:15 +00:00
|
|
|
->latest()
|
|
|
|
->simplePaginate($limit);
|
|
|
|
}
|
|
|
|
|
|
|
|
$fractal = new Fractal\Resource\Collection($timeline, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($fractal)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-27 05:19:57 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/statuses/{id}
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
2019-09-26 04:08:22 +00:00
|
|
|
public function statusById(Request $request, $id)
|
|
|
|
{
|
2019-09-27 05:19:57 +00:00
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
2020-02-28 05:11:42 +00:00
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-26 04:08:22 +00:00
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2019-09-27 05:19:57 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/statuses/{id}/context
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
|
|
|
public function statusContext(Request $request, $id)
|
2019-09-21 04:01:36 +00:00
|
|
|
{
|
2019-09-27 05:19:57 +00:00
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
2020-02-28 05:11:42 +00:00
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
2019-09-27 05:19:57 +00:00
|
|
|
|
2020-06-19 03:03:35 +00:00
|
|
|
if($status->comments_disabled) {
|
|
|
|
$res = [
|
|
|
|
'ancestors' => [],
|
|
|
|
'descendants' => []
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$ancestors = $status->parent();
|
|
|
|
if($ancestors) {
|
|
|
|
$ares = new Fractal\Resource\Item($ancestors, new StatusTransformer());
|
2020-06-19 03:08:13 +00:00
|
|
|
$ancestors = [
|
|
|
|
$this->fractal->createData($ares)->toArray()
|
|
|
|
];
|
2020-06-19 03:03:35 +00:00
|
|
|
} else {
|
|
|
|
$ancestors = [];
|
|
|
|
}
|
|
|
|
$descendants = Status::whereInReplyToId($id)->latest()->limit(20)->get();
|
|
|
|
$dres = new Fractal\Resource\Collection($descendants, new StatusTransformer());
|
|
|
|
$descendants = $this->fractal->createData($dres)->toArray();
|
|
|
|
$res = [
|
|
|
|
'ancestors' => $ancestors,
|
|
|
|
'descendants' => $descendants
|
|
|
|
];
|
|
|
|
}
|
2019-09-27 05:19:57 +00:00
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET /api/v1/statuses/{id}/card
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
|
|
|
public function statusCard(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
2020-02-28 05:11:42 +00:00
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
2019-09-27 05:19:57 +00:00
|
|
|
|
2019-09-27 06:57:58 +00:00
|
|
|
// Return empty response since we don't handle support cards
|
|
|
|
$res = [];
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET /api/v1/statuses/{id}/reblogged_by
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return AccountTransformer
|
|
|
|
*/
|
|
|
|
public function statusRebloggedBy(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
2019-10-02 04:31:29 +00:00
|
|
|
'page' => 'nullable|integer|min:1|max:40',
|
2019-09-27 06:57:58 +00:00
|
|
|
'limit' => 'nullable|integer|min:1|max:80'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$limit = $request->input('limit') ?? 40;
|
2020-02-28 05:11:42 +00:00
|
|
|
$user = $request->user();
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 06:57:58 +00:00
|
|
|
$shared = $status->sharedBy()->latest()->simplePaginate($limit);
|
|
|
|
$resource = new Fractal\Resource\Collection($shared, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
2019-09-21 04:01:36 +00:00
|
|
|
|
2019-10-02 04:24:59 +00:00
|
|
|
$url = $request->url();
|
|
|
|
$page = $request->input('page', 1);
|
|
|
|
$next = $page < 40 ? $page + 1 : 40;
|
|
|
|
$prev = $page > 1 ? $page - 1 : 1;
|
|
|
|
$links = '<'.$url.'?page='.$next.'&limit='.$limit.'>; rel="next", <'.$url.'?page='.$prev.'&limit='.$limit.'>; rel="prev"';
|
|
|
|
|
2019-10-06 03:40:27 +00:00
|
|
|
return response()->json($res, 200, ['Link' => $links]);
|
2019-09-21 04:01:36 +00:00
|
|
|
}
|
2019-09-25 01:47:45 +00:00
|
|
|
|
2019-09-27 07:01:48 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/statuses/{id}/favourited_by
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return AccountTransformer
|
|
|
|
*/
|
|
|
|
public function statusFavouritedBy(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
2019-10-02 04:31:29 +00:00
|
|
|
'page' => 'nullable|integer|min:1|max:40',
|
2019-09-27 07:01:48 +00:00
|
|
|
'limit' => 'nullable|integer|min:1|max:80'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$limit = $request->input('limit') ?? 40;
|
2020-02-28 05:11:42 +00:00
|
|
|
$user = $request->user();
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 07:01:48 +00:00
|
|
|
$liked = $status->likedBy()->latest()->simplePaginate($limit);
|
|
|
|
$resource = new Fractal\Resource\Collection($liked, new AccountTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
|
2019-10-02 04:24:59 +00:00
|
|
|
$url = $request->url();
|
|
|
|
$page = $request->input('page', 1);
|
|
|
|
$next = $page < 40 ? $page + 1 : 40;
|
|
|
|
$prev = $page > 1 ? $page - 1 : 1;
|
|
|
|
$links = '<'.$url.'?page='.$next.'&limit='.$limit.'>; rel="next", <'.$url.'?page='.$prev.'&limit='.$limit.'>; rel="prev"';
|
|
|
|
|
2019-10-06 03:40:27 +00:00
|
|
|
return response()->json($res, 200, ['Link' => $links]);
|
2019-09-27 07:01:48 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 04:50:56 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/statuses
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
2019-09-29 05:00:31 +00:00
|
|
|
public function statusCreate(Request $request)
|
2019-09-25 01:47:45 +00:00
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
2019-09-29 04:50:56 +00:00
|
|
|
'status' => 'nullable|string',
|
|
|
|
'in_reply_to_id' => 'nullable|integer',
|
|
|
|
'media_ids' => 'array|max:' . config('pixelfed.max_album_length'),
|
2019-09-25 01:47:45 +00:00
|
|
|
'media_ids.*' => 'integer|min:1',
|
|
|
|
'sensitive' => 'nullable|boolean',
|
|
|
|
'visibility' => 'string|in:private,unlisted,public',
|
|
|
|
]);
|
|
|
|
|
2019-09-29 04:50:56 +00:00
|
|
|
if(config('costar.enabled') == true) {
|
|
|
|
$blockedKeywords = config('costar.keyword.block');
|
|
|
|
if($blockedKeywords !== null && $request->status) {
|
|
|
|
$keywords = config('costar.keyword.block');
|
|
|
|
foreach($keywords as $kw) {
|
|
|
|
if(Str::contains($request->status, $kw) == true) {
|
|
|
|
abort(400, 'Invalid object. Contains banned keyword.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-25 01:47:45 +00:00
|
|
|
if(!$request->filled('media_ids') && !$request->filled('in_reply_to_id')) {
|
|
|
|
abort(403, 'Empty statuses are not allowed');
|
|
|
|
}
|
2019-09-29 04:50:56 +00:00
|
|
|
|
|
|
|
$ids = $request->input('media_ids');
|
|
|
|
$in_reply_to_id = $request->input('in_reply_to_id');
|
|
|
|
$user = $request->user();
|
|
|
|
|
|
|
|
if($in_reply_to_id) {
|
|
|
|
$parent = Status::findOrFail($in_reply_to_id);
|
|
|
|
|
|
|
|
$status = new Status;
|
|
|
|
$status->caption = strip_tags($request->input('status'));
|
2020-04-16 21:07:46 +00:00
|
|
|
$status->scope = $request->input('visibility', 'public');
|
|
|
|
$status->visibility = $request->input('visibility', 'public');
|
2019-09-29 04:50:56 +00:00
|
|
|
$status->profile_id = $user->profile_id;
|
2019-09-29 05:00:31 +00:00
|
|
|
$status->is_nsfw = $user->profile->cw == true ? true : $request->input('sensitive', false);
|
2019-09-29 04:50:56 +00:00
|
|
|
$status->in_reply_to_id = $parent->id;
|
|
|
|
$status->in_reply_to_profile_id = $parent->profile_id;
|
|
|
|
$status->save();
|
|
|
|
} else if($ids) {
|
|
|
|
$status = new Status;
|
|
|
|
$status->caption = strip_tags($request->input('status'));
|
|
|
|
$status->profile_id = $user->profile_id;
|
|
|
|
$status->scope = 'draft';
|
2019-09-29 05:00:31 +00:00
|
|
|
$status->is_nsfw = $user->profile->cw == true ? true : $request->input('sensitive', false);
|
2019-09-29 04:50:56 +00:00
|
|
|
$status->save();
|
|
|
|
|
|
|
|
$mimes = [];
|
|
|
|
|
|
|
|
foreach($ids as $k => $v) {
|
|
|
|
if($k + 1 > config('pixelfed.max_album_length')) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$m = Media::findOrFail($v);
|
|
|
|
if($m->profile_id !== $user->profile_id || $m->status_id) {
|
|
|
|
abort(403, 'Invalid media id');
|
|
|
|
}
|
|
|
|
$m->status_id = $status->id;
|
|
|
|
$m->save();
|
|
|
|
array_push($mimes, $m->mime);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(empty($mimes)) {
|
|
|
|
$status->delete();
|
|
|
|
abort(500, 'Invalid media ids');
|
|
|
|
}
|
|
|
|
|
2020-04-16 21:07:46 +00:00
|
|
|
$status->scope = $request->input('visibility', 'public');
|
|
|
|
$status->visibility = $request->input('visibility', 'public');
|
2019-09-29 04:50:56 +00:00
|
|
|
$status->type = StatusController::mimeTypeCheck($mimes);
|
|
|
|
$status->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!$status) {
|
|
|
|
$oops = 'An error occured. RefId: '.time().'-'.$user->profile_id.':'.Str::random(5).':'.Str::random(10);
|
|
|
|
abort(500, $oops);
|
|
|
|
}
|
|
|
|
|
|
|
|
NewStatusPipeline::dispatch($status);
|
|
|
|
Cache::forget('user:account:id:'.$user->id);
|
2020-12-10 04:34:43 +00:00
|
|
|
Cache::forget('_api:statuses:recent_9:'.$user->profile_id);
|
2019-09-29 04:50:56 +00:00
|
|
|
Cache::forget('profile:status_count:'.$user->profile_id);
|
|
|
|
Cache::forget($user->storageUsedKey());
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
2019-09-25 01:47:45 +00:00
|
|
|
}
|
2019-09-29 05:00:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* DELETE /api/v1/statuses
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
2019-09-29 06:09:01 +00:00
|
|
|
public function statusDelete(Request $request, $id)
|
2019-09-29 05:00:31 +00:00
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
2019-09-29 06:09:01 +00:00
|
|
|
|
|
|
|
$status = Status::whereProfileId($request->user()->profile->id)
|
|
|
|
->findOrFail($id);
|
|
|
|
|
2020-12-10 04:34:43 +00:00
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
|
|
|
|
2019-09-29 06:09:01 +00:00
|
|
|
Cache::forget('profile:status_count:'.$status->profile_id);
|
|
|
|
StatusDelete::dispatch($status);
|
|
|
|
|
2020-12-10 04:34:43 +00:00
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
$res['text'] = $res['content'];
|
|
|
|
unset($res['content']);
|
|
|
|
return response()->json($res);
|
2019-09-29 05:00:31 +00:00
|
|
|
}
|
2019-09-29 06:36:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* POST /api/v1/statuses/{id}/reblog
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
|
|
|
public function statusShare(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
2020-02-28 05:11:42 +00:00
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-29 06:36:02 +00:00
|
|
|
$share = Status::firstOrCreate([
|
2019-09-29 08:55:26 +00:00
|
|
|
'profile_id' => $user->profile_id,
|
|
|
|
'reblog_of_id' => $status->id,
|
2020-04-16 21:07:46 +00:00
|
|
|
'in_reply_to_profile_id' => $status->profile_id,
|
|
|
|
'scope' => 'public',
|
|
|
|
'visibility' => 'public'
|
2019-09-29 06:36:02 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
if($share->wasRecentlyCreated == true) {
|
2019-10-02 04:24:59 +00:00
|
|
|
$status->reblogs_count = $status->shares()->count();
|
|
|
|
$status->save();
|
2019-09-29 06:36:02 +00:00
|
|
|
SharePipeline::dispatch($share);
|
|
|
|
}
|
|
|
|
|
2019-09-29 07:11:31 +00:00
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* POST /api/v1/statuses/{id}/unreblog
|
|
|
|
*
|
|
|
|
* @param integer $id
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
|
|
|
public function statusUnshare(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$user = $request->user();
|
|
|
|
$status = Status::findOrFail($id);
|
|
|
|
|
2020-02-28 05:11:42 +00:00
|
|
|
if($status->profile_id !== $user->profile_id) {
|
|
|
|
if($status->scope == 'private') {
|
|
|
|
abort_if(!$status->profile->followedBy($user->profile), 403);
|
|
|
|
} else {
|
|
|
|
abort_if(!in_array($status->scope, ['public','unlisted']), 403);
|
|
|
|
}
|
|
|
|
}
|
2020-02-28 06:31:18 +00:00
|
|
|
|
2019-09-29 07:11:31 +00:00
|
|
|
Status::whereProfileId($user->profile_id)
|
|
|
|
->whereReblogOfId($status->id)
|
|
|
|
->delete();
|
2019-10-02 04:24:59 +00:00
|
|
|
$status->reblogs_count = $status->shares()->count();
|
2019-09-29 07:11:31 +00:00
|
|
|
$status->save();
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
2019-09-29 06:36:02 +00:00
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
2019-09-30 04:05:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GET /api/v1/timelines/tag/{hashtag}
|
|
|
|
*
|
|
|
|
* @param string $hashtag
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
|
|
|
public function timelineHashtag(Request $request, $hashtag)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
// todo
|
|
|
|
$res = [];
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
2020-02-07 00:13:10 +00:00
|
|
|
|
2020-05-16 04:55:01 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v1/bookmarks
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
|
|
|
public function bookmarks(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'limit' => 'nullable|integer|min:1|max:40',
|
|
|
|
'max_id' => 'nullable|integer|min:0',
|
|
|
|
'since_id' => 'nullable|integer|min:0',
|
|
|
|
'min_id' => 'nullable|integer|min:0'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$pid = $request->user()->profile_id;
|
|
|
|
$limit = $request->input('limit') ?? 20;
|
|
|
|
$max_id = $request->input('max_id');
|
|
|
|
$since_id = $request->input('since_id');
|
|
|
|
$min_id = $request->input('min_id');
|
|
|
|
|
|
|
|
$dir = $min_id ? '>' : '<';
|
|
|
|
$id = $min_id ?? $max_id;
|
|
|
|
|
|
|
|
if($id) {
|
|
|
|
$bookmarks = Bookmark::whereProfileId($pid)
|
|
|
|
->where('status_id', $dir, $id)
|
|
|
|
->limit($limit)
|
|
|
|
->pluck('status_id');
|
|
|
|
} else {
|
|
|
|
$bookmarks = Bookmark::whereProfileId($pid)
|
|
|
|
->latest()
|
|
|
|
->limit($limit)
|
|
|
|
->pluck('status_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
$res = [];
|
|
|
|
foreach($bookmarks as $id) {
|
|
|
|
$res[] = \App\Services\StatusService::get($id);
|
|
|
|
}
|
2020-07-13 03:27:34 +00:00
|
|
|
return $res;
|
2020-05-16 04:55:01 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 20:55:26 +00:00
|
|
|
/**
|
|
|
|
* POST /api/v1/statuses/{id}/bookmark
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
|
|
|
public function bookmarkStatus(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$status = Status::whereNull('uri')
|
|
|
|
->whereScope('public')
|
|
|
|
->findOrFail($id);
|
|
|
|
|
|
|
|
Bookmark::firstOrCreate([
|
|
|
|
'status_id' => $status->id,
|
|
|
|
'profile_id' => $request->user()->profile_id
|
|
|
|
]);
|
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* POST /api/v1/statuses/{id}/unbookmark
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return StatusTransformer
|
|
|
|
*/
|
|
|
|
public function unbookmarkStatus(Request $request, $id)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$status = Status::whereNull('uri')
|
|
|
|
->whereScope('public')
|
|
|
|
->findOrFail($id);
|
|
|
|
|
|
|
|
Bookmark::firstOrCreate([
|
|
|
|
'status_id' => $status->id,
|
|
|
|
'profile_id' => $request->user()->profile_id
|
|
|
|
]);
|
|
|
|
$bookmark = Bookmark::whereStatusId($status->id)
|
|
|
|
->whereProfileId($request->user()->profile_id)
|
|
|
|
->firstOrFail();
|
|
|
|
$bookmark->delete();
|
|
|
|
|
|
|
|
$resource = new Fractal\Resource\Item($status, new StatusTransformer());
|
|
|
|
$res = $this->fractal->createData($resource)->toArray();
|
|
|
|
return response()->json($res);
|
|
|
|
}
|
|
|
|
|
2020-02-07 00:13:10 +00:00
|
|
|
/**
|
|
|
|
* GET /api/v2/search
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function searchV2(Request $request)
|
|
|
|
{
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'q' => 'required|string|min:1|max:80',
|
|
|
|
'account_id' => 'nullable|string',
|
|
|
|
'max_id' => 'nullable|string',
|
|
|
|
'min_id' => 'nullable|string',
|
|
|
|
'type' => 'nullable|in:accounts,hashtags,statuses',
|
|
|
|
'exclude_unreviewed' => 'nullable',
|
|
|
|
'resolve' => 'nullable',
|
|
|
|
'limit' => 'nullable|integer|max:40',
|
|
|
|
'offset' => 'nullable|integer',
|
2020-02-07 00:20:55 +00:00
|
|
|
'following' => 'nullable'
|
2020-02-07 00:13:10 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
return SearchApiV2Service::query($request);
|
|
|
|
}
|
2019-09-14 01:10:22 +00:00
|
|
|
}
|