|
|
|
@ -2,28 +2,20 @@
|
|
|
|
|
|
|
|
|
|
namespace App\Util\Site;
|
|
|
|
|
|
|
|
|
|
use Cache;
|
|
|
|
|
use App\{Like, Profile, Status, User};
|
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
|
use App\Like;
|
|
|
|
|
use App\Profile;
|
|
|
|
|
use App\Status;
|
|
|
|
|
use App\User;
|
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
|
|
|
|
class Nodeinfo {
|
|
|
|
|
|
|
|
|
|
class Nodeinfo
|
|
|
|
|
{
|
|
|
|
|
public static function get()
|
|
|
|
|
{
|
|
|
|
|
$res = Cache::remember('api:nodeinfo', 300, function () {
|
|
|
|
|
$activeHalfYear = Cache::remember('api:nodeinfo:ahy', 172800, function() {
|
|
|
|
|
return User::select('last_active_at')
|
|
|
|
|
->where('last_active_at', '>', now()->subMonths(6))
|
|
|
|
|
->orWhere('created_at', '>', now()->subMonths(6))
|
|
|
|
|
->count();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$activeMonth = Cache::remember('api:nodeinfo:am', 172800, function() {
|
|
|
|
|
return User::select('last_active_at')
|
|
|
|
|
->where('last_active_at', '>', now()->subMonths(1))
|
|
|
|
|
->orWhere('created_at', '>', now()->subMonths(1))
|
|
|
|
|
->count();
|
|
|
|
|
});
|
|
|
|
|
$res = Cache::remember('api:nodeinfo', 900, function () {
|
|
|
|
|
$activeHalfYear = self::activeUsersHalfYear();
|
|
|
|
|
$activeMonth = self::activeUsersMonthly();
|
|
|
|
|
|
|
|
|
|
$users = Cache::remember('api:nodeinfo:users', 43200, function() {
|
|
|
|
|
return User::count();
|
|
|
|
@ -83,4 +75,25 @@ class Nodeinfo {
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function activeUsersMonthly()
|
|
|
|
|
{
|
|
|
|
|
return Cache::remember('api:nodeinfo:active-users-monthly', 43200, function() {
|
|
|
|
|
return User::withTrashed()
|
|
|
|
|
->select('last_active_at, updated_at')
|
|
|
|
|
->where('updated_at', '>', now()->subWeeks(5))
|
|
|
|
|
->orWhere('last_active_at', '>', now()->subWeeks(5))
|
|
|
|
|
->count();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function activeUsersHalfYear()
|
|
|
|
|
{
|
|
|
|
|
return Cache::remember('api:nodeinfo:active-users-half-year', 43200, function() {
|
|
|
|
|
return User::withTrashed()
|
|
|
|
|
->select('last_active_at, updated_at')
|
|
|
|
|
->where('last_active_at', '>', now()->subMonths(6))
|
|
|
|
|
->orWhere('updated_at', '>', now()->subMonths(6))
|
|
|
|
|
->count();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|