123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976 |
- <?php
- namespace App\Http\Controllers\Api;
- use Illuminate\Http\Request;
- use App\Http\Controllers\Controller;
- use Illuminate\Support\Str;
- use App\Util\ActivityPub\Helpers;
- use App\Util\Media\Filter;
- use Laravel\Passport\Passport;
- use Auth, Cache, DB, URL;
- use App\{
- Avatar,
- Bookmark,
- DirectMessage,
- Follower,
- FollowRequest,
- Hashtag,
- Instance,
- Like,
- Media,
- Notification,
- Profile,
- Status,
- StatusHashtag,
- User,
- UserSetting,
- UserFilter,
- };
- use League\Fractal;
- use App\Transformer\Api\Mastodon\v1\{
- AccountTransformer,
- MediaTransformer,
- NotificationTransformer,
- StatusTransformer,
- };
- use App\Transformer\Api\{
- RelationshipTransformer,
- };
- use App\Http\Controllers\FollowerController;
- use League\Fractal\Serializer\ArraySerializer;
- use League\Fractal\Pagination\IlluminatePaginatorAdapter;
- use App\Http\Controllers\StatusController;
- use App\Jobs\AvatarPipeline\AvatarOptimize;
- use App\Jobs\CommentPipeline\CommentPipeline;
- use App\Jobs\LikePipeline\LikePipeline;
- use App\Jobs\SharePipeline\SharePipeline;
- use App\Jobs\SharePipeline\UndoSharePipeline;
- use App\Jobs\StatusPipeline\NewStatusPipeline;
- use App\Jobs\StatusPipeline\StatusDelete;
- use App\Jobs\FollowPipeline\FollowPipeline;
- use App\Jobs\ImageOptimizePipeline\ImageOptimize;
- use App\Jobs\VideoPipeline\{
- VideoOptimize,
- VideoPostProcess,
- VideoThumbnail
- };
- use App\Services\{
- AccountService,
- FollowerService,
- InstanceService,
- LikeService,
- NotificationService,
- MediaPathService,
- PublicTimelineService,
- ReblogService,
- RelationshipService,
- SearchApiV2Service,
- StatusService,
- MediaBlocklistService,
- SnowflakeService,
- UserFilterService
- };
- use App\Util\Lexer\Autolink;
- use App\Util\Lexer\PrettyNumber;
- use App\Util\Localization\Localization;
- use App\Util\Media\License;
- use App\Jobs\MediaPipeline\MediaSyncLicensePipeline;
- use App\Services\DiscoverService;
- use App\Services\CustomEmojiService;
- use App\Services\MarkerService;
- use App\Models\Conversation;
- class ApiV1Controller extends Controller
- {
- protected $fractal;
- public function __construct()
- {
- $this->fractal = new Fractal\Manager();
- $this->fractal->setSerializer(new ArraySerializer());
- }
- public function json($res, $code = 200, $headers = [])
- {
- return response()->json($res, $code, $headers, JSON_UNESCAPED_SLASHES);
- }
- public function getApp(Request $request)
- {
- if(!$request->user()) {
- return response('', 403);
- }
- $client = $request->user()->token()->client;
- $res = [
- 'name' => $client->name,
- 'website' => null,
- 'vapid_key' => null
- ];
- return $this->json($res);
- }
- public function apps(Request $request)
- {
- abort_if(!config_cache('pixelfed.oauth_enabled'), 404);
- $this->validate($request, [
- 'client_name' => 'required',
- 'redirect_uris' => 'required'
- ]);
- $uris = implode(',', explode('\n', $request->redirect_uris));
- $client = Passport::client()->forceFill([
- 'user_id' => null,
- 'name' => e($request->client_name),
- 'secret' => Str::random(40),
- 'redirect' => $uris,
- 'personal_access_client' => false,
- 'password_client' => false,
- 'revoked' => false,
- ]);
- $client->save();
- $res = [
- 'id' => (string) $client->id,
- 'name' => $client->name,
- 'website' => null,
- 'redirect_uri' => $client->redirect,
- 'client_id' => (string) $client->id,
- 'client_secret' => $client->secret,
- 'vapid_key' => null
- ];
- return $this->json($res, 200, [
- 'Access-Control-Allow-Origin' => '*'
- ]);
- }
- /**
- * GET /api/v1/accounts/verify_credentials
- *
- *
- * @return \App\Transformer\Api\AccountTransformer
- */
- public function verifyCredentials(Request $request)
- {
- $user = $request->user();
- abort_if(!$user, 403);
- abort_if($user->status != null, 403);
- $res = AccountService::getMastodon($user->profile_id);
- $res['source'] = [
- 'privacy' => $res['locked'] ? 'private' : 'public',
- 'sensitive' => false,
- 'language' => $user->language ?? 'en',
- 'note' => '',
- 'fields' => []
- ];
- return $this->json($res);
- }
- /**
- * GET /api/v1/accounts/{id}
- *
- * @param integer $id
- *
- * @return \App\Transformer\Api\AccountTransformer
- */
- public function accountById(Request $request, $id)
- {
- $res = AccountService::getMastodon($id, true);
- if(!$res) {
- return response()->json(['error' => 'Record not found'], 404);
- }
- return $this->json($res);
- }
- /**
- * PATCH /api/v1/accounts/update_credentials
- *
- * @return \App\Transformer\Api\AccountTransformer
- */
- public function accountUpdateCredentials(Request $request)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'avatar' => 'sometimes|mimetypes:image/jpeg,image/png|min:10|max:' . config('pixelfed.max_avatar_size'),
- 'display_name' => 'nullable|string',
- 'note' => 'nullable|string',
- 'locked' => 'nullable',
- 'website' => 'nullable',
- // 'source.privacy' => 'nullable|in:unlisted,public,private',
- // 'source.sensitive' => 'nullable|boolean'
- ], [
- 'required' => 'The :attribute field is required.',
- 'avatar.mimetypes' => 'The file must be in jpeg or png format',
- 'avatar.max' => 'The :attribute exceeds the file size limit of ' . PrettyNumber::size(config('pixelfed.max_avatar_size'), true, false),
- ]);
- $user = $request->user();
- $profile = $user->profile;
- $settings = $user->settings;
- $changes = false;
- $other = array_merge(AccountService::defaultSettings()['other'], $settings->other ?? []);
- $syncLicenses = false;
- $licenseChanged = false;
- $composeSettings = array_merge(AccountService::defaultSettings()['compose_settings'], $settings->compose_settings ?? []);
- if($request->has('avatar')) {
- $av = Avatar::whereProfileId($profile->id)->first();
- if($av) {
- $currentAvatar = storage_path('app/'.$av->media_path);
- $file = $request->file('avatar');
- $path = "public/avatars/{$profile->id}";
- $name = strtolower(str_random(6)). '.' . $file->guessExtension();
- $request->file('avatar')->storeAs($path, $name);
- $av->media_path = "{$path}/{$name}";
- $av->save();
- Cache::forget("avatar:{$profile->id}");
- Cache::forget('user:account:id:'.$user->id);
- AvatarOptimize::dispatch($user->profile, $currentAvatar);
- }
- $changes = true;
- }
- if($request->has('source[language]')) {
- $lang = $request->input('source[language]');
- if(in_array($lang, Localization::languages())) {
- $user->language = $lang;
- $changes = true;
- $other['language'] = $lang;
- }
- }
- if($request->has('website')) {
- $website = $request->input('website');
- if($website != $profile->website) {
- if($website) {
- if(!strpos($website, '.')) {
- $website = null;
- }
- if($website && !strpos($website, '://')) {
- $website = 'https://' . $website;
- }
- $host = parse_url($website, PHP_URL_HOST);
- $bannedInstances = InstanceService::getBannedDomains();
- if(in_array($host, $bannedInstances)) {
- $website = null;
- }
- }
- $profile->website = $website ? $website : null;
- $changes = true;
- }
- }
- if($request->has('display_name')) {
- $displayName = $request->input('display_name');
- if($displayName !== $user->name) {
- $user->name = $displayName;
- $profile->name = $displayName;
- $changes = true;
- }
- }
- if($request->has('note')) {
- $note = $request->input('note');
- if($note !== strip_tags($profile->bio)) {
- $profile->bio = Autolink::create()->autolink(strip_tags($note));
- $changes = true;
- }
- }
- if($request->has('locked')) {
- $locked = $request->input('locked') == 'true';
- if($profile->is_private != $locked) {
- $profile->is_private = $locked;
- $changes = true;
- }
- }
- if($request->has('reduce_motion')) {
- $reduced = $request->input('reduce_motion');
- if($settings->reduce_motion != $reduced) {
- $settings->reduce_motion = $reduced;
- $changes = true;
- }
- }
- if($request->has('high_contrast_mode')) {
- $contrast = $request->input('high_contrast_mode');
- if($settings->high_contrast_mode != $contrast) {
- $settings->high_contrast_mode = $contrast;
- $changes = true;
- }
- }
- if($request->has('video_autoplay')) {
- $autoplay = $request->input('video_autoplay');
- if($settings->video_autoplay != $autoplay) {
- $settings->video_autoplay = $autoplay;
- $changes = true;
- }
- }
- if($request->has('license')) {
- $license = $request->input('license');
- abort_if(!in_array($license, License::keys()), 422, 'Invalid media license id');
- $syncLicenses = $request->input('sync_licenses') == true;
- abort_if($syncLicenses && Cache::get('pf:settings:mls_recently:'.$user->id) == 2, 422, 'You can only sync licenses twice per 24 hours');
- if($composeSettings['default_license'] != $license) {
- $composeSettings['default_license'] = $license;
- $licenseChanged = true;
- $changes = true;
- }
- }
- if($request->has('media_descriptions')) {
- $md = $request->input('media_descriptions') == true;
- if($composeSettings['media_descriptions'] != $md) {
- $composeSettings['media_descriptions'] = $md;
- $changes = true;
- }
- }
- if($request->has('crawlable')) {
- $crawlable = $request->input('crawlable');
- if($settings->crawlable != $crawlable) {
- $settings->crawlable = $crawlable;
- $changes = true;
- }
- }
- if($request->has('show_profile_follower_count')) {
- $show_profile_follower_count = $request->input('show_profile_follower_count');
- if($settings->show_profile_follower_count != $show_profile_follower_count) {
- $settings->show_profile_follower_count = $show_profile_follower_count;
- $changes = true;
- }
- }
- if($request->has('show_profile_following_count')) {
- $show_profile_following_count = $request->input('show_profile_following_count');
- if($settings->show_profile_following_count != $show_profile_following_count) {
- $settings->show_profile_following_count = $show_profile_following_count;
- $changes = true;
- }
- }
- if($request->has('public_dm')) {
- $public_dm = $request->input('public_dm');
- if($settings->public_dm != $public_dm) {
- $settings->public_dm = $public_dm;
- $changes = true;
- }
- }
- if($request->has('source[privacy]')) {
- $scope = $request->input('source[privacy]');
- if(in_array($scope, ['public', 'private', 'unlisted'])) {
- if($composeSettings['default_scope'] != $scope) {
- $composeSettings['default_scope'] = $profile->is_private ? 'private' : $scope;
- $changes = true;
- }
- }
- }
- if($request->has('disable_embeds')) {
- $disabledEmbeds = $request->input('disable_embeds');
- if($other['disable_embeds'] != $disabledEmbeds) {
- $other['disable_embeds'] = $disabledEmbeds;
- $changes = true;
- }
- }
- if($changes) {
- $settings->other = $other;
- $settings->compose_settings = $composeSettings;
- $settings->save();
- $user->save();
- $profile->save();
- Cache::forget('profile:settings:' . $profile->id);
- Cache::forget('user:account:id:' . $profile->user_id);
- Cache::forget('profile:follower_count:' . $profile->id);
- Cache::forget('profile:following_count:' . $profile->id);
- Cache::forget('profile:embed:' . $profile->id);
- Cache::forget('profile:compose:settings:' . $user->id);
- Cache::forget('profile:view:'.$user->username);
- AccountService::del($user->profile_id);
- }
- if($syncLicenses && $licenseChanged) {
- $key = 'pf:settings:mls_recently:'.$user->id;
- $val = Cache::has($key) ? 2 : 1;
- Cache::put($key, $val, 86400);
- MediaSyncLicensePipeline::dispatch($user->id, $request->input('license'));
- }
- $res = AccountService::getMastodon($user->profile_id);
- $res['bio'] = strip_tags($res['note']);
- $res = array_merge($res, $other);
- return $this->json($res);
- }
- /**
- * 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);
- $account = AccountService::get($id);
- abort_if(!$account, 404);
- $pid = $request->user()->profile_id;
- if($pid != $account['id']) {
- if($account['locked']) {
- if(FollowerService::follows($pid, $account['id'])) {
- return [];
- }
- }
- if(AccountService::hiddenFollowers($id)) {
- return [];
- }
- if($request->has('page') && $request->page >= 5) {
- return [];
- }
- }
- $res = DB::table('followers')
- ->select('id', 'profile_id', 'following_id')
- ->whereFollowingId($account['id'])
- ->orderByDesc('id')
- ->simplePaginate(10)
- ->map(function($follower) {
- return AccountService::getMastodon($follower->profile_id);
- })
- ->filter(function($account) {
- return $account && isset($account['id']);
- })
- ->values()
- ->toArray();
- return $this->json($res);
- }
- /**
- * 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);
- $account = AccountService::get($id);
- abort_if(!$account, 404);
- $pid = $request->user()->profile_id;
- if($pid != $account['id']) {
- if($account['locked']) {
- if(FollowerService::follows($pid, $account['id'])) {
- return [];
- }
- }
- if(AccountService::hiddenFollowing($id)) {
- return [];
- }
- if($request->has('page') && $request->page >= 5) {
- return [];
- }
- }
- $res = DB::table('followers')
- ->select('id', 'profile_id', 'following_id')
- ->whereProfileId($account['id'])
- ->orderByDesc('id')
- ->simplePaginate(10)
- ->map(function($follower) {
- return AccountService::get($follower->following_id);
- })
- ->filter(function($account) {
- return $account && isset($account['id']);
- })
- ->values()
- ->toArray();
- return $this->json($res);
- }
- /**
- * GET /api/v1/accounts/{id}/statuses
- *
- * @param integer $id
- *
- * @return \App\Transformer\Api\StatusTransformer
- */
- public function accountStatusesById(Request $request, $id)
- {
- $user = $request->user();
- $this->validate($request, [
- 'only_media' => 'nullable',
- 'media_type' => 'sometimes|string|in:photo,video',
- '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,
- 'limit' => 'nullable|integer|min:1|max:100'
- ]);
- $profile = AccountService::getMastodon($id, true);
- if(!$profile || !isset($profile['id']) || !$user) {
- return response('', 404);
- }
- $limit = $request->limit ?? 20;
- $max_id = $request->max_id;
- $min_id = $request->min_id;
- if(!$max_id && !$min_id) {
- $min_id = 1;
- }
- $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($request->only_media && $request->has('media_type')) {
- $mt = $request->input('media_type');
- if($mt == 'video') {
- $scope = ['video', 'video:album'];
- }
- }
- if($pid == $profile['id']) {
- $visibility = ['public', 'unlisted', 'private'];
- } else if($profile['locked']) {
- $following = FollowerService::follows($pid, $profile['id']);
- if(!$following) {
- return response('', 403);
- }
- $visibility = ['public', 'unlisted', 'private'];
- } else {
- $following = FollowerService::follows($pid, $profile['id']);
- $visibility = $following ? ['public', 'unlisted', 'private'] : ['public', 'unlisted'];
- }
- $dir = $min_id ? '>' : '<';
- $id = $min_id ?? $max_id;
- $res = Status::whereProfileId($profile['id'])
- ->whereNull('in_reply_to_id')
- ->whereNull('reblog_of_id')
- ->whereIn('type', $scope)
- ->where('id', $dir, $id)
- ->whereIn('scope', $visibility)
- ->limit($limit)
- ->orderByDesc('id')
- ->get()
- ->map(function($s) use($user) {
- $status = StatusService::getMastodon($s->id, false);
- if($user && $status) {
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $s->id);
- }
- return $status;
- })
- ->filter(function($s) {
- return $s;
- })
- ->values();
- return $this->json($res);
- }
- /**
- * 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();
- $target = Profile::where('id', '!=', $user->profile_id)
- ->whereNull('status')
- ->findOrFail($id);
- $private = (bool) $target->is_private;
- $remote = (bool) $target->domain;
- $blocked = UserFilter::whereUserId($target->id)
- ->whereFilterType('block')
- ->whereFilterableId($user->profile_id)
- ->whereFilterableType('App\Profile')
- ->exists();
- if($blocked == true) {
- abort(400, 'You cannot follow this user.');
- }
- $isFollowing = Follower::whereProfileId($user->profile_id)
- ->whereFollowingId($target->id)
- ->exists();
- // Following already, return empty relationship
- if($isFollowing == true) {
- $res = RelationshipService::get($user->profile_id, $target->id) ?? [];
- return $this->json($res);
- }
- // Rate limits, max 7500 followers per account
- if($user->profile->following()->count() >= Follower::MAX_FOLLOWING) {
- abort(400, 'You cannot follow more than ' . Follower::MAX_FOLLOWING . ' accounts');
- }
- // Rate limits, follow 30 accounts per hour max
- if($user->profile->following()->where('followers.created_at', '>', now()->subHour())->count() >= Follower::FOLLOW_PER_HOUR) {
- abort(400, 'You can only follow ' . Follower::FOLLOW_PER_HOUR . ' users per hour');
- }
- if($private == true) {
- $follow = FollowRequest::firstOrCreate([
- 'follower_id' => $user->profile_id,
- 'following_id' => $target->id
- ]);
- if($remote == true && config('federation.activitypub.remoteFollow') == true) {
- (new FollowerController())->sendFollow($user->profile, $target);
- }
- } else {
- $follower = new Follower();
- $follower->profile_id = $user->profile_id;
- $follower->following_id = $target->id;
- $follower->save();
- if($remote == true && config('federation.activitypub.remoteFollow') == true) {
- (new FollowerController())->sendFollow($user->profile, $target);
- }
- FollowPipeline::dispatch($follower);
- }
- RelationshipService::refresh($user->profile_id, $target->id);
- Cache::forget('profile:following:'.$target->id);
- Cache::forget('profile:followers:'.$target->id);
- Cache::forget('profile:following:'.$user->profile_id);
- Cache::forget('profile:followers:'.$user->profile_id);
- Cache::forget('api:local:exp:rec:'.$user->profile_id);
- Cache::forget('user:account:id:'.$target->user_id);
- Cache::forget('user:account:id:'.$user->id);
- 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);
- AccountService::del($user->profile_id);
- AccountService::del($target->id);
- $res = RelationshipService::get($user->profile_id, $target->id);
- return $this->json($res);
- }
- /**
- * 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();
- $target = Profile::where('id', '!=', $user->profile_id)
- ->whereNull('status')
- ->findOrFail($id);
- $private = (bool) $target->is_private;
- $remote = (bool) $target->domain;
- $isFollowing = Follower::whereProfileId($user->profile_id)
- ->whereFollowingId($target->id)
- ->exists();
- if($isFollowing == false) {
- $resource = new Fractal\Resource\Item($target, new RelationshipTransformer());
- $res = $this->fractal->createData($resource)->toArray();
- return $this->json($res);
- }
- // Rate limits, follow 30 accounts per hour max
- if($user->profile->following()->where('followers.updated_at', '>', now()->subHour())->count() >= Follower::FOLLOW_PER_HOUR) {
- abort(400, 'You can only follow or unfollow ' . Follower::FOLLOW_PER_HOUR . ' users per hour');
- }
- $user->profile->decrement('following_count');
- FollowRequest::whereFollowerId($user->profile_id)
- ->whereFollowingId($target->id)
- ->delete();
- Follower::whereProfileId($user->profile_id)
- ->whereFollowingId($target->id)
- ->delete();
- if($remote == true && config('federation.activitypub.remoteFollow') == true) {
- (new FollowerController())->sendUndoFollow($user->profile, $target);
- }
- RelationshipService::refresh($user->profile_id, $target->id);
- Cache::forget('profile:following:'.$target->id);
- Cache::forget('profile:followers:'.$target->id);
- Cache::forget('profile:following:'.$user->profile_id);
- Cache::forget('profile:followers:'.$user->profile_id);
- Cache::forget('api:local:exp:rec:'.$user->profile_id);
- Cache::forget('user:account:id:'.$target->user_id);
- Cache::forget('user:account:id:'.$user->id);
- 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);
- AccountService::del($user->profile_id);
- AccountService::del($target->id);
- $res = RelationshipService::get($user->profile_id, $target->id);
- return $this->json($res);
- }
- /**
- * GET /api/v1/accounts/relationships
- *
- * @param array|integer $id
- *
- * @return \App\Services\RelationshipService
- */
- 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;
- $res = collect($request->input('id'))
- ->filter(function($id) use($pid) {
- return $id != $pid;
- })
- ->map(function($id) use($pid) {
- return RelationshipService::get($pid, $id);
- });
- return $this->json($res);
- }
- /**
- * 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();
- return $this->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 $this->json($res);
- }
- /**
- * 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);
- if($profile->user->is_admin == true) {
- abort(400, 'You cannot block an admin');
- }
- 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 $this->json($res);
- }
- /**
- * 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 $this->json($res);
- }
- /**
- * GET /api/v1/custom_emojis
- *
- * Return custom emoji
- *
- * @return array
- */
- public function customEmojis()
- {
- return response(CustomEmojiService::all())->header('Content-Type', 'application/json');
- }
- /**
- * GET /api/v1/domain_blocks
- *
- * Return empty array
- *
- * @return array
- */
- public function accountDomainBlocks(Request $request)
- {
- abort_if(!$request->user(), 403);
- return response()->json([]);
- }
- /**
- * GET /api/v1/endorsements
- *
- * Return empty array
- *
- * @return array
- */
- public function accountEndorsements(Request $request)
- {
- abort_if(!$request->user(), 403);
- return response()->json([]);
- }
- /**
- * GET /api/v1/favourites
- *
- * Returns collection of liked statuses
- *
- * @return \App\Transformer\Api\StatusTransformer
- */
- public function accountFavourites(Request $request)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'limit' => 'sometimes|integer|min:1|max:20'
- ]);
- $user = $request->user();
- $maxId = $request->input('max_id');
- $minId = $request->input('min_id');
- $limit = $request->input('limit') ?? 10;
- $res = Like::whereProfileId($user->profile_id)
- ->when($maxId, function($q, $maxId) {
- return $q->where('id', '<', $maxId);
- })
- ->when($minId, function($q, $minId) {
- return $q->where('id', '>', $minId);
- })
- ->orderByDesc('id')
- ->limit($limit)
- ->get()
- ->map(function($like) {
- $status = StatusService::getMastodon($like['status_id'], false);
- $status['like_id'] = $like->id;
- $status['liked_at'] = $like->created_at->format('c');
- return $status;
- })
- ->filter(function($status) {
- return $status && isset($status['id'], $status['like_id']);
- })
- ->values();
- if($res->count()) {
- $ids = $res->map(function($status) {
- return $status['like_id'];
- });
- $max = $ids->max();
- $min = $ids->min();
- $baseUrl = config('app.url') . '/api/v1/favourites?limit=' . $limit . '&';
- $link = '<'.$baseUrl.'max_id='.$max.'>; rel="next",<'.$baseUrl.'min_id='.$min.'>; rel="prev"';
- return $this->json($res, 200, ['Link' => $link]);
- } else {
- return $this->json($res);
- }
- }
- /**
- * 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 = StatusService::getMastodon($id, false);
- abort_unless($status, 400);
- $spid = $status['account']['id'];
- if($spid !== $user->profile_id) {
- if($status['visibility'] == 'private') {
- abort_if(!FollowerService::follows($user->profile_id, $spid), 403);
- } else {
- abort_if(!in_array($status['visibility'], ['public','unlisted']), 403);
- }
- }
- abort_if(
- Like::whereProfileId($user->profile_id)
- ->where('created_at', '>', now()->subDay())
- ->count() >= Like::MAX_PER_DAY,
- 429
- );
- $like = Like::firstOrCreate([
- 'profile_id' => $user->profile_id,
- 'status_id' => $status['id']
- ]);
- if($like->wasRecentlyCreated == true) {
- $like->status_profile_id = $spid;
- $like->is_comment = !empty($status['in_reply_to_id']);
- $like->save();
- Status::findOrFail($status['id'])->update([
- 'favourites_count' => ($status['favourites_count'] ?? 0) + 1
- ]);
- LikePipeline::dispatch($like);
- }
- $status['favourited'] = true;
- $status['favourites_count'] = $status['favourites_count'] + 1;
- return $this->json($status);
- }
- /**
- * 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);
- 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);
- }
- }
- $like = Like::whereProfileId($user->profile_id)
- ->whereStatusId($status->id)
- ->first();
- if($like) {
- $like->forceDelete();
- $status->likes_count = $status->likes()->count();
- $status->save();
- }
- StatusService::del($status->id);
- $res = StatusService::getMastodon($status->id, false);
- $res['favourited'] = false;
- return $this->json($res);
- }
- /**
- * 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([]);
- }
- /**
- * 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 $this->json($res);
- }
- /**
- * POST /api/v1/follow_requests/{id}/authorize
- *
- * @param integer $id
- *
- * @return null
- */
- public function accountFollowRequestAccept(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- // todo
- 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
- 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
- return response()->json([]);
- }
- /**
- * GET /api/v1/instance
- *
- * Information about the server.
- *
- * @return Instance
- */
- public function instance(Request $request)
- {
- $res = Cache::remember('api:v1:instance-data-response-v0', 1800, function () {
- $contact = Cache::remember('api:v1:instance-data:contact', 604800, function () {
- $admin = User::whereIsAdmin(true)->first();
- return $admin && isset($admin->profile_id) ?
- AccountService::getMastodon($admin->profile_id, true) :
- null;
- });
- $stats = Cache::remember('api:v1:instance-data:stats', 43200, function () {
- return [
- 'user_count' => User::count(),
- 'status_count' => Status::whereNull('uri')->count(),
- 'domain_count' => Instance::count(),
- ];
- });
- $rules = Cache::remember('api:v1:instance-data:rules', 604800, function () {
- return config_cache('app.rules') ?
- collect(json_decode(config_cache('app.rules'), true))
- ->map(function($rule, $key) {
- $id = $key + 1;
- return [
- 'id' => "{$id}",
- 'text' => $rule
- ];
- })
- ->toArray() : [];
- });
- return [
- 'uri' => config('pixelfed.domain.app'),
- 'title' => config('app.name'),
- 'short_description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms',
- 'description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms',
- 'email' => config('instance.email'),
- 'version' => '2.7.2 (compatible; Pixelfed ' . config('pixelfed.version') .')',
- 'urls' => [
- 'streaming_api' => 'wss://' . config('pixelfed.domain.app')
- ],
- 'stats' => $stats,
- 'thumbnail' => url('img/pixelfed-icon-color.png'),
- 'languages' => ['en'],
- 'registrations' => (bool) config_cache('pixelfed.open_registration'),
- 'approval_required' => false,
- 'contact_account' => $contact,
- 'rules' => $rules
- ];
- });
- return $this->json($res);
- }
- /**
- * 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([]);
- }
- /**
- * 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([]);
- }
- /**
- * POST /api/v1/media
- *
- *
- * @return MediaTransformer
- */
- public function mediaUpload(Request $request)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'file.*' => function() {
- return [
- 'required',
- 'mimetypes:' . config_cache('pixelfed.media_types'),
- 'max:' . config_cache('pixelfed.max_photo_size'),
- ];
- },
- 'filter_name' => 'nullable|string|max:24',
- 'filter_class' => 'nullable|alpha_dash|max:24',
- 'description' => 'nullable|string|max:' . config_cache('pixelfed.max_altext_length')
- ]);
- $user = $request->user();
- if($user->last_active_at == null) {
- return [];
- }
- if(empty($request->file('file'))) {
- return response('', 422);
- }
- $limitKey = 'compose:rate-limit:media-upload:' . $user->id;
- $limitTtl = now()->addMinutes(15);
- $limitReached = Cache::remember($limitKey, $limitTtl, function() use($user) {
- $dailyLimit = Media::whereUserId($user->id)->where('created_at', '>', now()->subDays(1))->count();
- return $dailyLimit >= 250;
- });
- abort_if($limitReached == true, 429);
- $profile = $user->profile;
- if(config_cache('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_cache('pixelfed.max_account_size');
- if ($size >= $limit) {
- abort(403, 'Account size limit reached.');
- }
- }
- $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;
- $photo = $request->file('file');
- $mimes = explode(',', config_cache('pixelfed.media_types'));
- if(in_array($photo->getMimeType(), $mimes) == false) {
- abort(403, 'Invalid or unsupported mime type.');
- }
- $storagePath = MediaPathService::get($user, 2);
- $path = $photo->store($storagePath);
- $hash = \hash_file('sha256', $photo);
- $license = null;
- $mime = $photo->getMimeType();
- // if($photo->getMimeType() == 'image/heic') {
- // abort_if(config('image.driver') !== 'imagick', 422, 'Invalid media type');
- // abort_if(!in_array('HEIC', \Imagick::queryformats()), 422, 'Unsupported media type');
- // $oldPath = $path;
- // $path = str_replace('.heic', '.jpg', $path);
- // $mime = 'image/jpeg';
- // \Image::make($photo)->save(storage_path("app/{$path}"));
- // @unlink(storage_path("app/{$oldPath}"));
- // }
- $settings = UserSetting::whereUserId($user->id)->first();
- if($settings && !empty($settings->compose_settings)) {
- $compose = $settings->compose_settings;
- if(isset($compose['default_license']) && $compose['default_license'] != 1) {
- $license = $compose['default_license'];
- }
- }
- abort_if(MediaBlocklistService::exists($hash) == true, 451);
- $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 = $mime;
- $media->caption = $request->input('description');
- $media->filter_class = $filterClass;
- $media->filter_name = $filterName;
- if($license) {
- $media->license = $license;
- }
- $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;
- }
- Cache::forget($limitKey);
- $resource = new Fractal\Resource\Item($media, new MediaTransformer());
- $res = $this->fractal->createData($resource)->toArray();
- $res['preview_url'] = $media->url(). '?v=' . time();
- $res['url'] = $media->url(). '?v=' . time();
- return $this->json($res);
- }
- /**
- * PUT /api/v1/media/{id}
- *
- * @param integer $id
- *
- * @return MediaTransformer
- */
- public function mediaUpdate(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'description' => 'nullable|string|max:' . config_cache('pixelfed.max_altext_length')
- ]);
- $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();
- return $this->json($res);
- }
- /**
- * GET /api/v1/media/{id}
- *
- * @param integer $id
- *
- * @return MediaTransformer
- */
- public function mediaGet(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $user = $request->user();
- $media = Media::whereUserId($user->id)
- ->whereNull('status_id')
- ->findOrFail($id);
- $resource = new Fractal\Resource\Item($media, new MediaTransformer());
- $res = $this->fractal->createData($resource)->toArray();
- return $this->json($res);
- }
- /**
- * POST /api/v2/media
- *
- *
- * @return MediaTransformer
- */
- public function mediaUploadV2(Request $request)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'file.*' => function() {
- return [
- 'required',
- 'mimetypes:' . config_cache('pixelfed.media_types'),
- 'max:' . config_cache('pixelfed.max_photo_size'),
- ];
- },
- 'filter_name' => 'nullable|string|max:24',
- 'filter_class' => 'nullable|alpha_dash|max:24',
- 'description' => 'nullable|string|max:' . config_cache('pixelfed.max_altext_length')
- ]);
- $user = $request->user();
- if($user->last_active_at == null) {
- return [];
- }
- if(empty($request->file('file'))) {
- return response('', 422);
- }
- $limitKey = 'compose:rate-limit:media-upload:' . $user->id;
- $limitTtl = now()->addMinutes(15);
- $limitReached = Cache::remember($limitKey, $limitTtl, function() use($user) {
- $dailyLimit = Media::whereUserId($user->id)->where('created_at', '>', now()->subDays(1))->count();
- return $dailyLimit >= 250;
- });
- abort_if($limitReached == true, 429);
- $profile = $user->profile;
- if(config_cache('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_cache('pixelfed.max_account_size');
- if ($size >= $limit) {
- abort(403, 'Account size limit reached.');
- }
- }
- $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;
- $photo = $request->file('file');
- $mimes = explode(',', config_cache('pixelfed.media_types'));
- if(in_array($photo->getMimeType(), $mimes) == false) {
- abort(403, 'Invalid or unsupported mime type.');
- }
- $storagePath = MediaPathService::get($user, 2);
- $path = $photo->store($storagePath);
- $hash = \hash_file('sha256', $photo);
- $license = null;
- $mime = $photo->getMimeType();
- $settings = UserSetting::whereUserId($user->id)->first();
- if($settings && !empty($settings->compose_settings)) {
- $compose = $settings->compose_settings;
- if(isset($compose['default_license']) && $compose['default_license'] != 1) {
- $license = $compose['default_license'];
- }
- }
- abort_if(MediaBlocklistService::exists($hash) == true, 451);
- $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 = $mime;
- $media->caption = $request->input('description');
- $media->filter_class = $filterClass;
- $media->filter_name = $filterName;
- if($license) {
- $media->license = $license;
- }
- $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;
- }
- Cache::forget($limitKey);
- $resource = new Fractal\Resource\Item($media, new MediaTransformer());
- $res = $this->fractal->createData($resource)->toArray();
- $res['preview_url'] = $media->url(). '?v=' . time();
- $res['url'] = null;
- return $this->json($res, 202);
- }
- /**
- * GET /api/v1/mutes
- *
- *
- * @return AccountTransformer
- */
- 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 $this->json($res);
- }
- /**
- * POST /api/v1/accounts/{id}/mute
- *
- * @param integer $id
- *
- * @return RelationshipTransformer
- */
- public function accountMuteById(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $user = $request->user();
- $pid = $user->profile_id;
- $account = Profile::findOrFail($id);
- $filter = UserFilter::firstOrCreate([
- 'user_id' => $pid,
- '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 $this->json($res);
- }
- /**
- * POST /api/v1/accounts/{id}/unmute
- *
- * @param integer $id
- *
- * @return RelationshipTransformer
- */
- 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 $this->json($res);
- }
- /**
- * GET /api/v1/notifications
- *
- *
- * @return NotificationTransformer
- */
- public function accountNotifications(Request $request)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'limit' => 'nullable|integer|min:1|max:100',
- '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,
- ]);
- $pid = $request->user()->profile_id;
- $limit = $request->input('limit', 20);
- $since = $request->input('since_id');
- $min = $request->input('min_id');
- $max = $request->input('max_id');
- if(!$since && !$min && !$max) {
- $min = 1;
- }
- $maxId = null;
- $minId = null;
- if($max) {
- $res = NotificationService::getMaxMastodon($pid, $max, $limit);
- $ids = NotificationService::getRankedMaxId($pid, $max, $limit);
- if(!empty($ids)) {
- $maxId = max($ids);
- $minId = min($ids);
- }
- } else {
- $res = NotificationService::getMinMastodon($pid, $min ?? $since, $limit);
- $ids = NotificationService::getRankedMinId($pid, $min ?? $since, $limit);
- if(!empty($ids)) {
- $maxId = max($ids);
- $minId = min($ids);
- }
- }
- if(empty($res) && !Cache::has('pf:services:notifications:hasSynced:'.$pid)) {
- Cache::put('pf:services:notifications:hasSynced:'.$pid, 1, 1209600);
- NotificationService::warmCache($pid, 400, true);
- }
- $baseUrl = config('app.url') . '/api/v1/notifications?limit=' . $limit . '&';
- if($minId == $maxId) {
- $minId = null;
- }
- 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"';
- }
- $headers = isset($link) ? ['Link' => $link] : [];
- return $this->json($res, 200, $headers);
- }
- /**
- * GET /api/v1/timelines/home
- *
- *
- * @return StatusTransformer
- */
- public function timelineHome(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,
- 'limit' => 'nullable|integer|max:100'
- ]);
- $page = $request->input('page');
- $min = $request->input('min_id');
- $max = $request->input('max_id');
- $limit = $request->input('limit') ?? 20;
- $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;
- $res = Status::select(
- 'id',
- 'profile_id',
- 'type',
- 'visibility',
- 'created_at'
- )
- ->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
- ->where('id', $dir, $id)
- ->whereIn('profile_id', $following)
- ->whereIn('visibility',['public', 'unlisted', 'private'])
- ->latest()
- ->take(($limit * 2))
- ->get()
- ->map(function($s) use($pid) {
- $status = StatusService::getMastodon($s['id']);
- if(!$status || !isset($status['account']) || !isset($status['account']['id'])) {
- return false;
- }
- if($pid) {
- $status['favourited'] = (bool) LikeService::liked($pid, $s['id']);
- $status['reblogged'] = (bool) ReblogService::get($pid, $status['id']);
- }
- return $status;
- })
- ->filter(function($status) {
- return $status && isset($status['account']);
- })
- ->take($limit)
- ->values();
- } else {
- $res = Status::select(
- 'id',
- 'profile_id',
- 'type',
- 'visibility',
- 'created_at'
- )
- ->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
- ->whereIn('profile_id', $following)
- ->whereIn('visibility',['public', 'unlisted', 'private'])
- ->latest()
- ->take(($limit * 2))
- ->get()
- ->map(function($s) use($pid) {
- $status = StatusService::getMastodon($s['id']);
- if(!$status || !isset($status['account']) || !isset($status['account']['id'])) {
- return false;
- }
- if($pid) {
- $status['favourited'] = (bool) LikeService::liked($pid, $s['id']);
- $status['reblogged'] = (bool) ReblogService::get($pid, $status['id']);
- }
- return $status;
- })
- ->filter(function($status) {
- return $status && isset($status['account']);
- })
- ->take($limit)
- ->values();
- }
- $baseUrl = config('app.url') . '/api/v1/timelines/home?limit=' . $limit . '&';
- $minId = $res->map(function($s) {
- return ['id' => $s['id']];
- })->min('id');
- $maxId = $res->map(function($s) {
- return ['id' => $s['id']];
- })->max('id');
- if($minId == $maxId) {
- $minId = null;
- }
- 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"';
- }
- $headers = isset($link) ? ['Link' => $link] : [];
- return $this->json($res->toArray(), 200, $headers);
- }
- /**
- * GET /api/v1/timelines/public
- *
- *
- * @return StatusTransformer
- */
- public function timelinePublic(Request $request)
- {
- $this->validate($request,[
- 'min_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
- 'max_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
- 'limit' => 'nullable|integer|max:100'
- ]);
- $min = $request->input('min_id');
- $max = $request->input('max_id');
- $limit = $request->input('limit') ?? 20;
- $user = $request->user();
- $filtered = $user ? UserFilterService::filters($user->profile_id) : [];
- Cache::remember('api:v1:timelines:public:cache_check', 10368000, function() {
- if(PublicTimelineService::count() == 0) {
- PublicTimelineService::warmCache(true, 400);
- }
- });
- if ($max) {
- $feed = PublicTimelineService::getRankedMaxId($max, $limit + 5);
- } else if ($min) {
- $feed = PublicTimelineService::getRankedMinId($min, $limit + 5);
- } else {
- $feed = PublicTimelineService::get(0, $limit + 5);
- }
- $res = collect($feed)
- ->map(function($k) use($user) {
- $status = StatusService::getMastodon($k);
- if(!$status || !isset($status['account']) || !isset($status['account']['id'])) {
- return false;
- }
- if($user) {
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $k);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $status['id']);
- }
- return $status;
- })
- ->filter(function($s) use($filtered) {
- return $s && isset($s['account']) && in_array($s['account']['id'], $filtered) == false;
- })
- ->take($limit)
- ->values();
- // ->toArray();
- $baseUrl = config('app.url') . '/api/v1/timelines/public?limit=' . $limit . '&';
- $minId = $res->map(function($s) {
- return ['id' => $s['id']];
- })->min('id');
- $maxId = $res->map(function($s) {
- return ['id' => $s['id']];
- })->max('id');
- if($minId == $maxId) {
- $minId = null;
- }
- 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"';
- }
- $headers = isset($link) ? ['Link' => $link] : [];
- return $this->json($res->toArray(), 200, $headers);
- }
- /**
- * GET /api/v1/conversations
- *
- * Not implemented
- *
- * @return array
- */
- public function conversations(Request $request)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'limit' => 'min:1|max:40',
- 'scope' => 'nullable|in:inbox,sent,requests'
- ]);
- $limit = $request->input('limit', 20);
- $scope = $request->input('scope', 'inbox');
- $pid = $request->user()->profile_id;
- if(config('database.default') == 'pgsql') {
- $dms = DirectMessage::when($scope === 'inbox', function($q, $scope) use($pid) {
- return $q->whereIsHidden(false)->where('to_id', $pid)->orWhere('from_id', $pid);
- })
- ->when($scope === 'sent', function($q, $scope) use($pid) {
- return $q->whereFromId($pid)->groupBy(['to_id', 'id']);
- })
- ->when($scope === 'requests', function($q, $scope) use($pid) {
- return $q->whereToId($pid)->whereIsHidden(true);
- });
- } else {
- $dms = Conversation::when($scope === 'inbox', function($q, $scope) use($pid) {
- return $q->whereIsHidden(false)
- ->where('to_id', $pid)
- ->orWhere('from_id', $pid)
- ->orderByDesc('status_id')
- ->groupBy(['to_id', 'from_id']);
- })
- ->when($scope === 'sent', function($q, $scope) use($pid) {
- return $q->whereFromId($pid)->groupBy('to_id');
- })
- ->when($scope === 'requests', function($q, $scope) use($pid) {
- return $q->whereToId($pid)->whereIsHidden(true);
- });
- }
- $dms = $dms->orderByDesc('status_id')
- ->simplePaginate($limit)
- ->map(function($dm) use($pid) {
- $from = $pid == $dm->to_id ? $dm->from_id : $dm->to_id;
- $res = [
- 'id' => $dm->id,
- 'unread' => false,
- 'accounts' => [
- AccountService::getMastodon($from)
- ],
- 'last_status' => StatusService::getDirectMessage($dm->status_id)
- ];
- return $res;
- })
- ->filter(function($dm) {
- return isset($dm['accounts']) && count($dm['accounts']);
- })
- ->unique(function($item, $key) {
- return $item['accounts'][0]['id'];
- })
- ->values();
- return $this->json($dms);
- }
- /**
- * GET /api/v1/statuses/{id}
- *
- * @param integer $id
- *
- * @return StatusTransformer
- */
- public function statusById(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $user = $request->user();
- $res = StatusService::getMastodon($id, false);
- if(!$res || !isset($res['visibility'])) {
- abort(404);
- }
- $scope = $res['visibility'];
- if(!in_array($scope, ['public', 'unlisted'])) {
- if($scope === 'private') {
- if($res['account']['id'] != $user->profile_id) {
- abort_unless(FollowerService::follows($user->profile_id, $res['account']['id']), 403);
- }
- } else {
- abort(400, 'Invalid request');
- }
- }
- $res['favourited'] = LikeService::liked($user->profile_id, $res['id']);
- $res['reblogged'] = ReblogService::get($user->profile_id, $res['id']);
- return $this->json($res);
- }
- /**
- * GET /api/v1/statuses/{id}/context
- *
- * @param integer $id
- *
- * @return StatusTransformer
- */
- public function statusContext(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $user = $request->user();
- $status = StatusService::getMastodon($id, false);
- if(!$status || !isset($status['account'])) {
- return response('', 404);
- }
- if($status['account']['id'] != $user->profile_id) {
- if($status['visibility'] == 'private') {
- if(!FollowerService::follows($user->profile_id, $status['account']['id'])) {
- return response('', 404);
- }
- } else {
- if(!in_array($status['visibility'], ['public','unlisted'])) {
- return response('', 404);
- }
- }
- }
- $ancestors = [];
- $descendants = [];
- if($status['in_reply_to_id']) {
- $ancestors[] = StatusService::getMastodon($status['in_reply_to_id'], false);
- }
- if($status['replies_count']) {
- $descendants = DB::table('statuses')
- ->where('in_reply_to_id', $id)
- ->limit(20)
- ->pluck('id')
- ->map(function($sid) {
- return StatusService::getMastodon($sid, false);
- })
- ->filter(function($post) {
- return $post && isset($post['account']);
- })
- ->values();
- }
- $res = [
- 'ancestors' => $ancestors,
- 'descendants' => $descendants
- ];
- return $this->json($res);
- }
- /**
- * GET /api/v1/statuses/{id}/card
- *
- * @param integer $id
- *
- * @return StatusTransformer
- */
- public function statusCard(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $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, [
- 'page' => 'nullable|integer|min:1|max:40',
- 'limit' => 'nullable|integer|min:1|max:100'
- ]);
- $limit = $request->input('limit') ?? 40;
- $user = $request->user();
- $status = Status::findOrFail($id);
- if($status->profile_id !== $user->profile_id) {
- if($status->scope == 'private') {
- abort_if(!FollowerService::follows($user->profile_id, $status->profile_id), 403);
- } else {
- abort_if(!in_array($status->scope, ['public','unlisted']), 403);
- }
- }
- $page = $request->input('page', 1);
- $start = $page == 1 ? 0 : (($page * $limit) - $limit);
- $end = $start + $limit - 1;
- $ids = ReblogService::getPostReblogs($id, $start, $end);
- if(empty($ids)) {
- return [];
- }
- $res = collect($ids)
- ->map(function($id) {
- $status = StatusService::get($id);
- if($status) {
- return AccountService::get($status['account']['id']);
- }
- return;
- })
- ->filter(function($account) {
- return $account && isset($account['id']);
- })
- ->values();
- $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"';
- return $this->json($res, 200, ['Link' => $links]);
- }
- /**
- * 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, [
- 'page' => 'nullable|integer|min:1|max:40',
- 'limit' => 'nullable|integer|min:1|max:100'
- ]);
- $page = $request->input('page', 1);
- $limit = $request->input('limit') ?? 40;
- $user = $request->user();
- $status = Status::findOrFail($id);
- $offset = $page == 1 ? 0 : ($page * $limit - $limit);
- if($offset > 100) {
- if($user->profile_id != $status->profile_id) {
- return [];
- }
- }
- 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);
- }
- }
- $res = DB::table('likes')
- ->select('likes.id', 'likes.profile_id', 'likes.status_id', 'followers.created_at')
- ->leftJoin('followers', function($join) use($user, $status) {
- return $join->on('likes.profile_id', '=', 'followers.following_id')
- ->where('followers.profile_id', $user->profile_id)
- ->where('likes.status_id', $status->id);
- })
- ->whereStatusId($status->id)
- ->orderByDesc('followers.created_at')
- ->offset($offset)
- ->limit($limit)
- ->get()
- ->map(function($like) {
- $account = AccountService::getMastodon($like->profile_id);
- $account['follows'] = isset($like->created_at);
- return $account;
- })
- ->filter(function($account) use($user) {
- return $account && isset($account['id']) && $account['id'] != $user->profile_id;
- })
- ->values();
- $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"';
- return $this->json($res, 200, ['Link' => $links]);
- }
- /**
- * POST /api/v1/statuses
- *
- *
- * @return StatusTransformer
- */
- public function statusCreate(Request $request)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'status' => 'nullable|string',
- 'in_reply_to_id' => 'nullable',
- 'media_ids' => 'sometimes|array|max:' . config_cache('pixelfed.max_album_length'),
- 'sensitive' => 'nullable',
- 'visibility' => 'string|in:private,unlisted,public',
- 'spoiler_text' => 'sometimes|string|max:140',
- ]);
- 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.');
- }
- }
- }
- }
- if(!$request->filled('media_ids') && !$request->filled('in_reply_to_id')) {
- abort(403, 'Empty statuses are not allowed');
- }
- $ids = $request->input('media_ids');
- $in_reply_to_id = $request->input('in_reply_to_id');
- $user = $request->user();
- $profile = $user->profile;
- $limitKey = 'compose:rate-limit:store:' . $user->id;
- $limitTtl = now()->addMinutes(15);
- $limitReached = Cache::remember($limitKey, $limitTtl, function() use($user) {
- $dailyLimit = Status::whereProfileId($user->profile_id)
- ->whereNull('in_reply_to_id')
- ->whereNull('reblog_of_id')
- ->where('created_at', '>', now()->subDays(1))
- ->count();
- return $dailyLimit >= 100;
- });
- abort_if($limitReached == true, 429);
- $visibility = $profile->is_private ? 'private' : (
- $profile->unlisted == true &&
- $request->input('visibility', 'public') == 'public' ?
- 'unlisted' :
- $request->input('visibility', 'public'));
- if($user->last_active_at == null) {
- return [];
- }
- $content = strip_tags($request->input('status'));
- $rendered = Autolink::create()->autolink($content);
- $cw = $user->profile->cw == true ? true : $request->input('sensitive', false);
- $spoilerText = $cw && $request->filled('spoiler_text') ? $request->input('spoiler_text') : null;
- if($in_reply_to_id) {
- $parent = Status::findOrFail($in_reply_to_id);
- $status = new Status;
- $status->caption = $content;
- $status->rendered = $rendered;
- $status->scope = $visibility;
- $status->visibility = $visibility;
- $status->profile_id = $user->profile_id;
- $status->is_nsfw = $cw;
- $status->cw_summary = $spoilerText;
- $status->in_reply_to_id = $parent->id;
- $status->in_reply_to_profile_id = $parent->profile_id;
- $status->save();
- StatusService::del($parent->id);
- Cache::forget('status:replies:all:' . $parent->id);
- }
- if($ids) {
- if(Media::whereUserId($user->id)
- ->whereNull('status_id')
- ->find($ids)
- ->count() == 0
- ) {
- abort(400, 'Invalid media_ids');
- }
- if(!$in_reply_to_id) {
- $status = new Status;
- $status->caption = $content;
- $status->rendered = $rendered;
- $status->profile_id = $user->profile_id;
- $status->scope = 'draft';
- $status->is_nsfw = $cw;
- $status->cw_summary = $spoilerText;
- $status->save();
- }
- $mimes = [];
- foreach($ids as $k => $v) {
- if($k + 1 > config_cache('pixelfed.max_album_length')) {
- continue;
- }
- $m = Media::whereUserId($user->id)->whereNull('status_id')->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(400, 'Invalid media ids');
- }
- $status->scope = $visibility;
- $status->visibility = $visibility;
- $status->type = StatusController::mimeTypeCheck($mimes);
- $status->save();
- }
- if(!$status) {
- abort(500, 'An error occured.');
- }
- NewStatusPipeline::dispatch($status);
- if($status->in_reply_to_id) {
- CommentPipeline::dispatch($parent, $status);
- }
- Cache::forget('user:account:id:'.$user->id);
- Cache::forget('_api:statuses:recent_9:'.$user->profile_id);
- Cache::forget('profile:status_count:'.$user->profile_id);
- Cache::forget($user->storageUsedKey());
- Cache::forget('profile:embed:' . $status->profile_id);
- Cache::forget($limitKey);
- $res = StatusService::getMastodon($status->id, false);
- $res['favourited'] = false;
- $res['language'] = 'en';
- $res['bookmarked'] = false;
- $res['card'] = null;
- return $this->json($res);
- }
- /**
- * DELETE /api/v1/statuses
- *
- * @param integer $id
- *
- * @return null
- */
- public function statusDelete(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $status = Status::whereProfileId($request->user()->profile->id)
- ->findOrFail($id);
- $resource = new Fractal\Resource\Item($status, new StatusTransformer());
- Cache::forget('profile:status_count:'.$status->profile_id);
- StatusDelete::dispatch($status);
- $res = $this->fractal->createData($resource)->toArray();
- $res['text'] = $res['content'];
- unset($res['content']);
- return $this->json($res);
- }
- /**
- * 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::whereScope('public')->findOrFail($id);
- if($status->profile_id !== $user->profile_id) {
- if($status->scope == 'private') {
- abort_if(!FollowerService::follows($user->profile_id, $status->profile_id), 403);
- } else {
- abort_if(!in_array($status->scope, ['public','unlisted']), 403);
- }
- }
- $share = Status::firstOrCreate([
- 'profile_id' => $user->profile_id,
- 'reblog_of_id' => $status->id,
- 'type' => 'share',
- 'in_reply_to_profile_id' => $status->profile_id,
- 'scope' => 'public',
- 'visibility' => 'public'
- ]);
- if($share->wasRecentlyCreated == true) {
- SharePipeline::dispatch($share);
- }
- StatusService::del($status->id);
- ReblogService::add($user->profile_id, $status->id);
- $res = StatusService::getMastodon($status->id);
- $res['reblogged'] = true;
- return $this->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::whereScope('public')->findOrFail($id);
- if($status->profile_id !== $user->profile_id) {
- if($status->scope == 'private') {
- abort_if(!FollowerService::follows($user->profile_id, $status->profile_id), 403);
- } else {
- abort_if(!in_array($status->scope, ['public','unlisted']), 403);
- }
- }
- $reblog = Status::whereProfileId($user->profile_id)
- ->whereReblogOfId($status->id)
- ->first();
- if(!$reblog) {
- $res = StatusService::getMastodon($status->id);
- $res['reblogged'] = false;
- return $this->json($res);
- }
- UndoSharePipeline::dispatch($reblog);
- ReblogService::del($user->profile_id, $status->id);
- $res = StatusService::getMastodon($status->id);
- $res['reblogged'] = false;
- return $this->json($res);
- }
- /**
- * GET /api/v1/timelines/tag/{hashtag}
- *
- * @param string $hashtag
- *
- * @return StatusTransformer
- */
- public function timelineHashtag(Request $request, $hashtag)
- {
- $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,
- 'limit' => 'nullable|integer|max:100'
- ]);
- $tag = Hashtag::whereName($hashtag)
- ->orWhere('slug', $hashtag)
- ->first();
- if(!$tag) {
- return response()->json([]);
- }
- $min = $request->input('min_id');
- $max = $request->input('max_id');
- $limit = $request->input('limit', 20);
- if(!$min && !$max) {
- $id = 1;
- $dir = '>';
- } else {
- $dir = $min ? '>' : '<';
- $id = $min ?? $max;
- }
- $res = StatusHashtag::whereHashtagId($tag->id)
- ->whereStatusVisibility('public')
- ->where('status_id', $dir, $id)
- ->latest()
- ->limit($limit)
- ->pluck('status_id')
- ->map(function ($i) {
- if($i) {
- return StatusService::getMastodon($i);
- }
- })
- ->filter(function($i) {
- return $i && isset($i['account']);
- })
- ->values()
- ->toArray();
- return $this->json($res);
- }
- /**
- * 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::getMastodon($id);
- }
- return $this->json($res);
- }
- /**
- * 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
- ]);
- $res = StatusService::getMastodon($status->id);
- return $this->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 = Bookmark::whereStatusId($status->id)
- ->whereProfileId($request->user()->profile_id)
- ->firstOrFail();
- $bookmark->delete();
- $res = StatusService::getMastodon($status->id);
- return $this->json($res);
- }
- /**
- * 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:100',
- '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',
- 'following' => 'nullable'
- ]);
- return $this->json(SearchApiV2Service::query($request, true));
- }
- /**
- * GET /api/v1/discover/posts
- *
- *
- * @return array
- */
- public function discoverPosts(Request $request)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'limit' => 'integer|min:1|max:40'
- ]);
- $limit = $request->input('limit', 40);
- $pid = $request->user()->profile_id;
- $filters = UserFilterService::filters($pid);
- $forYou = DiscoverService::getForYou();
- $posts = $forYou->take(50)->map(function($post) {
- return StatusService::getMastodon($post);
- })
- ->filter(function($post) use($filters) {
- return $post &&
- isset($post['account']) &&
- isset($post['account']['id']) &&
- !in_array($post['account']['id'], $filters);
- })
- ->take(12)
- ->values();
- return $this->json(compact('posts'));
- }
- /**
- * GET /api/v2/statuses/{id}/replies
- *
- *
- * @return array
- */
- public function statusReplies(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $this->validate($request, [
- 'limit' => 'int|min:1|max:10',
- 'sort' => 'in:all,newest,popular'
- ]);
- $limit = $request->input('limit', 3);
- $pid = $request->user()->profile_id;
- $status = StatusService::getMastodon($id, false);
- abort_if(!$status, 404);
- if($status['visibility'] == 'private') {
- if($pid != $status['account']['id']) {
- abort_unless(FollowerService::follows($pid, $status['account']['id']), 404);
- }
- }
- $sortBy = $request->input('sort', 'all');
- if($sortBy == 'all' && isset($status['replies_count']) && $status['replies_count'] && $request->has('refresh_cache')) {
- if(!Cache::has('status:replies:all-rc:' . $id)) {
- Cache::forget('status:replies:all:' . $id);
- Cache::put('status:replies:all-rc:' . $id, true, 300);
- }
- }
- if($sortBy == 'all' && !$request->has('cursor')) {
- $ids = Cache::remember('status:replies:all:' . $id, 86400, function() use($id) {
- return DB::table('statuses')
- ->where('in_reply_to_id', $id)
- ->orderBy('id')
- ->cursorPaginate(3);
- });
- } else {
- $ids = DB::table('statuses')
- ->where('in_reply_to_id', $id)
- ->when($sortBy, function($q, $sortBy) {
- if($sortBy === 'all') {
- return $q->orderBy('id');
- }
- if($sortBy === 'newest') {
- return $q->orderByDesc('created_at');
- }
- if($sortBy === 'popular') {
- return $q->orderByDesc('likes_count');
- }
- })
- ->cursorPaginate($limit);
- }
- $data = $ids->map(function($post) use($pid) {
- $status = StatusService::get($post->id, false);
- if(!$status || !isset($status['id'])) {
- return false;
- }
- $status['favourited'] = LikeService::liked($pid, $post->id);
- return $status;
- })
- ->filter(function($post) {
- return $post && isset($post['id']) && isset($post['account']);
- })
- ->values();
- $res = [
- 'data' => $data,
- 'next' => $ids->nextPageUrl()
- ];
- return $this->json($res);
- }
- /**
- * GET /api/v2/statuses/{id}/state
- *
- *
- * @return array
- */
- public function statusState(Request $request, $id)
- {
- abort_if(!$request->user(), 403);
- $status = Status::findOrFail($id);
- $pid = $request->user()->profile_id;
- abort_if(!in_array($status->scope, ['public', 'unlisted', 'private']), 404);
- return $this->json(StatusService::getState($status->id, $pid));
- }
- /**
- * GET /api/v1/discover/accounts/popular
- *
- *
- * @return array
- */
- public function discoverAccountsPopular(Request $request)
- {
- abort_if(!$request->user(), 403);
- $pid = $request->user()->profile_id;
- $ids = DB::table('profiles')
- ->where('is_private', false)
- ->whereNull('status')
- ->orderByDesc('profiles.followers_count')
- ->limit(20)
- ->get();
- $ids = $ids->map(function($profile) {
- return AccountService::getMastodon($profile->id);
- })
- ->filter(function($profile) use($pid) {
- return $profile &&
- isset($profile['id']) &&
- !FollowerService::follows($pid, $profile['id']) &&
- $profile['id'] != $pid;
- })
- ->take(6)
- ->values();
- return $this->json($ids);
- }
- /**
- * GET /api/v1/preferences
- *
- *
- * @return array
- */
- public function getPreferences(Request $request)
- {
- abort_if(!$request->user(), 403);
- $pid = $request->user()->profile_id;
- $account = AccountService::get($pid);
- return $this->json([
- 'posting:default:visibility' => $account['locked'] ? 'private' : 'public',
- 'posting:default:sensitive' => false,
- 'posting:default:language' => null,
- 'reading:expand:media' => 'default',
- 'reading:expand:spoilers' => false
- ]);
- }
- /**
- * GET /api/v1/trends
- *
- *
- * @return array
- */
- public function getTrends(Request $request)
- {
- abort_if(!$request->user(), 403);
- return $this->json([]);
- }
- /**
- * GET /api/v1/announcements
- *
- *
- * @return array
- */
- public function getAnnouncements(Request $request)
- {
- abort_if(!$request->user(), 403);
- return $this->json([]);
- }
- /**
- * GET /api/v1/markers
- *
- *
- * @return array
- */
- public function getMarkers(Request $request)
- {
- abort_if(!$request->user(), 403);
- $type = $request->input('timeline');
- if(is_array($type)) {
- $type = $type[0];
- }
- if(!$type || !in_array($type, ['home', 'notifications'])) {
- return $this->json([]);
- }
- $pid = $request->user()->profile_id;
- return $this->json(MarkerService::get($pid, $type));
- }
- /**
- * POST /api/v1/markers
- *
- *
- * @return array
- */
- public function setMarkers(Request $request)
- {
- abort_if(!$request->user(), 403);
- $pid = $request->user()->profile_id;
- $home = $request->input('home.last_read_id');
- $notifications = $request->input('notifications.last_read_id');
- if($home) {
- return $this->json(MarkerService::set($pid, 'home', $home));
- }
- if($notifications) {
- return $this->json(MarkerService::set($pid, 'notifications', $notifications));
- }
- return $this->json([]);
- }
- }
|