mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Merge pull request #4924 from pixelfed/staging
Update public/network timelines, fix non-redis response and fix reblo…
This commit is contained in:
commit
b10c60584b
11 changed files with 96 additions and 29 deletions
|
@ -5,6 +5,7 @@
|
||||||
### Updated
|
### Updated
|
||||||
|
|
||||||
- Update ApiV1Controller, fix network timeline ([0faf59e3](https://github.com/pixelfed/pixelfed/commit/0faf59e3))
|
- Update ApiV1Controller, fix network timeline ([0faf59e3](https://github.com/pixelfed/pixelfed/commit/0faf59e3))
|
||||||
|
- Update public/network timelines, fix non-redis response and fix reblogs in home feed ([8b4ac5cc](https://github.com/pixelfed/pixelfed/commit/8b4ac5cc))
|
||||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||||
|
|
||||||
## [v0.11.11 (2024-02-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.10...v0.11.11)
|
## [v0.11.11 (2024-02-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.10...v0.11.11)
|
||||||
|
|
|
@ -2523,6 +2523,7 @@ class ApiV1Controller extends Controller
|
||||||
$napi = $request->has(self::PF_API_ENTITY_KEY);
|
$napi = $request->has(self::PF_API_ENTITY_KEY);
|
||||||
$min = $request->input('min_id');
|
$min = $request->input('min_id');
|
||||||
$max = $request->input('max_id');
|
$max = $request->input('max_id');
|
||||||
|
$minOrMax = $request->anyFilled(['max_id', 'min_id']);
|
||||||
$limit = $request->input('limit') ?? 20;
|
$limit = $request->input('limit') ?? 20;
|
||||||
$user = $request->user();
|
$user = $request->user();
|
||||||
|
|
||||||
|
@ -2535,6 +2536,8 @@ class ApiV1Controller extends Controller
|
||||||
$filtered = $user ? UserFilterService::filters($user->profile_id) : [];
|
$filtered = $user ? UserFilterService::filters($user->profile_id) : [];
|
||||||
AccountService::setLastActive($user->id);
|
AccountService::setLastActive($user->id);
|
||||||
$domainBlocks = UserFilterService::domainBlocks($user->profile_id);
|
$domainBlocks = UserFilterService::domainBlocks($user->profile_id);
|
||||||
|
$hideNsfw = config('instance.hide_nsfw_on_public_feeds');
|
||||||
|
$amin = SnowflakeService::byDate(now()->subDays(config('federation.network_timeline_days_falloff')));
|
||||||
|
|
||||||
if($remote) {
|
if($remote) {
|
||||||
if(config('instance.timeline.network.cached')) {
|
if(config('instance.timeline.network.cached')) {
|
||||||
|
@ -2554,35 +2557,79 @@ class ApiV1Controller extends Controller
|
||||||
} else {
|
} else {
|
||||||
$feed = Status::select(
|
$feed = Status::select(
|
||||||
'id',
|
'id',
|
||||||
'profile_id',
|
'uri',
|
||||||
'type',
|
'type',
|
||||||
'visibility',
|
'scope',
|
||||||
|
'local',
|
||||||
|
'created_at',
|
||||||
|
'profile_id',
|
||||||
'in_reply_to_id',
|
'in_reply_to_id',
|
||||||
'reblog_of_id'
|
'reblog_of_id'
|
||||||
)
|
)
|
||||||
->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
|
->when($minOrMax, function($q, $minOrMax) use($min, $max) {
|
||||||
->where('visibility', 'public')
|
$dir = $min ? '>' : '<';
|
||||||
->whereLocal(false)
|
$id = $min ?? $max;
|
||||||
->orderByDesc('id')
|
return $q->where('id', $dir, $id);
|
||||||
->take(($limit * 2))
|
})
|
||||||
->pluck('id');
|
->whereNull(['in_reply_to_id', 'reblog_of_id'])
|
||||||
|
->when($hideNsfw, function($q, $hideNsfw) {
|
||||||
|
return $q->where('is_nsfw', false);
|
||||||
|
})
|
||||||
|
->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
|
||||||
|
->whereLocal(false)
|
||||||
|
->whereScope('public')
|
||||||
|
->where('id', '>', $amin)
|
||||||
|
->orderByDesc('id')
|
||||||
|
->limit(($limit * 2))
|
||||||
|
->pluck('id')
|
||||||
|
->values()
|
||||||
|
->toArray();
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if(config('instance.timeline.local.cached')) {
|
||||||
|
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);
|
||||||
if($local || !$remote && !$local) {
|
} else if ($min) {
|
||||||
Cache::remember('api:v1:timelines:public:cache_check', 10368000, function() {
|
$feed = PublicTimelineService::getRankedMinId($min, $limit + 5);
|
||||||
if(PublicTimelineService::count() == 0) {
|
} else {
|
||||||
PublicTimelineService::warmCache(true, 400);
|
$feed = PublicTimelineService::get(0, $limit + 5);
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
if ($max) {
|
|
||||||
$feed = PublicTimelineService::getRankedMaxId($max, $limit + 5);
|
|
||||||
} else if ($min) {
|
|
||||||
$feed = PublicTimelineService::getRankedMinId($min, $limit + 5);
|
|
||||||
} else {
|
} else {
|
||||||
$feed = PublicTimelineService::get(0, $limit + 5);
|
$feed = Status::select(
|
||||||
|
'id',
|
||||||
|
'uri',
|
||||||
|
'type',
|
||||||
|
'scope',
|
||||||
|
'local',
|
||||||
|
'created_at',
|
||||||
|
'profile_id',
|
||||||
|
'in_reply_to_id',
|
||||||
|
'reblog_of_id'
|
||||||
|
)
|
||||||
|
->when($minOrMax, function($q, $minOrMax) use($min, $max) {
|
||||||
|
$dir = $min ? '>' : '<';
|
||||||
|
$id = $min ?? $max;
|
||||||
|
return $q->where('id', $dir, $id);
|
||||||
|
})
|
||||||
|
->whereNull(['in_reply_to_id', 'reblog_of_id'])
|
||||||
|
->when($hideNsfw, function($q, $hideNsfw) {
|
||||||
|
return $q->where('is_nsfw', false);
|
||||||
|
})
|
||||||
|
->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
|
||||||
|
->whereLocal(true)
|
||||||
|
->whereScope('public')
|
||||||
|
->where('id', '>', $amin)
|
||||||
|
->orderByDesc('id')
|
||||||
|
->limit(($limit * 2))
|
||||||
|
->pluck('id')
|
||||||
|
->values()
|
||||||
|
->toArray();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@ return [
|
||||||
],
|
],
|
||||||
|
|
||||||
'local' => [
|
'local' => [
|
||||||
|
'cached' => env('INSTANCE_PUBLIC_TIMELINE_CACHED', false),
|
||||||
'is_public' => env('INSTANCE_PUBLIC_LOCAL_TIMELINE', false)
|
'is_public' => env('INSTANCE_PUBLIC_LOCAL_TIMELINE', false)
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
BIN
public/js/account-import.js
vendored
BIN
public/js/account-import.js
vendored
Binary file not shown.
BIN
public/js/home.chunk.ada2cbf0ec3271bd.js
vendored
Normal file
BIN
public/js/home.chunk.ada2cbf0ec3271bd.js
vendored
Normal file
Binary file not shown.
BIN
public/js/home.chunk.f3f4f632025b560f.js
vendored
BIN
public/js/home.chunk.f3f4f632025b560f.js
vendored
Binary file not shown.
BIN
public/js/manifest.js
vendored
BIN
public/js/manifest.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -197,8 +197,17 @@
|
||||||
<div class="list-group">
|
<div class="list-group">
|
||||||
<div class="list-group-item d-flex justify-content-between align-items-center">
|
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||||
<p class="text-center font-weight-bold mb-0">Media #{{idx + 1}}</p>
|
<p class="text-center font-weight-bold mb-0">Media #{{idx + 1}}</p>
|
||||||
<img :src="getFileNameUrl(media.uri)" width="30" height="30" style="object-fit: cover; border-radius: 5px;">
|
<template v-if="media.uri.endsWith('.jpg') || media.uri.endsWith('.png')">
|
||||||
|
<img :src="getFileNameUrl(media.uri)" width="30" height="30" style="object-fit: cover; border-radius: 5px;">
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
<template v-if="media.uri.endsWith('.mp4')">
|
||||||
|
<div class="list-group-item">
|
||||||
|
<div class="embed-responsive embed-responsive-4by3">
|
||||||
|
<video :src="getFileNameUrl(media.uri)" controls></video>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<div class="list-group-item">
|
<div class="list-group-item">
|
||||||
<p class="small text-muted">Caption</p>
|
<p class="small text-muted">Caption</p>
|
||||||
<p class="mb-0 small read-more" style="font-size: 12px;overflow-y: hidden;">{{ media.title ? media.title : modalData.title }}</p>
|
<p class="mb-0 small read-more" style="font-size: 12px;overflow-y: hidden;">{{ media.title ? media.title : modalData.title }}</p>
|
||||||
|
|
|
@ -187,7 +187,7 @@
|
||||||
forceUpdateIdx: 0,
|
forceUpdateIdx: 0,
|
||||||
showReblogBanner: false,
|
showReblogBanner: false,
|
||||||
enablingReblogs: false,
|
enablingReblogs: false,
|
||||||
baseApi: '/api/v1/pixelfed/timelines/',
|
baseApi: '/api/v1/timelines/',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@
|
||||||
}
|
}
|
||||||
if(window.App.config.ab.hasOwnProperty('cached_home_timeline')) {
|
if(window.App.config.ab.hasOwnProperty('cached_home_timeline')) {
|
||||||
const cht = window.App.config.ab.cached_home_timeline == true;
|
const cht = window.App.config.ab.cached_home_timeline == true;
|
||||||
this.baseApi = cht ? '/api/v1/timelines/' : '/api/pixelfed/v1/timelines/';
|
this.baseApi = cht ? '/api/v1/timelines/' : '/api/v1/timelines/';
|
||||||
}
|
}
|
||||||
this.fetchSettings();
|
this.fetchSettings();
|
||||||
},
|
},
|
||||||
|
@ -261,10 +261,19 @@
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
url = this.baseApi + this.getScope();
|
url = this.baseApi + this.getScope();
|
||||||
params = {
|
|
||||||
max_id: this.max_id,
|
if(this.max_id === 0) {
|
||||||
limit: 6,
|
params = {
|
||||||
'_pe': 1,
|
min_id: 1,
|
||||||
|
limit: 6,
|
||||||
|
'_pe': 1,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
params = {
|
||||||
|
max_id: this.max_id,
|
||||||
|
limit: 6,
|
||||||
|
'_pe': 1,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(this.getScope() === 'network') {
|
if(this.getScope() === 'network') {
|
||||||
|
|
Loading…
Reference in a new issue