get_username() support in laravel

This commit is contained in:
xiaomlove
2022-06-12 15:15:09 +08:00
parent 4fc91f52cc
commit 43156f7fc5
8 changed files with 108 additions and 24 deletions
+4 -3
View File
@@ -77,9 +77,10 @@ class Test extends Command
*/ */
public function handle() public function handle()
{ {
$torrent = \App\Models\Torrent::query()->find(3); $end = Carbon::parse('2022-06-06 14:10');
$promotionInfo = apply_filter('torrent_promotion', $torrent->toArray()); $begin = Carbon::parse('2022-06-06 03:10');
dd($promotionInfo); $r = $end->diffInHours($begin);
dd($r);
} }
+1 -1
View File
@@ -34,7 +34,7 @@ class Torrent extends NexusModel
public static $commentFields = [ public static $commentFields = [
'id', 'name', 'added', 'visible', 'banned', 'owner', 'sp_state', 'pos_state', 'hr', 'picktype', 'picktime', 'id', 'name', 'added', 'visible', 'banned', 'owner', 'sp_state', 'pos_state', 'hr', 'picktype', 'picktime',
'last_action', 'leechers', 'seeders', 'times_completed', 'views', 'size', 'cover' 'last_action', 'leechers', 'seeders', 'times_completed', 'views', 'size', 'cover', 'anonymous',
]; ];
public static $basicRelations = [ public static $basicRelations = [
+24 -5
View File
@@ -9,6 +9,7 @@ use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable; use Illuminate\Notifications\Notifiable;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\DB;
use Laravel\Sanctum\HasApiTokens; use Laravel\Sanctum\HasApiTokens;
use Nexus\Database\NexusDB; use Nexus\Database\NexusDB;
@@ -173,7 +174,7 @@ class User extends Authenticatable
'id', 'username', 'email', 'class', 'status', 'added', 'avatar', 'id', 'username', 'email', 'class', 'status', 'added', 'avatar',
'uploaded', 'downloaded', 'seedbonus', 'seedtime', 'leechtime', 'uploaded', 'downloaded', 'seedbonus', 'seedtime', 'leechtime',
'invited_by', 'enabled', 'seed_points', 'last_access', 'invites', 'invited_by', 'enabled', 'seed_points', 'last_access', 'invites',
'lang', 'attendance_card', 'lang', 'attendance_card', 'privacy', 'noad',
]; ];
public static function getDefaultUserAttributes(): array public static function getDefaultUserAttributes(): array
@@ -196,12 +197,28 @@ class User extends Authenticatable
]; ];
} }
public static function defaultUser() public static function defaultUser(): static
{ {
return new static(self::getDefaultUserAttributes()); return new static(self::getDefaultUserAttributes());
} }
public function checkIsNormal(array $fields = ['status', 'enabled']) public static function getClassName($class, $compact = false, $b_colored = false, $I18N = false)
{
$class_name = self::$classes[$class]['text'];
if ($class >= self::CLASS_VIP && $I18N) {
$class_name = nexus_trans("user.class_names.$class");
}
$class_name_color = self::$classes[$class]['text'];
if ($compact) {
$class_name = str_replace(" ", "",$class_name);
}
if ($b_colored) {
return "<b class='" . str_replace(" ", "",$class_name_color) . "_Name'>" . $class_name . "</b>";
}
return $class_name;
}
public function checkIsNormal(array $fields = ['status', 'enabled']): bool
{ {
if (in_array('status', $fields) && $this->getAttribute('status') != self::STATUS_CONFIRMED) { if (in_array('status', $fields) && $this->getAttribute('status') != self::STATUS_CONFIRMED) {
throw new \InvalidArgumentException(sprintf('User: %s is not confirmed.', $this->id)); throw new \InvalidArgumentException(sprintf('User: %s is not confirmed.', $this->id));
@@ -416,7 +433,7 @@ class User extends Authenticatable
return $this->update($update); return $this->update($update);
} }
public function canAccessAdmin() public function canAccessAdmin(): bool
{ {
$targetClass = self::CLASS_SYSOP; $targetClass = self::CLASS_SYSOP;
if (!$this->class || $this->class < $targetClass) { if (!$this->class || $this->class < $targetClass) {
@@ -426,7 +443,7 @@ class User extends Authenticatable
return true; return true;
} }
public function isDonating() public function isDonating(): bool
{ {
$rawDonorUntil = $this->getRawOriginal('donoruntil'); $rawDonorUntil = $this->getRawOriginal('donoruntil');
if ( if (
@@ -438,4 +455,6 @@ class User extends Authenticatable
return false; return false;
} }
} }
+19
View File
@@ -2,6 +2,9 @@
namespace App\Repositories; namespace App\Repositories;
use App\Models\Setting;
use App\Models\Torrent;
use App\Models\User;
use Illuminate\Encryption\Encrypter; use Illuminate\Encryption\Encrypter;
use Illuminate\Support\Str; use Illuminate\Support\Str;
@@ -17,4 +20,20 @@ class BaseRepository
return [$field, $type]; return [$field, $type];
} }
protected function handleAnonymous($username, User $user, User $authenticator, Torrent $torrent = null)
{
$canViewAnonymousClass = Setting::get('authority.viewanonymous');
if($user->privacy == "strong" || ($torrent && $torrent->anonymous == 'yes' && $user->id == $torrent->owner)) {
//用户强私密,或者种子作者匿名而当前项作者刚好为种子作者
if($authenticator->class >= $canViewAnonymousClass || $user->id == $authenticator->id) {
//但当前用户权限可以查看匿名者,或当前用户查看自己的数据,显示个匿名,后边加真实用户名
return sprintf('匿名(%s)', $username);
} else {
return '匿名';
}
} else {
return $username;
}
}
} }
+33 -15
View File
@@ -460,6 +460,9 @@ function get_user_class()
function get_user_class_name($class, $compact = false, $b_colored = false, $I18N = false) function get_user_class_name($class, $compact = false, $b_colored = false, $I18N = false)
{ {
if (!IN_NEXUS) {
return \App\Models\User::getClassName($class, $compact, $b_colored, $I18N);
}
global $SITENAME; global $SITENAME;
static $en_lang_functions; static $en_lang_functions;
static $current_user_lang_functions; static $current_user_lang_functions;
@@ -1896,20 +1899,29 @@ function get_user_row($id)
global $Cache, $CURUSER; global $Cache, $CURUSER;
static $curuserRowUpdated = false; static $curuserRowUpdated = false;
static $neededColumns = array('id', 'noad', 'class', 'enabled', 'privacy', 'avatar', 'signature', 'uploaded', 'downloaded', 'last_access', 'username', 'donor', 'donoruntil', 'leechwarn', 'warned', 'title'); static $neededColumns = array('id', 'noad', 'class', 'enabled', 'privacy', 'avatar', 'signature', 'uploaded', 'downloaded', 'last_access', 'username', 'donor', 'donoruntil', 'leechwarn', 'warned', 'title');
if ($CURUSER && $id == $CURUSER['id']) { $cacheKey = 'user_'.$id.'_content';
$row = array(); $row = \Nexus\Database\NexusDB::remember($cacheKey, 900, function () use ($id, $neededColumns) {
foreach($neededColumns as $column) { $user = \App\Models\User::query()->find($id, $neededColumns);
$row[$column] = $CURUSER[$column]; if ($user) {
} return $user->toArray();
if (!$curuserRowUpdated) { }
$Cache->cache_value('user_'.$CURUSER['id'].'_content', $row, 900); return null;
$curuserRowUpdated = true; });
}
} elseif (!$row = $Cache->get_value('user_'.$id.'_content')){ // if ($CURUSER && $id == $CURUSER['id']) {
$res = sql_query("SELECT ".implode(',', $neededColumns)." FROM users WHERE id = ".sqlesc($id)) or sqlerr(__FILE__,__LINE__); // $row = array();
$row = mysql_fetch_array($res); // foreach($neededColumns as $column) {
$Cache->cache_value('user_'.$id.'_content', $row, 900); // $row[$column] = $CURUSER[$column];
} // }
// if (!$curuserRowUpdated) {
// $Cache->cache_value('user_'.$CURUSER['id'].'_content', $row, 900);
// $curuserRowUpdated = true;
// }
// } elseif (!$row = $Cache->get_value('user_'.$id.'_content')){
// $res = sql_query("SELECT ".implode(',', $neededColumns)." FROM users WHERE id = ".sqlesc($id)) or sqlerr(__FILE__,__LINE__);
// $row = mysql_fetch_array($res);
// $Cache->cache_value('user_'.$id.'_content', $row, 900);
// }
if (!$row) if (!$row)
return false; return false;
@@ -3626,7 +3638,8 @@ function get_username($id, $big = false, $link = true, $bold = true, $target = f
$username = ($underline == true ? "<u>" . $arr['username'] . "</u>" : $arr['username']); $username = ($underline == true ? "<u>" . $arr['username'] . "</u>" : $arr['username']);
$username = ($bold == true ? "<b>" . $username . "</b>" : $username); $username = ($bold == true ? "<b>" . $username . "</b>" : $username);
$username = ($link == true ? "<a ". $link_ext . " href=\"userdetails.php?id=" . $id . "\"" . ($target == true ? " target=\"_blank\"" : "") . " class='". get_user_class_name($arr['class'],true) . "_Name'>" . $username . "</a>" : $username) . $pics . ($withtitle == true ? " (" . ($arr['title'] == "" ? get_user_class_name($arr['class'],false,true,true) : "<span class='".get_user_class_name($arr['class'],true) . "_Name'><b>".htmlspecialchars($arr['title'])) . "</b></span>)" : ""); $href = getSchemeAndHttpHost() . "/userdetails.php?id=$id";
$username = ($link == true ? "<a ". $link_ext . " href=\"" . $href . "\"" . ($target == true ? " target=\"_blank\"" : "") . " class='". get_user_class_name($arr['class'],true) . "_Name'>" . $username . "</a>" : $username) . $pics . ($withtitle == true ? " (" . ($arr['title'] == "" ? get_user_class_name($arr['class'],false,true,true) : "<span class='".get_user_class_name($arr['class'],true) . "_Name'><b>".htmlspecialchars($arr['title'])) . "</b></span>)" : "");
$username = "<span class=\"nowrap\">" . ( $bracket == true ? "(" . $username . ")" : $username) . "</span>"; $username = "<span class=\"nowrap\">" . ( $bracket == true ? "(" . $username . ")" : $username) . "</span>";
} }
@@ -5590,6 +5603,11 @@ function get_smile($num)
return $all[$num] ?? null; return $all[$num] ?? null;
} }
function username_under_torrent()
{
}
/** /**
* Calculate user seed bonus per hour * Calculate user seed bonus per hour
* *
+9
View File
@@ -16,4 +16,13 @@ return [
'invites' => 'Invites', 'invites' => 'Invites',
'attendance_card' => 'Attend card', 'attendance_card' => 'Attend card',
], ],
'class_name' => [
\App\Models\User::CLASS_VIP => 'Vip',
\App\Models\User::CLASS_RETIREE => 'Retiree',
\App\Models\User::CLASS_UPLOADER => 'Uploader',
\App\Models\User::CLASS_MODERATOR => 'Moderator',
\App\Models\User::CLASS_ADMINISTRATOR => 'Administrator',
\App\Models\User::CLASS_SYSOP => 'Sysop',
\App\Models\User::CLASS_STAFF_LEADER => 'Staff Leader',
],
]; ];
+9
View File
@@ -16,4 +16,13 @@ return [
'invites' => '邀请', 'invites' => '邀请',
'attendance_card' => '补签卡', 'attendance_card' => '补签卡',
], ],
'class_names' => [
\App\Models\User::CLASS_VIP => '贵宾',
\App\Models\User::CLASS_RETIREE => '养老族',
\App\Models\User::CLASS_UPLOADER => '发布员',
\App\Models\User::CLASS_MODERATOR => '总版主',
\App\Models\User::CLASS_ADMINISTRATOR => '管理员',
\App\Models\User::CLASS_SYSOP => '维护开发员',
\App\Models\User::CLASS_STAFF_LEADER => '主管',
],
]; ];
+9
View File
@@ -16,4 +16,13 @@ return [
'invites' => '邀請', 'invites' => '邀請',
'attendance_card' => '補簽卡', 'attendance_card' => '補簽卡',
], ],
'class_name' => [
\App\Models\User::CLASS_VIP => '貴賓',
\App\Models\User::CLASS_RETIREE => '養老族',
\App\Models\User::CLASS_UPLOADER => '發布員',
\App\Models\User::CLASS_MODERATOR => '總版主',
\App\Models\User::CLASS_ADMINISTRATOR => '管理員',
\App\Models\User::CLASS_SYSOP => '維護開發員',
\App\Models\User::CLASS_STAFF_LEADER => '主管',
],
]; ];