mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-27 00:33:17 +00:00
Merge pull request #921 from pixelfed/frontend-ui-refactor
Add git info to nodeinfo.json
This commit is contained in:
commit
463a905124
1 changed files with 42 additions and 9 deletions
|
@ -4,7 +4,12 @@ namespace App\Http\Controllers;
|
||||||
|
|
||||||
use App\Jobs\InboxPipeline\InboxWorker;
|
use App\Jobs\InboxPipeline\InboxWorker;
|
||||||
use App\Jobs\RemoteFollowPipeline\RemoteFollowPipeline;
|
use App\Jobs\RemoteFollowPipeline\RemoteFollowPipeline;
|
||||||
use App\Profile;
|
use App\{
|
||||||
|
AccountLog,
|
||||||
|
Like,
|
||||||
|
Profile,
|
||||||
|
Status
|
||||||
|
};
|
||||||
use App\Transformer\ActivityPub\ProfileOutbox;
|
use App\Transformer\ActivityPub\ProfileOutbox;
|
||||||
use App\Util\Lexer\Nickname;
|
use App\Util\Lexer\Nickname;
|
||||||
use App\Util\Webfinger\Webfinger;
|
use App\Util\Webfinger\Webfinger;
|
||||||
|
@ -80,14 +85,42 @@ class FederationController extends Controller
|
||||||
|
|
||||||
public function nodeinfo()
|
public function nodeinfo()
|
||||||
{
|
{
|
||||||
$res = Cache::remember('api:nodeinfo', now()->addHours(1), function () {
|
$res = Cache::remember('api:nodeinfo', now()->addMinutes(15), function () {
|
||||||
|
$git = Cache::remember('api:nodeinfo:git', now()->addHours(1), function() {
|
||||||
|
$hash = exec('git rev-parse HEAD');
|
||||||
|
$gitUrl = 'https://github.com/pixelfed/pixelfed/commit/' . $hash;
|
||||||
|
return [
|
||||||
|
'commit_hash' => $hash,
|
||||||
|
'url' => $gitUrl
|
||||||
|
];
|
||||||
|
});
|
||||||
|
$activeHalfYear = Cache::remember('api:nodeinfo:ahy', now()->addHours(12), function() {
|
||||||
|
$count = collect([]);
|
||||||
|
$likes = Like::select('profile_id')->where('created_at', '>', now()->subMonths(6)->toDateTimeString())->groupBy('profile_id')->pluck('profile_id')->toArray();
|
||||||
|
$count = $count->merge($likes);
|
||||||
|
$statuses = Status::select('profile_id')->whereLocal(true)->where('created_at', '>', now()->subMonths(6)->toDateTimeString())->groupBy('profile_id')->pluck('profile_id')->toArray();
|
||||||
|
$count = $count->merge($statuses);
|
||||||
|
$profiles = Profile::select('id')->whereNull('domain')->where('created_at', '>', now()->subMonths(6)->toDateTimeString())->groupBy('id')->pluck('id')->toArray();
|
||||||
|
$count = $count->merge($profiles);
|
||||||
|
return $count->count();
|
||||||
|
});
|
||||||
|
$activeMonth = Cache::remember('api:nodeinfo:am', now()->addHours(12), function() {
|
||||||
|
$count = collect([]);
|
||||||
|
$likes = Like::select('profile_id')->where('created_at', '>', now()->subMonths(1)->toDateTimeString())->groupBy('profile_id')->pluck('profile_id')->toArray();
|
||||||
|
$count = $count->merge($likes);
|
||||||
|
$statuses = Status::select('profile_id')->whereLocal(true)->where('created_at', '>', now()->subMonths(1)->toDateTimeString())->groupBy('profile_id')->pluck('profile_id')->toArray();
|
||||||
|
$count = $count->merge($statuses);
|
||||||
|
$profiles = Profile::select('id')->whereNull('domain')->where('created_at', '>', now()->subMonths(1)->toDateTimeString())->groupBy('id')->pluck('id')->toArray();
|
||||||
|
$count = $count->merge($profiles);
|
||||||
|
return $count->count();
|
||||||
|
});
|
||||||
return [
|
return [
|
||||||
'metadata' => [
|
'metadata' => [
|
||||||
'nodeName' => config('app.name'),
|
'nodeName' => config('app.name'),
|
||||||
'software' => [
|
'software' => [
|
||||||
'homepage' => 'https://pixelfed.org',
|
'homepage' => 'https://pixelfed.org',
|
||||||
'github' => 'https://github.com/pixelfed',
|
'repo' => 'https://github.com/pixelfed/pixelfed',
|
||||||
'follow' => 'https://mastodon.social/@pixelfed',
|
'git' => $git
|
||||||
],
|
],
|
||||||
'captcha' => (bool) config('pixelfed.recaptcha'),
|
'captcha' => (bool) config('pixelfed.recaptcha'),
|
||||||
],
|
],
|
||||||
|
@ -108,8 +141,8 @@ class FederationController extends Controller
|
||||||
'localComments' => \App\Status::whereLocal(true)->whereNotNull('in_reply_to_id')->count(),
|
'localComments' => \App\Status::whereLocal(true)->whereNotNull('in_reply_to_id')->count(),
|
||||||
'users' => [
|
'users' => [
|
||||||
'total' => \App\User::count(),
|
'total' => \App\User::count(),
|
||||||
'activeHalfyear' => \App\AccountLog::select('user_id')->whereAction('auth.login')->where('updated_at', '>',Carbon::now()->subMonths(6)->toDateTimeString())->groupBy('user_id')->get()->count(),
|
'activeHalfyear' => $activeHalfYear,
|
||||||
'activeMonth' => \App\AccountLog::select('user_id')->whereAction('auth.login')->where('updated_at', '>',Carbon::now()->subMonths(1)->toDateTimeString())->groupBy('user_id')->get()->count(),
|
'activeMonth' => $activeMonth,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'version' => '2.0',
|
'version' => '2.0',
|
||||||
|
|
Loading…
Reference in a new issue